graphiti 1.7.8 → 1.7.9
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/adapters/active_record.rb +1 -1
- 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: fb170ab1193913adfcc8a371c4fc6bd8d19ac18e0179dc5c8b08f5e0afb2bfbd
|
4
|
+
data.tar.gz: 11b2b551351dd11bacc20ee275cfc4588c48659f60511d48f7c688ba4c0fc7e3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 83b1608a927b6f034ec460eefa14139d44be383941a00f5834dd7895c2ddc1b44a0da4d3d33f1779d12c00ef7b76451c9616a014e1fcd97f00916b19fa3296bf
|
7
|
+
data.tar.gz: 8dbc78fe342175e22d9f8668b882c7ac5184ac738f6d32ea63209dcd9893eb7ad713bf4875ed47ac703f79d9f66220ed9b47b0ba32fbf4d80b78d37a5e683edf
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,12 @@
|
|
1
1
|
graphiti changelog
|
2
2
|
|
3
|
+
## [1.7.9](https://github.com/graphiti-api/graphiti/compare/v1.7.8...v1.7.9) (2025-03-16)
|
4
|
+
|
5
|
+
|
6
|
+
### Bug Fixes
|
7
|
+
|
8
|
+
* update version check for clear active connections active record deprecation ([#491](https://github.com/graphiti-api/graphiti/issues/491)) ([4e764f6](https://github.com/graphiti-api/graphiti/commit/4e764f66c3a06b4a83c37afa83ddd64a78ef3b19))
|
9
|
+
|
3
10
|
## [1.7.8](https://github.com/graphiti-api/graphiti/compare/v1.7.7...v1.7.8) (2025-03-16)
|
4
11
|
|
5
12
|
|
@@ -304,7 +304,7 @@ module Graphiti
|
|
304
304
|
end
|
305
305
|
|
306
306
|
def close
|
307
|
-
if ::ActiveRecord.version > Gem::Version.new("7.
|
307
|
+
if ::ActiveRecord.version > Gem::Version.new("7.1")
|
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