Skip to content

Commit 0c303c5

Browse files
committed
Add link formatting to 1.1 upgrade document
1 parent 4476ae3 commit 0c303c5

File tree

1 file changed

+30
-30
lines changed

1 file changed

+30
-30
lines changed

UPGRADE-1.1.md

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -3,40 +3,40 @@ UPGRADE from 1.0 to 1.1
33

44
Pull requests completed for the 1.1.0 release:
55

6-
* #92: Add get/setReadPreference() methods on core classes
7-
* #97: Implement `Collection::aggregate()` helper
8-
* #103: Support array argument in `Builder::select()` and `exclude()`
9-
* #105: Internal cursor improvements for hint, sort, read preferences, and recreation
6+
* [#92](https://github.com/doctrine/mongodb/pull/92): Add get/setReadPreference() methods on core classes
7+
* [#97](https://github.com/doctrine/mongodb/pull/97): Implement `Collection::aggregate()` helper
8+
* [#103](https://github.com/doctrine/mongodb/pull/103): Support array argument in `Builder::select()` and `exclude()`
9+
* [#105](https://github.com/doctrine/mongodb/pull/105): Internal cursor improvements for hint, sort, read preferences, and recreation
1010
* `Cursor::hint()` and `sort()` should overwrite previous values
1111
* Integrate `setReadPreference()` with `recreate()` and make it chainable
12-
* #106: Events refactoring and support for modifying data in EventArgs
12+
* [#106](https://github.com/doctrine/mongodb/pull/106): Events refactoring and support for modifying data in EventArgs
1313
* Support MongoDB::createCollection() options array (driver 1.4+)
1414
* Introduce MutableEventArgs object for post-event listeners
15-
* #107: Adding $nor query operator for Builder and Expr
16-
* #118: Documentation cleanup
17-
* #109: Support GeoJSON and 2dsphere queries
15+
* [#107](https://github.com/doctrine/mongodb/pull/107): Adding $nor query operator for Builder and Expr
16+
* [#118](https://github.com/doctrine/mongodb/pull/118): Documentation cleanup
17+
* [#109](https://github.com/doctrine/mongodb/pull/109): Support GeoJSON and 2dsphere queries
1818
* Rename `Query::TYPE_GEO_LOCATION` to `TYPE_GEO_NEAR`
1919
* Query builder and expression methods for 2dsphere geo-spatial operators
2020
* Integration with [GeoJSON](http://github.com/jmikola/geojson) library
21-
* #121: Reorder methods alphabetically
22-
* #123: ArrayIterator improvements
21+
* [#121](https://github.com/doctrine/mongodb/pull/121): Reorder methods alphabetically
22+
* [#123](https://github.com/doctrine/mongodb/pull/123): ArrayIterator improvements
2323
* Allow `offsetSet()` to append values
2424
* Fix `valid()` return value if an array element is `false`
25-
* #124: Deprecated passing scalar $query argument to `Collection::update()`
26-
* #122: Command method refactoring
25+
* [#124](https://github.com/doctrine/mongodb/pull/124): Deprecated passing scalar $query argument to `Collection::update()`
26+
* [#122](https://github.com/doctrine/mongodb/pull/122): Command method refactoring
2727
* Command methods now throw ResultException on error
2828
* `group()` now returns an ArrayIterator instead of the raw command response
2929
* Ensure all `mapReduce()` options are prepared as MongoCode objects (where applicable)
3030
* Handle external database output strategy for `mapReduce()`
31-
* #126: DBRef database/collection method improvements
31+
* [#126](https://github.com/doctrine/mongodb/pull/126): DBRef database/collection method improvements
3232
* `createDBRef()` should not use array type hinting (arg can be a document or an ID)
3333
* `createDBRef()` should not dispatch events, nor should it be logged
3434
* Add event dispatching to `Database::getDBRef()` (Collection already had this)
35-
* #127: Improve events/logging for Database methods
35+
* [#127](https://github.com/doctrine/mongodb/pull/127): Improve events/logging for Database methods
3636
* Fixed post-event dispatching for `getGridFS()` and `createCollection()`
3737
* Added tests for Database event dispatching
3838
* Fixed logging for `createCollection()` and make LoggableDatabase's API consistent with the base class
39-
* #128: Query builder improvements
39+
* [#128](https://github.com/doctrine/mongodb/pull/128): Query builder improvements
4040
* Do not filter out falsey values in Query/Builder `debug()` methods
4141
* Support values and expressions for $pull in query builder
4242
* Remove recursive merging in `Expr::addManyToSet()`
@@ -55,25 +55,25 @@ Pull requests completed for the 1.1.0 release:
5555
* Add array type-hint to `Builder::all()` and `Expr::all()`
5656
* `Query::getIterator()` should not execute if an exception is guaranteed
5757
* Deprecate `Query::iterate()` alias in favor of `getIterator()`
58-
* #130: Add $rename update operator for Builder and Expr
59-
* #131: Remove $cmd args/properties and deprecate `mongoCmd` option
60-
* #132: Make full command result accessible in ArrayIterator
61-
* #140: Add `initialize()` calls in Connection methods to avoid use of null objects
62-
* #139: `Builder::sort()` should default to ascending order
63-
* #143: Query builder read prefs and wrap driver classes directly
58+
* [#130](https://github.com/doctrine/mongodb/pull/130): Add $rename update operator for Builder and Expr
59+
* [#131](https://github.com/doctrine/mongodb/pull/131): Remove $cmd args/properties and deprecate `mongoCmd` option
60+
* [#132](https://github.com/doctrine/mongodb/pull/132): Make full command result accessible in ArrayIterator
61+
* [#140](https://github.com/doctrine/mongodb/pull/140): Add `initialize()` calls in Connection methods to avoid use of null objects
62+
* [#139](https://github.com/doctrine/mongodb/pull/139): `Builder::sort()` should default to ascending order
63+
* [#143](https://github.com/doctrine/mongodb/pull/143): Query builder read prefs and wrap driver classes directly
6464
* Wrap driver classes directly and remove Connection reinit logic
6565
* Convert inconsistent return values for `getReadPreference()` from pre-1.3.3 drivers
6666
* Don't throw InvalidArgumentException in `Cursor::setReadPreference()`
6767
* Support read preferences in Query Builder
68-
* #147: `Expr::mod()` should take explicit divisor/remainder args
68+
* [#147](https://github.com/doctrine/mongodb/pull/147): `Expr::mod()` should take explicit divisor/remainder args
6969

7070
Additional commits included in 1.1.0:
7171

72-
* d51a44d: Support $elemMatch in query projections (closes #101)
73-
* e92f0f2: Remove unused $options argument in `Expr::equals()`
74-
* 773423a: Use driver's return value in `Collection::batchInsert()` (closes #93)
75-
* 114a0ae: Fix cursor creation when MapReduce's db output option is used
76-
* 8bc1466: Ensure `Cursor::limit()` argument is casted to an integer
77-
* 6afee47: Deprecate `Connection::getStatus()` (to be removed in 1.2)
78-
* 05258d4: Deprecate Database force/prev/resetError() methods (to be removed in 1.2)
79-
* 25a8025: Restore `Query::TYPE_GEO_LOCATION` constant for BC, but deprecate it
72+
* [d51a44d](https://github.com/doctrine/mongodb/commit/d51a44d): Support $elemMatch in query projections (closes [#101](https://github.com/doctrine/mongodb/pull/101))
73+
* [e92f0f2](https://github.com/doctrine/mongodb/commit/e92f0f2): Remove unused $options argument in `Expr::equals()`
74+
* [773423a](https://github.com/doctrine/mongodb/commit/773423a): Use driver's return value in `Collection::batchInsert()` (closes [#93](https://github.com/doctrine/mongodb/pull/93))
75+
* [114a0ae](https://github.com/doctrine/mongodb/commit/114a0ae): Fix cursor creation when MapReduce's db output option is used
76+
* [8bc1466](https://github.com/doctrine/mongodb/commit/8bc1466): Ensure `Cursor::limit()` argument is casted to an integer
77+
* [6afee47](https://github.com/doctrine/mongodb/commit/6afee47): Deprecate `Connection::getStatus()` (to be removed in 1.2)
78+
* [05258d4](https://github.com/doctrine/mongodb/commit/05258d4): Deprecate Database force/prev/resetError() methods (to be removed in 1.2)
79+
* [25a8025](https://github.com/doctrine/mongodb/commit/25a8025): Restore `Query::TYPE_GEO_LOCATION` constant for BC, but deprecate it

0 commit comments

Comments
 (0)