graphiti 1.13.4 → 1.13.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yml +1 -1
- data/CHANGELOG.md +9 -0
- data/lib/graphiti/resource_proxy.rb +1 -0
- data/lib/graphiti/scope.rb +1 -1
- data/lib/graphiti/version.rb +1 -1
- data/package.json +1 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e5500e6dd80e00e5ee1da0c386c734e3c6eb4c5b55a0f9fa93477705e56cc6da
|
|
4
|
+
data.tar.gz: c91f34b4930b2607d8cb1f638164f86822bb158b921f0c8da9f3014689cd157f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5126a6d26ce6070fd37cfa20eeba213c35905b60be85826daaa6003561cc9d0a9793e99b26933c8576a879f9d3c5071c4dd541de773b4e63e6320b269b75b930
|
|
7
|
+
data.tar.gz: 5436a12807dec67f33900300cdee4eb739151aad12d00a8bd9ee0c009c4e08fd109cfb000754af132e73b73aada13e0dc63cf216e79cd6f40d4c4b3332b9fb90
|
data/.github/workflows/ci.yml
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
graphiti changelog
|
|
2
2
|
|
|
3
|
+
## [1.13.5](https://github.com/graphiti-api/graphiti/compare/v1.13.4...v1.13.5) (2026-09-04)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* resolve inline when already on a sideload pool thread ([11c9de7](https://github.com/graphiti-api/graphiti/commit/11c9de7fb4bfc2d83b02aaba3e58c1f94c84cec4))
|
|
9
|
+
* scope debugger chunks to the request rather than the class ([9a77896](https://github.com/graphiti-api/graphiti/commit/9a77896c6e56d23b89d0a2aef358d8e8e0c28c54))
|
|
10
|
+
* stats[group_by] only groups by an attribute the resource reads ([cfb9b84](https://github.com/graphiti-api/graphiti/commit/cfb9b8453c5f18fd9edaefdfefdd8dab5876ce99))
|
|
11
|
+
|
|
3
12
|
## [1.13.4](https://github.com/graphiti-api/graphiti/compare/v1.13.3...v1.13.4) (2026-08-20)
|
|
4
13
|
|
|
5
14
|
|
|
@@ -120,6 +120,7 @@ module Graphiti
|
|
|
120
120
|
scope = @scope.unpaginated_object
|
|
121
121
|
if resource.adapter.can_group?
|
|
122
122
|
if (group = @query.hash[:stats].delete(:group_by))
|
|
123
|
+
resource.get_attr!(group[0], :readable, request: true)
|
|
123
124
|
scope = resource.adapter.group(scope, group[0])
|
|
124
125
|
end
|
|
125
126
|
end
|
data/lib/graphiti/scope.rb
CHANGED
|
@@ -156,7 +156,7 @@ module Graphiti
|
|
|
156
156
|
sideload.resolve(results, sideload_query, @resource)
|
|
157
157
|
end
|
|
158
158
|
|
|
159
|
-
# resolve_sideloads is public, and without this it would return @query.sideloads itself,
|
|
159
|
+
# resolve_sideloads is public, and without this it would return @query.sideloads itself,
|
|
160
160
|
# where a delete would silently drop that sideload from the cache key.
|
|
161
161
|
nil
|
|
162
162
|
end
|
data/lib/graphiti/version.rb
CHANGED
data/package.json
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: graphiti
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.13.
|
|
4
|
+
version: 1.13.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Lee Richmond
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-09-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jsonapi-serializable
|