-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
[Serializer] Allow to access to the context and various other infos in callbacks and max depth handler #27017
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…n callbacks and max depth handler
This was referenced Apr 23, 2018
nicolas-grekas
approved these changes
Apr 25, 2018
fabpot
approved these changes
Apr 25, 2018
Thank you @dunglas. |
fabpot
added a commit
that referenced
this pull request
Apr 25, 2018
…s other infos in callbacks and max depth handler (dunglas) This PR was merged into the 4.1-dev branch. Discussion ---------- [Serializer] Allow to access to the context and various other infos in callbacks and max depth handler | Q | A | ------------- | --- | Branch? | master | Bug fix? | no | New feature? | yes<!-- don't forget to update src/**/CHANGELOG.md files --> | BC breaks? | no <!-- see https://symfony.com/bc --> | Deprecations? | no <!-- don't forget to update UPGRADE-*.md and src/**/CHANGELOG.md files --> | Tests pass? | yes <!-- please add some, will be required by reviewers --> | Fixed tickets | n/a <!-- #-prefixed issue number(s), if any --> | License | MIT | Doc PR | todo Allows to access to the context, format, parent object and attribute name in max depth handlers and callbacks. ping @meyerbaptiste Commits ------- 0e5f740 [Serializer] Allow to access to the context and various other infos in callbacks and max depth handler
I suggest updating the phpdoc of |
Merged
nicolas-grekas
added a commit
that referenced
this pull request
Jul 7, 2018
… in circular ref handler (dunglas) This PR was merged into the 4.2-dev branch. Discussion ---------- [Serializer] Allow to access to the format and context in circular ref handler | Q | A | ------------- | --- | Branch? | master | Bug fix? | no | New feature? | yes <!-- don't forget to update src/**/CHANGELOG.md files --> | BC breaks? | no <!-- see https://symfony.com/bc --> | Deprecations? | no <!-- don't forget to update UPGRADE-*.md and src/**/CHANGELOG.md files --> | Tests pass? | yes <!-- please add some, will be required by reviewers --> | Fixed tickets | n/a <!-- #-prefixed issue number(s), if any --> | License | MIT | Doc PR | todo Similar to #27017 but for circular reference handlers. ping @meyerbaptiste Commits ------- 99f829e [Serializer] Allow to access to the format and context in circular ref handler
fabpot
added a commit
that referenced
this pull request
Sep 4, 2018
…rters (dunglas) This PR was squashed before being merged into the 4.2-dev branch (closes #27021). Discussion ---------- [Serializer] Allow to access extra infos in name converters | Q | A | ------------- | --- | Branch? | master | Bug fix? | no | New feature? | yes<!-- don't forget to update src/**/CHANGELOG.md files --> | BC breaks? | no <!-- see https://symfony.com/bc --> | Deprecations? | no <!-- don't forget to update UPGRADE-*.md and src/**/CHANGELOG.md files --> | Tests pass? | yes <!-- please add some, will be required by reviewers --> | Fixed tickets | n/a | License | MIT | Doc PR | todo Similar to #27017 and #27020 but for name converters. ping @meyerbaptiste Commits ------- 57fe017 [Serializer] Allow to access extra infos in name converters
javiereguiluz
added a commit
to symfony/symfony-docs
that referenced
this pull request
Sep 11, 2018
…other infos in callbacks and max depth handler (dunglas, javiereguiluz) This PR was merged into the master branch. Discussion ---------- [Serializer] Allow to access to the context and various other infos in callbacks and max depth handler symfony/symfony#27020 symfony/symfony#27017 Commits ------- 672b374 Minor reword 7c3e620 Fix, and document setCircularReferenceHandler's new parameters a4dad43 [Serializer] Allow to access to the context and various other infos in callbacks and max depth handler
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Allows to access to the context, format, parent object and attribute name in max depth handlers and callbacks.
ping @meyerbaptiste