Skip to content

Commit

Permalink
Merge branch 'master' into patch-singleton-resource
Browse files Browse the repository at this point in the history
  • Loading branch information
jkeen authored Mar 18, 2024
2 parents 38bac36 + 689aac7 commit f20840e
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,18 @@
## Unreleased
## 1.4.0, Sun March 17th 2024
Features:
- [461](https://github.com/graphiti-api/graphiti/pull/461), [463](https://github.com/graphiti-api/graphiti/pull/463) Add support for Rails 7.1 + Ruby 3.2 + Ruby 3.3

Fixes:
- [464](https://github.com/graphiti-api/graphiti/pull/464) Check for url presence before trying to append
- [407](https://github.com/graphiti-api/graphiti/pull/407) Sort types in generated schema
- [421](https://github.com/graphiti-api/graphiti/pull/421) Re-use resource class for remote sideloads to avoid memory leak
- [452](https://github.com/graphiti-api/graphiti/pull/452) Resolve inconsistency for filters containing curly brackets
- [446](https://github.com/graphiti-api/graphiti/pull/446) Fix private call

## 1.3.9, May 25th 2022
Use an options hash for log subscriber instead of positional arguments

## 1.x ??

Features:
- [329](https://github.com/graphiti-api/graphiti/pull/329) Propagate `extra_fields` to related resource links.
Expand Down
1 change: 1 addition & 0 deletions lib/graphiti/util/link.rb
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ def raw_url

def on_demand_links(url)
return url unless Graphiti.config.links_on_demand
return unless url

url << if url.include?("?")
"&links=true"
Expand Down
2 changes: 1 addition & 1 deletion lib/graphiti/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Graphiti
VERSION = "1.3.9"
VERSION = "1.4.0"
end

0 comments on commit f20840e

Please sign in to comment.