angular-pro-src
angular-pro-src copied to clipboard
Bump @angular/core from 4.0.0 to 11.0.5 in /72-testing-attribute-directives
Bumps @angular/core from 4.0.0 to 11.0.5.
Changelog
Sourced from @angular/core
's changelog.
14.0.0 (2022-06-02)
Blog post "Angular v14 is now available".
Breaking Changes
animations
- The
AnimationDriver.getParentElement
method has become required, so any implementors of this interface are now required to provide an implementation for this method. This breakage is unlikely to affect application developers, asAnimationDriver
is not expected to be implemented in user code.common
- Adds new required class member that any implementors of the LocationStrategy will need to satisfy. Location does not depend on PlatformLocation anymore.
compiler
Keyframes names are now prefixed with the component's "scope name". For example, the following keyframes rule in a component definition, whose "scope name" is host-my-cmp:
@keyframes
foo { ... }will become:
@keyframes
host-my-cmp_foo { ... }Any TypeScript/JavaScript code which relied on the names of keyframes rules will no longer match.
The recommended solutions in this case are to either:
- change the component's view encapsulation to the
None
orShadowDom
- define keyframes rules in global stylesheets (e.g styles.css)
- define keyframes rules programmatically in code.
Keyframes names are now prefixed with the component's "scope name". For example, the following keyframes rule in a component definition, whose "scope name" is host-my-cmp:
@keyframes
foo { ... }will become:
@keyframes
host-my-cmp_foo { ... }Any TypeScript/JavaScript code which relied on the names of keyframes rules will no longer match.
The recommended solutions in this case are to either:
- change the component's view encapsulation to the
None
orShadowDom
- define keyframes rules in global stylesheets (e.g styles.css)
- define keyframes rules programmatically in code.
core
- Support for Node.js v12 has been removed as it will become EOL on 2022-04-30. Please use Node.js v14.15 or later.
... (truncated)
Commits
922f492
fix(core): setngDevMode
tofalse
when callingenableProdMode()
(#40124)0aa220b
fix(core): fix possible XSS attack in development through SSR. (#40136)f5aab2b
fix(compiler): handle strings inside bindings that contain binding characters...2fbb684
perf(core): usengDevMode
to tree-shakecheckNoChanges
(#39964)1e3534f
perf(core): usengDevMode
to tree-shake warnings (#39959)35309bb
fix(core): unsubscribe from theonError
when the root view is removed (#39940)3680ad1
fix(core): remove application from the testability registry when the root vie...37bb320
test(core): verifyonDestroy
callbacks are invoked when ComponentRef is des...75e22ab
fix(core): not invoking object's toString when rendering to the DOM (#39843)01c1bfd
fix(core): Ensure OnPush ancestors are marked dirty when events occur (#39833)- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by google-wombot, a new releaser for @angular/core
since your current version.
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
-
@dependabot rebase
will rebase this PR -
@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it -
@dependabot merge
will merge this PR after your CI passes on it -
@dependabot squash and merge
will squash and merge this PR after your CI passes on it -
@dependabot cancel merge
will cancel a previously requested merge and block automerging -
@dependabot reopen
will reopen this PR if it is closed -
@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually -
@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) -
@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) -
@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) -
@dependabot use these labels
will set the current labels as the default for future PRs for this repo and language -
@dependabot use these reviewers
will set the current reviewers as the default for future PRs for this repo and language -
@dependabot use these assignees
will set the current assignees as the default for future PRs for this repo and language -
@dependabot use this milestone
will set the current milestone as the default for future PRs for this repo and language
You can disable automated security fix PRs for this repo from the Security Alerts page.