graphiti 1.12.1 → 1.12.2
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/errors.rb +6 -0
- data/lib/graphiti/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: de4409a60f63682b5bb513238e1101ca1997943a18b136c3d9c507f1eeda9651
|
|
4
|
+
data.tar.gz: 62b1019afe5fbb095b1323f17c06f7c97f7c15aa0b9dfff3afded57b428ff326
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b4da6af791178d1a3229dd0c9515792cecacd2bc60ee96274dfc8723af232531a6190e04697f5a1f6e2f9f2b6562a950cfe916657198969e33b0a5251b0854ab
|
|
7
|
+
data.tar.gz: 1f6561906d4b70bc148563be8c9d20b2dc028006a238993449d59a51fc125efd7c5110d9564a983ed09d749fcd53f46740667aab737e1e7e13d47977569b4246
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
graphiti changelog
|
|
2
2
|
|
|
3
|
+
## [1.12.2](https://github.com/graphiti-api/graphiti/compare/v1.12.1...v1.12.2) (2026-07-29)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* improve InvalidEndpoint guidance ([#512](https://github.com/graphiti-api/graphiti/issues/512)) ([1e6db50](https://github.com/graphiti-api/graphiti/commit/1e6db50b949505ebf4d587bb08c7711a9c771b13))
|
|
9
|
+
|
|
3
10
|
## [1.12.1](https://github.com/graphiti-api/graphiti/compare/v1.12.0...v1.12.1) (2026-07-29)
|
|
4
11
|
|
|
5
12
|
|
data/lib/graphiti/errors.rb
CHANGED
|
@@ -445,6 +445,12 @@ module Graphiti
|
|
|
445
445
|
|
|
446
446
|
secondary_endpoint '/my_url', [:index, :update]
|
|
447
447
|
|
|
448
|
+
Or disable endpoint validation for this resource:
|
|
449
|
+
|
|
450
|
+
self.validate_endpoints = false
|
|
451
|
+
|
|
452
|
+
See https://www.graphiti.dev/guides/concepts/links for more information.
|
|
453
|
+
|
|
448
454
|
The current endpoints allowed for this resource are: #{@resource_class.endpoints.inspect}
|
|
449
455
|
MSG
|
|
450
456
|
end
|
data/lib/graphiti/version.rb
CHANGED