-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
[2.8][Translator] Added missing changelog notes. #15698
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
Conversation
aitboudad
commented
Sep 5, 2015
Q | A |
---|---|
Bug fix? | no |
New feature? | no |
BC breaks? | no |
Deprecations? | no |
Fixed tickets | ~ |
Tests pass? | yes |
License | MIT |
@@ -4,8 +4,10 @@ CHANGELOG | |||
2.8.0 | |||
----- | |||
|
|||
* deprecated Translator::getMessages(), use TranslatorBagInterface::getCatalogue() instead. | |||
* added options 'as_tree', 'inline' to YamlFileDumper | |||
* deprecated Translator::getMessages(), rely into TranslatorBagInterface::getCatalogue() instead. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typo: rely on
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed, thanks!
33bce92
to
461e595
Compare
@@ -290,11 +290,11 @@ protected function getLoaders() | |||
* | |||
* @return array[array] indexed by catalog | |||
* | |||
* @deprecated since version 2.8, to be removed in 3.0. Use TranslatorBagInterface::getCatalogue() method instead. | |||
* @deprecated since version 2.8, to be removed in 3.0. Rely on TranslatorBagInterface::getCatalogue() method instead. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We always use Use ... instead
in deprecation messages. I don't think this change is worth.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it was suggested by stof see #14546 (comment)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Then we would need to change it in many places. Many things are not drop-in replacements. Will be pretty hard to change it everywhere. Thus not worth.
Also use
doesn't imply a drop-replacement at all.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it's ok for me, reverted!
461e595
to
2592fe9
Compare
Thank you @aitboudad. |
…dad) This PR was merged into the 2.8 branch. Discussion ---------- [2.8][Translator] Added missing changelog notes. | Q | A | ------------- | --- | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Fixed tickets | ~ | Tests pass? | yes | License | MIT Commits ------- 2592fe9 [Translator] Added missing changelog notes.