Sullivan SENECHAL vor 8 Jahren
Ursprung
Commit
4549ad641c
3 geänderte Dateien mit 24 neuen und 3 gelöschten Zeilen
  1. 19 0
      CHANGELOG.md
  2. 1 1
      Menu/Provider/GroupMenuProvider.php
  3. 4 2
      UPGRADE-3.x.md

+ 19 - 0
CHANGELOG.md

@@ -2,6 +2,25 @@
 All notable changes to this project will be documented in this file.
 This project adheres to [Semantic Versioning](http://semver.org/).
 
+## [3.10.0](https://github.com/sonata-project/SonataAdminBundle/compare/3.9.0...3.10.0) - 2016-11-25
+### Added
+- Added new `roles` configuration field to configuration of menu item routes.
+- Improved class support for filter factory
+- Add a length option to truncate columns on list view
+
+### Changed
+- Update adminLTE dependency to 2.3.6
+- Use block instead of macro to render show groups
+
+### Fixed
+- Fixed missing access check for menu route items.
+- Fixed `trigger_error` calls - `E_USER_DEPRECATED` was concatenated to the sentence, not passed as argument
+- Deep arrays can now be displayed without error, and recursively
+- Fixed bug in revisions compare view
+
+### Deprecated
+- Deprecated `base_show_macro.html.twig`
+
 ## [3.9.0](https://github.com/sonata-project/SonataAdminBundle/compare/3.8.0...3.9.0) - 2016-10-06
 ### Added
 - Added `CRUDController::trans` method

+ 1 - 1
Menu/Provider/GroupMenuProvider.php

@@ -59,7 +59,7 @@ class GroupMenuProvider implements MenuProviderInterface
          */
         if (null === $checker) {
             @trigger_error(
-                'Passing no 3rd argument is deprecated since version 3.x and will be mandatory in 4.0.
+                'Passing no 3rd argument is deprecated since version 3.10 and will be mandatory in 4.0.
                 Pass Symfony\Component\Security\Core\Authorization\AuthorizationCheckerInterface as 3rd argument.',
                 E_USER_DEPRECATED
             );

+ 4 - 2
UPGRADE-3.x.md

@@ -1,12 +1,14 @@
 UPGRADE 3.x
+===========
+
+UPGRADE FROM 3.9 to 3.10
+========================
 
 ## Deprecated passing no 3rd argument to GroupMenuProvider
 
 Passing no 3rd argument to `Menu\Provider\GroupMenuProvider` is deprecated.
 Pass `Symfony\Component\Security\Core\Authorization\AuthorizationCheckerInterface` as 3rd argument.
 
-===========
-
 UPGRADE FROM 3.8 to 3.9
 =======================