-
Notifications
You must be signed in to change notification settings - Fork 6.8k
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(multiple): update to angular v13.0.1 to emit proper partial compilation output #23951
fix(multiple): update to angular v13.0.1 to emit proper partial compilation output #23951
Conversation
…lation output Updates to Angular v13.0.1 which fixes the partial compilation output for `forwardRef` usages in queries. The fixed partial compilation output will ensure that Angular CDK/Material works with JIT linking at runtime, as done in e.g. Jest. Fix upstream: angular/angular#44113. We will add some testing for the JIT linker to the `angular/components` repository with: angular#23882. That should help ensuring JIT linking does not regress. Fixes angular#23907.
I'm misusing the |
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.
LGTM
…lation output (#23951) Updates to Angular v13.0.1 which fixes the partial compilation output for `forwardRef` usages in queries. The fixed partial compilation output will ensure that Angular CDK/Material works with JIT linking at runtime, as done in e.g. Jest. Fix upstream: angular/angular#44113. We will add some testing for the JIT linker to the `angular/components` repository with: #23882. That should help ensuring JIT linking does not regress. Fixes #23907. (cherry picked from commit 8cb0f12)
so is this released or not ? We are still seing this error in 13.0.2 for our own components. |
We stopped having issues with this release and the compiler 13.0.1 release. Did you also update your @angular/compiler dependency and rebuild your library? |
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. |
Updates to Angular v13.0.1 which fixes the partial compilation output
for
forwardRef
usages in queries. The fixed partial compilation outputwill ensure that Angular CDK/Material works with JIT linking at runtime,
as done in e.g. Jest.
Fix upstream in framework: angular/angular#44113.
We will add some testing for the JIT linker to the
angular/components
repository with: #23882. That should help ensuring JIT linking does
not regress.
Fixes #23907.