[DRE-commits] [ruby-mongo] branch master updated (972a1d1 -> e00f84c)
Prach Pongpanich
prach-guest at moszumanska.debian.org
Thu May 15 06:36:03 UTC 2014
This is an automated email from the git hooks/post-receive script.
prach-guest pushed a change to branch master
in repository ruby-mongo.
from 972a1d1 Update changelog for 1.9.2-2
adds 758d754 Imported Upstream version 1.10.0
new 03e3621 Merge tag 'upstream/1.10.0'
new 08be234 Refresh patch enable_run_tests.patch
new b53cf30 Bump dependency on ruby-bson(-ext) to 1.10.0
new bc74cca Change the upstream copyright holder to MongoDB, Inc
new e00f84c update changelog for 1.10.0-1
The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
LICENSE | 2 +-
README.md | 423 ++------
Rakefile | 10 +-
VERSION | 2 +-
bin/mongo_console | 19 +-
checksums.yaml.gz | Bin 267 -> 268 bytes
checksums.yaml.gz.sig | Bin 256 -> 256 bytes
data.tar.gz.sig | Bin 256 -> 256 bytes
debian/changelog | 9 +
debian/control | 8 +-
debian/copyright | 2 +-
debian/patches/enable_run_tests.patch | 191 ++--
lib/mongo.rb | 50 +-
lib/mongo/bulk_write_collection_view.rb | 380 +++++++
lib/mongo/collection.rb | 407 ++++---
lib/mongo/collection_writer.rb | 364 +++++++
test/unit/pool_test.rb => lib/mongo/connection.rb | 16 +-
lib/mongo/{util => connection}/node.rb | 21 +-
lib/mongo/{util => connection}/pool.rb | 53 +-
lib/mongo/{util => connection}/pool_manager.rb | 56 +-
.../{util => connection}/sharding_pool_manager.rb | 2 +-
.../pool_test.rb => lib/mongo/connection/socket.rb | 15 +-
.../{util => connection/socket}/socket_util.rb | 7 +-
.../{util => connection/socket}/ssl_socket.rb | 13 +-
.../{util => connection/socket}/tcp_socket.rb | 40 +-
.../{util => connection/socket}/unix_socket.rb | 10 +-
lib/mongo/cursor.rb | 167 ++-
lib/mongo/db.rb | 324 +++---
lib/mongo/{exceptions.rb => exception.rb} | 11 +-
test/unit/pool_test.rb => lib/mongo/functional.rb | 16 +-
lib/mongo/functional/authentication.rb | 318 ++++++
lib/mongo/{util => functional}/logging.rb | 2 +-
lib/mongo/{util => functional}/read_preference.rb | 50 +-
lib/mongo/functional/sasl_java.rb | 48 +
lib/mongo/functional/uri_parser.rb | 374 +++++++
lib/mongo/{util => functional}/write_concern.rb | 14 +-
test/unit/pool_test.rb => lib/mongo/gridfs.rb | 15 +-
lib/mongo/gridfs/grid.rb | 10 +-
lib/mongo/gridfs/grid_ext.rb | 2 +-
lib/mongo/gridfs/grid_file_system.rb | 4 +-
lib/mongo/gridfs/grid_io.rb | 12 +-
lib/mongo/legacy.rb | 71 +-
lib/mongo/mongo_client.rb | 331 +++---
lib/mongo/mongo_replica_set_client.rb | 49 +-
lib/mongo/mongo_sharded_client.rb | 7 +-
lib/mongo/networking.rb | 45 +-
lib/mongo/util/uri_parser.rb | 352 ------
test/unit/pool_test.rb => lib/mongo/utils.rb | 16 +-
lib/mongo/{util => utils}/conversions.rb | 5 +-
lib/mongo/{util => utils}/core_ext.rb | 2 +-
lib/mongo/{util => utils}/server_version.rb | 2 +-
lib/mongo/{util => utils}/support.rb | 67 +-
.../thread_local_variable_manager.rb | 2 +-
metadata.gz.sig | Bin 256 -> 256 bytes
metadata.yml | 120 ++-
test/functional/authentication_test.rb | 36 +-
test/functional/bulk_api_stress_test.rb | 133 +++
test/functional/bulk_write_collection_view_test.rb | 1129 ++++++++++++++++++++
.../{connection_test.rb => client_test.rb} | 247 +++--
test/functional/collection_test.rb | 739 +++++++++++--
test/functional/collection_writer_test.rb | 83 ++
test/functional/conversions_test.rb | 36 +-
test/functional/cursor_fail_test.rb | 6 +-
test/functional/cursor_message_test.rb | 6 +-
test/functional/cursor_test.rb | 41 +-
test/functional/db_api_test.rb | 14 +-
test/functional/db_connection_test.rb | 4 +-
test/functional/db_test.rb | 70 +-
test/functional/grid_file_system_test.rb | 4 +-
test/functional/grid_io_test.rb | 8 +-
test/functional/grid_test.rb | 6 +-
test/functional/pool_test.rb | 5 +-
test/functional/safe_test.rb | 10 +-
test/functional/ssl_test.rb | 124 +--
test/functional/support_test.rb | 2 +-
test/functional/threading_test.rb | 109 --
test/functional/timeout_test.rb | 28 +-
test/functional/uri_test.rb | 142 ++-
test/functional/write_concern_test.rb | 12 +-
test/helpers/general.rb | 50 +
test/helpers/test_unit.rb | 317 ++++++
test/replica_set/authentication_test.rb | 37 +-
test/replica_set/basic_test.rb | 55 +-
test/replica_set/client_test.rb | 305 +++---
test/replica_set/complex_connect_test.rb | 13 +-
test/replica_set/connection_test.rb | 84 +-
test/replica_set/count_test.rb | 4 +-
test/replica_set/cursor_test.rb | 16 +-
test/replica_set/insert_test.rb | 80 +-
test/replica_set/max_values_test.rb | 75 +-
test/replica_set/pinning_test.rb | 4 +-
test/replica_set/query_test.rb | 4 +-
test/replica_set/read_preference_test.rb | 12 +-
test/replica_set/refresh_test.rb | 14 +-
test/replica_set/replication_ack_test.rb | 26 +-
test/replica_set/ssl_test.rb | 130 +--
test/sharded_cluster/basic_test.rb | 58 +-
test/shared/authentication.rb | 121 ---
test/shared/authentication/basic_auth_shared.rb | 286 +++++
test/shared/authentication/bulk_api_auth_shared.rb | 259 +++++
test/shared/authentication/gssapi_shared.rb | 164 +++
test/shared/authentication/sasl_plain_shared.rb | 96 ++
test/shared/ssl_shared.rb | 235 ++++
test/test_helper.rb | 230 +---
test/threading/basic_test.rb | 32 +-
test/tools/mongo_config.rb | 65 +-
test/tools/mongo_config_test.rb | 2 +-
test/unit/client_test.rb | 195 +++-
test/unit/collection_test.rb | 86 +-
test/unit/connection_test.rb | 209 ++--
test/unit/cursor_test.rb | 16 +-
test/unit/db_test.rb | 40 +-
test/unit/grid_test.rb | 4 +-
test/unit/mongo_sharded_client_test.rb | 32 +-
test/unit/node_test.rb | 4 +-
test/unit/pool_manager_test.rb | 43 +-
test/unit/read_pref_test.rb | 84 +-
test/unit/read_test.rb | 28 +-
test/unit/safe_test.rb | 18 +-
test/unit/sharding_pool_manager_test.rb | 16 +-
test/unit/util_test.rb | 69 --
test/unit/write_concern_test.rb | 18 +-
122 files changed, 7946 insertions(+), 3220 deletions(-)
create mode 100644 lib/mongo/bulk_write_collection_view.rb
create mode 100644 lib/mongo/collection_writer.rb
copy test/unit/pool_test.rb => lib/mongo/connection.rb (70%)
rename lib/mongo/{util => connection}/node.rb (91%)
rename lib/mongo/{util => connection}/pool.rb (87%)
rename lib/mongo/{util => connection}/pool_manager.rb (84%)
rename lib/mongo/{util => connection}/sharding_pool_manager.rb (98%)
copy test/unit/pool_test.rb => lib/mongo/connection/socket.rb (69%)
rename lib/mongo/{util => connection/socket}/socket_util.rb (87%)
rename lib/mongo/{util => connection/socket}/ssl_socket.rb (89%)
rename lib/mongo/{util => connection/socket}/tcp_socket.rb (63%)
rename lib/mongo/{util => connection/socket}/unix_socket.rb (89%)
rename lib/mongo/{exceptions.rb => exception.rb} (88%)
copy test/unit/pool_test.rb => lib/mongo/functional.rb (64%)
create mode 100644 lib/mongo/functional/authentication.rb
rename lib/mongo/{util => functional}/logging.rb (98%)
rename lib/mongo/{util => functional}/read_preference.rb (69%)
create mode 100644 lib/mongo/functional/sasl_java.rb
create mode 100644 lib/mongo/functional/uri_parser.rb
rename lib/mongo/{util => functional}/write_concern.rb (85%)
copy test/unit/pool_test.rb => lib/mongo/gridfs.rb (75%)
delete mode 100644 lib/mongo/util/uri_parser.rb
rename test/unit/pool_test.rb => lib/mongo/utils.rb (70%)
rename lib/mongo/{util => utils}/conversions.rb (96%)
rename lib/mongo/{util => utils}/core_ext.rb (97%)
rename lib/mongo/{util => utils}/server_version.rb (97%)
rename lib/mongo/{util => utils}/support.rb (56%)
rename lib/mongo/{util => utils}/thread_local_variable_manager.rb (94%)
create mode 100644 test/functional/bulk_api_stress_test.rb
create mode 100644 test/functional/bulk_write_collection_view_test.rb
rename test/functional/{connection_test.rb => client_test.rb} (63%)
create mode 100644 test/functional/collection_writer_test.rb
delete mode 100644 test/functional/threading_test.rb
create mode 100644 test/helpers/general.rb
create mode 100644 test/helpers/test_unit.rb
delete mode 100644 test/shared/authentication.rb
create mode 100644 test/shared/authentication/basic_auth_shared.rb
create mode 100644 test/shared/authentication/bulk_api_auth_shared.rb
create mode 100644 test/shared/authentication/gssapi_shared.rb
create mode 100644 test/shared/authentication/sasl_plain_shared.rb
create mode 100644 test/shared/ssl_shared.rb
delete mode 100644 test/unit/util_test.rb
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/ruby-mongo.git
More information about the Pkg-ruby-extras-commits
mailing list