Skip to content

Commit

Permalink
[2.3.9] Release readiness
Browse files Browse the repository at this point in the history
- Updated README with version, date, and important changes
- Updated CHANGELOG with fixed issues
- Updated VERSION constant
  • Loading branch information
weierophinney committed May 11, 2015
1 parent 74fcaa1 commit 32858f8
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# CHANGELOG

## 2.3.9 (2015-05-11)

- [#7506](https://github.com/zendframework/zf2/pull/7506) resolves issues when UTF-8 values are used in Mail headers, particularly addresses.
- [#7507](https://github.com/zendframework/zf2/pull/7507) ensures that array values can be used with cookies.
- [#7514](https://github.com/zendframework/zf2/pull/7514) ensures that multipart MIME messages can be added to `Zend\Mail\Message` instances in such a way that they do not conflict with ZF2015-04.

## 2.3.8 (2015-05-07)

### SECURITY UPDATES
Expand Down
20 changes: 15 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ Develop:

## RELEASE INFORMATION

*Zend Framework 2.3.8*
*Zend Framework 2.3.9*

This is the eighth maintenance release for the version 2.3 series.
This is the ninth maintenance release for the version 2.3 series.

07 May 2015
11 May 2015

### UPDATES IN 2.3.8
### UPDATES IN 2.3.9

This release contains the following security fixes:
This release contains the following security fixes introduced in 2.3.8:

- **ZF2015-04**: `Zend\Mail` and `Zend\Http` were both susceptible to CRLF
Injection Attack vectors (for HTTP, this is often referred to as HTTP Response
Expand All @@ -32,6 +32,16 @@ This release contains the following security fixes:
If you use either `Zend\Mail` or `Zend\Http` (which includes users of
`Zend\Mvc`), we recommend upgrading immediately.

Additionally, this release fixes several issues raised by the patch for the
above security fix, including:

- [#7506](https://github.com/zendframework/zf2/pull/7506) resolves issues when
UTF-8 values are used in Mail headers, particularly addresses.
- [#7507](https://github.com/zendframework/zf2/pull/7507) ensures that array
values can be used with cookies.
- [#7514](https://github.com/zendframework/zf2/pull/7514) ensures that multipart
MIME messages can be added to `Zend\Mail\Message` instances in such a way that
they do not conflict with ZF2015-04.

Please see [CHANGELOG.md](CHANGELOG.md).

Expand Down
2 changes: 1 addition & 1 deletion library/Zend/Version/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ final class Version
/**
* Zend Framework version identification - see compareVersion()
*/
const VERSION = '2.3.8';
const VERSION = '2.3.9';

/**
* Github Service Identifier for version information is retrieved from
Expand Down

0 comments on commit 32858f8

Please sign in to comment.