Doctrine MongoDB ODM release 1.0.4

Posted on December 15, 2015 by Andreas Braun


We are happy to announce the immediate availability of Doctrine MongoDB ODM 1.0.4.

Bug fixes in this release

Notable fixes may be found in the changelog. A full list of issues and pull requests included in this release may be found in the 1.0.4 milestone.

Installation

You can install the latest version using the following composer.json definitions:

{
    "require": {
        "doctrine/mongodb-odm": "^1.0.4"
    }
}

Doctrine MongoDB ODM 1.1 requires PHP 5.5+

The current master branch saw its PHP requirement bumped to 5.5 recently. If you are still using the master version in your project you should switch to a stable release as soon as possible:

{
    "require": {
        "doctrine/mongodb-odm": "^1.0"
    }
}

This will ensure you are using stable versions and will use 1.1 as soon as it's released.

The upcoming releases of Doctrine MongoDB (1.3) and ODM (1.1) will also drop support for all MongoDB driver versions before 1.5. If you are still using an older driver, please consider upgrading it in order to receive future updates.