[BUGFIX beta] Warn rather than raise readOnly CPs#10966
Closed
tomdale wants to merge 1 commit intoemberjs:masterfrom
Closed
[BUGFIX beta] Warn rather than raise readOnly CPs#10966tomdale wants to merge 1 commit intoemberjs:masterfrom
tomdale wants to merge 1 commit intoemberjs:masterfrom
Conversation
Previously, CPs with setters would raise an exception if they were
marked as readOnly. This change broke Semantic Versioning because
it caused working app code to break.
For example, if you had a computed property that was read-only, but you
happened to include a second `value` argument out of habit or
convention, this change would cause your previously-functioning app to
break:
```
computed(function(key, value) {
// value is unused
}).readOnly()
```
The above code example will cause an exception to be raised.
In Ember 2.0 we can change this deprecation back to an assertion.
Member
|
The build failed due to bizarre Travis cache issue. I cleared the cache, and restarted the build. |
Member
|
👍 on changing this to a deprecation. We will also likely need to add a blurb about this deprecation to the deprecation guide. |
Contributor
|
Before merging this, check #10968. I've changed the assertion check to not affect people using the old CP syntax, only people using the new one. I do think that calling |
Member
Member
|
Ya I prefer @cibernox update |
Member
|
Fixed with #10968. |
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
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.
Previously, CPs with setters would raise an exception if they were
marked as readOnly. This change broke Semantic Versioning because
it caused working app code to break.
For example, if you had a computed property that was read-only, but you
happened to include a second
valueargument out of habit orconvention, this change would cause your previously-functioning app to
break:
The above code example will cause an exception to be raised.
In Ember 2.0 we can change this deprecation back to an assertion.