angular / dev-infra

Angular Development Infrastructure
MIT License
65 stars 54 forks source link

build: update angular dependencies to v19.0.0-next.2 #2279

Closed angular-robot closed 1 month ago

angular-robot commented 1 month ago

This PR contains the following updates:

Package Type Update Change
@angular/animations (source) devDependencies patch 19.0.0-next.1 -> 19.0.0-next.2
@angular/build dependencies patch 19.0.0-next.1 -> 19.0.0-next.2
@angular/cdk devDependencies patch 19.0.0-next.1 -> 19.0.0-next.2
@angular/cli devDependencies patch 19.0.0-next.1 -> 19.0.0-next.2
@angular/common (source) devDependencies patch 19.0.0-next.1 -> 19.0.0-next.2
@angular/compiler (source) devDependencies patch 19.0.0-next.1 -> 19.0.0-next.2
@angular/compiler-cli (source) devDependencies patch 19.0.0-next.1 -> 19.0.0-next.2
@angular/core (source) resolutions patch 19.0.0-next.1 -> 19.0.0-next.2
@angular/core (source) devDependencies patch 19.0.0-next.1 -> 19.0.0-next.2
@angular/forms (source) devDependencies patch 19.0.0-next.1 -> 19.0.0-next.2
@angular/material devDependencies patch 19.0.0-next.1 -> 19.0.0-next.2
@angular/platform-browser (source) devDependencies patch 19.0.0-next.1 -> 19.0.0-next.2
@angular/platform-browser-dynamic (source) devDependencies patch 19.0.0-next.1 -> 19.0.0-next.2
@angular/router (source) devDependencies patch 19.0.0-next.1 -> 19.0.0-next.2

[!WARNING] Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

angular/angular (@​angular/animations) ### [`v19.0.0-next.2`](https://togithub.com/angular/angular/blob/HEAD/CHANGELOG.md#1900-next2-2024-08-28) [Compare Source](https://togithub.com/angular/angular/compare/19.0.0-next.1...19.0.0-next.2) #### Breaking Changes ##### core - Render default fallback with empty `projectableNodes`. When passing an empty array to `projectableNodes` in the `createComponent` API, the default fallback content of the `ng-content` will be rendered if present. To prevent rendering the default content, pass `document.createTextNode('')` as a `projectableNode`. For example: ```ts // The first ng-content will render the default fallback content if present createComponent(MyComponent. { projectableNodes: [[], [secondNode]] }); // To prevent projecting the default fallback content: createComponent(MyComponent. { projectableNodes: [[document.createTextNode('')], [secondNode]] }); ``` - The timers that are used for zone coalescing and hybrid mode scheduling (which schedules an application state synchronization when changes happen outside the Angular zone) will now run in the zone above Angular rather than the root zone. This will mostly affect tests which use `fakeAsync`: these timers will now be visible to `fakeAsync` and can be affected by `tick` or `flush`. ##### elements - as part of switching away from custom CD behavior to the hybrid scheduler, timing of change detection around custom elements has changed subtly. These changes make elements more efficient, but can cause tests which encoded assumptions about how or when elements would be checked to require updating. ##### common | Commit | Type | Description | | -- | -- | -- | | [50f08e6c4bf](https://togithub.com/angular/angular/commit/50f08e6c4bf1caeeb08d3505ce7fabd466b9c76b) | feat | automatically use sizes auto in NgOptimizedImage ([#​57479](https://togithub.com/angular/angular/pull/57479)) | ##### compiler-cli | Commit | Type | Description | | -- | -- | -- | | [4716c3b9660](https://togithub.com/angular/angular/commit/4716c3b9660b01f4ef3642fb774270b7f4a13d1a) | perf | reduce duplicate component style resolution ([#​57502](https://togithub.com/angular/angular/pull/57502)) | ##### core | Commit | Type | Description | | -- | -- | -- | | [a3cdbfe87f5](https://togithub.com/angular/angular/commit/a3cdbfe87f5a8daef11a154ef3edb5a3a5c12f77) | fix | avoid leaking memory if component throws during creation ([#​57546](https://togithub.com/angular/angular/pull/57546)) | | [7a99815146e](https://togithub.com/angular/angular/commit/7a99815146eb78074aa3ed6db73c6e87042df692) | fix | Do not bubble capture events. ([#​57476](https://togithub.com/angular/angular/pull/57476)) | | [7b1e5be20b9](https://togithub.com/angular/angular/commit/7b1e5be20b99c88246c6be78a4dcd64eb55cee1a) | fix | fallback to default ng-content with empty projectable nodes. ([#​57480](https://togithub.com/angular/angular/pull/57480)) | | [0300dd2e18f](https://togithub.com/angular/angular/commit/0300dd2e18f064f2f57f7371e0dc5c01218b5019) | fix | Fix fixture.detectChanges with autoDetect disabled and zoneless ([#​57416](https://togithub.com/angular/angular/pull/57416)) | | [226a67dabba](https://togithub.com/angular/angular/commit/226a67dabba90a488ad09ce7bb026b8883c90d4a) | fix | Schedulers run in zone above Angular rather than root ([#​57553](https://togithub.com/angular/angular/pull/57553)) | ##### elements | Commit | Type | Description | | -- | -- | -- | | [0cebfd7462c](https://togithub.com/angular/angular/commit/0cebfd7462c6a7c6c3b0d66720c436a4b0eea19d) | fix | switch to `ComponentRef.setInput` & remove custom scheduler ([#​56728](https://togithub.com/angular/angular/pull/56728)) | ##### router | Commit | Type | Description | | -- | -- | -- | | [8f6308457f0](https://togithub.com/angular/angular/commit/8f6308457f0f03e9bbd09f4bc10d1c61fd41d22c) | fix | Do not unnecessarily run matcher twice on route matching ([#​57530](https://togithub.com/angular/angular/pull/57530)) | ##### upgrade | Commit | Type | Description | | -- | -- | -- | | [c9d90786d0a](https://togithub.com/angular/angular/commit/c9d90786d0a6421bbb21b9d1649d031b34e3fa5d) | fix | Address Trusted Types violations in [@​angular/upgrade](https://togithub.com/angular/upgrade) ([#​57454](https://togithub.com/angular/angular/pull/57454)) |
angular/angular-cli (@​angular/build) ### [`v19.0.0-next.2`](https://togithub.com/angular/angular-cli/blob/HEAD/CHANGELOG.md#1900-next2-2024-08-28) [Compare Source](https://togithub.com/angular/angular-cli/compare/19.0.0-next.1...19.0.0-next.2) #### Breaking Changes ##### [@​angular/ssr](https://togithub.com/angular/ssr) - The `CommonEngine` API now needs to be imported from `@angular/ssr/node`. **Before** ```ts import { CommonEngine } from '@​angular/ssr'; ``` **After** ```ts import { CommonEngine } from '@​angular/ssr/node'; ``` ##### [@​schematics/angular](https://togithub.com/schematics/angular) | Commit | Type | Description | | --------------------------------------------------------------------------------------------------- | ---- | ----------------------------------------- | | [a381a3db1](https://togithub.com/angular/angular-cli/commit/a381a3db187f7b20e5ec8d1e1a1f1bd860426fcd) | feat | add option to export component as default | ##### [@​angular/ssr](https://togithub.com/angular/ssr) | Commit | Type | Description | | --------------------------------------------------------------------------------------------------- | ---- | --------------------------------------------------------- | | [30c25bf68](https://togithub.com/angular/angular-cli/commit/30c25bf6885fefea6094ec1815e066e4c6ada097) | feat | export `AngularAppEngine` as public API | | [4b09887a9](https://togithub.com/angular/angular-cli/commit/4b09887a9c82838ccb7a6c95d66225c7875e562b) | feat | move `CommonEngine` API to `/node` entry-point | | [d43180af5](https://togithub.com/angular/angular-cli/commit/d43180af5f3e7b29387fd06625bd8e37f3ebad95) | fix | add missing peer dependency on `@angular/platform-server` |
angular/components (@​angular/cdk) ### [`v19.0.0-next.2`](https://togithub.com/angular/components/blob/HEAD/CHANGELOG.md#1900-next2-bronze-book-2024-08-28) [Compare Source](https://togithub.com/angular/components/compare/19.0.0-next.1...19.0.0-next.2) #### Breaking Changes ##### cdk - - The overlay stays are now loaded slightly later than before which can change their specificity. You may have to update any overlay style overrides. ##### material - - The ripples styles are now loaded slightly later than before which can change their specificity. You may have to update any ripple style overrides. ##### multiple - - `MatButton.ripple` is no longer available. - `MatCheckbox.ripple` is no longer available. - `MatChip.ripple` is no longer available. ##### material | Commit | Type | Description | | -- | -- | -- | | [64ed7ca715](https://togithub.com/angular/components/commit/64ed7ca7157b519703d152bb86a84a233f310f71) | feat | **core:** add experimental theme demo ([#​29636](https://togithub.com/angular/components/pull/29636)) | | [fcb76d3ed1](https://togithub.com/angular/components/commit/fcb76d3ed1ed4f6d5634496f47473efeda3bd1aa) | fix | **core:** add missing system variables ([#​29624](https://togithub.com/angular/components/pull/29624)) | | [855ed49482](https://togithub.com/angular/components/commit/855ed49482b1e215f43e1e9b96f1b28eded94640) | fix | **core:** avoid having to manually load ripple styles | | [d0e178b75e](https://togithub.com/angular/components/commit/d0e178b75eb8e8e4d158ebff146cfb2ecadef686) | fix | **core:** stop manually instantiating MatRipple directive ([#​29630](https://togithub.com/angular/components/pull/29630)) | | [3bf0e31f77](https://togithub.com/angular/components/commit/3bf0e31f771c0a6886aa0e88dec19f85e523d791) | fix | **schematics:** Add the missing neutral tones for the M3 color palettes ([#​29644](https://togithub.com/angular/components/pull/29644)) | | [64cf19ccdb](https://togithub.com/angular/components/commit/64cf19ccdba5f584f3e508de97d58283654d9fb8) | perf | **tooltip:** Avoid unneeded calls to clearTimeout ([#​29643](https://togithub.com/angular/components/pull/29643)) | ##### cdk | Commit | Type | Description | | -- | -- | -- | | [2f1fe03ae9](https://togithub.com/angular/components/commit/2f1fe03ae990266ff05c298a93c7fd74bc13e87b) | fix | **drag-drop:** error if ngDevMode is undefined ([#​29634](https://togithub.com/angular/components/pull/29634)) | | [df21d2b091](https://togithub.com/angular/components/commit/df21d2b0915ee54fbf04b93ccba512a9161f5008) | fix | **overlay:** avoid having to manually load structural styles | | [ad18e6d74e](https://togithub.com/angular/components/commit/ad18e6d74e57e4980a411f0ac9d0b502d5fc577f) | fix | **text-field:** avoid having to manually load text field styles | | [a6835ef6a7](https://togithub.com/angular/components/commit/a6835ef6a700dcded10e1a83d936dc553774f021) | fix | **tree:** avoid breaking change in constructor ([#​29648](https://togithub.com/angular/components/pull/29648)) | | [8b34fb7e8d](https://togithub.com/angular/components/commit/8b34fb7e8d6276de269a9c1dc2507458eaf7d594) | fix | **tree:** capturing focus on load ([#​29641](https://togithub.com/angular/components/pull/29641)) | ##### multiple | Commit | Type | Description | | -- | -- | -- | | [a9da72ed15](https://togithub.com/angular/components/commit/a9da72ed1551601b22b1a509f2e50227ac23f432) | fix | consolidate strong focus indicators ([#​29623](https://togithub.com/angular/components/pull/29623)) | | [485bd9923b](https://togithub.com/angular/components/commit/485bd9923b732390fbc3533f94815da97bd34c13) | fix | stop exposing internal ripple implementation ([#​29622](https://togithub.com/angular/components/pull/29622)) |

Configuration

πŸ“… Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

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

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

πŸ”• Ignore: Close this PR and you won't be reminded about these updates again.



This PR has been generated by Renovate Bot.

josephperrott commented 1 month ago

This PR was merged into the repository by commit 1b3fa4f9a1de846bf765071ac5c70c99ea69445f.

The changes were merged into the following branches: main

angular-automatic-lock-bot[bot] commented 2 weeks ago

This issue has been automatically locked due to inactivity. Please file a new issue if you are encountering a similar or related problem.

Read more about our automatic conversation locking policy.

This action has been performed automatically by a bot.