Quantcast

Zend Framework 2.0.0rc4 Released!

classic Classic list List threaded Threaded
8 messages Options
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Zend Framework 2.0.0rc4 Released!

weierophinney
Administrator
We've tagged, created and pushed packages, and I'm pleased to announce
that the fourth release candidate of ZF2, Zend Framework 2.0.0rc4, is
now available!

    http://packages.zendframework.com/

Release candidates are now happening weekly, and will continue until we
feel the code is stable; we anticipate that in the next couple weeks, we
should have a stable release.

In the past week, we've managed around 50 pull requests, patching
primarily bugfixes. Additionally, a patch closing potential XML entity
expansion vectors (XEE) was added, and addresses each of Zend\Dom,
Zend\Feed, Zend\Soap, and Zend\XmlRpc. If you were building on a version
prior to RC4, we highly recommend updating at this time.

Our efforts are now turning primarily to documentation. If you can help
us, please do! Enrico has posted a primer on helping with documentation:

    http://devzone.zend.com/2463/zf2-documentation-we-want-you/

as well as a list of documentation tasks:

    http://bit.ly/MBvwMW

Please help out!

Below is the full changelog. Take some time to test the release, and to
thank all the contributors who have helped get us this far!

UPDATES IN RC4

- Zend\Db
  - RowGateway:  delete() now works; RowGateway objects now no longer duplicates
    the content internally leading to a larger than necessary memory footprint.
  - Adapter for PDO: fixed such that all calls to rowCount() will always be an
    integer; also fixed disconnect() from unsetting property
  - Zend\Validator\Db: fixed such that TableIdentifier can be used to promote
    schema.table identifiers
  - Sql\Select: added reset() API to reset parts of a Select object, also
    includes updated constants to refer to the parts by
  - Sql\Select and others: Added subselect support in Select, In Expression and
    the processExpression() abstraction for Zend\Db\Sql
  - Metadata: fixed various incorrect keys when refering to contstraint data in
    metadata value objects
- Zend\Filter
  - StringTrim filter now properly handles unicode whitespace
- Zend\Form
  - FieldsetInterface now defines the methods allowObjectBinding() and
    allowValueBinding().
  - New interface, FieldsetPrepareAwareInterface. Collection and Fieldset both
    implement this.
    - See https://github.com/zendframework/zf2/pull/2184 for details
  - Select elements now handle options and validation more consistently with
    other multi-value elements.
- Zend\Http
  - SSL options are now propagated to all Socket Adapter subclasses
- Zend\InputFilter
  - Allows passing ValidatorChain and FilterChain instances to the factory
- Zend\Log
  - Fixed xml formatter to not display empty extra information
- Zend\Loader
  - SplAutoloader was renamed to SplAutoloaderInterface (consistency issue)
- Zend\Mvc
  - params() helper now allows fetching full parameter containers if no
    arguments are provided to its various methods (consistency issue)
- Zend\Paginator
  - The DbSelect adapter now works
- Zend\View
  - ViewModel now allows unsetting variables properly
- Security
  - Fixed issues in Zend\Dom, Zend\Soap, Zend\Feed, and Zend\XmlRpc with regards
    to the way libxml2 allows xml entity expansion from DOCTYPE entities when it
    is provided.

--
Matthew Weier O'Phinney
Project Lead            | [hidden email]
Zend Framework          | http://framework.zend.com/
PGP key: http://framework.zend.com/zf-matthew-pgp-key.asc
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Zend Framework 2.0.0rc4 Released!

Ralf Eggert
Hi,

how can I upgrade a project? This did not work:

  php composer.phar self-update
  php composer.phar update

After this the library is still on RC2.

Thanks and Regards,

Ralf
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Zend Framework 2.0.0rc4 Released!

jeremiah
This post has NOT been accepted by the mailing list yet.
Does your composer.json file call for "dev-master:<somesha>"? If so, remove the sha and run update again.

Jeremiah

On Aug 18, 2012, at 1:24 PM, Ralf Eggert [via Zend Framework Community] wrote:

Hi,

how can I upgrade a project? This did not work:

  php composer.phar self-update
  php composer.phar update

After this the library is still on RC2.

Thanks and Regards,

Ralf



If you reply to this email, your message will be added to the discussion below:
http://zend-framework-community.634137.n4.nabble.com/Zend-Framework-2-0-0rc4-Released-tp4656313p4656325.html
To start a new topic under ZF Contributor, email [hidden email]
To unsubscribe from ZF Contributor, click here.
NAML

Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Zend Framework 2.0.0rc4 Released!

Wesley Overdijk
In reply to this post by Ralf Eggert
Hey,

Open up your composer.json and update the hash. It should say something like "zendframework/zendframework" : "dev-master#somhashhere"

Either remove the #somehashhere entirely, or replace it with the RC4 hash.

Wesley.

On 18 Aug 2012, at 22:23, Ralf Eggert wrote:

> Hi,
>
> how can I upgrade a project? This did not work:
>
> php composer.phar self-update
> php composer.phar update
>
> After this the library is still on RC2.
>
> Thanks and Regards,
>
> Ralf

Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Zend Framework 2.0.0rc4 Released!

Ralf Eggert
Hi Wesley,

Thanks, that worked perfectly. So, if I download and install the
skeleton application, I should delete the hash to get in updatetable for
the future.

Should be documented somewhere. Maybe in the "Getting Started" tutorial?
Or are there any good reasons why the hash should not be deleted generally?

Regards,

Ralf
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Zend Framework 2.0.0rc4 Released!

Marco Pivetta
The hash will be in there until we have release tags...
Once that's done, the skeleton should require zendframework/zendframework 2.0.*

Marco Pivetta

http://twitter.com/Ocramius     

http://marco-pivetta.com    



On 18 August 2012 23:08, Ralf Eggert <[hidden email]> wrote:
Hi Wesley,

Thanks, that worked perfectly. So, if I download and install the
skeleton application, I should delete the hash to get in updatetable for
the future.

Should be documented somewhere. Maybe in the "Getting Started" tutorial?
Or are there any good reasons why the hash should not be deleted generally?

Regards,

Ralf

Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Zend Framework 2.0.0rc4 Released!

rodo
This post has NOT been accepted by the mailing list yet.
In reply to this post by weierophinney
Hi,
I have just updated my version to ZF2rc4 but I have problems still with schemas. How can I tested?
Thanks.
Rodolfo.
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Zend Framework 2.0.0rc4 Released!

Wesley Overdijk
In reply to this post by Marco Pivetta
What he said. Also, the hash is there to prevent composer from (possibly) updating the zendframework dependency to a non-functioning commit.

On 18 Aug 2012, at 23:23, Marco Pivetta wrote:

The hash will be in there until we have release tags...
Once that's done, the skeleton should require zendframework/zendframework 2.0.*

Marco Pivetta

http://twitter.com/Ocramius     

http://marco-pivetta.com    



On 18 August 2012 23:08, Ralf Eggert <[hidden email]> wrote:
Hi Wesley,

Thanks, that worked perfectly. So, if I download and install the
skeleton application, I should delete the hash to get in updatetable for
the future.

Should be documented somewhere. Maybe in the "Getting Started" tutorial?
Or are there any good reasons why the hash should not be deleted generally?

Regards,

Ralf


Loading...