You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What you experience has been fixed by reverting the initial PR (#57497) in #57616. I nonetheless opened a PR to add a test to prevent future regressions (see #57789).
This PR was merged into the 5.4 branch.
Discussion
----------
[String] add test to prevent future regressions
| Q | A
| ------------- | ---
| Branch? | 5.4
| Bug fix? | no
| New feature? | no
| Deprecations? | no
| Issues | Fix#57782
| License | MIT
Commits
-------
dd83a2c add test to prevent future regressions
Symfony version(s) affected
6.49 and others
Description
Follow up of #57497 and #57612 and #57616
Behavior os
snake()
still contains a BC break.I did not check whether this was introduced by the original change or one of the fixes.
For years the string
123-customer,with/special#name
was converted to123-customer_with_special_name
.Now it returns
123-customer,with/special#name
.Many characters are not converted as before/expected.
How to reproduce
shows
123-customer,with/special#name
instead of the expected123-customer_with_special_name
Possible Solution
Revert previous "fixes"?
Additional Context
No response
The text was updated successfully, but these errors were encountered: