Skip to content

Commit

Permalink
3.34.2
Browse files Browse the repository at this point in the history
  • Loading branch information
soullivaneuh committed Apr 11, 2018
1 parent d168993 commit 2c3e5c6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [3.34.2](https://github.com/sonata-project/SonataAdminBundle/compare/3.34.1...3.34.2) - 2018-04-11
### Deprecated
- Editing child admin that does not belong to a given parent

### Fixed
- Regression for child form type rendering
- Fixed a BC break where an overwritten `getTemplate()` method in an `Admin` was no longer called by Sonata.
- Not working persist_filter option for legacy admin property.

## [3.34.1](https://github.com/sonata-project/SonataAdminBundle/compare/3.34.0...3.34.1) - 2018-04-09
### Fixed
- Fix regression on #5051: It is possible again to know which button triggered the submit of the form.
Expand Down
2 changes: 1 addition & 1 deletion src/Controller/CRUDController.php
Original file line number Diff line number Diff line change
Expand Up @@ -1514,7 +1514,7 @@ private function checkParentChildAssociation(Request $request, $object)

if ($parentAdmin->getObject($parentId) !== $propertyAccessor->getValue($object, $propertyPath)) {
// NEXT_MAJOR: make this exception
@trigger_error("Accessing a child that isn't connected to a given parent is deprecated since 3.x"
@trigger_error("Accessing a child that isn't connected to a given parent is deprecated since 3.34"
." and won't be allowed in 4.0.",
E_USER_DEPRECATED
);
Expand Down

0 comments on commit 2c3e5c6

Please sign in to comment.