neo4j 5.0.3 → 5.0.4
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 +13 -0
- data/lib/neo4j/active_node/has_n.rb +1 -1
- data/lib/neo4j/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 359bef42ad73e873f209c8f41505be1b655c6b18
|
4
|
+
data.tar.gz: 04a53f091e7d5a684baacc71c4fa090a29382993
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 241566d0338d3e51f744a795f0bf5288ebf0d22832e5e715d3c92045b6fe9ca2a91280f1df1219ff00d15fd0b60c289475cc1a359334102dd2d46ccc7878277a
|
7
|
+
data.tar.gz: ba461997cdc8ea2b54644f36510b195c958833b499c181b5e7e5e882c4f6245fb28f467d66988088bda6eed72d1ec84ba662efe9badbd0ccb8868652a0d7b193
|
data/CHANGELOG.md
CHANGED
@@ -7,6 +7,19 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|
7
7
|
|
8
8
|
### Changed
|
9
9
|
- `ActiveNode#destroyed?` and `ActiveRel#destroyed?` now only consider the in-memory state of if an object is destroyed without checking the database
|
10
|
+
|
11
|
+
### Fixed
|
12
|
+
- Added a `before_remove_const` method to clear cached models when Rails `reload!` is called. 5.0.1 included a workaround but this appears to cut to the core of the issue. See https://github.com/neo4jrb/neo4j/pull/855.
|
13
|
+
- Fixed bug which caused `QueryProxy` context to repeat (showed up in query logging)
|
14
|
+
|
15
|
+
### Added
|
16
|
+
- Added ability to view `model_class` from `Association` class for `rails_admin` Neo4j adapter
|
17
|
+
- QueryProxy `where` will now look for declared properties matching hash keys. When found, it will send the value through that property's type converter if the type matches the property's unconverted state.
|
18
|
+
|
19
|
+
|
20
|
+
## [5.0.3] - 2015-07-14
|
21
|
+
|
22
|
+
### Changed
|
10
23
|
- Moved `#with_associations` method from `AssociationProxy` to `QueryProxy` so that all `QueryProxy` chains can benefit from it.
|
11
24
|
|
12
25
|
## [5.0.2] - 2015-06-30
|
data/lib/neo4j/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: neo4j
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.0.
|
4
|
+
version: 5.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andreas Ronge, Brian Underwood, Chris Grigg
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-07-
|
11
|
+
date: 2015-07-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: orm_adapter
|