Skip to content

Commit

Permalink
Bump version to 2.0.0rc6
Browse files Browse the repository at this point in the history
- Bumped version to future 2.0.0rc6 version
- Updated README to refer to 2.0.0rc6
- Added note in README about change in Zend\Mvc\Application EM instance
  identifiers
  • Loading branch information
weierophinney committed Aug 24, 2012
1 parent a508880 commit 4c6769a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 45 deletions.
57 changes: 13 additions & 44 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,57 +4,26 @@ Master: [![Build Status](https://secure.travis-ci.org/zendframework/zf2.png?bran

## RELEASE INFORMATION

*Zend Framework 2.0.0rc5*
*Zend Framework 2.0.0rc6*

This is the fifth release candidate for 2.0.0. We will be releasing RCs
on a weekly basis until we feel all critical issues are addressed. At
this time, we anticipate few API changes before the stable release, and
recommend testing your production applications against it.

23 August 2012

### UPDATES IN RC5

- Zend\Db
- Now handles null values properly in execute mode.
- Added SqlSrv integration tests (prompted by a bug report of issues with
establishing a connection).
- Zend\Form
- The FormButton helper now allows translation. However, to make this work, it
now requires that the label value is set in the element.
- Fixed an issue with the MultiCheckBox helper to ensure checked/unchecked
values are properly populated.
- The FormCheckbox view helper now requires that the element is a Checkbox
element; this is done to ensure the required options are available.
- Zend\Log
- The table name constructor option is now optional, allowing you to pass it
in a configuration array.
- Now allows using DateTime with the Db Writer.
- Zend\Http
- Added ability to set the SSL capath option.
- Added a check for the sslcapath being set if sslverifypeer is enabled when
first connecting to an SSL-enabled site; an exception is thrown if all
conditions are not met.
- PhpEnvironment\Request object now falls back to '/' for the base path if the
SCRIPT_FILENAME server variable is not present (true in PHP 5.4 web server
and several others).
- Zend\I18n
- Caching translations now works.
XX August 2012

### UPDATES IN RC6

- Zend\Mvc
- forward() plugin no longer results in double template rendering.
- Zend\ServiceManager
- Now ensures that when $allowOverride is enabled that services registered
with the same name overwrite properly.
- Zend\Validator
- The Uri validator is now listed in the validator plugin manager.
- The EmailAddress validator now allows setting custom error messages.
- General fixes
- Removed all locations of error suppression remaining in the framework.
- Synced the implementations of Zend\Mvc\Controller\Plugin\Url and
Zend\View\Helper\Url.

More than 20 pull requests for a variety of features and bugfixes were handled
since RC4, as well as around 30 documentation changes!
- Application no longer defines the "application" identifier for its composed
EventManager instance. If you had listeners listening on that context,
update them to use "Zend\Mvc\Application". See this thread for more details:

http://zend-framework-community.634137.n4.nabble.com/Change-to-Zend-Mvc-Application-s-event-identifiers-tp4656517.html

More than XX pull requests for a variety of features and bugfixes were handled
since RC5, as well as around XX documentation changes!

### SYSTEM REQUIREMENTS

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 @@ -23,7 +23,7 @@ final class Version
/**
* Zend Framework version identification - see compareVersion()
*/
const VERSION = '2.0.0rc5';
const VERSION = '2.0.0rc6';

/**
* The latest stable version Zend Framework available
Expand Down

0 comments on commit 4c6769a

Please sign in to comment.