[libmongodb-perl] branch master updated (c01f358 -> 29ae05b)

Nuno Carvalho smash at cpan.org
Fri Sep 29 09:32:24 UTC 2017


This is an automated email from the git hooks/post-receive script.

mestre-guest pushed a change to branch master
in repository libmongodb-perl.

      from  c01f358   Remove myself from uploaders.
      adds  7f648e1   New upstream version 1.8.0
       new  2abb0e0   Updated version 1.8.0 from 'upstream/1.8.0'
       new  b82a446   Drop patch, applied upstream
       new  e06d4f8   Add new dependency
       new  4eaa998   Add testsuite autopkgtest-pkg-perl
       new  60c6033   Declare compliance with Debian Policy 4.1.0
       new  d715392   Add lintian override for false positive
       new  a4ab469   Update copyright years
       new  29ae05b   New upstream release, ready for review

The 8 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:
 Changes                                            |   114 +
 INSTALL.md                                         |     2 +-
 MANIFEST                                           |   118 +-
 META.json                                          |   117 +-
 META.yml                                           |   113 +-
 Makefile.PL                                        |     3 +
 README                                             |     6 +-
 bson/bson-atomic.h                                 |     2 +-
 bson/bson-compat.h                                 |    13 +
 bson/bson-config.h.in                              |    33 +
 bson/bson-decimal128.c                             |   740 +
 bson/bson-decimal128.h                             |    82 +
 bson/bson-endian.h                                 |     1 -
 bson/bson-error.c                                  |     5 +-
 bson/bson-error.h                                  |     2 -
 bson/bson-iter.c                                   |   292 +-
 bson/bson-iter.h                                   |    36 +
 bson/bson-macros.h                                 |    77 +-
 bson/bson-memory.c                                 |    20 +-
 bson/bson-memory.h                                 |     1 +
 bson/bson-oid.c                                    |    39 +-
 bson/bson-reader.c                                 |    63 +-
 bson/bson-reader.h                                 |     2 +-
 bson/bson-string.c                                 |    25 +-
 bson/bson-thread-private.h                         |     2 +-
 bson/bson-types.h                                  |   244 +-
 bson/bson-utf8.c                                   |   109 +-
 bson/bson-utf8.h                                   |     2 +
 bson/bson-value.c                                  |     8 +-
 bson/bson-writer.c                                 |    12 +-
 bson/bson.c                                        |   907 +-
 bson/bson.h                                        |    61 +
 debian/changelog                                   |    14 +
 debian/control                                     |     5 +-
 debian/copyright                                   |     2 +-
 debian/libmongodb-perl.lintian-overrides           |     2 +
 debian/patches/series                              |     1 -
 debian/patches/spelling.patch                      |   208 -
 inc/Module/Install/PRIVATE/Mongo.pm                |    21 +
 lib/MongoDB.pm                                     |    20 +-
 lib/MongoDB/BSON.pm                                |    13 +-
 lib/MongoDB/BSON/Binary.pm                         |    12 +-
 lib/MongoDB/BSON/Regexp.pm                         |    12 +-
 lib/MongoDB/BSON/_EncodedDoc.pm                    |     4 +-
 lib/MongoDB/BulkWrite.pm                           |    29 +-
 lib/MongoDB/BulkWriteResult.pm                     |    12 +-
 lib/MongoDB/BulkWriteView.pm                       |    97 +-
 lib/MongoDB/Code.pm                                |    12 +-
 lib/MongoDB/Collection.pm                          |   360 +-
 lib/MongoDB/CommandResult.pm                       |    58 +-
 lib/MongoDB/Cursor.pm                              |    99 +-
 lib/MongoDB/DBRef.pm                               |    12 +-
 lib/MongoDB/DataTypes.pod                          |    27 +-
 lib/MongoDB/Database.pm                            |    72 +-
 lib/MongoDB/DeleteResult.pm                        |    12 +-
 lib/MongoDB/Error.pm                               |    16 +-
 lib/MongoDB/Examples.pod                           |    10 +-
 lib/MongoDB/GridFS.pm                              |    20 +-
 lib/MongoDB/GridFS/File.pm                         |    16 +-
 lib/MongoDB/GridFSBucket.pm                        |   142 +-
 lib/MongoDB/GridFSBucket/DownloadStream.pm         |    12 +-
 lib/MongoDB/GridFSBucket/UploadStream.pm           |    29 +-
 lib/MongoDB/IndexView.pm                           |    66 +-
 lib/MongoDB/InsertManyResult.pm                    |    12 +-
 lib/MongoDB/InsertOneResult.pm                     |    12 +-
 lib/MongoDB/MongoClient.pm                         |   162 +-
 lib/MongoDB/OID.pm                                 |    20 +-
 lib/MongoDB/Op/_Aggregate.pm                       |    53 +-
 lib/MongoDB/Op/_BatchInsert.pm                     |    35 +-
 lib/MongoDB/Op/_BulkWrite.pm                       |    42 +-
 lib/MongoDB/Op/_Command.pm                         |    22 +-
 lib/MongoDB/Op/_Count.pm                           |    32 +-
 lib/MongoDB/Op/_CreateIndexes.pm                   |    52 +-
 lib/MongoDB/Op/_Delete.pm                          |    51 +-
 lib/MongoDB/Op/_Distinct.pm                        |    24 +-
 lib/MongoDB/Op/_DropCollection.pm                  |    68 +
 .../Op/{_KillCursors.pm => _DropDatabase.pm}       |    41 +-
 .../Op/{_KillCursors.pm => _DropIndexes.pm}        |    39 +-
 lib/MongoDB/Op/_Explain.pm                         |    34 +-
 lib/MongoDB/Op/_FSyncUnlock.pm                     |    30 +-
 lib/MongoDB/Op/_FindAndDelete.pm                   |    48 +-
 lib/MongoDB/Op/_FindAndUpdate.pm                   |    47 +-
 lib/MongoDB/Op/_GetMore.pm                         |    41 +-
 lib/MongoDB/Op/_InsertOne.pm                       |    33 +-
 lib/MongoDB/Op/_KillCursors.pm                     |    31 +-
 lib/MongoDB/Op/_ListCollections.pm                 |    27 +-
 lib/MongoDB/Op/_ListIndexes.pm                     |    65 +-
 lib/MongoDB/Op/_ParallelScan.pm                    |    20 +-
 lib/MongoDB/Op/_Query.pm                           |   188 +-
 lib/MongoDB/Op/_RenameCollection.pm                |    67 +
 lib/MongoDB/Op/_Update.pm                          |    45 +-
 lib/MongoDB/QueryResult.pm                         |    34 +-
 lib/MongoDB/QueryResult/Filtered.pm                |    12 +-
 lib/MongoDB/ReadConcern.pm                         |    19 +-
 lib/MongoDB/ReadPreference.pm                      |    48 +-
 lib/MongoDB/Role/_BypassValidation.pm              |     6 +-
 .../{Op/_KillCursors.pm => Role/_CollectionOp.pm}  |    37 +-
 lib/MongoDB/Role/_CommandCursorOp.pm               |    25 +-
 lib/MongoDB/Role/{_Cursor.pm => _CursorAPI.pm}     |     6 +-
 .../{_LastError.pm => _DatabaseErrorThrower.pm}    |     8 +-
 lib/MongoDB/Role/{_BSONCodec.pm => _DatabaseOp.pm} |    21 +-
 lib/MongoDB/Role/_DeprecationWarner.pm             |    83 +
 lib/MongoDB/Role/_InsertPreEncoder.pm              |    17 +-
 lib/MongoDB/Role/_OpReplyParser.pm                 |     9 +-
 lib/MongoDB/Role/_PrivateConstructor.pm            |    10 +-
 lib/MongoDB/Role/_ReadOp.pm                        |    19 +-
 lib/MongoDB/Role/_ReadPrefModifier.pm              |    11 +-
 .../{_WriteCommand.pm => _SingleBatchDocWrite.pm}  |    10 +-
 lib/MongoDB/Role/_UpdatePreEncoder.pm              |     6 +-
 lib/MongoDB/Role/_WriteOp.pm                       |    12 +-
 lib/MongoDB/Role/_WriteResult.pm                   |    10 +-
 lib/MongoDB/Timestamp.pm                           |    12 +-
 lib/MongoDB/Tutorial.pod                           |     8 +-
 lib/MongoDB/UnacknowledgedResult.pm                |    12 +-
 lib/MongoDB/UpdateResult.pm                        |    12 +-
 lib/MongoDB/Upgrading.pod                          |    12 +-
 lib/MongoDB/WriteConcern.pm                        |    16 +-
 lib/MongoDB/_Constants.pm                          |    12 +-
 lib/MongoDB/_Credential.pm                         |    20 +-
 lib/MongoDB/_Link.pm                               |    35 +-
 lib/MongoDB/{Role/_Cursor.pm => _Platform.pm}      |    22 +-
 lib/MongoDB/_Protocol.pm                           |     2 +-
 lib/MongoDB/_Query.pm                              |   231 -
 lib/MongoDB/_Server.pm                             |    25 +-
 lib/MongoDB/_Topology.pm                           |   225 +-
 lib/MongoDB/_Types.pm                              |    28 +-
 lib/MongoDB/_URI.pm                                |   154 +-
 perl_mongo.c                                       |    25 +
 perlcritic.rc                                      |    26 +
 t/00-report-prereqs.dd                             |     4 +
 t/bson.t                                           |    34 +-
 t/bulk.t                                           |   136 +-
 t/collection.t                                     |   127 +-
 t/connection.t                                     |    37 +-
 t/connection_string_spec.t                         |   101 +
 t/crud.t                                           |   274 +-
 t/cursor.t                                         |    85 +-
 t/data/connection_string/README.rst                |    99 +
 t/data/connection_string/invalid-uris.json         |   220 +
 t/data/connection_string/invalid-uris.yml          |   193 +
 t/data/connection_string/valid-auth.json           |   330 +
 t/data/connection_string/valid-auth.yml            |   256 +
 .../connection_string/valid-host_identifiers.json  |   154 +
 .../connection_string/valid-host_identifiers.yml   |   121 +
 t/data/connection_string/valid-options.json        |    42 +
 t/data/connection_string/valid-options.yml         |    30 +
 .../valid-unix_socket-absolute.json                |   251 +
 .../valid-unix_socket-absolute.yml                 |   197 +
 .../valid-unix_socket-relative.json                |   271 +
 .../valid-unix_socket-relative.yml                 |   213 +
 t/data/connection_string/valid-warnings.json       |    68 +
 t/data/connection_string/valid-warnings.yml        |    51 +
 t/data/gridfs/big.txt                              | 59549 ++++++++-----------
 t/data/gridfs/data.bin                             |   Bin 0 -> 1280000 bytes
 t/data/gridfs/img.png                              |   Bin 1292706 -> 0 bytes
 t/data/max_staleness/README.rst                    |    72 +
 .../ReplicaSetNoPrimary/DefaultNoMaxStaleness.json |    74 +
 .../ReplicaSetNoPrimary/DefaultNoMaxStaleness.yml  |    26 +
 .../ReplicaSetNoPrimary/Incompatible.json          |    36 +
 .../ReplicaSetNoPrimary/Incompatible.yml           |    25 +
 .../ReplicaSetNoPrimary/LastUpdateTime.json        |    88 +
 .../ReplicaSetNoPrimary/LastUpdateTime.yml         |    33 +
 .../max_staleness/ReplicaSetNoPrimary/Nearest.json |    88 +
 .../max_staleness/ReplicaSetNoPrimary/Nearest.yml  |    33 +
 .../ReplicaSetNoPrimary/Nearest2.json              |    88 +
 .../max_staleness/ReplicaSetNoPrimary/Nearest2.yml |    33 +
 .../ReplicaSetNoPrimary/NoKnownServers.json        |    20 +
 .../ReplicaSetNoPrimary/NoKnownServers.yml         |    15 +
 .../ReplicaSetNoPrimary/PrimaryPreferred.json      |    64 +
 .../ReplicaSetNoPrimary/PrimaryPreferred.yml       |    27 +
 .../ReplicaSetNoPrimary/PrimaryPreferred_tags.json |    84 +
 .../ReplicaSetNoPrimary/PrimaryPreferred_tags.yml  |    36 +
 .../ReplicaSetNoPrimary/Secondary.json             |   111 +
 .../ReplicaSetNoPrimary/Secondary.yml              |    51 +
 .../ReplicaSetNoPrimary/SecondaryPreferred.json    |    63 +
 .../ReplicaSetNoPrimary/SecondaryPreferred.yml     |    26 +
 .../SecondaryPreferred_tags.json                   |   111 +
 .../SecondaryPreferred_tags.yml                    |    51 +
 .../ReplicaSetNoPrimary/ZeroMaxStaleness.json      |    36 +
 .../ReplicaSetNoPrimary/ZeroMaxStaleness.yml       |    23 +
 .../DefaultNoMaxStaleness.json                     |    74 +
 .../DefaultNoMaxStaleness.yml                      |    26 +
 .../ReplicaSetWithPrimary/Incompatible.json        |    36 +
 .../ReplicaSetWithPrimary/Incompatible.yml         |    25 +
 .../ReplicaSetWithPrimary/LastUpdateTime.json      |    88 +
 .../ReplicaSetWithPrimary/LastUpdateTime.yml       |    35 +
 .../ReplicaSetWithPrimary/LongHeartbeat.json       |    76 +
 .../ReplicaSetWithPrimary/LongHeartbeat.yml        |    29 +
 .../ReplicaSetWithPrimary/LongHeartbeat2.json      |    37 +
 .../ReplicaSetWithPrimary/LongHeartbeat2.yml       |    25 +
 .../MaxStalenessTooSmall.json                      |    37 +
 .../ReplicaSetWithPrimary/MaxStalenessTooSmall.yml |    26 +
 .../MaxStalenessWithModePrimary.json               |    35 +
 .../MaxStalenessWithModePrimary.yml                |    23 +
 .../ReplicaSetWithPrimary/Nearest.json             |    88 +
 .../ReplicaSetWithPrimary/Nearest.yml              |    33 +
 .../ReplicaSetWithPrimary/Nearest2.json            |    88 +
 .../ReplicaSetWithPrimary/Nearest2.yml             |    33 +
 .../ReplicaSetWithPrimary/Nearest_tags.json        |    84 +
 .../ReplicaSetWithPrimary/Nearest_tags.yml         |    36 +
 .../ReplicaSetWithPrimary/PrimaryPreferred.json    |    64 +
 .../ReplicaSetWithPrimary/PrimaryPreferred.yml     |    27 +
 .../PrimaryPreferred_incompatible.json             |    36 +
 .../PrimaryPreferred_incompatible.yml              |    27 +
 .../ReplicaSetWithPrimary/SecondaryPreferred.json  |    63 +
 .../ReplicaSetWithPrimary/SecondaryPreferred.yml   |    26 +
 .../SecondaryPreferred_tags.json                   |   138 +
 .../SecondaryPreferred_tags.yml                    |    59 +
 .../SecondaryPreferred_tags2.json                  |    96 +
 .../SecondaryPreferred_tags2.yml                   |    43 +
 .../ReplicaSetWithPrimary/Secondary_tags.json      |   138 +
 .../ReplicaSetWithPrimary/Secondary_tags.yml       |    59 +
 .../ReplicaSetWithPrimary/Secondary_tags2.json     |    96 +
 .../ReplicaSetWithPrimary/Secondary_tags2.yml      |    43 +
 .../ReplicaSetWithPrimary/ZeroMaxStaleness.json    |    36 +
 .../ReplicaSetWithPrimary/ZeroMaxStaleness.yml     |    23 +
 t/data/max_staleness/Sharded/Incompatible.json     |    36 +
 t/data/max_staleness/Sharded/Incompatible.yml      |    25 +
 .../max_staleness/Sharded/SmallMaxStaleness.json   |    76 +
 t/data/max_staleness/Sharded/SmallMaxStaleness.yml |    28 +
 t/data/max_staleness/Single/Incompatible.json      |    24 +
 t/data/max_staleness/Single/Incompatible.yml       |    18 +
 t/data/max_staleness/Single/SmallMaxStaleness.json |    52 +
 t/data/max_staleness/Single/SmallMaxStaleness.yml  |    20 +
 .../max_staleness/Unknown/SmallMaxStaleness.json   |    18 +
 t/data/max_staleness/Unknown/SmallMaxStaleness.yml |    14 +
 t/database.t                                       |    35 +-
 t/deprecated/bulk.t                                |     2 +
 t/deprecated/collection.t                          |     2 +
 t/deprecated/cursor.t                              |   126 +
 t/deprecated/database.t                            |    80 +
 t/{ => deprecated}/gridfs.t                        |    28 +-
 t/deprecated/indexes.t                             |    25 +-
 t/fsync.t                                          |    32 +-
 t/gridfsbucket.t                                   |    77 +-
 t/indexview.t                                      |   104 +-
 t/lib/MongoDBTest.pm                               |    16 +-
 t/lib/TestCodecWrapper.pm                          |    22 +
 t/max_staleness_spec.t                             |   200 +
 t/oid_generation.t                                 |    73 +
 t/readpref.t                                       |    48 +-
 t/sdam_spec.t                                      |     2 +-
 t/ss_spec.t                                        |    25 +-
 t/threads/basic.t                                  |     2 +
 t/threads/cursor.t                                 |     2 +
 t/threads/oid.t                                    |     2 +
 t/types.t                                          |    30 +-
 t/unit/configuration.t                             |    48 +-
 t/unit/read_preference.t                           |    47 +-
 t/unit/uri.t                                       |   470 +-
 xt/author/circular-refs.t                          |     4 +-
 xt/author/critic.t                                 |    12 +
 xt/release/check-jira-in-changes.t                 |    12 +-
 253 files changed, 38801 insertions(+), 36388 deletions(-)
 create mode 100644 bson/bson-decimal128.c
 create mode 100644 bson/bson-decimal128.h
 create mode 100644 debian/libmongodb-perl.lintian-overrides
 delete mode 100644 debian/patches/series
 delete mode 100644 debian/patches/spelling.patch
 create mode 100644 lib/MongoDB/Op/_DropCollection.pm
 copy lib/MongoDB/Op/{_KillCursors.pm => _DropDatabase.pm} (51%)
 copy lib/MongoDB/Op/{_KillCursors.pm => _DropIndexes.pm} (50%)
 create mode 100644 lib/MongoDB/Op/_RenameCollection.pm
 copy lib/MongoDB/{Op/_KillCursors.pm => Role/_CollectionOp.pm} (61%)
 copy lib/MongoDB/Role/{_Cursor.pm => _CursorAPI.pm} (89%)
 rename lib/MongoDB/Role/{_LastError.pm => _DatabaseErrorThrower.pm} (94%)
 rename lib/MongoDB/Role/{_BSONCodec.pm => _DatabaseOp.pm} (69%)
 create mode 100644 lib/MongoDB/Role/_DeprecationWarner.pm
 rename lib/MongoDB/Role/{_WriteCommand.pm => _SingleBatchDocWrite.pm} (98%)
 rename lib/MongoDB/{Role/_Cursor.pm => _Platform.pm} (63%)
 delete mode 100644 lib/MongoDB/_Query.pm
 create mode 100644 perlcritic.rc
 create mode 100644 t/connection_string_spec.t
 create mode 100644 t/data/connection_string/README.rst
 create mode 100644 t/data/connection_string/invalid-uris.json
 create mode 100644 t/data/connection_string/invalid-uris.yml
 create mode 100644 t/data/connection_string/valid-auth.json
 create mode 100644 t/data/connection_string/valid-auth.yml
 create mode 100644 t/data/connection_string/valid-host_identifiers.json
 create mode 100644 t/data/connection_string/valid-host_identifiers.yml
 create mode 100644 t/data/connection_string/valid-options.json
 create mode 100644 t/data/connection_string/valid-options.yml
 create mode 100644 t/data/connection_string/valid-unix_socket-absolute.json
 create mode 100644 t/data/connection_string/valid-unix_socket-absolute.yml
 create mode 100644 t/data/connection_string/valid-unix_socket-relative.json
 create mode 100644 t/data/connection_string/valid-unix_socket-relative.yml
 create mode 100644 t/data/connection_string/valid-warnings.json
 create mode 100644 t/data/connection_string/valid-warnings.yml
 create mode 100644 t/data/gridfs/data.bin
 delete mode 100644 t/data/gridfs/img.png
 create mode 100644 t/data/max_staleness/README.rst
 create mode 100644 t/data/max_staleness/ReplicaSetNoPrimary/DefaultNoMaxStaleness.json
 create mode 100644 t/data/max_staleness/ReplicaSetNoPrimary/DefaultNoMaxStaleness.yml
 create mode 100644 t/data/max_staleness/ReplicaSetNoPrimary/Incompatible.json
 create mode 100644 t/data/max_staleness/ReplicaSetNoPrimary/Incompatible.yml
 create mode 100644 t/data/max_staleness/ReplicaSetNoPrimary/LastUpdateTime.json
 create mode 100644 t/data/max_staleness/ReplicaSetNoPrimary/LastUpdateTime.yml
 create mode 100644 t/data/max_staleness/ReplicaSetNoPrimary/Nearest.json
 create mode 100644 t/data/max_staleness/ReplicaSetNoPrimary/Nearest.yml
 create mode 100644 t/data/max_staleness/ReplicaSetNoPrimary/Nearest2.json
 create mode 100644 t/data/max_staleness/ReplicaSetNoPrimary/Nearest2.yml
 create mode 100644 t/data/max_staleness/ReplicaSetNoPrimary/NoKnownServers.json
 create mode 100644 t/data/max_staleness/ReplicaSetNoPrimary/NoKnownServers.yml
 create mode 100644 t/data/max_staleness/ReplicaSetNoPrimary/PrimaryPreferred.json
 create mode 100644 t/data/max_staleness/ReplicaSetNoPrimary/PrimaryPreferred.yml
 create mode 100644 t/data/max_staleness/ReplicaSetNoPrimary/PrimaryPreferred_tags.json
 create mode 100644 t/data/max_staleness/ReplicaSetNoPrimary/PrimaryPreferred_tags.yml
 create mode 100644 t/data/max_staleness/ReplicaSetNoPrimary/Secondary.json
 create mode 100644 t/data/max_staleness/ReplicaSetNoPrimary/Secondary.yml
 create mode 100644 t/data/max_staleness/ReplicaSetNoPrimary/SecondaryPreferred.json
 create mode 100644 t/data/max_staleness/ReplicaSetNoPrimary/SecondaryPreferred.yml
 create mode 100644 t/data/max_staleness/ReplicaSetNoPrimary/SecondaryPreferred_tags.json
 create mode 100644 t/data/max_staleness/ReplicaSetNoPrimary/SecondaryPreferred_tags.yml
 create mode 100644 t/data/max_staleness/ReplicaSetNoPrimary/ZeroMaxStaleness.json
 create mode 100644 t/data/max_staleness/ReplicaSetNoPrimary/ZeroMaxStaleness.yml
 create mode 100644 t/data/max_staleness/ReplicaSetWithPrimary/DefaultNoMaxStaleness.json
 create mode 100644 t/data/max_staleness/ReplicaSetWithPrimary/DefaultNoMaxStaleness.yml
 create mode 100644 t/data/max_staleness/ReplicaSetWithPrimary/Incompatible.json
 create mode 100644 t/data/max_staleness/ReplicaSetWithPrimary/Incompatible.yml
 create mode 100644 t/data/max_staleness/ReplicaSetWithPrimary/LastUpdateTime.json
 create mode 100644 t/data/max_staleness/ReplicaSetWithPrimary/LastUpdateTime.yml
 create mode 100644 t/data/max_staleness/ReplicaSetWithPrimary/LongHeartbeat.json
 create mode 100644 t/data/max_staleness/ReplicaSetWithPrimary/LongHeartbeat.yml
 create mode 100644 t/data/max_staleness/ReplicaSetWithPrimary/LongHeartbeat2.json
 create mode 100644 t/data/max_staleness/ReplicaSetWithPrimary/LongHeartbeat2.yml
 create mode 100644 t/data/max_staleness/ReplicaSetWithPrimary/MaxStalenessTooSmall.json
 create mode 100644 t/data/max_staleness/ReplicaSetWithPrimary/MaxStalenessTooSmall.yml
 create mode 100644 t/data/max_staleness/ReplicaSetWithPrimary/MaxStalenessWithModePrimary.json
 create mode 100644 t/data/max_staleness/ReplicaSetWithPrimary/MaxStalenessWithModePrimary.yml
 create mode 100644 t/data/max_staleness/ReplicaSetWithPrimary/Nearest.json
 create mode 100644 t/data/max_staleness/ReplicaSetWithPrimary/Nearest.yml
 create mode 100644 t/data/max_staleness/ReplicaSetWithPrimary/Nearest2.json
 create mode 100644 t/data/max_staleness/ReplicaSetWithPrimary/Nearest2.yml
 create mode 100644 t/data/max_staleness/ReplicaSetWithPrimary/Nearest_tags.json
 create mode 100644 t/data/max_staleness/ReplicaSetWithPrimary/Nearest_tags.yml
 create mode 100644 t/data/max_staleness/ReplicaSetWithPrimary/PrimaryPreferred.json
 create mode 100644 t/data/max_staleness/ReplicaSetWithPrimary/PrimaryPreferred.yml
 create mode 100644 t/data/max_staleness/ReplicaSetWithPrimary/PrimaryPreferred_incompatible.json
 create mode 100644 t/data/max_staleness/ReplicaSetWithPrimary/PrimaryPreferred_incompatible.yml
 create mode 100644 t/data/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred.json
 create mode 100644 t/data/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred.yml
 create mode 100644 t/data/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred_tags.json
 create mode 100644 t/data/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred_tags.yml
 create mode 100644 t/data/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred_tags2.json
 create mode 100644 t/data/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred_tags2.yml
 create mode 100644 t/data/max_staleness/ReplicaSetWithPrimary/Secondary_tags.json
 create mode 100644 t/data/max_staleness/ReplicaSetWithPrimary/Secondary_tags.yml
 create mode 100644 t/data/max_staleness/ReplicaSetWithPrimary/Secondary_tags2.json
 create mode 100644 t/data/max_staleness/ReplicaSetWithPrimary/Secondary_tags2.yml
 create mode 100644 t/data/max_staleness/ReplicaSetWithPrimary/ZeroMaxStaleness.json
 create mode 100644 t/data/max_staleness/ReplicaSetWithPrimary/ZeroMaxStaleness.yml
 create mode 100644 t/data/max_staleness/Sharded/Incompatible.json
 create mode 100644 t/data/max_staleness/Sharded/Incompatible.yml
 create mode 100644 t/data/max_staleness/Sharded/SmallMaxStaleness.json
 create mode 100644 t/data/max_staleness/Sharded/SmallMaxStaleness.yml
 create mode 100644 t/data/max_staleness/Single/Incompatible.json
 create mode 100644 t/data/max_staleness/Single/Incompatible.yml
 create mode 100644 t/data/max_staleness/Single/SmallMaxStaleness.json
 create mode 100644 t/data/max_staleness/Single/SmallMaxStaleness.yml
 create mode 100644 t/data/max_staleness/Unknown/SmallMaxStaleness.json
 create mode 100644 t/data/max_staleness/Unknown/SmallMaxStaleness.yml
 create mode 100644 t/deprecated/cursor.t
 create mode 100644 t/deprecated/database.t
 rename t/{ => deprecated}/gridfs.t (92%)
 create mode 100644 t/lib/TestCodecWrapper.pm
 create mode 100644 t/max_staleness_spec.t
 create mode 100644 t/oid_generation.t
 create mode 100644 xt/author/critic.t

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libmongodb-perl.git



More information about the Pkg-perl-cvs-commits mailing list