-
Notifications
You must be signed in to change notification settings - Fork 27.4k
AngularJS 1.3.2 -> 1.3.3 broken filter name parsing (?) #10122
Comments
We never intended filters to be given names that were anything other than straight identifiers. This means that dots and dashes and other special characters should not appear in their names. |
And I never intended to write a code that is now broken. I don't think that is the point. |
This is very bad decision! Before we could used something nice like this: Which is now impossible thanks to this amazing "bug fix". You do realize that we are using object oriented programming nowadays (something like a class that is actually IN a namespace)? Oh and by the way: Why do you constantly introduce breaking changes in MINOR builds? |
@rent-a-developer - please read and respect our Code of Conduct when commenting on issues. Regarding this concern:
Again, I am sorry that you were using Angular in this undocumented and unsupported way. I hope you can see that this was an inconsistency that has now been tightened. |
This restriction to filter names has been documented since November. See d3fb8dd We should include this information in more parts of the docs to make it easier to find. In particular I am going to update the docs for |
I have added this documentation here: 4f12ed0 I appreciate that Angular 1's version policy can be confusing, given that many people like to use semver for their versioning; especially in npm and bower. Angular 1 does not strictly follow semver. Instead it has a well defined policy, which I have added to a section in the FAQ : 67af519 |
My filters stopped working after updating from 1.3.2 to 1.3.3.
Check the fiddle with 1.3.2 working http://plnkr.co/edit/30JRSb1VlHygqURtmvZc?p=preview fine with dot in the name and the same fiddle with 1.3.3 http://plnkr.co/edit/bwVehJ65lmHIH5wL2aRW?p=preview which is raising
Error: [$injector:unpr] Unknown provider: afilterFilterProvider <- afilterFilter http://errors.angularjs.org/1.3.3/$injector/unpr?p0=afilterFilterProvider%20%3C-%20afilterFilter
Both versions works just fine when the filter has no dot (.) in the name.
The text was updated successfully, but these errors were encountered: