Release candidate versions of symfony 1.3 and 1.4 released

Just a couple of weeks ago we included the beta of symfony 1.3 in our servers. This week the symfony core team released the first release cadidate versions of symfony 1.3 AND 1.4 at the same time. Yes, they are rocking!

As expected, we included these releases in our servers so if you want to play around with them is as easy as including the library path and clear your cache. It’s also important that you test your applications with the new versions.

Here is how to use symfony 1.4


require_once '/usr/local/php/symfony14/lib/autoload/sfCoreAutoload.class.php';
sfCoreAutoload::register();

class ProjectConfiguration extends sfProjectConfiguration
{
  public function setup()
  {
    // for compatibility / remove and enable only the plugins you want
    $this->enableAllPluginsExcept(array('sfPropelPlugin'));
  }
}

Remember! symfony 1.3 and 1.4 are still in beta, so use it at your own risk.

Stable releases are scheduled to be available later this month. We will keep updating the repository as new versions are released.

18

11 2009

2 Comments Add Yours ↓

The upper is the most recent comment

  1. 1

    This won’t quite work as written because you have sfCompat10Plugin on the list of plugins to exclude. Since that plugin doesn’t exist in 1.4, an exception will be thrown (not sure about 1.3, I didn’t try it). Remove that plugin from the exclude list and you’ll be able to get past that.

    Other big changes I’ve noticed so far:

    ./symfony doctrine:build-all-reload is gone

    Use

    ./symfony doctrine:build –all

  2. 2

    @Tom

    Good catch. In our rush to update the availability of 1.4 we missed the changes required due to deprecated functionality. Thank you!




Your Comment


blog comments powered by Disqus