Skip to content
This repository was archived by the owner on Jan 29, 2020. It is now read-only.

Commit b67f2d1

Browse files
committed
Merge branch 'release/2.9.0'
2 parents 6113b68 + d278fda commit b67f2d1

File tree

2 files changed

+7
-24
lines changed

2 files changed

+7
-24
lines changed

CHANGELOG.md

Lines changed: 5 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
All notable changes to this project will be documented in this file, in reverse chronological order by release.
44

5-
## 2.9.0 - TBD
5+
## 2.9.0 - 2017-12-06
66

77
### Added
88

@@ -31,6 +31,10 @@ All notable changes to this project will be documented in this file, in reverse
3131

3232
- [#205](https://github.com/zendframework/zend-db/pull/205) fixes the spaces in
3333
ORDER BY syntax
34+
- [#224](https://github.com/zendframework/zend-db/pull/224) fixes how parameters
35+
are bound to statements in the PDO adapter. PDO has a restriction on parameter
36+
names of `[0-9a-zA_Z_]`; as such, the driver now hashes the parameter names
37+
using `md5()` in order to ensure compatibility with other drivers.
3438
- [#229](https://github.com/zendframework/zend-db/pull/229) fixes the support
3539
of SSL for mysqli
3640
- [#255](https://github.com/zendframework/zend-db/pull/255) fixes ResultSet with
@@ -42,27 +46,6 @@ All notable changes to this project will be documented in this file, in reverse
4246
- [#287](https://github.com/zendframework/zend-db/pull/287) fixes the usage of
4347
count() with PHP 7.2
4448

45-
## 2.8.3 - TBD
46-
47-
### Added
48-
49-
- Nothing.
50-
51-
### Deprecated
52-
53-
- Nothing.
54-
55-
### Removed
56-
57-
- Nothing.
58-
59-
### Fixed
60-
61-
- [#224](https://github.com/zendframework/zend-db/pull/224) fixes how parameters
62-
are bound to statements in the PDO adapter. PDO has a restriction on parameter
63-
names of `[0-9a-zA_Z_]`; as such, the driver now hashes the parameter names
64-
using `md5()` in order to ensure compatibility with other drivers.
65-
6649
## 2.8.2 - 2016-08-09
6750

6851
### Added

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@
4949
},
5050
"extra": {
5151
"branch-alias": {
52-
"dev-master": "2.8-dev",
53-
"dev-develop": "2.9-dev"
52+
"dev-master": "2.9-dev",
53+
"dev-develop": "2.10-dev"
5454
},
5555
"zf": {
5656
"component": "Zend\\Db",

0 commit comments

Comments
 (0)