-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
[Filesystem] deprecate calling isAbsolutePath with a null #32315
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
[Filesystem] deprecate calling isAbsolutePath with a null #32315
Conversation
7f39772
to
71d93f9
Compare
71d93f9
to
6852d51
Compare
6852d51
to
da924ab
Compare
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 need to add an entry to UPGRADE-4.4.md
too:
support for passing a
null
value toFilesystem::isAbsolutePath()
is deprecated and will be removed in 5.0
I did not add them because the deprecations of dumpFile and appendFile are not documented in UPGRADE-4.3.md. I will add them and provide an PR for the missing ones |
da924ab
to
9319018
Compare
|
…d (smoench) This PR was merged into the 4.3 branch. Discussion ---------- [Filesystem] added missing deprecations to UPGRADE-4.3.md | Q | A | ------------- | --- | Branch? | 4.3 | Bug fix? | yes | New feature? | no <!-- please update src/**/CHANGELOG.md files --> | BC breaks? | no <!-- see https://symfony.com/bc --> | Deprecations? | no | 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 | no needed This PR is a result of #32315 and adds missing deprecations to UPGRADE-4.3.md. Commits ------- b5c6a34 [Filesystem] added missing deprecations to UPGRADE-4.3.md
Thank you @smoench. |
…l (smoench) This PR was merged into the 4.4 branch. Discussion ---------- [Filesystem] deprecate calling isAbsolutePath with a null | Q | A | ------------- | --- | Branch? | 4.4 | Bug fix? | no | New feature? | no <!-- please update src/**/CHANGELOG.md files --> | BC breaks? | no <!-- see https://symfony.com/bc --> | Deprecations? | yes <!-- please 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 | N/A This PR is a result of #32247 and deprecates calling `Filesystem::isAbsolutePath()` with a `null` value. Commits ------- 9319018 [Filesystem] depreacte calling isAbsolutePath with a null
This PR is a result of #32247 and deprecates calling
Filesystem::isAbsolutePath()
with anull
value.