-
Notifications
You must be signed in to change notification settings - Fork 263
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
224 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,224 @@ | ||
2015-10-06 Jeremy Mikola <[email protected]> | ||
* Use "autoload-dev" for loading test classes | ||
|
||
2015-09-28 Jeremy Mikola <[email protected]> | ||
* Replace magic string with a private constant and comments | ||
|
||
2015-09-28 Jeremy Mikola <[email protected]> | ||
* ListCollections functional tests | ||
|
||
2015-09-28 Jeremy Mikola <[email protected]> | ||
* PHPLIB-123: Do not throw when listing indexes on nonexistent collection | ||
|
||
2015-09-28 Jeremy Mikola <[email protected]> | ||
* PHPLIB-107: Fix return statement when dropping nonexistent collection | ||
|
||
2015-09-27 Jeremy Mikola <[email protected]> | ||
* DropDatabase functional tests | ||
|
||
2015-09-27 Jeremy Mikola <[email protected]> | ||
* PHPLIB-107: Do not throw when dropping nonexistent collection | ||
|
||
2015-09-24 Jeremy Mikola <[email protected]> | ||
* Revise docs and exception message for assertDatabaseExists() | ||
|
||
2015-09-14 Jeremy Mikola <[email protected]> | ||
* Trust that Collection's writeConcern is always set | ||
|
||
2015-09-14 Jeremy Mikola <[email protected]> | ||
* Relax writeConcern option checks in operation classes | ||
|
||
2015-09-14 Jeremy Mikola <[email protected]> | ||
* PHPLIB-111: Ensure read ops use appropriate read preference | ||
|
||
2015-09-14 Jeremy Mikola <[email protected]> | ||
* PHPLIB-73: Database and Collection can inherit RP/WC from Manager | ||
|
||
2015-09-12 Jeremy Mikola <[email protected]> | ||
* Bump extension version to beta | ||
|
||
2015-09-24 Jeremy Mikola <[email protected]> | ||
* PHPLIB-120: Require PHP 5.4+ | ||
|
||
2015-09-18 Daniel Kozak <[email protected]> | ||
* fix doc url | ||
|
||
2015-09-03 Jeremy Mikola <[email protected]> | ||
* Validate Database $databaseName and test getters | ||
|
||
2015-09-03 Jeremy Mikola <[email protected]> | ||
* Validate Collection $namespace and test getters | ||
|
||
2015-09-03 Jeremy Mikola <[email protected]> | ||
* Rename Collection class properties | ||
|
||
2015-09-03 Jeremy Mikola <[email protected]> | ||
* Fix type documentation for Count and Distinct $filter arg | ||
|
||
2015-09-03 Jeremy Mikola <[email protected]> | ||
* Disable xdebug extension on Travis | ||
|
||
2015-09-03 Jeremy Mikola <[email protected]> | ||
* Unit tests for Find operation | ||
|
||
2015-09-03 Jeremy Mikola <[email protected]> | ||
* Unit tests for Aggregate operation | ||
|
||
2015-09-03 Jeremy Mikola <[email protected]> | ||
* Unit tests for Distinct operation and allow array/object $filter | ||
|
||
2015-09-03 Jeremy Mikola <[email protected]> | ||
* Unit tests for Count operation and allow array/object $filter | ||
|
||
2015-09-03 Jeremy Mikola <[email protected]> | ||
* Validate Aggregation $pipeline before $options | ||
|
||
2015-09-03 Jeremy Mikola <[email protected]> | ||
* Allow array/object for Collection::find() and findOne() $filter | ||
|
||
2015-09-03 Jeremy Mikola <[email protected]> | ||
* Test type checking for BulkWrite constructor options | ||
|
||
2015-09-03 Jeremy Mikola <[email protected]> | ||
* Refactor unit tests for write operations | ||
|
||
2015-09-02 Jeremy Mikola <[email protected]> | ||
* Rely on default type map conversion | ||
|
||
2015-09-02 Jeremy Mikola <[email protected]> | ||
* PHPLIB-73: Database and Collection should inherit Manager's WC and RP | ||
|
||
2015-08-30 Jeremy Mikola <[email protected]> | ||
* Print core dumps for segfaults on Travis | ||
|
||
2015-08-31 Jeremy Mikola <[email protected]> | ||
* Remove copypasta in CreateCollection | ||
|
||
2015-08-31 Jeremy Mikola <[email protected]> | ||
* PHPLIB-109: Extract BulkWrite operation class | ||
|
||
2015-08-27 Jeremy Mikola <[email protected]> | ||
* PHPLIB-109: Extract ReplaceOne, UpdateOne, and UpdateMany operation classes | ||
|
||
2015-08-27 Jeremy Mikola <[email protected]> | ||
* PHPLIB-109: Extract DeleteOne and DeleteMany operation classes | ||
|
||
2015-08-27 Jeremy Mikola <[email protected]> | ||
* PHPLIB-109: Extract InsertOne and InsertMany operation classes | ||
|
||
2015-08-27 Jeremy Mikola <[email protected]> | ||
* Refer to findAndModify docs in related Collection methods | ||
|
||
2015-07-27 Derick Rethans <[email protected]> | ||
* PHPC-118: Expect documents as objects (new default type) | ||
|
||
2015-07-27 Derick Rethans <[email protected]> | ||
* PHPLIB-118: Specify "root" option in typemap, as it's separate from "document" | ||
|
||
2015-08-26 Jeremy Mikola <[email protected]> | ||
* Require ext-mongodb ^1.0.0 | ||
|
||
2015-08-26 Jeremy Mikola <[email protected]> | ||
* Bump dev-master to 0.3.x-dev | ||
|
||
2015-06-18 Jeremy Mikola <[email protected]> | ||
* PHPLIB-110: Extract Find and FindOne operation classes | ||
|
||
2015-06-30 Derick Rethans <[email protected]> | ||
* PHPLIB-108: Use MongoDB\BSON namespace prefix | ||
|
||
2015-06-19 Jeremy Mikola <[email protected]> | ||
* Make expected document assertions more flexible | ||
|
||
2015-06-19 Jeremy Mikola <[email protected]> | ||
* Ensure operations return documents as objects by default | ||
|
||
2015-06-18 Derick Rethans <[email protected]> | ||
* Because the typemap says 'document as array', we now need to change the return value with a cast to 'object' | ||
|
||
2015-06-18 Derick Rethans <[email protected]> | ||
* Compare all arrays of documents by setting the typemap for documents to 'array'. | ||
|
||
2015-06-18 Derick Rethans <[email protected]> | ||
* Use type map to force arrays instead of objects. | ||
|
||
2015-06-17 Jeremy Mikola <[email protected]> | ||
* Aggregate should check server support before returning a cursor | ||
|
||
2015-06-17 Jeremy Mikola <[email protected]> | ||
* Relax assertion in AggregateFunctionalTest | ||
|
||
2015-06-17 Jeremy Mikola <[email protected]> | ||
* Older servers may return count "n" as a float | ||
|
||
2015-06-17 Jeremy Mikola <[email protected]> | ||
* Don't assume document PHP type mapping in FunctionalTestCase | ||
|
||
2015-06-16 Jeremy Mikola <[email protected]> | ||
* Remove unused Collection constants and methods | ||
|
||
2015-06-16 Jeremy Mikola <[email protected]> | ||
* FeatureDetection utility class is obsolete | ||
|
||
2015-06-16 Jeremy Mikola <[email protected]> | ||
* assertCommandSucceeded() now accepts a result document | ||
|
||
2015-06-16 Jeremy Mikola <[email protected]> | ||
* Extract DropIndexes operation class | ||
|
||
2015-06-16 Jeremy Mikola <[email protected]> | ||
* Extract Database::createCollection() to an operation class | ||
|
||
2015-06-16 Jeremy Mikola <[email protected]> | ||
* Extra DropCollection operation class | ||
|
||
2015-06-16 Jeremy Mikola <[email protected]> | ||
* Extract DropDatabase operation class | ||
|
||
2015-06-16 Jeremy Mikola <[email protected]> | ||
* Extract Collection::listIndexes() to an operation class | ||
|
||
2015-06-16 Jeremy Mikola <[email protected]> | ||
* Extract Database::listCollections() to an operation class | ||
|
||
2015-06-16 Jeremy Mikola <[email protected]> | ||
* Extract Client::listDatabases() to an operation class | ||
|
||
2015-06-14 Jeremy Mikola <[email protected]> | ||
* Replace private methods with generate_index_name() function | ||
|
||
2015-06-14 Jeremy Mikola <[email protected]> | ||
* Return documents as objects from Collection findAndModify methods | ||
|
||
2015-06-14 Jeremy Mikola <[email protected]> | ||
* Extract Collection findAndModify methods to operation classes | ||
|
||
2015-06-11 Jeremy Mikola <[email protected]> | ||
* Extract Collection::count() to an operation class | ||
|
||
2015-06-10 Jeremy Mikola <[email protected]> | ||
* Extract Collection::createIndexes() to an operation class | ||
|
||
2015-06-10 Jeremy Mikola <[email protected]> | ||
* Extract Collection::distinct() to an operation class | ||
|
||
2015-06-10 Jeremy Mikola <[email protected]> | ||
* Extract Collection::aggregate() to an operation class | ||
|
||
2015-06-10 Jeremy Mikola <[email protected]> | ||
* Executable interface for operations | ||
|
||
2015-06-14 Jeremy Mikola <[email protected]> | ||
* Create functions.php file for utility functions | ||
|
||
2015-05-06 Jeremy Mikola <[email protected]> | ||
* Split UnexpectedTypeException for logic and runtime errors | ||
|
||
2015-05-14 Sergey <[email protected]> | ||
* Update data.md | ||
|
||
2015-05-12 Jeremy Mikola <[email protected]> | ||
* Reminder to push current branch (not just tags) for release | ||
|
||
2015-05-12 Jeremy Mikola <[email protected]> | ||
* Add 0.2.0 release notes |