-
-
Notifications
You must be signed in to change notification settings - Fork 2k
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
feat(component): use global render strategy in zone-less mode #3379
feat(component): use global render strategy in zone-less mode #3379
Conversation
✅ Deploy Preview for ngrx-io ready!Built without sensitive environment variables
To edit notification comments on pull requests, go to your Netlify site settings. |
BREAKING CHANGES: The native local rendering strategy is replaced by global in zone-less mode for better performance. BEFORE: The change detection is triggered via `changeDetectorRef.detectChanges` in zone-less mode. AFTER: The change detection is triggered via `ɵmarkDirty` in zone-less mode.
737f129
to
cd71bba
Compare
@markostanimirovic |
The previous way of triggering CD in zone-less mode via I chose I'm aware that |
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?
Closes #3342
What is the new behavior?
@ngrx/component
uses a global rendering strategy in zone-less mode.Does this PR introduce a breaking change?