Releases: Orbitale/CmsBundle
Releases · Orbitale/CmsBundle
v2.0.0
Global 2.0 changes and BC breaks
- Now, you must create your own
Page
andCategory
entities and configure them in the bundle, which is much better when you need to override them. - Remove Gedmo doctrine behaviors: you have to implement them yourself if you need them.
- You can use your own repositories, but Orbitale's controllers use a specific one configured as a service. By the way, your repos can extend this one if you want.
- Make the bundle require php 5.4 (hey, we're in 2016!)
v2.0.0-beta2
Changelog
- Make config more strict & light for injections
- Remove
createdAt
setters and fix category slug update - Fixed tests
- Make the bundle require php 5.4 (hey, we're in 2016!)
- Update docs to add warning about
1.x
andmaster
branches
v1.6.1
v2.0.0-beta1
Changelog for v1.5.1...v2.0.0-beta1
Now, you must create your own Page
and Category
entities, which is much better when you need to override them.
- Remove entities Gedmo dependencies and make them abstract
- Update config for new Page and Category classes
- Remove Gedmo services from configuration
- Create a listener to update mapped superclasses mapping (else it'd be "illegal" according to doctrine)
- Remove
updatedAt
sortable field in Category controller - Update repositories so they use the correct classes
- Updated tests
- Fixed dependencies
- Update readme
v1.6.0
New feature
- Make doctrine connection configurable under the
orbitale_cms.connection
parameter
v1.5.1
v1.5.0
New features
[5f7d018] Add Doctrine Cache support for the bundle (@sfarkas1988)
v1.4.1
Some minor fixes, but now the bundle is compatible with Symfony3 ! 🎉
v1.4.0
In order to allow this bundle to migrate to Symfony 2.8, it now requires twig/twig: ~1.23
because of the new Twig_Extension_GlobalsInterface
class that must be extended by any extension requiring the use of getGlobals()
.
This induces a small BC break for all apps requiring Twig with an inferior version.
[f6a69be] Minor update for Symfony 2.8 and 3.0