Skip to content
This repository has been archived by the owner on Dec 22, 2021. It is now read-only.

Commit

Permalink
Commit Changes and bump $VERSION
Browse files Browse the repository at this point in the history
  • Loading branch information
xdg committed Aug 13, 2020
1 parent 6d71ddf commit 6ea528c
Show file tree
Hide file tree
Showing 92 changed files with 93 additions and 91 deletions.
2 changes: 2 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

{{ $NEXT }}

v2.2.2 2020-08-13 11:04:29-04:00 America/New_York

[!!! END OF LIFE NOTICE !!!]

- As of August 13, 2020, the MongoDB Perl driver has reached end of life
Expand Down
2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ my %WriteMakefileArgs = (
"lib" => 0,
"utf8" => 0
},
"VERSION" => "v2.2.2",
"VERSION" => "v2.2.3",
"test" => {
"TESTS" => "t/*.t t/deprecated/*.t t/examples/*.t t/unit/*.t"
}
Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB.pm
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ package MongoDB;
# ABSTRACT: Official MongoDB Driver for Perl (EOL)

use version;
our $VERSION = 'v2.2.2';
our $VERSION = 'v2.2.3';

# regexp_pattern was unavailable before 5.10, had to be exported to load the
# function implementation on 5.10, and was automatically available in 5.10.1
Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/BSON/Binary.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package MongoDB::BSON::Binary;
# ABSTRACT: (DEPRECATED) MongoDB binary type

use version;
our $VERSION = 'v2.2.2';
our $VERSION = 'v2.2.3';

use Moo;
extends 'BSON::Bytes';
Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/BSON/Regexp.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package MongoDB::BSON::Regexp;
# ABSTRACT: (DEPRECATED) Regular expression type

use version;
our $VERSION = 'v2.2.2';
our $VERSION = 'v2.2.3';

use Moo;
extends 'BSON::Regex';
Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/BulkWrite.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package MongoDB::BulkWrite;
# ABSTRACT: MongoDB bulk write interface

use version;
our $VERSION = 'v2.2.2';
our $VERSION = 'v2.2.3';

use MongoDB::Error;
use MongoDB::Op::_BulkWrite;
Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/BulkWriteResult.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package MongoDB::BulkWriteResult;
# ABSTRACT: MongoDB bulk write result document

use version;
our $VERSION = 'v2.2.2';
our $VERSION = 'v2.2.3';

# empty superclass for backcompatibility; add a variable to the
# package namespace so Perl thinks it's a real package
Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/BulkWriteView.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package MongoDB::BulkWriteView;
# ABSTRACT: Bulk write operations against a query document

use version;
our $VERSION = 'v2.2.2';
our $VERSION = 'v2.2.3';

use Moo;

Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/ChangeStream.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package MongoDB::ChangeStream;
# ABSTRACT: A stream providing update information for collections.

use version;
our $VERSION = 'v2.2.2';
our $VERSION = 'v2.2.3';

use Moo;
use MongoDB::Cursor;
Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/ClientSession.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package MongoDB::ClientSession;
# ABSTRACT: MongoDB session and transaction management

use version;
our $VERSION = 'v2.2.2';
our $VERSION = 'v2.2.3';

use MongoDB::Error 'EXCEEDED_TIME_LIMIT';

Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/Code.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package MongoDB::Code;
# ABSTRACT: (DEPRECATED) JavaScript code type

use version;
our $VERSION = 'v2.2.2';
our $VERSION = 'v2.2.3';

use Moo;
extends 'BSON::Code';
Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/Collection.pm
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ package MongoDB::Collection;
# ABSTRACT: A MongoDB Collection

use version;
our $VERSION = 'v2.2.2';
our $VERSION = 'v2.2.3';

use MongoDB::ChangeStream;
use MongoDB::Error;
Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/CommandResult.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package MongoDB::CommandResult;
# ABSTRACT: MongoDB generic command result document

use version;
our $VERSION = 'v2.2.2';
our $VERSION = 'v2.2.3';

use Moo;
use MongoDB::Error;
Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/Cursor.pm
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ package MongoDB::Cursor;
# ABSTRACT: A lazy cursor for Mongo query results

use version;
our $VERSION = 'v2.2.2';
our $VERSION = 'v2.2.3';

use Moo;
use MongoDB::Error;
Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/DBRef.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package MongoDB::DBRef;
# ABSTRACT: (DEPRECATED) A MongoDB database reference type

use version;
our $VERSION = 'v2.2.2';
our $VERSION = 'v2.2.3';

use Moo;
extends 'BSON::DBRef';
Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/Database.pm
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ package MongoDB::Database;
# ABSTRACT: A MongoDB Database

use version;
our $VERSION = 'v2.2.2';
our $VERSION = 'v2.2.3';

use MongoDB::CommandResult;
use MongoDB::Error;
Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/DeleteResult.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package MongoDB::DeleteResult;
# ABSTRACT: MongoDB deletion result object

use version;
our $VERSION = 'v2.2.2';
our $VERSION = 'v2.2.3';

use Moo;
use MongoDB::_Constants;
Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/Error.pm
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ package MongoDB::Error;

use version;

our $VERSION = 'v2.2.2';
our $VERSION = 'v2.2.3';

use Moo;
use Carp;
Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/GridFSBucket.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package MongoDB::GridFSBucket;
# ABSTRACT: A file storage abstraction

use version;
our $VERSION = 'v2.2.2';
our $VERSION = 'v2.2.3';

use Moo;
use MongoDB::GridFSBucket::DownloadStream;
Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/GridFSBucket/DownloadStream.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package MongoDB::GridFSBucket::DownloadStream;
# ABSTRACT: File handle abstraction for downloading

use version;
our $VERSION = 'v2.2.2';
our $VERSION = 'v2.2.3';

use Moo;
use Types::Standard qw(
Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/GridFSBucket/UploadStream.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package MongoDB::GridFSBucket::UploadStream;
# ABSTRACT: File handle abstraction for uploading

use version;
our $VERSION = 'v2.2.2';
our $VERSION = 'v2.2.3';

use Moo;
use BSON::Bytes;
Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/IndexView.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package MongoDB::IndexView;
# ABSTRACT: Index management for a collection

use version;
our $VERSION = 'v2.2.2';
our $VERSION = 'v2.2.3';

use Moo;
use MongoDB::Error;
Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/InsertManyResult.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package MongoDB::InsertManyResult;
# ABSTRACT: MongoDB single insert result object

use version;
our $VERSION = 'v2.2.2';
our $VERSION = 'v2.2.3';

use Moo;
use MongoDB::_Constants;
Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/InsertOneResult.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package MongoDB::InsertOneResult;
# ABSTRACT: MongoDB single insert result object

use version;
our $VERSION = 'v2.2.2';
our $VERSION = 'v2.2.3';

use Moo;
use namespace::clean;
Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/MongoClient.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package MongoDB::MongoClient;
# ABSTRACT: A connection to a MongoDB server or multi-server deployment

use version;
our $VERSION = 'v2.2.2';
our $VERSION = 'v2.2.3';

use Moo;
use MongoDB::ClientSession;
Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/OID.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package MongoDB::OID;
# ABSTRACT: (DEPRECATED) A Mongo Object ID

use version;
our $VERSION = 'v2.2.2';
our $VERSION = 'v2.2.3';


use Moo;
Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/Op/_Aggregate.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package MongoDB::Op::_Aggregate;
# Encapsulate aggregate operation; return MongoDB::QueryResult

use version;
our $VERSION = 'v2.2.2';
our $VERSION = 'v2.2.3';

use Moo;

Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/Op/_BatchInsert.pm
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ package MongoDB::Op::_BatchInsert;
# MongoDB::InsertManyResult

use version;
our $VERSION = 'v2.2.2';
our $VERSION = 'v2.2.3';

use Moo;

Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/Op/_BulkWrite.pm
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ package MongoDB::Op::_BulkWrite;
# MongoDB::BulkWriteResult object

use version;
our $VERSION = 'v2.2.2';
our $VERSION = 'v2.2.3';

use Moo;

Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/Op/_ChangeStream.pm
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ package MongoDB::Op::_ChangeStream;
# and operationTime if supported

use version;
our $VERSION = 'v2.2.2';
our $VERSION = 'v2.2.3';

use Moo;

Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/Op/_Command.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package MongoDB::Op::_Command;
# Encapsulate running a command and returning a MongoDB::CommandResult

use version;
our $VERSION = 'v2.2.2';
our $VERSION = 'v2.2.3';

use Moo;

Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/Op/_Count.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package MongoDB::Op::_Count;
# Encapsulate code path for count commands

use version;
our $VERSION = 'v2.2.2';
our $VERSION = 'v2.2.3';

use Moo;

Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/Op/_CreateIndexes.pm
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ package MongoDB::Op::_CreateIndexes;
# or a MongoDB::InsertManyResult, depending on the server version

use version;
our $VERSION = 'v2.2.2';
our $VERSION = 'v2.2.3';

use Moo;

Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/Op/_Delete.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package MongoDB::Op::_Delete;
# Encapsulate a delete operation; returns a MongoDB::DeleteResult

use version;
our $VERSION = 'v2.2.2';
our $VERSION = 'v2.2.3';

use Moo;

Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/Op/_Distinct.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package MongoDB::Op::_Distinct;
# Encapsulate distinct operation; return MongoDB::QueryResult

use version;
our $VERSION = 'v2.2.2';
our $VERSION = 'v2.2.3';

use Moo;

Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/Op/_DropCollection.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package MongoDB::Op::_DropCollection;
# Implements a collection drop; returns a MongoDB::CommandResult

use version;
our $VERSION = 'v2.2.2';
our $VERSION = 'v2.2.3';

use Moo;

Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/Op/_DropDatabase.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package MongoDB::Op::_DropDatabase;
# Implements a database drop; returns a MongoDB::CommandResult

use version;
our $VERSION = 'v2.2.2';
our $VERSION = 'v2.2.3';

use Moo;

Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/Op/_DropIndexes.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package MongoDB::Op::_DropIndexes;
# Implements index drops; returns a MongoDB::CommandResult

use version;
our $VERSION = 'v2.2.2';
our $VERSION = 'v2.2.3';

use Moo;

Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/Op/_EndTxn.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package MongoDB::Op::_EndTxn;
# Encapsulate code path for end transaction commands

use version;
our $VERSION = 'v2.2.2';
our $VERSION = 'v2.2.3';

use Moo;

Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/Op/_Explain.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package MongoDB::Op::_Explain;
# Encapsulate code path for explain commands/queries

use version;
our $VERSION = 'v2.2.2';
our $VERSION = 'v2.2.3';

use Moo;

Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/Op/_FSyncUnlock.pm
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ package MongoDB::Op::_FSyncUnlock;
# names

use version;
our $VERSION = 'v2.2.2';
our $VERSION = 'v2.2.3';

use Moo;

Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/Op/_FindAndDelete.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package MongoDB::Op::_FindAndDelete;
# Encapsulate find_and_delete operation; atomically delete and return doc

use version;
our $VERSION = 'v2.2.2';
our $VERSION = 'v2.2.3';

use Moo;

Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/Op/_FindAndUpdate.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package MongoDB::Op::_FindAndUpdate;
# Encapsulate find_and_update operation; atomically update and return doc

use version;
our $VERSION = 'v2.2.2';
our $VERSION = 'v2.2.3';

use Moo;

Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/Op/_GetMore.pm
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ package MongoDB::Op::_GetMore;
# (after inflation from BSON)

use version;
our $VERSION = 'v2.2.2';
our $VERSION = 'v2.2.3';

use Moo;

Expand Down
Loading

0 comments on commit 6ea528c

Please sign in to comment.