diff --git a/HISTORY b/HISTORY index a784422..d3b91cd 100644 --- a/HISTORY +++ b/HISTORY @@ -1,3 +1,18 @@ +0.19 2010-3-1 +* Deprecated GridFS::GridStore. Grid and GridFileSystem classes replace +the GridFS implementation with a simpler API and vastly-improved performance. +See http://www.mongodb.org/display/DOCS/GridFS+in+Ruby for more details. +* Safe mode for Grid and GridFileSystem. +* Grid and GridFileSystem use Mime/Types to detect content type (if available) +* Connection API simplified. Use Connection.paired for pairs and Connection.from_uri to +use MongoDB's connection URI specification. +* Authentication can be saved so that reauthentication happens automatically +on reconnect. +* Raise exception if authentication fails. +* Raise exception if index creation fails. +* Removed a number of deprecated methods and classes. +* Several bug fixes. + 0.18.3 2010-1-25 * Convert docs to YARD * Support MongoDB extended JSON on ObjectID#to_json diff --git a/ext/cbson/buffer.c b/ext/cbson/buffer.c index e003fa3..957ebdc 100644 --- a/ext/cbson/buffer.c +++ b/ext/cbson/buffer.c @@ -1,5 +1,5 @@ /* - * Copyright 2009 10gen, Inc. + * Copyright 2009-2010 10gen, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/ext/cbson/buffer.h b/ext/cbson/buffer.h index 255050f..8141357 100644 --- a/ext/cbson/buffer.h +++ b/ext/cbson/buffer.h @@ -1,5 +1,5 @@ /* - * Copyright 2009 10gen, Inc. + * Copyright 2009-2010 10gen, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/ext/cbson/cbson.c b/ext/cbson/cbson.c index 46a2298..c21a651 100644 --- a/ext/cbson/cbson.c +++ b/ext/cbson/cbson.c @@ -1,5 +1,5 @@ /* - * Copyright 2009 10gen, Inc. + * Copyright 2009-2010 10gen, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/ext/cbson/encoding_helpers.c b/ext/cbson/encoding_helpers.c index e6a639d..485718d 100644 --- a/ext/cbson/encoding_helpers.c +++ b/ext/cbson/encoding_helpers.c @@ -1,5 +1,5 @@ /* - * Copyright 2009 10gen, Inc. + * Copyright 2009-2010 10gen, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/ext/cbson/encoding_helpers.h b/ext/cbson/encoding_helpers.h index d4cd2f4..7224bcc 100644 --- a/ext/cbson/encoding_helpers.h +++ b/ext/cbson/encoding_helpers.h @@ -1,5 +1,5 @@ /* - * Copyright 2009 10gen, Inc. + * Copyright 2009-2010 10gen, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/ext/cbson/version.h b/ext/cbson/version.h index 04566e6..54e9c90 100644 --- a/ext/cbson/version.h +++ b/ext/cbson/version.h @@ -1,5 +1,5 @@ /* - * Copyright 2009 10gen, Inc. + * Copyright 2009-2010 10gen, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/mongo-ruby-driver.gemspec b/mongo-ruby-driver.gemspec index 5af4b22..f6f04b4 100644 --- a/mongo-ruby-driver.gemspec +++ b/mongo-ruby-driver.gemspec @@ -22,7 +22,7 @@ Gem::Specification.new do |s| s.rdoc_options = ['--main', 'README.rdoc', '--inline-source'] s.extra_rdoc_files = ['README.rdoc'] - s.authors = ['Jim Menard', 'Mike Dirolf'] + s.authors = ['Jim Menard', 'Mike Dirolf', 'Kyle Banker'] s.email = 'mongodb-dev@googlegroups.com' s.homepage = 'http://www.mongodb.org' end