nx-packaged icon indicating copy to clipboard operation
nx-packaged copied to clipboard

build: update @angular/animations to version 11.0.0-rc.1 (major)

Open renovate[bot] opened this issue 6 years ago • 0 comments

This PR contains the following updates:

Package Type Update Change
@angular/animations dependencies major 8.0.0-beta.4 -> 11.0.0-rc.1
@angular/cli devDependencies major 8.0.0-beta.0 -> 11.0.0-rc.1
@angular/common dependencies major 8.0.0-beta.4 -> 11.0.0-rc.1
@angular/compiler dependencies major 8.0.0-beta.4 -> 11.0.0-rc.1
@angular/compiler-cli devDependencies major 8.0.0-beta.4 -> 11.0.0-rc.1
@angular/core dependencies major 8.0.0-beta.4 -> 11.0.0-rc.1
@angular/forms dependencies major 8.0.0-beta.4 -> 11.0.0-rc.1
@angular/language-service devDependencies major 8.0.0-beta.4 -> 11.0.0-rc.1
@angular/platform-browser dependencies major 8.0.0-beta.4 -> 11.0.0-rc.1
@angular/platform-browser-dynamic dependencies major 8.0.0-beta.4 -> 11.0.0-rc.1
@angular/router dependencies major 8.0.0-beta.4 -> 11.0.0-rc.1

Release Notes

angular/angular

v11.0.0-rc.1

Compare Source

Bug Fixes

10.2.1 (2020-10-28)

Bug Fixes

v11.0.0-rc.0

Compare Source

Bug Fixes
Code Refactoring
BREAKING CHANGES
  • platform-server: If you use useAbsoluteUrl to setup platform-server, you now need to also specify baseUrl. We are intentionally making this a breaking change in a minor release, because if useAbsoluteUrl is set to true then the behavior of the application could be unpredictable, resulting in issues that are hard to discover but could be affecting production environments.
  • compiler: TypeScript 3.9 is no longer supported, please upgrade to TypeScript 4.0.

v11.0.0-next.6

Compare Source

Bug Fixes
Features
BREAKING CHANGES
  • router: * The initialNavigation property for the options in RouterModule.forRoot no longer supports legacy_disabled, legacy_enabled, true, or false as valid values. legacy_enabled (the old default) is instead enabledNonBlocking
  • enabled is deprecated as a valid value for the RouterModule.forRoot initialNavigation option. enabledBlocking has been introduced to replace it
  • router: preserveQueryParams has been removed, use queryParamsHandling="preserve" instead
  • router: If you were accessing the RouterLink values of queryParams, fragment or queryParamsHandling you might need to relax the typing to also accept undefined and null. (#​39151)
  • core: * ViewEncapsulation.Native has been removed. Use ViewEncapsulation.ShadowDom instead. Existing usages will be updated automatically by ng update.
  • compiler-cli: Expressions within ICUs are now type-checked again, fixing a regression in Ivy. This may cause compilation failures if errors are found in expressions that appear within an ICU. Please correct these expressions to resolve the type-check errors.

10.1.6 (2020-10-14)

Bug Fixes
build
Performance Improvements

v11.0.0-next.5

Compare Source

Bug Fixes
Features
BREAKING CHANGES
  • forms: Directives in the @angular/forms package used to have any[] as a type of validators and asyncValidators arguments in constructors. Now these arguments are properly typed, so if your code relies on directive constructor types it may require some updates to improve type safety.
  • forms: Type of AbstractFormControl.parent now includes null

null is now included in the types of .parent. If you don't already have a check for this case, the TypeScript compiler might complain. A v11 migration exists which adds the non-null assertion operator where necessary.

In an unlikely case your code was testing the parent against undefined with strict equality, you'll need to change this to === null instead, since the parent is now explicitly initialized with null instead of being left undefined.

10.1.5 (2020-10-07)

Bug Fixes

v11.0.0-next.4

Compare Source

Bug Fixes
Code Refactoring
  • router: Adjust type of parameter in navigateByUrl and createUrlTree to be more accurate (#​38227) (e4f4d18), closes #​18798
Features
BREAKING CHANGES
  • packaging: In v10, IE 9, 10, and IE mobile support was deprecated. In v11, Angular framework removes IE 9, 10, and IE mobile support completely. Supporting outdated browsers like these increases bundle size, code complexity, and test load, and also requires time and effort that could be spent on improvements to the framework. For example, fixing issues can be more difficult, as a straightforward fix for modern browsers could break old ones that have quirks due to not receiving updates from vendors.
  • platform-webworker: @​angular/platform-webworker and @​angular/platform-webworker-dynamic have been removed as they were deprecated in v8
  • common: The slice pipe now returns null for the undefined input value, which is consistent with the behavior of most pipes. If you rely on undefined being the result in that case, you now need to check for it explicitly.
  • common: The typing of the keyvalue pipe has been fixed to report that for input objects that have number keys, the result will contain the string representation of the keys. This was already the case and the code has simply been updated to reflect this. Please update the consumers of the pipe output if they were relying on the incorrect types. Note that this does not affect use cases where the input values are Maps, so if you need to preserve numbers, this is an effective way.
  • common: The signatures of the number pipes now explicitly state which types are accepted. This should only cause issues in corner cases, as any other values would result in runtime exceptions.
  • common: The signature of the date pipe now explicitly states which types are accepted. This should only cause issues in corner cases, as any other values would result in runtime exceptions.
  • common: The async pipe no longer claims to return undefined for an input that was typed as undefined. Note that the code actually returned null on undefined inputs. In the unlikely case you were relying on this, please fix the typing of the consumers of the pipe output.
  • common: The case conversion pipes no longer let falsy values through. They now map both null and undefined to null and raise an exception on invalid input (0, false, NaN) just like most "common pipes". If your code required falsy values to pass through, you need to handle them explicitly.
  • router: While the new parameter types allow a variable of type NavigationExtras to be passed in, they will not allow object literals, as they may only specify known properties. They will also not accept types that do not have properties in common with the ones in the Pick. To fix this error, only specify properties from the NavigationExtras which are actually used in the respective function calls or use a type assertion on the object or variable: as NavigationExtras.
  • router: This commit changes the default value of relativeLinkResolution from 'legacy' to 'default'. If your application previously used the default by not specifying a value in the ExtraOptions and uses relative links when navigating from children of empty path routes, you will need to update your RouterModule to specifically specify 'legacy' for relativeLinkResolution. See https://angular.io/api/router/ExtraOptions#relativeLinkResolution for more details.

10.1.4 (2020-09-30)

Bug Fixes

v11.0.0-next.3

Compare Source

Bug Fixes
Features
BREAKING CHANGES
  • core: If you call TestBed.overrideProvider after TestBed initialization, provider overrides are not applied. This behavior is consistent with other override methods (such as TestBed.overrideDirective, etc) but they throw an error to indicate that, when the check was missing in the TestBed.overrideProvider function. Now calling TestBed.overrideProvider after TestBed initialization also triggers an error, thus there is a chance that some tests (where TestBed.overrideProvider is called after TestBed initialization) will start to fail and require updates to move TestBed.overrideProvider calls before TestBed initialization is completed.

10.1.3 (2020-09-23)

Bug Fixes
Reverts
  • feat(router): better warning message when a router outlet has not been instantiated (#​38920) (04d0aa6)

v11.0.0-next.2

Compare Source

Bug Fixes
Features
  • compiler-cli: TemplateTypeChecker operation to get Symbol from a template node (#​38618) (c4556db)
  • compiler-cli: Add ability to get Symbol of Templates and Elements in component template (#​38618) (cf2e8b9)
  • compiler-cli: Add ability to get Symbol of AST expression in component template (#​38618) (f56ece4)
  • compiler-cli: add ability to get symbol of reference or variable (#​38618) (19598b4)
  • compiler-cli: define interfaces to be used for TemplateTypeChecker (#​38618) (9e77bd3)
Performance Improvements
  • compiler-cli: only emit directive/pipe references that are used (#​38539) (077f516)
  • compiler-cli: optimize computation of type-check scope information (#​38539) (297c060)
  • router: use ngDevMode to tree-shake error messages in router (#​38674) (db21c4f)
BREAKING CHANGES
  • router: This change corrects the argument order when calling RouteReuseStrategy#shouldReuseRoute. Previously, when evaluating child routes, they would be called with the future and current arguments would be swapped. If your RouteReuseStrategy relies specifically on only the future or current snapshot state, you may need to update the shouldReuseRoute implementation's use of "future" and "current" ActivateRouteSnapshots.
  • common: The locale data API has been marked as returning readonly arrays, rather than mutable arrays, since these arrays are shared across calls to the API. If you were mutating them (e.g. calling sort(), push(), splice(), etc) then your code will not longer compile. If you need to mutate the array, you should now take a copy (e.g. by calling slice()) and mutate the copy.
  • common: When passing a date-time formatted string to the DatePipe in a format that contains fractions of a millisecond, the milliseconds will now always be rounded down rather than to the nearest millisecond.

Most applications will not be affected by this change. If this is not the desired behaviour then consider pre-processing the string to round the millisecond part before passing it to the DatePipe.

10.1.2 (2020-09-16)

Bug Fixes
Performance Improvements

v11.0.0-next.1

Compare Source

Bug Fixes
BREAKING CHANGES
  • core: CollectionChangeRecord has been removed, use IterableChangeRecord instead

10.1.1 (2020-09-09)

Bug Fixes
Performance Improvements

v11.0.0-next.0

Compare Source

Bug Fixes
Features
BREAKING CHANGES
  • forms: Previously if FormControl, FormGroup and FormArray class instances had async validators defined at initialization time, the status change event was not emitted once async validator completed. After this change the status event is emitted into the statusChanges observable. If your code relies on the old behavior, you can filter/ignore this additional status change event.

v10.2.1

Compare Source

Bug Fixes

v10.2.0

Compare Source

Bug Fixes
BREAKING CHANGES
  • platform-server: If you use useAbsoluteUrl to setup platform-server, you now need to also specify baseUrl. We are intentionally making this a breaking change in a minor release, because if useAbsoluteUrl is set to true then the behavior of the application could be unpredictable, resulting in issues that are hard to discover but could be affecting production environments.

v10.1.6

Compare Source

Bug Fixes
build
Performance Improvements

v10.1.5

Compare Source

Bug Fixes

v10.1.4

Compare Source

Bug Fixes

v10.1.3

Compare Source

Bug Fixes
Reverts
  • feat(router): better warning message when a router outlet has not been instantiated (#​38920) (04d0aa6)

v10.1.2

Compare Source

Bug Fixes
Performance Improvements

v10.1.1

Compare Source

Bug Fixes
Performance Improvements

v10.1.0

Compare Source

Features
  • bazel: provide LinkablePackageInfo from ng_module (#​37623) (6898eab)
  • common: add ReadonlyMap in place of Map in keyValuePipe (#​37311) (3373453), closes #​37308
  • compiler-cli: add SourceFile.getOriginalLocation() to sourcemaps package (#​32912) (6abb8d0)
  • compiler-cli: Add compiler option to report errors when assigning to restricted input fields (#​38249) (71138f6)
  • compiler-cli: add support for TypeScript 4.0 (#​38076) (0fc44e0)
  • compiler-cli: explain why an expression cannot be used in AOT compilations (#​37587) ([712f1bd](https://togith

Renovate configuration

:date: Schedule: At any time (no schedule defined).

:vertical_traffic_light: Automerge: Disabled by config. Please merge this manually once you are satisfied.

:recycle: Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

:no_bell: Ignore: Close this PR and you won't be reminded about these updates again.


  • [ ] If you want to rebase/retry this PR, check this box

This PR has been generated by WhiteSource Renovate. View repository job log here.

renovate[bot] avatar Aug 10 '19 10:08 renovate[bot]