Skip to content
This repository has been archived by the owner on Feb 1, 2022. It is now read-only.

Releases: mongodb/mongo-php-driver-legacy

MongoDB PHP Driver 1.5.8 released

11 Nov 20:10
Compare
Choose a tag to compare

This is the seventh bug fix release of the 1.5 series of the MongoDB PHP Driver. This release addresses a number of issues with the 1.5.7 release. Most notably, MongoCursor::count() will now respect a cursor's socket timeout, and MongoDB::selectCollection() should no longer crash when invoked from within a generator.

You can find a more thorough description of all the resolved issues at:
https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10007&version=14534

If you find any issues, please follow the reporting process outlined in:
https://github.com/mongodb/mongo-php-driver#how-to-ask-for-help

The source for the extension can be found at:
http://pecl.php.net/mongo

You can either download and install the source manually, or you can install the extension with:

pecl install mongo

or update with:

pecl upgrade mongo

Windows binaries are available through the PECL website and:
https://s3.amazonaws.com/drivers.mongodb.org/php/index.html

MongoDB PHP Driver 1.5.7 released

16 Sep 13:59
Compare
Choose a tag to compare

This is the sixth bug fix release of the 1.5 series of the MongoDB PHP
Driver. This release addresses a number of issues with the 1.5.5
release. It addresses inconsistencies in default timeout settings and a bug
where the driver would not detect a primary node after a replica set election.

The 1.5.6 release was retracted because of Windows build issues.

You can find a more thorough description of all the resolved issues at:
https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10007&version=14222

If you find any issues, please report them through JIRA at
https://jira.mongodb.org/browse/PHP. We would be more than happy to have a
look at them, but please provide as much information as possible in order
for us to more easily identify and fix the problem.

The source for the extension can be found at
http://pecl.php.net/mongo

You can either download and install the source manually, or you can
install the extension with:

pecl install mongo

or update with:

pecl upgrade mongo

Windows binaries are available through:
https://s3.amazonaws.com/drivers.mongodb.org/php/index.html

MongoDB PHP Driver 1.5.5 released

30 Jul 11:33
Compare
Choose a tag to compare

This is the fifth bug fix release of the 1.5 series of the MongoDB PHP
Driver. This release addresses a number of issues with the 1.5.4
release. It addresses an issue with connections hanging when the server is
having a write lock while connecting, an issue with representations
of 64-bit integers under some circumstances, and an issue where the PHP driver
would randomly crash due to internal PHP issues with stack sizes.

You can find a more thorough description of all the resolved issues at:
https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10007&version=14080

If you find any issues, please report them through JIRA at
https://jira.mongodb.org/browse/PHP. We would be more than happy to have a
look at them, but please provide as much information as possible in order
for us to more easily identify and fix the problem.

The source for the extension can be found at
http://pecl.php.net/mongo

You can either download and install the source manually, or you can
install the extension with:

  pecl install mongo

or update with:

  pecl upgrade mongo

Windows binaries are available through:
https://s3.amazonaws.com/drivers.mongodb.org/php/index.html

MongoDB PHP Driver 1.5.4 released

17 Jun 09:43
Compare
Choose a tag to compare

Hello,

This is the fourth bug fix release of the 1.5 series of the MongoDB PHP
Driver. This release addresses a number of small issues with the 1.5.3
release. These are a build fix for static compiles, a fix for cursor
aggregates with an empty result set, and an issue related to connecting to a
slave node in a master/slave set-up.

You can find a more thorough description of all the resolved issues at:
https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10007&version=13992

If you find any issues, please report them through JIRA at
https://jira.mongodb.org/browse/PHP. We would be more than happy to have a
look at them, but please provide as much information as possible in order
for us to more easily identify and fix the problem.

The source for the extension can be found at
http://pecl.php.net/mongo

You can either download and install the source manually, or you can
install the extension with:

pecl install mongo

or update with:

pecl upgrade mongo

Windows binaries are available through:
https://s3.amazonaws.com/drivers.mongodb.org/php/index.html

cheers,
Derick, Hannes and Jeremy

The MongoDB PHP Driver version 1.5.3 released!

05 Jun 14:06
Compare
Choose a tag to compare

This release addresses a number of issues with the 1.5.2 release. The main
issues that are resolved are backwards breaking changes, issues with loading
the extension if the JSON extension was not present, and issues with connection
timeouts, unresolvable host names and connections to secondaries hanging upon
initialSync.

See http://pecl.php.net/package-changelog.php?package=mongo for more details

The MongoDB PHP Driver version 1.5.2 released!

06 May 16:50
Compare
Choose a tag to compare

This release now includes SASL support for the Windows Binaries.

It is now possible to fetch a int64 on 32bit system (e.g. windows) as long as the value does not overflow.

Handful of timeout issues and segfaults have also been fixed.

See http://pecl.php.net/package-changelog.php?package=mongo for more details

The MongoDB PHP Driver version 1.5.1 released (Windows Build fix)

09 Apr 20:48
Compare
Choose a tag to compare

This release fixes a packaging and build issue for Windows users. There are no
functional differences from 1.5.0.

Special thanks to Daniel Lowrey (rdlowrey on php.net) for his assistance in
testing this release.

You can find a list of the one and only resolved issue at:
https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10007&version=13612

Windows binaries for most PHP versions are now available via PECL:
http://pecl.php.net/mongo

The MongoDB PHP Driver version 1.5.0 released!

09 Apr 20:47
Compare
Choose a tag to compare

We are glad to announce the release of version 1.5.0 of the MongoDB PHP
driver.

It supports all new features for MongoDB 2.6, including:

  • Aggregate can now return a cursor
  • Aggregation pipelines can now be explained
  • Possible to set maxTimeMS for commands and queries
  • Transparent support for the new command-based MongoDB write API
  • New MongoWriteBatch classes (using the new MongoDB write API)
  • Support for MongoDB Enterprise features (e.g. Kerberos, LDAP, X509)
  • Option to tune acceptable server latency for secondary reads
    (secondaryAcceptableLatencyMS)

With this release, some driver functionality which was previously
documented as deprecated will now formally raise deprecation notices. This
includes:

  • Instantiating the Mongo class
  • Calling MongoCursor::slaveOkay()
  • "wtimeout" and "safe" options for MongoCollection write operations
  • Manipulating public properties on core classes (such as $collection->w)

Note: No previously deprecated features have been removed.

Changes in behavior:

  • Setting the mongo.native_long INI setting now raises an error on 32-bit
    platforms, and now defaults to true for 64-bit platforms.

You can find a list of all the resolved issues at:
https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10007&version=12438

If you find any issues, please report them through JIRA at:
https://jira.mongodb.org/browse/PHP

We'd be more than happy to have a look at them, but please do provide as
much information as possible in order for us to more easily identify and
fix the problem.

The source for the extension can be found at:
http://pecl.php.net/mongo

You can either download and install the source manually, or you can install
the extension with:

pecl install mongo 

or update with:

pecl upgrade mongo 

Windows binaries for most PHP versions will be available via PECL:
http://pecl.php.net/mongo