-
Notifications
You must be signed in to change notification settings - Fork 26.3k
fix(core): Re-assign error codes to be within core bounds (<1000) #53455
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
fix(core): Re-assign error codes to be within core bounds (<1000) #53455
Conversation
Hi, thanks for helping us with that change ! We also need to update our api golden files. Can you run |
Could you please squash your commits into one and make sure the remaining one has a Thx for the help ! |
2c641ed
to
1b22b4d
Compare
Hey @JeanMeche, |
Hey, can you drop that merge commit ? We'd like the change to be a single commit ! |
7427d28
to
45b5abb
Compare
Hey, yeah is squashed. 😉 |
It looks like there is a conflict now, care to have a look at it ? |
58e4b17
to
0131a73
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.
Reviewed-for: public-api
`RUNTIME_DEPS_INVALID_IMPORTED_TYPE` is now 980 `RUNTIME_DEPS_ORPHAN_COMPONENT` is now 981
61d8146
to
ae80d23
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.
Reviewed-for: public-api
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.
reviewed-for: public-api
This PR was merged into the repository by commit 656b5d3. The changes were merged into the following branches: main |
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
PR Checklist
Please check if your PR fulfills the following requirements:
PR Type
What kind of change does this PR introduce?
What is the current behavior?
Two error codes in the angular/core package incorrectly use error codes 1000 and 1001, which should be used for the reserved range in the angular/forms package.
Issue Number: #53433
What is the new behavior?
This PR reassigns the error codes for RUNTIME_DEPS_INVALID_IMPORTED_TYPE and RUNTIME_DEPS_ORPHAN_COMPONENT from 1000 and 1001 to 950 and 951, to align with the reserved range for the core package.
Does this PR introduce a breaking change?
Other information
Close #53433