-
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
398 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,398 @@ | ||
2015-05-12 Jeremy Mikola <[email protected]> | ||
* Revert to more traditional error reporting in Makefile | ||
|
||
2015-05-12 Jeremy Mikola <[email protected]> | ||
* Add note that docs may require a manual gh-pages push | ||
|
||
2015-05-12 Jeremy Mikola <[email protected]> | ||
* Use Makefile error reporting for missing binaries | ||
|
||
2015-05-12 Jeremy Mikola <[email protected]> | ||
* Don't clean site/ directory on gh-pages deploy | ||
|
||
2015-05-12 Jeremy Mikola <[email protected]> | ||
* Fix trailing semicolons for some Makefile commands | ||
|
||
2015-05-12 Jeremy Mikola <[email protected]> | ||
* Consolidate building of API and book docs | ||
|
||
2015-05-12 Jeremy Mikola <[email protected]> | ||
* Exclude merges from generated release log | ||
|
||
2015-05-12 Jeremy Mikola <[email protected]> | ||
* Use dynamic release/VERSION make target | ||
|
||
2015-05-12 Jeremy Mikola <[email protected]> | ||
* Fix Makefile indentation | ||
|
||
2015-05-12 Jeremy Mikola <[email protected]> | ||
* Update docs for 0.2 | ||
|
||
2015-05-12 Jeremy Mikola <[email protected]> | ||
* Update code examples for 0.2 | ||
|
||
2015-05-12 Jeremy Mikola <[email protected]> | ||
* PHPLIB-105: Remove Collection::VERSION constant | ||
|
||
2015-05-12 Jeremy Mikola <[email protected]> | ||
* PHPLIB-83: Extend driver exceptions | ||
|
||
2015-05-12 Jeremy Mikola <[email protected]> | ||
* PHPLIB-87: Remove manual bsonSerialize() call | ||
|
||
2015-05-05 Jeremy Mikola <[email protected]> | ||
* Do not iterate on CollectionInfoIterator multiple times | ||
|
||
2015-05-05 Jeremy Mikola <[email protected]> | ||
* Bump ext-mongodb dependency to 0.6.0 | ||
|
||
2015-05-05 Jeremy Mikola <[email protected]> | ||
* Remove Faker test dependency | ||
|
||
2015-05-03 Jeremy Mikola <[email protected]> | ||
* PHPLIB-94: Functional tests for bulkWrite() and BulkWriteResult | ||
|
||
2015-05-03 Jeremy Mikola <[email protected]> | ||
* PHPLIB-103: bulkWrite() updateMany should require update operators | ||
|
||
2015-05-03 Jeremy Mikola <[email protected]> | ||
* PHPLIB-94: BulkWriteResult and collect inserted IDs in bulkWrite() | ||
|
||
2015-05-03 Jeremy Mikola <[email protected]> | ||
* InsertManyResult should require $insertedIds array | ||
|
||
2015-05-03 Jeremy Mikola <[email protected]> | ||
* UpdateResult::getUpsertedId() may return any value | ||
|
||
2015-05-03 Jeremy Mikola <[email protected]> | ||
* PHPLIB-102: Implement UpdateResult::getUpsertedCount() | ||
|
||
2015-05-03 Jeremy Mikola <[email protected]> | ||
* Revise InsertManyResult::getInsertedIds() documentation | ||
|
||
2015-05-03 Jeremy Mikola <[email protected]> | ||
* Fix iteration on operations in bulkWrite() | ||
|
||
2015-05-03 Jeremy Mikola <[email protected]> | ||
* PHPLIB-92: bulkWrite() updates should use "multi" option | ||
|
||
2015-04-30 Jeremy Mikola <[email protected]> | ||
* Note that UpdateResult::getModifiedCount() is undefined for legacy ops | ||
|
||
2015-04-30 Jeremy Mikola <[email protected]> | ||
* Fix documentation for getInsertedId(s) methods on insert results | ||
|
||
2015-04-30 Jeremy Mikola <[email protected]> | ||
* PHPLIB-89: String getters for Database and Collection classes | ||
|
||
2015-04-30 Jeremy Mikola <[email protected]> | ||
* Reduce default server selection timeout for tests | ||
|
||
2015-04-30 Jeremy Mikola <[email protected]> | ||
* PHPLIB-98: Ensure mongod service is started for all versions | ||
|
||
2015-04-30 Jeremy Mikola <[email protected]> | ||
* Do not check modifiedCount for updates on 2.4 | ||
|
||
2015-04-29 Jeremy Mikola <[email protected]> | ||
* Skip $out aggregation test for MongoDB 2.4 | ||
|
||
2015-04-29 Jeremy Mikola <[email protected]> | ||
* PHPLIB-86: Fix aggregate() useCursor default and 2.4 compatibility | ||
|
||
2015-04-29 Jeremy Mikola <[email protected]> | ||
* PHPLIB-98: Add multiple server versions to Travis CI | ||
|
||
2015-04-29 Jeremy Mikola <[email protected]> | ||
* PHPLIB-95: Massage findAndModify null results before 3.0 | ||
|
||
2015-04-29 Jeremy Mikola <[email protected]> | ||
* PHPLIB-97: Cast count() results to integers | ||
|
||
2015-04-29 Jeremy Mikola <[email protected]> | ||
* PHPLIB-96: Fix replacement/upsert test failures for 2.4 | ||
|
||
2015-04-29 Jeremy Mikola <[email protected]> | ||
* PHPLIB-58: Functional tests for CRUD spec write methods | ||
|
||
2015-04-29 Jeremy Mikola <[email protected]> | ||
* Hash test case names to avoid hitting namespace limits | ||
|
||
2015-04-29 Jeremy Mikola <[email protected]> | ||
* Clean up after passing Collection functional tests | ||
|
||
2015-04-29 Jeremy Mikola <[email protected]> | ||
* Return findAndModify result document as an array | ||
|
||
2015-04-29 Jeremy Mikola <[email protected]> | ||
* Restore Collection::_massageFindAndModifyOptions() | ||
|
||
2015-04-29 Jeremy Mikola <[email protected]> | ||
* PHPLIB-93: Insert result classes should always track IDs | ||
|
||
2015-04-29 Jeremy Mikola <[email protected]> | ||
* PHPLIB-92: Update methods should use "multi" option | ||
|
||
2015-03-17 Jeremy Mikola <[email protected]> | ||
* PHPLIB-58: Functional tests for CRUD spec read methods | ||
|
||
2015-04-28 Jeremy Mikola <[email protected]> | ||
* PHPLIB-91: Ensure count/distinct filters serialize as BSON objects | ||
|
||
2015-04-27 Jeremy Mikola <[email protected]> | ||
* Split Database and Collection functional tests | ||
|
||
2015-04-27 Jeremy Mikola <[email protected]> | ||
* Reorder methods in CollectionInfo | ||
|
||
2015-04-27 Jeremy Mikola <[email protected]> | ||
* Pedantic method declaration test should ignore inherited methods | ||
|
||
2015-04-27 Jeremy Mikola <[email protected]> | ||
* Reorder methods for reasons of pedantry | ||
|
||
2015-03-18 Jeremy Mikola <[email protected]> | ||
* Move pedantic method declaration test to its own file | ||
|
||
2015-04-26 Jeremy Mikola <[email protected]> | ||
* PHPLIB-79: Add __debugInfo() handlers for info classes | ||
|
||
2015-04-26 Jeremy Mikola <[email protected]> | ||
* PHPLIB-75: Unit tests for database, collection, and index models | ||
|
||
2015-04-26 Jeremy Mikola <[email protected]> | ||
* PHPLIB-88: Rename IndexInfo::getKeys() to getKey() | ||
|
||
2015-04-26 Jeremy Mikola <[email protected]> | ||
* PHPLIB-77: Use namespaced exceptions | ||
|
||
2015-04-26 Jeremy Mikola <[email protected]> | ||
* PHPLIB-63: Fix index creation for legacy servers | ||
|
||
2015-04-24 Jeremy Mikola <[email protected]> | ||
* Bump ext-mongodb dependency to 0.5.1 | ||
|
||
2015-04-24 Jeremy Mikola <[email protected]> | ||
* Use wire protocol version constants for feature detection | ||
|
||
2015-04-24 Jeremy Mikola <[email protected]> | ||
* PHPLIB-63: Refactor to avoid else condition and void methods | ||
|
||
2015-04-24 Jeremy Mikola <[email protected]> | ||
* PHPLIB-63: Test custom name for index creation | ||
|
||
2015-04-24 Jeremy Mikola <[email protected]> | ||
* PHPLIB-69: Do not allow empty index name for dropIndex() | ||
|
||
2015-04-24 Jeremy Mikola <[email protected]> | ||
* PHPLIB-75: Use package BadMethodCallException for IndexInfo | ||
|
||
2015-04-24 Jeremy Mikola <[email protected]> | ||
* PHPLIB-63: Empty input to createIndexes() is a NOP | ||
|
||
2015-04-24 Jeremy Mikola <[email protected]> | ||
* PHPLIB-63: Use model class to validate index creation args | ||
|
||
2015-04-24 Jeremy Mikola <[email protected]> | ||
* PHPLIB-46, PHPLIB-63, PHPLIB-69: Functional tests for index methods | ||
|
||
2015-04-24 Jeremy Mikola <[email protected]> | ||
* PHPLIB-63: Index creation methods | ||
|
||
2015-04-24 Jeremy Mikola <[email protected]> | ||
* PHPLIB-46: Index enumeration methods | ||
|
||
2015-04-22 Jeremy Mikola <[email protected]> | ||
* PHPLIB-46: Index info and corresponding iterator class | ||
|
||
2015-04-22 Jeremy Mikola <[email protected]> | ||
* PHPLIB-75: Refactor model classes and add class-level docs | ||
|
||
2015-04-22 Jeremy Mikola <[email protected]> | ||
* PHPLIB-70: Add class-level docs to model iterators | ||
|
||
2015-04-22 Jeremy Mikola <[email protected]> | ||
* Use type map for database and collection enumeration | ||
|
||
2015-04-22 Jeremy Mikola <[email protected]> | ||
* Fix word wrap in documentation | ||
|
||
2015-04-21 Jeremy Mikola <[email protected]> | ||
* PHPLIB-69: Index drop methods | ||
|
||
2015-04-13 Jeremy Mikola <[email protected]> | ||
* Link to interface docs from implementations | ||
|
||
2015-04-13 Jeremy Mikola <[email protected]> | ||
* PHPLIB-72: Use model class when listing databases | ||
|
||
2015-04-13 Jeremy Mikola <[email protected]> | ||
* Link to canonical documentation URL | ||
|
||
2015-04-10 Jeremy Mikola <[email protected]> | ||
* Don't be quiet when compiling the extension | ||
|
||
2015-04-10 Jeremy Mikola <[email protected]> | ||
* Install latest PECL extension when testing | ||
|
||
2015-04-10 Jeremy Mikola <[email protected]> | ||
* PHPLIB-45: Test listCollections with filter option | ||
|
||
2015-04-10 Jeremy Mikola <[email protected]> | ||
* PHPLIB-45: Support stdClass listCollections() filter option | ||
|
||
2015-04-10 Jeremy Mikola <[email protected]> | ||
* PHPLIB-45: List collections according to wire protocol version | ||
|
||
2015-04-10 Jeremy Mikola <[email protected]> | ||
* PHPLIB-45: Construct CollectionInfoLegacyIterator from Traversable | ||
|
||
2015-04-06 Jeremy Mikola <[email protected]> | ||
* Allow any extension version for development | ||
|
||
2015-04-06 Jeremy Mikola <[email protected]> | ||
* PHPLIB-64: Collection creation method | ||
|
||
2015-04-06 Jeremy Mikola <[email protected]> | ||
* Handle new Cursor and toArray() API in extension | ||
|
||
2015-03-27 Jeremy Mikola <[email protected]> | ||
* PHPLIB-45: Collection enumeration methods | ||
|
||
2015-03-27 Jeremy Mikola <[email protected]> | ||
* Setup Database object in DatabaseFunctionalTest | ||
|
||
2015-03-26 Jeremy Mikola <[email protected]> | ||
* PHPLIB-71: Collection drop methods | ||
|
||
2015-03-26 Jeremy Mikola <[email protected]> | ||
* PHPLIB-72: Database enumeration method | ||
|
||
2015-03-25 Jeremy Mikola <[email protected]> | ||
* Restructure CollectionTest and fixture generation functions | ||
|
||
2015-03-25 Jeremy Mikola <[email protected]> | ||
* Use 127.0.0.1 instead of localhost for default URI | ||
|
||
2015-03-25 Jeremy Mikola <[email protected]> | ||
* Dump server buildInfo before running tests on Travis CI | ||
|
||
2015-03-23 Jeremy Mikola <[email protected]> | ||
* Cast expected string arguments | ||
|
||
2015-03-23 Jeremy Mikola <[email protected]> | ||
* PHPLIB-65: Database drop methods | ||
|
||
2015-03-23 Jeremy Mikola <[email protected]> | ||
* PHPLIB-73: Inherit default write concern and read preferences | ||
|
||
2015-03-17 Jeremy Mikola <[email protected]> | ||
* Create base classes for unit and functional tests | ||
|
||
2015-03-17 Jeremy Mikola <[email protected]> | ||
* Create test bootstrap for autoloading | ||
|
||
2015-04-10 Jeremy Mikola <[email protected]> | ||
* Link to the HHVM driver alongside PHP | ||
|
||
2015-03-23 Jeremy Mikola <[email protected]> | ||
* Remove unsupported options in ApiGen config | ||
|
||
2015-03-23 Jeremy Mikola <[email protected]> | ||
* Rename version variable in Makefile | ||
|
||
2015-03-23 Jeremy Mikola <[email protected]> | ||
* Fix typos in Makefile | ||
|
||
2015-03-23 Jeremy Mikola <[email protected]> | ||
* Fix database name in example docs | ||
|
||
2015-03-23 Jeremy Mikola <[email protected]> | ||
* Update documentation for PECL mongodb-0.2.0 | ||
|
||
2015-03-23 Jeremy Mikola <[email protected]> | ||
* Fix function array dereferencing syntax for PHP 5.3 | ||
|
||
2015-03-23 Jeremy Mikola <[email protected]> | ||
* PHPLIB-56: Travis CI configuration | ||
|
||
2015-03-23 Jeremy Mikola <[email protected]> | ||
* Update readme and composer.json for PECL mongodb-0.2.0 | ||
|
||
2015-03-17 Jeremy Mikola <[email protected]> | ||
* PHPLIB-45: Prototype for collection enumeration method | ||
|
||
2015-03-17 Jeremy Mikola <[email protected]> | ||
* PHPLIB-46: Prototypes for index enumeration method | ||
|
||
2015-03-17 Jeremy Mikola <[email protected]> | ||
* Declare Collection methods alphabetically by visibility | ||
|
||
2015-03-17 Jeremy Mikola <[email protected]> | ||
* PHPLIB-71: Prototypes for collection drop methods | ||
|
||
2015-03-17 Jeremy Mikola <[email protected]> | ||
* PHPLIB-65: Prototypes for database drop methods | ||
|
||
2015-03-17 Jeremy Mikola <[email protected]> | ||
* PHPLIB-64: Prototype for collection create method | ||
|
||
2015-03-17 Jeremy Mikola <[email protected]> | ||
* PHPLIB-63: Prototypes for index creation methods | ||
|
||
2015-03-17 Jeremy Mikola <[email protected]> | ||
* PHPLIB-69: Prototypes for index drop methods | ||
|
||
2015-03-16 Jeremy Mikola <[email protected]> | ||
* PHPLIB-59: Implement insertMany() and InsertManyResult | ||
|
||
2015-03-16 Jeremy Mikola <[email protected]> | ||
* PHPLIB-60: Create result classes for CRUD methods | ||
|
||
2015-03-16 Hannes Magnusson <[email protected]> | ||
* Bump phongo version and link to jira | ||
|
||
2015-03-12 Hannes Magnusson <[email protected]> | ||
* Add MongoClient and Database objects | ||
|
||
2015-03-12 Hannes Magnusson <[email protected]> | ||
* missing argument doc | ||
|
||
2015-03-12 Hannes Magnusson <[email protected]> | ||
* PHPLIB-62: Its called BulkWrite now | ||
|
||
2015-02-19 Jeremy Mikola <[email protected]> | ||
* PHPLIB-54: Update references to driver classes | ||
|
||
2015-02-19 Jeremy Mikola <[email protected]> | ||
* PHPLIB-44: php-cs-fixer fix src/ --level=psr2 | ||
|
||
2014-12-19 Jeremy Mikola <[email protected]> | ||
* Rename package to mongodb/mongodb and update metadata | ||
|
||
2014-12-19 Jeremy Mikola <[email protected]> | ||
* Add @jmikola and @derickr to Composer author list | ||
|
||
2014-12-19 Jeremy Mikola <[email protected]> | ||
* Add @jmikola to author list | ||
|
||
2014-12-19 Jeremy Mikola <[email protected]> | ||
* Specify Apache 2 license | ||
|
||
2014-12-12 Jeremy Mikola <[email protected]> | ||
* Reformat composer.json | ||
|
||
2014-12-12 Jeremy Mikola <[email protected]> | ||
* Fix package name in composer.json | ||
|
||
2014-12-12 Hannes Magnusson <[email protected]> | ||
* Update links after moving the repo from bjori to 10gen-labs | ||
|
||
2014-12-12 Hannes Magnusson <[email protected]> | ||
* README updates | ||
|
||
2014-12-11 Hannes Magnusson <[email protected]> | ||
* Improve steps needed | ||
|
||
2014-12-11 Hannes Magnusson <[email protected]> | ||
* Add 0.1.0 release notes |