graphiti 1.7.5 → 1.7.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/lib/graphiti/adapters/active_record.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: b24f6cdaff2ef5d86296f1dea302a9cf9b0f9ac33486b7f00e90b6e81e8f7761
|
4
|
+
data.tar.gz: 8f32c45f3a57cfa376527634724d2b0a4325f3c86d5de942f8719982fc2b3dab
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9e6b37a1b10c8240f19c8dc5cf3c6cd366d4ffba77bd6192ca292d914b291af9bc2e55e29fdf352f60c8368495d7afcf627233d94a5c6ef6946a00cde6821d0a
|
7
|
+
data.tar.gz: 075cabe78b3e2c8c668a58d85fc335f357e022e9d2d25aaaaf2cce87a01f7da0f6cd1108e7c8da4d42cb763cac450ee92f1a8419325f6997f1de3fee9d20f35d
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,12 @@
|
|
1
1
|
graphiti changelog
|
2
2
|
|
3
|
+
## [1.7.6](https://github.com/graphiti-api/graphiti/compare/v1.7.5...v1.7.6) (2024-11-06)
|
4
|
+
|
5
|
+
|
6
|
+
### Bug Fixes
|
7
|
+
|
8
|
+
* Gem version check ([#483](https://github.com/graphiti-api/graphiti/issues/483)) ([68e2492](https://github.com/graphiti-api/graphiti/commit/68e2492032692d8bb928a733f8b0f8710be31c49))
|
9
|
+
|
3
10
|
## [1.7.5](https://github.com/graphiti-api/graphiti/compare/v1.7.4...v1.7.5) (2024-09-16)
|
4
11
|
|
5
12
|
|
@@ -304,7 +304,7 @@ module Graphiti
|
|
304
304
|
end
|
305
305
|
|
306
306
|
def close
|
307
|
-
if ::ActiveRecord.version > "7.2"
|
307
|
+
if ::ActiveRecord.version > Gem::Version.new("7.2")
|
308
308
|
::ActiveRecord::Base.connection_handler.clear_active_connections!
|
309
309
|
else
|
310
310
|
::ActiveRecord::Base.clear_active_connections!
|
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.7.
|
4
|
+
version: 1.7.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lee Richmond
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-11-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jsonapi-serializable
|