File tree Expand file tree Collapse file tree 2 files changed +19
-2
lines changed Expand file tree Collapse file tree 2 files changed +19
-2
lines changed Original file line number Diff line number Diff line change
1
+ 1.0.4 2010-7-13
2
+
3
+ * Removed deprecated
4
+ - Cursor admin option
5
+ - DB#query
6
+ - DB#create_index (use Collection#create_index)
7
+ - DB#command only takes hash options now
8
+ * j2bson executable (neomantra)
9
+ * Fixed bson_ext compilation on Solaris (slyphon)
10
+ * System JS helpers (neovintage)
11
+ * Use one mutex per thread on pooled connections (cremes)
12
+ * Check for CursorNotFound response flag
13
+ * MapReduce can return raw command output using :raw
14
+ * BSON::OrderedHash equality with other Ruby hashes (Ryan Angilly)
15
+ * Fix for broken Socket.send with large payloads (Frédéric De Jaeger)
16
+ * Lots of minor improvements. See commmits.
17
+
1
18
1.0.3 2010-6-15
2
19
3
20
* Optimiztion for BSON::OrderedHash
Original file line number Diff line number Diff line change @@ -13,10 +13,10 @@ Gem::Specification.new do |s|
13
13
14
14
s . files = [ 'Rakefile' , 'bson.gemspec' , 'LICENSE.txt' ]
15
15
s . files += [ 'lib/bson.rb' ] + Dir [ 'lib/bson/**/*.rb' ]
16
- s . files += [ 'bin/b2json' ]
16
+ s . files += [ 'bin/b2json' , 'bin/j2bson' ]
17
17
s . test_files = Dir [ 'test/mongo_bson/*.rb' ]
18
18
19
- s . executables = [ 'b2json' ]
19
+ s . executables = [ 'b2json' , 'j2bson' ]
20
20
21
21
s . has_rdoc = true
22
22
You can’t perform that action at this time.
0 commit comments