graphiti 1.10.0 → 1.10.1
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/CHANGELOG.md +7 -0
- data/lib/graphiti/query.rb +1 -1
- data/lib/graphiti/version.rb +1 -1
- 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: 2c2dc193574879e1c451e5603c29720d127180ab16929d778f884cca9efc384d
|
|
4
|
+
data.tar.gz: b20a79f85adcf81b5a88feee6ab01c3a103888bc1dd55a49750a1e7431742336
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e3161db42aa26f7d57df65471408b0bae2a9043337b21ba4d4c7419dff659e62ef8cb1559099a5ab970f509edbb5cf37ae351203d51d0c5aac656bcf39582d02
|
|
7
|
+
data.tar.gz: 796434d947948ca43a0630faaea193f9816935aa3d96f4385eab3b28b9845aca31a9c14b1c6e860f0b35aeb228d2908c4cc9ab8125959b92e7d9d2dc24bc8771
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
graphiti changelog
|
|
2
2
|
|
|
3
|
+
## [1.10.1](https://github.com/graphiti-api/graphiti/compare/v1.10.0...v1.10.1) (2026-01-09)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* make parse_fieldset more resilient ([#502](https://github.com/graphiti-api/graphiti/issues/502)) ([216213b](https://github.com/graphiti-api/graphiti/commit/216213bb643566e644c53727557a8e8c163ae6a1))
|
|
9
|
+
|
|
3
10
|
# [1.10.0](https://github.com/graphiti-api/graphiti/compare/v1.9.0...v1.10.0) (2026-01-06)
|
|
4
11
|
|
|
5
12
|
|
data/lib/graphiti/query.rb
CHANGED
|
@@ -302,7 +302,7 @@ module Graphiti
|
|
|
302
302
|
{}.tap do |hash|
|
|
303
303
|
fieldset.each_pair do |type, fields|
|
|
304
304
|
type = type.to_sym
|
|
305
|
-
fields = fields.split(",") unless fields.is_a?(Array)
|
|
305
|
+
fields = fields.to_s.split(",") unless fields.is_a?(Array)
|
|
306
306
|
hash[type] = fields.map(&:to_sym)
|
|
307
307
|
end
|
|
308
308
|
end
|
data/lib/graphiti/version.rb
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.10.
|
|
4
|
+
version: 1.10.1
|
|
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-01-
|
|
11
|
+
date: 2026-01-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jsonapi-serializable
|