Skip to content

2.3.0 release

Compare
Choose a tag to compare
@jcheron jcheron released this 01 Aug 00:13
· 1868 commits to master since this release

Added

Changed

  • Startup class optimization

Breaking change possible

Induced by multi database functionality:

  • Database startup with DAO::startDatabase($config) in services.php file is useless, no need to start the database, the connection is made automatically at the first request.
  • Use DAO::start() in services.php file when using several databases (with multi db feature)

For optimization reasons:

  • the classes used only in development (common to devtools and webtools) have been relocated in the phpmv/ubiquity-dev package.

Migration

For new projects:

  • Update devtools: composer global update

For existing projects:

  • composer update in project folder
  • Remove DAO::startDatabase($config) line in services.php

Fixed

  • route caching pb for routes with variables (no open issue)

Documentation