File tree Expand file tree Collapse file tree 3 files changed +29
-4
lines changed Expand file tree Collapse file tree 3 files changed +29
-4
lines changed Original file line number Diff line number Diff line change 1
- == 0.4.4 / 2010-08-01
1
+ == 1.1.0 / 2011-05-13
2
+ * Support for embedding neo4j.rb by providing an already running db instance (#168)
3
+ * Neo4j::Rails::Relationships should be ActiveModel compliant (#156)
4
+ * Support for incoming relationships in Neo4j::Rails::Model (#157)
5
+ * to_json method for models no tags √ resolved (#154)
6
+ * Implement hash so that it will work with Sets (#160)
7
+ * Modified the traverser to allow iterating over paths not just over end_nodes (#161)
8
+ * Create method should take a block to initialize itself (#162)
9
+ * Upgrade to 1.3 neo4j java library (#164)
10
+ * Default `nodes' invocation for Algo path finders (#165)
11
+ * Property and index class methods modified to take arbitrary number of symbols optionally followed by options hash (#166)
12
+ * BUG: Setting property :system on Neo4j::Rails::Model should work (#163)
13
+ * BUG: update_attributes should convert values according to Type (#155)
14
+ * BUG: Neo4j::RelationshipMixin#relationship_type broken #(169)
15
+ * BUG: Relationship.load(nil) == Relationship.load(0) (#167)
16
+ * BUG: Full text search returns nil in rails model (#153)
17
+
18
+ == 1.0.0 / 2011-03-02
19
+ * Complete rewrite of everything.
20
+ * Replaced the lucene module with using the java neo4j-lucene integration instead
21
+ * Lots of improvements of the API
22
+ * Better ActiveModel/Rails integration
23
+
24
+ == 0.4.4 / 2010-08-01
2
25
* Fixed bug on traversing when using the RelationshipMixin (#121)
3
26
* BatchInserter and JRuby 1.6 - Fix iteration error with trying to modify in-place hash
4
27
Original file line number Diff line number Diff line change 1
1
module Neo4j
2
- VERSION = "1.1.0.beta.3 "
2
+ VERSION = "1.1.0"
3
3
end
Original file line number Diff line number Diff line change @@ -157,11 +157,13 @@ class SubClazz < BaseClazz
157
157
fail ( "Unknown rel #{ args [ 1 ] } " )
158
158
end
159
159
when BASE_CLASS_RULE_NODE
160
+ args [ 1 ] . should == 43
161
+ args [ 2 ] . should == 2
160
162
args [ 0 ] . should == :foo
161
- args [ 2 ] . should == 43
162
163
when SUBCLASS_CLASS_RULE_NODE
164
+ args [ 1 ] . should == 42
165
+ args [ 2 ] . should == 2
163
166
args [ 0 ] . should == :foo
164
- args [ 2 ] . should == 42
165
167
else
166
168
fail ( "Unknown from #{ args [ 1 ] } " )
167
169
end
You can’t perform that action at this time.
0 commit comments