samples/web_embedding/ng-flutter/package.json

43 lines
1.2 KiB

{
"name": "ng-flutter",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"prebuild": "pushd flutter && flutter clean && flutter build web && popd",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test"
},
"private": true,
"dependencies": {
Bump @angular/animations from 18.2.12 to 19.0.0 in /web_embedding/ng-flutter (#2495) Bumps [@angular/animations](https://github.com/angular/angular/tree/HEAD/packages/animations) from 18.2.12 to 19.0.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/angular/angular/releases"><code>@​angular/animations</code>'s releases</a>.</em></p> <blockquote> <h2>v19.0.0</h2> <h1>19.0.0 (2024-11-19)</h1> <p>Explore Angular v19 with a blog post from the Angular team: <a href="https://blog.angular.dev/meet-angular-v19-7b29dfd05b84">https://blog.angular.dev/meet-angular-v19-7b29dfd05b84</a></p> <h2>Breaking Changes</h2> <h3>compiler</h3> <ul> <li><code>this.foo</code> property reads no longer refer to template context variables. If you intended to read the template variable, do not use <code>this.</code>.</li> </ul> <h3>core</h3> <ul> <li> <p>Angular directives, components and pipes are now standalone by default.</p> <ul> <li>Specify <code>standalone: false</code> for declarations that are currently declared in <code>@NgModule</code>s.</li> <li><code>ng update</code> for v19 will take care of this automatically.</li> </ul> </li> <li> <p>TypeScript versions less than 5.5 are no longer supported.</p> </li> <li> <p>Timing changes for <code>effect</code> API (in developer preview):</p> <ul> <li> <p>effects which are triggered outside of change detection run as part of the change detection process instead of as a microtask. Depending on the specifics of application/test setup, this can result in them executing earlier or later (or requiring additional test steps to trigger; see below examples).</p> </li> <li> <p>effects which are triggered during change detection (e.g. by input signals) run <em>earlier</em>, before the component's template.</p> </li> </ul> </li> <li> <p><code>ExperimentalPendingTasks</code> has been renamed to <code>PendingTasks</code>.</p> </li> <li> <p>The <code>autoDetect</code> feature of <code>ComponentFixture</code> will now attach the fixture to the <code>ApplicationRef</code>. As a result, errors during automatic change detection of the fixture be reported to the <code>ErrorHandler</code>. This change may cause custom error handlers to observe new failures that were previously unreported.</p> </li> <li> <p><code>createComponent</code> will now render default fallback with empty <code>projectableNodes</code>.</p> <ul> <li>When passing an empty array to <code>projectableNodes</code> in the <code>createComponent</code> API, the default fallback content of the <code>ng-content</code> will be rendered if present. To prevent rendering the default content, pass <code>document.createTextNode('')</code> as a <code>projectableNode</code>.</li> </ul> <pre lang="ts"><code>// The first ng-content will render the default fallback content if present createComponent(MyComponent. { projectableNodes: [[], [secondNode]] }); <p>// To prevent projecting the default fallback content: createComponent(MyComponent. { projectableNodes: [[document.createTextNode('')], [secondNode]] });</p> <p></code></pre></p> </li> <li> <p>Errors that are thrown during <code>ApplicationRef.tick</code> will now be rethrown when using <code>TestBed</code>. These errors should be resolved by ensuring the test environment is set up correctly to complete change detection successfully. There are two alternatives to catch the errors:</p> <ul> <li>Instead of waiting for automatic change detection to happen, trigger</li> </ul> </li> </ul> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/angular/angular/blob/main/CHANGELOG.md"><code>@​angular/animations</code>'s changelog</a>.</em></p> <blockquote> <h1>19.0.0 (2024-11-19)</h1> <p>Blog post: <a href="https://blog.angular.dev/meet-angular-v19-7b29dfd05b84">https://blog.angular.dev/meet-angular-v19-7b29dfd05b84</a></p> <h2>Breaking Changes</h2> <h3>compiler</h3> <ul> <li><code>this.foo</code> property reads no longer refer to template context variables. If you intended to read the template variable, do not use <code>this.</code>.</li> </ul> <h3>core</h3> <ul> <li> <p>Angular directives, components and pipes are now standalone by default.</p> <ul> <li>Specify <code>standalone: false</code> for declarations that are currently declared in <code>@NgModule</code>s.</li> <li><code>ng update</code> for v19 will take care of this automatically.</li> </ul> </li> <li> <p>TypeScript versions less than 5.5 are no longer supported.</p> </li> <li> <p>Timing changes for <code>effect</code> API (in developer preview):</p> <ul> <li> <p>effects which are triggered outside of change detection run as part of the change detection process instead of as a microtask. Depending on the specifics of application/test setup, this can result in them executing earlier or later (or requiring additional test steps to trigger; see below examples).</p> </li> <li> <p>effects which are triggered during change detection (e.g. by input signals) run <em>earlier</em>, before the component's template.</p> </li> </ul> </li> <li> <p><code>ExperimentalPendingTasks</code> has been renamed to <code>PendingTasks</code>.</p> </li> <li> <p>The <code>autoDetect</code> feature of <code>ComponentFixture</code> will now attach the fixture to the <code>ApplicationRef</code>. As a result, errors during automatic change detection of the fixture be reported to the <code>ErrorHandler</code>. This change may cause custom error handlers to observe new failures that were previously unreported.</p> </li> <li> <p><code>createComponent</code> will now render default fallback with empty <code>projectableNodes</code>.</p> <ul> <li>When passing an empty array to <code>projectableNodes</code> in the <code>createComponent</code> API, the default fallback content of the <code>ng-content</code> will be rendered if present. To prevent rendering the default content, pass <code>document.createTextNode('')</code> as a <code>projectableNode</code>.</li> </ul> <pre lang="ts"><code>// The first ng-content will render the default fallback content if present createComponent(MyComponent. { projectableNodes: [[], [secondNode]] }); <p>// To prevent projecting the default fallback content: createComponent(MyComponent. { projectableNodes: [[document.createTextNode('')], [secondNode]] });</p> <p></code></pre></p> </li> <li> <p>Errors that are thrown during <code>ApplicationRef.tick</code> will now be rethrown when using <code>TestBed</code>. These errors should be resolved by ensuring the test environment is set up correctly to complete change detection successfully. There are two alternatives to catch the errors:</p> <ul> <li>Instead of waiting for automatic change detection to happen, trigger it synchronously and expect the error. For example, a jasmine test could write <code>expect(() =&gt; TestBed.inject(ApplicationRef).tick()).toThrow()</code></li> </ul> </li> </ul> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/angular/angular/commit/09df589e31ee4d546c536ca385d4f5f1a948df93"><code>09df589</code></a> refactor(core): Migrate all packages with the <code>explicit-standalone-flag</code> sche...</li> <li><a href="https://github.com/angular/angular/commit/84b68969561b6f387ef8761218a89fb343fc4442"><code>84b6896</code></a> refactor(platform-server): Add an ssr benchmark setup. (<a href="https://github.com/angular/angular/tree/HEAD/packages/animations/issues/57647">#57647</a>)</li> <li><a href="https://github.com/angular/angular/commit/9dbe6fc18be700e89f28a023378f4775f3f7c3fe"><code>9dbe6fc</code></a> refactor: update license text to point to angular.dev (<a href="https://github.com/angular/angular/tree/HEAD/packages/animations/issues/57901">#57901</a>)</li> <li>See full diff in <a href="https://github.com/angular/angular/commits/19.0.0/packages/animations">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@angular/animations&package-manager=npm_and_yarn&previous-version=18.2.12&new-version=19.0.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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`. --- <details> <summary>Dependabot commands and options</summary> <br /> 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 show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@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) </details>
4 months ago
"@angular/animations": "^19.0.0",
Bump @angular/cdk from 18.2.14 to 19.0.0 in /web_embedding/ng-flutter (#2493) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- Bumps [@angular/cdk](https://github.com/angular/components) from 18.2.14 to 19.0.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/angular/components/releases"><code>@​angular/cdk</code>'s releases</a>.</em></p> <blockquote> <h2>v19.0.0</h2> <h1>19.0.0 &quot;hafnium-hippo&quot; (2024-11-19)</h1> <h3>cdk</h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/components/commit/f4a02adb779968ab1e696aa93dc69b62e7a18929"><img src="https://img.shields.io/badge/f4a02adb7-feat-blue" alt="feat - f4a02adb7" /></a></td> <td><strong>a11y:</strong> use native media query for high contrast detection (<a href="https://redirect.github.com/angular/components/issues/29678">#29678</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/9b4085c6e3eee78556000c0f60ef2c51c0668ed9"><img src="https://img.shields.io/badge/9b4085c6e-feat-blue" alt="feat - 9b4085c6e" /></a></td> <td><strong>private:</strong> create cdk-visually-hidden style loader (<a href="https://redirect.github.com/angular/components/issues/29757">#29757</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/df21d2b0915ee54fbf04b93ccba512a9161f5008"><img src="https://img.shields.io/badge/df21d2b09-fix-green" alt="fix - df21d2b09" /></a></td> <td><strong>overlay:</strong> avoid having to manually load structural styles</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/560878a231373dca51ecac07f913503ee3e860aa"><img src="https://img.shields.io/badge/560878a23-fix-green" alt="fix - 560878a23" /></a></td> <td><strong>overlay:</strong> load structural styles in a cascade layer (<a href="https://redirect.github.com/angular/components/issues/29725">#29725</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/873eb01e018018f19434a4187a6b2a871272d09a"><img src="https://img.shields.io/badge/873eb01e0-fix-green" alt="fix - 873eb01e0" /></a></td> <td><strong>portal:</strong> remove ComponentFactoryResolver usages (<a href="https://redirect.github.com/angular/components/issues/27427">#27427</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/5439460d1fe166f8ec34ab7d48f05e0dd7f6a946"><img src="https://img.shields.io/badge/5439460d1-fix-green" alt="fix - 5439460d1" /></a></td> <td><strong>scrolling:</strong> adds ngTemplateContextGuard (<a href="https://redirect.github.com/angular/components/issues/27276">#27276</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/ad18e6d74e57e4980a411f0ac9d0b502d5fc577f"><img src="https://img.shields.io/badge/ad18e6d74-fix-green" alt="fix - ad18e6d74" /></a></td> <td><strong>text-field:</strong> avoid having to manually load text field styles</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/bd84c2a67476b688a0c775de8566a4ff4b3b2ce0"><img src="https://img.shields.io/badge/bd84c2a67-fix-green" alt="fix - bd84c2a67" /></a></td> <td><strong>tree:</strong> fix issue where <code>isExpanded</code> wouldn't be set if placed before <code>isExpandable</code> (<a href="https://redirect.github.com/angular/components/issues/29565">#29565</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/3b4ade5a0b0df26cb72a9bb81742e1ea5d86a46a"><img src="https://img.shields.io/badge/3b4ade5a0-fix-green" alt="fix - 3b4ade5a0" /></a></td> <td><strong>tree:</strong> only handle keyboard events directly from the node (<a href="https://redirect.github.com/angular/components/issues/29861">#29861</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/f6066c23feee5a23d870104860f1e18bb9f3db83"><img src="https://img.shields.io/badge/f6066c23f-fix-green" alt="fix - f6066c23f" /></a></td> <td><strong>tree:</strong> warn if mixed node types are used within the same tree</td> </tr> </tbody> </table> <h3>material</h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/components/commit/9122335b25b28a5532159ab87c36aab3be9c3716"><img src="https://img.shields.io/badge/9122335b2-feat-blue" alt="feat - 9122335b2" /></a></td> <td><strong>checkbox:</strong> add new aria properties to MatCheckbox (<a href="https://redirect.github.com/angular/components/issues/29457">#29457</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/64ed7ca7157b519703d152bb86a84a233f310f71"><img src="https://img.shields.io/badge/64ed7ca71-feat-blue" alt="feat - 64ed7ca71" /></a></td> <td><strong>core:</strong> add experimental theme demo (<a href="https://redirect.github.com/angular/components/issues/29636">#29636</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/a58e6f6711af48f7106ed675b4b996c41899a0be"><img src="https://img.shields.io/badge/a58e6f671-feat-blue" alt="feat - a58e6f671" /></a></td> <td><strong>core:</strong> add theme-overrides mixin (<a href="https://redirect.github.com/angular/components/issues/29858">#29858</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/d206225c58d071e6cb6b680ef11d1c7bab7a73cc"><img src="https://img.shields.io/badge/d206225c5-feat-blue" alt="feat - d206225c5" /></a></td> <td><strong>core:</strong> create focus-indicator structural styles loader (<a href="https://redirect.github.com/angular/components/issues/29763">#29763</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/b519b4785b1da26becdb88e3810d606b9bddedfc"><img src="https://img.shields.io/badge/b519b4785-feat-blue" alt="feat - b519b4785" /></a></td> <td><strong>core:</strong> default to color-scheme theme type (<a href="https://redirect.github.com/angular/components/issues/29907">#29907</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/ea0d1ba7b776e021ecfa27b80c921a22b98e3c40"><img src="https://img.shields.io/badge/ea0d1ba7b-feat-blue" alt="feat - ea0d1ba7b" /></a></td> <td><strong>core:</strong> deprecate the core mixin (<a href="https://redirect.github.com/angular/components/issues/29906">#29906</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/4869909123c37a4910f5fde3f70d59cda4b44816"><img src="https://img.shields.io/badge/486990912-feat-blue" alt="feat - 486990912" /></a></td> <td><strong>core:</strong> rename theme mixin (<a href="https://redirect.github.com/angular/components/issues/29857">#29857</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/4b49d73542a4b10c8d5bd67a7258bfdd44a8e329"><img src="https://img.shields.io/badge/4b49d7354-feat-blue" alt="feat - 4b49d7354" /></a></td> <td><strong>core:</strong> switch system prefix from sys to mat-sys (<a href="https://redirect.github.com/angular/components/issues/29908">#29908</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/1abb484aa72177a748eecdf9b850cc1c07d1a42b"><img src="https://img.shields.io/badge/1abb484aa-feat-blue" alt="feat - 1abb484aa" /></a></td> <td><strong>input:</strong> add the ability to interact with disabled inputs (<a href="https://redirect.github.com/angular/components/issues/29574">#29574</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/4adc3725dd08ef3cf3868f9c752e16c8c1492466"><img src="https://img.shields.io/badge/4adc3725d-feat-blue" alt="feat - 4adc3725d" /></a></td> <td><strong>schematics:</strong> create v19 core removal schematic (<a href="https://redirect.github.com/angular/components/issues/29768">#29768</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/9c3af284f89c9a10af66e0ded6f7805bab207a91"><img src="https://img.shields.io/badge/9c3af284f-feat-blue" alt="feat - 9c3af284f" /></a></td> <td><strong>schematics:</strong> Switch custom theme schematic to use theme mixin instead of define-theme and add high contrast override mixins (<a href="https://redirect.github.com/angular/components/issues/29642">#29642</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/3fc1f9a1b026b9cd0ec666bc623169d1ba5a9532"><img src="https://img.shields.io/badge/3fc1f9a1b-feat-blue" alt="feat - 3fc1f9a1b" /></a></td> <td><strong>schematics:</strong> Update custom theme schematic to work with light-dark and use theme-overrides mixin (<a href="https://redirect.github.com/angular/components/issues/29911">#29911</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/ff3d342fd4ab91d0dd24147bc747c5a0ba8f1aaf"><img src="https://img.shields.io/badge/ff3d342fd-feat-blue" alt="feat - ff3d342fd" /></a></td> <td><strong>tabs:</strong> add <code>alignTabs</code> in <code>MatTabsConfig</code> (<a href="https://redirect.github.com/angular/components/issues/29779">#29779</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/371446a7cfb5176e02fe796b4d39941db82c22c2"><img src="https://img.shields.io/badge/371446a7c-feat-blue" alt="feat - 371446a7c" /></a></td> <td><strong>theming:</strong> Disambiguate token names in theme overrides (<a href="https://redirect.github.com/angular/components/issues/29859">#29859</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/9546fe77ef7322276bddf25ed826b2ab73e5ee20"><img src="https://img.shields.io/badge/9546fe77e-feat-blue" alt="feat - 9546fe77e" /></a></td> <td><strong>timepicker:</strong> add test harnesses</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/2646e088510f00ca2ae885d42acae9c7fcd8656e"><img src="https://img.shields.io/badge/2646e0885-feat-blue" alt="feat - 2646e0885" /></a></td> <td><strong>timepicker:</strong> add timepicker component</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/de6c20686c441ff39b872b69c725c3c46b1f3a93"><img src="https://img.shields.io/badge/de6c20686-fix-green" alt="fix - de6c20686" /></a></td> <td><strong>bottom-sheet:</strong> add <code>height</code> <code>minHeight</code> <code>maxHeight</code> to config (<a href="https://redirect.github.com/angular/components/issues/29794">#29794</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/fcb76d3ed1ed4f6d5634496f47473efeda3bd1aa"><img src="https://img.shields.io/badge/fcb76d3ed-fix-green" alt="fix - fcb76d3ed" /></a></td> <td><strong>core:</strong> add missing system variables (<a href="https://redirect.github.com/angular/components/issues/29624">#29624</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/5ad133d07341fa8647e81277e7f1b9f54b15059a"><img src="https://img.shields.io/badge/5ad133d07-fix-green" alt="fix - 5ad133d07" /></a></td> <td><strong>core:</strong> allow optgroup overrides through core-overrides (<a href="https://redirect.github.com/angular/components/issues/29897">#29897</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/0fb4247ce834c475556a17e116e20f1ec0fd5a5a"><img src="https://img.shields.io/badge/0fb4247ce-fix-green" alt="fix - 0fb4247ce" /></a></td> <td><strong>core:</strong> avoid browser inconsistencies when parsing time</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/855ed49482b1e215f43e1e9b96f1b28eded94640"><img src="https://img.shields.io/badge/855ed4948-fix-green" alt="fix - 855ed4948" /></a></td> <td><strong>core:</strong> avoid having to manually load ripple styles</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/d0d59b784abdde79bebaf9cff6d316c952228fa7"><img src="https://img.shields.io/badge/d0d59b784-fix-green" alt="fix - d0d59b784" /></a></td> <td><strong>core:</strong> change ng-add to use mat.theme (<a href="https://redirect.github.com/angular/components/issues/29990">#29990</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/a8e40ec341103a4f3fa84bd446067dd37cbf6d50"><img src="https://img.shields.io/badge/a8e40ec34-fix-green" alt="fix - a8e40ec34" /></a></td> <td><strong>core:</strong> correctly identify color input (<a href="https://redirect.github.com/angular/components/issues/29909">#29909</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/edce90652ade6715b4404db284f684b1b511fae4"><img src="https://img.shields.io/badge/edce90652-fix-green" alt="fix - edce90652" /></a></td> <td><strong>core:</strong> delete deprecated APIs (<a href="https://redirect.github.com/angular/components/issues/29651">#29651</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/54875a3258a89a5326d7e224b6550c96e5801cd5"><img src="https://img.shields.io/badge/54875a325-fix-green" alt="fix - 54875a325" /></a></td> <td><strong>core:</strong> drop sanity checks (<a href="https://redirect.github.com/angular/components/issues/29688">#29688</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/ef14c286986f9451addeada26ab7b51402aa143f"><img src="https://img.shields.io/badge/ef14c2869-fix-green" alt="fix - ef14c2869" /></a></td> <td><strong>core:</strong> option showing double selected indicator in high contrast mode</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/5403b4b074d0a694bdba5b145f43ce61b1145ad1"><img src="https://img.shields.io/badge/5403b4b07-fix-green" alt="fix - 5403b4b07" /></a></td> <td><strong>core:</strong> remove unused motion system vars (<a href="https://redirect.github.com/angular/components/issues/29920">#29920</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/613cf54063138201a9398979cd363ee1ace7ea66"><img src="https://img.shields.io/badge/613cf5406-fix-green" alt="fix - 613cf5406" /></a></td> <td><strong>core:</strong> rename sys vars from mat-app to mat-sys (<a href="https://redirect.github.com/angular/components/issues/29879">#29879</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/d0e178b75eb8e8e4d158ebff146cfb2ecadef686"><img src="https://img.shields.io/badge/d0e178b75-fix-green" alt="fix - d0e178b75" /></a></td> <td><strong>core:</strong> stop manually instantiating MatRipple directive (<a href="https://redirect.github.com/angular/components/issues/29630">#29630</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/d55ec612cc66b42971c9da2677bc6e54017dd271"><img src="https://img.shields.io/badge/d55ec612c-fix-green" alt="fix - d55ec612c" /></a></td> <td><strong>core:</strong> update prebuilt themes to use mat.theme (<a href="https://redirect.github.com/angular/components/issues/29989">#29989</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/7cf8c6c464732af4283c5e3c3c724dd90acc4136"><img src="https://img.shields.io/badge/7cf8c6c46-fix-green" alt="fix - 7cf8c6c46" /></a></td> <td><strong>datepicker:</strong> calendar font tokens not being picked up (<a href="https://redirect.github.com/angular/components/issues/29610">#29610</a>)</td> </tr> </tbody> </table> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/angular/components/blob/main/CHANGELOG.md"><code>@​angular/cdk</code>'s changelog</a>.</em></p> <blockquote> <h1>19.0.0 &quot;hafnium-hippo&quot; (2024-11-19)</h1> <h2>Breaking Changes</h2> <h3>cdk</h3> <ul> <li> <ul> <li>Since <code>cdk.high-contrast</code> targets a media query instead of a class, the specificity of the styles it emits is lower than before.</li> </ul> </li> <li> <ul> <li>The overlay stays are now loaded slightly later than before which can change their specificity. You may have to update any overlay style overrides.</li> </ul> </li> <li> <ul> <li> <p>Virtual scrolling lists now have proper type checking which can reveal some previously-hidden compilation errors.</p> </li> <li> <p>fix(cdk/scrolling): adds ngTemplateContextGuard</p> </li> </ul> <p>implements ngTemplateContextGuard for CdkVirtualForOf directive</p> </li> </ul> <h3>material</h3> <ul> <li> <ul> <li>The ripples styles are now loaded slightly later than before which can change their specificity. You may have to update any ripple style overrides.</li> </ul> </li> <li> <ul> <li><code>mixinColor</code> and <code>CanColor</code> have been removed. Use a host binding instead.</li> <li><code>mixinDisableRipple</code> and <code>CanDisableRipple</code> have been removed. Use input transforms instead.</li> <li><code>mixinDisabled</code> and <code>CanDisable</code> have been removed. Use input transforms instead.</li> <li><code>mixinInitialized</code> and <code>HasInitialized</code> have been removed. Use a <code>Subject</code> that emits in <code>ngOnInit</code> instead.</li> <li><code>mixinTabIndex</code> and <code>HasTabIndex</code> have been removed. Use input transforms instead.</li> </ul> </li> </ul> <h3>google-maps</h3> <ul> <li> <ul> <li>The new <code>@​googlemaps/markerclusterer</code> API should be imported instead of the old one. Read more at: <a href="https://github.com/googlemaps/js-markerclusterer">https://github.com/googlemaps/js-markerclusterer</a></li> <li>The <code>MapMarkerClusterer</code> class has been renamed to <code>DeprecatedMapMarkerClusterer</code>.</li> <li>The <code>map-marker-clusterer</code> selector has been changed to <code>deprecated-map-marker-clusterer</code>.</li> </ul> </li> </ul> <h3>multiple</h3> <ul> <li> <ul> <li>In order for Material to be compatible with <a href="https://sass-lang.com/documentation/breaking-changes/mixed-decls/">recent changes in Sass</a> and upcoming changes in the CSS standard, tokens are now emitted in-place, rather the being hoisted to the top of the selector. As a result, some token overrides might not apply anymore. This is relevant primarily for the cases like <code>@include mat.button-theme($theme); --mat-button-color: red;</code>. It can be resolved by wrapping the overrides with <code>&amp; {}</code>, for example <code>@include mat.button-theme($theme); &amp; { --mat-button-color: red; }</code>.</li> </ul> </li> <li> <ul> <li><code>MatButton.ripple</code> is no longer available.</li> <li><code>MatCheckbox.ripple</code> is no longer available.</li> <li><code>MatChip.ripple</code> is no longer available.</li> </ul> </li> </ul> <h3>material-date-fns-adapter</h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/components/commit/234e5e0e8b7001671b459491bc048c379e29fc1d">234e5e0e8</a></td> <td>feat</td> <td>add support for date-fns 4 (<a href="https://redirect.github.com/angular/components/pull/29744">#29744</a>)</td> </tr> </tbody> </table> <h3>youtube-player</h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/components/commit/09da06b42e2aad668bbdeb9adecdad401b0d8df6">09da06b42</a></td> <td>fix</td> <td>ready event not emitting</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/2885987500f9005fbdf981c700b516096896868b">288598750</a></td> <td>fix</td> <td>startSeconds not applied when using placeholder</td> </tr> </tbody> </table> <h3>google-maps</h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/components/commit/1bd976c6a7b4493e9dc741f6fe25fde455adfbcf">1bd976c6a</a></td> <td>feat</td> <td>Add support for some mouse events <a href="https://redirect.github.com/angular/components/pull/29741">#29741</a> (<a href="https://redirect.github.com/angular/components/pull/29747">#29747</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/a05475e769d6a64e10cdcebca83f1906b322f9a9">a05475e76</a></td> <td>feat</td> <td>deprecate marker cluster component</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/c70aae15b095f5d7005b491270866f6647732a26">c70aae15b</a></td> <td>feat</td> <td>implement new marker clusterer</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/b9deeee85b06fa24812f36d8290390b6f058d131">b9deeee85</a></td> <td>fix</td> <td>add schematic to switch to the new clusterer name</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/a6709497fc6e5eca110db5374f7d6ca4b2ca5a58">a6709497f</a></td> <td>fix</td> <td>expose all clusterer types (<a href="https://redirect.github.com/angular/components/pull/29905">#29905</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/74c2a081f9c4c2221cab62efee3db81789bf6efa">74c2a081f</a></td> <td>fix</td> <td>resolve CLI errors in ng update schematic (<a href="https://redirect.github.com/angular/components/pull/29947">#29947</a>)</td> </tr> </tbody> </table> <h3>material</h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/components/commit/9122335b25b28a5532159ab87c36aab3be9c3716">9122335b2</a></td> <td>feat</td> <td><strong>checkbox:</strong> add new aria properties to MatCheckbox (<a href="https://redirect.github.com/angular/components/pull/29457">#29457</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/64ed7ca7157b519703d152bb86a84a233f310f71">64ed7ca71</a></td> <td>feat</td> <td><strong>core:</strong> add experimental theme demo (<a href="https://redirect.github.com/angular/components/pull/29636">#29636</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/a58e6f6711af48f7106ed675b4b996c41899a0be">a58e6f671</a></td> <td>feat</td> <td><strong>core:</strong> add theme-overrides mixin (<a href="https://redirect.github.com/angular/components/pull/29858">#29858</a>)</td> </tr> </tbody> </table> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/angular/components/commit/2f3cea1279d887a6b358e12d9371cf85ec0f821d"><code>2f3cea1</code></a> release: cut the v19.0.0 release</li> <li><a href="https://github.com/angular/components/commit/56834a28b0a87d11ccaecb64fb7eb394fd880377"><code>56834a2</code></a> build: update to v19 final (<a href="https://redirect.github.com/angular/components/issues/30045">#30045</a>)</li> <li><a href="https://github.com/angular/components/commit/734f2967832f57c63c2bd8e3f2ddb4a4cdbcc543"><code>734f296</code></a> docs: fix broken links (<a href="https://redirect.github.com/angular/components/issues/30038">#30038</a>)</li> <li><a href="https://github.com/angular/components/commit/370e6cc8e016443d90b0d1997974aef9cfb21100"><code>370e6cc</code></a> release: cut the v19.0.0-rc.3 release</li> <li><a href="https://github.com/angular/components/commit/05c78afcd73896eb907bfeca9e6bc83874134092"><code>05c78af</code></a> fix(cdk/table): run differ for all columns (<a href="https://redirect.github.com/angular/components/issues/30012">#30012</a>)</li> <li><a href="https://github.com/angular/components/commit/3a4158e077e965a57051445cfc3ec0777bd99d09"><code>3a4158e</code></a> refactor(cdk/testing): fix out of sync file (<a href="https://redirect.github.com/angular/components/issues/30021">#30021</a>)</li> <li><a href="https://github.com/angular/components/commit/dbcb921d54608adc95dc124635d2973312928687"><code>dbcb921</code></a> fix(material/menu): handle keyboard events through dispatcher (<a href="https://redirect.github.com/angular/components/issues/29997">#29997</a>)</li> <li><a href="https://github.com/angular/components/commit/5345a875f68526191493e8220d4ed91c72d0e5eb"><code>5345a87</code></a> fix(material/input): preserve aria-describedby set externally</li> <li><a href="https://github.com/angular/components/commit/5ba97925b64a23cdaabfea514dda964c79f4a5f1"><code>5ba9792</code></a> fix(material/form-field): avoid touching the DOM on each state change</li> <li><a href="https://github.com/angular/components/commit/13beab52bc28b10a142703a74d5e0ea5847211e1"><code>13beab5</code></a> release: cut the v19.0.0-rc.2 release</li> <li>Additional commits viewable in <a href="https://github.com/angular/components/compare/18.2.14...19.0.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@angular/cdk&package-manager=npm_and_yarn&previous-version=18.2.14&new-version=19.0.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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`. --- <details> <summary>Dependabot commands and options</summary> <br /> 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 show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@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) </details>
4 months ago
"@angular/cdk": "^19.0.0",
Bump @angular/common from 18.2.12 to 19.0.0 in /web_embedding/ng-flutter (#2496) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- Bumps [@angular/common](https://github.com/angular/angular/tree/HEAD/packages/common) from 18.2.12 to 19.0.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/angular/angular/releases"><code>@​angular/common</code>'s releases</a>.</em></p> <blockquote> <h2>v19.0.0</h2> <h1>19.0.0 (2024-11-19)</h1> <p>Explore Angular v19 with a blog post from the Angular team: <a href="https://blog.angular.dev/meet-angular-v19-7b29dfd05b84">https://blog.angular.dev/meet-angular-v19-7b29dfd05b84</a></p> <h2>Breaking Changes</h2> <h3>compiler</h3> <ul> <li><code>this.foo</code> property reads no longer refer to template context variables. If you intended to read the template variable, do not use <code>this.</code>.</li> </ul> <h3>core</h3> <ul> <li> <p>Angular directives, components and pipes are now standalone by default.</p> <ul> <li>Specify <code>standalone: false</code> for declarations that are currently declared in <code>@NgModule</code>s.</li> <li><code>ng update</code> for v19 will take care of this automatically.</li> </ul> </li> <li> <p>TypeScript versions less than 5.5 are no longer supported.</p> </li> <li> <p>Timing changes for <code>effect</code> API (in developer preview):</p> <ul> <li> <p>effects which are triggered outside of change detection run as part of the change detection process instead of as a microtask. Depending on the specifics of application/test setup, this can result in them executing earlier or later (or requiring additional test steps to trigger; see below examples).</p> </li> <li> <p>effects which are triggered during change detection (e.g. by input signals) run <em>earlier</em>, before the component's template.</p> </li> </ul> </li> <li> <p><code>ExperimentalPendingTasks</code> has been renamed to <code>PendingTasks</code>.</p> </li> <li> <p>The <code>autoDetect</code> feature of <code>ComponentFixture</code> will now attach the fixture to the <code>ApplicationRef</code>. As a result, errors during automatic change detection of the fixture be reported to the <code>ErrorHandler</code>. This change may cause custom error handlers to observe new failures that were previously unreported.</p> </li> <li> <p><code>createComponent</code> will now render default fallback with empty <code>projectableNodes</code>.</p> <ul> <li>When passing an empty array to <code>projectableNodes</code> in the <code>createComponent</code> API, the default fallback content of the <code>ng-content</code> will be rendered if present. To prevent rendering the default content, pass <code>document.createTextNode('')</code> as a <code>projectableNode</code>.</li> </ul> <pre lang="ts"><code>// The first ng-content will render the default fallback content if present createComponent(MyComponent. { projectableNodes: [[], [secondNode]] }); <p>// To prevent projecting the default fallback content: createComponent(MyComponent. { projectableNodes: [[document.createTextNode('')], [secondNode]] });</p> <p></code></pre></p> </li> <li> <p>Errors that are thrown during <code>ApplicationRef.tick</code> will now be rethrown when using <code>TestBed</code>. These errors should be resolved by ensuring the test environment is set up correctly to complete change detection successfully. There are two alternatives to catch the errors:</p> <ul> <li>Instead of waiting for automatic change detection to happen, trigger</li> </ul> </li> </ul> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/angular/angular/blob/main/CHANGELOG.md"><code>@​angular/common</code>'s changelog</a>.</em></p> <blockquote> <h1>19.0.0 (2024-11-19)</h1> <p>Blog post: <a href="https://blog.angular.dev/meet-angular-v19-7b29dfd05b84">https://blog.angular.dev/meet-angular-v19-7b29dfd05b84</a></p> <h2>Breaking Changes</h2> <h3>compiler</h3> <ul> <li><code>this.foo</code> property reads no longer refer to template context variables. If you intended to read the template variable, do not use <code>this.</code>.</li> </ul> <h3>core</h3> <ul> <li> <p>Angular directives, components and pipes are now standalone by default.</p> <ul> <li>Specify <code>standalone: false</code> for declarations that are currently declared in <code>@NgModule</code>s.</li> <li><code>ng update</code> for v19 will take care of this automatically.</li> </ul> </li> <li> <p>TypeScript versions less than 5.5 are no longer supported.</p> </li> <li> <p>Timing changes for <code>effect</code> API (in developer preview):</p> <ul> <li> <p>effects which are triggered outside of change detection run as part of the change detection process instead of as a microtask. Depending on the specifics of application/test setup, this can result in them executing earlier or later (or requiring additional test steps to trigger; see below examples).</p> </li> <li> <p>effects which are triggered during change detection (e.g. by input signals) run <em>earlier</em>, before the component's template.</p> </li> </ul> </li> <li> <p><code>ExperimentalPendingTasks</code> has been renamed to <code>PendingTasks</code>.</p> </li> <li> <p>The <code>autoDetect</code> feature of <code>ComponentFixture</code> will now attach the fixture to the <code>ApplicationRef</code>. As a result, errors during automatic change detection of the fixture be reported to the <code>ErrorHandler</code>. This change may cause custom error handlers to observe new failures that were previously unreported.</p> </li> <li> <p><code>createComponent</code> will now render default fallback with empty <code>projectableNodes</code>.</p> <ul> <li>When passing an empty array to <code>projectableNodes</code> in the <code>createComponent</code> API, the default fallback content of the <code>ng-content</code> will be rendered if present. To prevent rendering the default content, pass <code>document.createTextNode('')</code> as a <code>projectableNode</code>.</li> </ul> <pre lang="ts"><code>// The first ng-content will render the default fallback content if present createComponent(MyComponent. { projectableNodes: [[], [secondNode]] }); <p>// To prevent projecting the default fallback content: createComponent(MyComponent. { projectableNodes: [[document.createTextNode('')], [secondNode]] });</p> <p></code></pre></p> </li> <li> <p>Errors that are thrown during <code>ApplicationRef.tick</code> will now be rethrown when using <code>TestBed</code>. These errors should be resolved by ensuring the test environment is set up correctly to complete change detection successfully. There are two alternatives to catch the errors:</p> <ul> <li>Instead of waiting for automatic change detection to happen, trigger it synchronously and expect the error. For example, a jasmine test could write <code>expect(() =&gt; TestBed.inject(ApplicationRef).tick()).toThrow()</code></li> </ul> </li> </ul> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/angular/angular/commit/7dfb127c03bad4b4cd6f3f8ab6c6fdd48b10e61b"><code>7dfb127</code></a> refactor: add <code>@__PURE__</code> next to <code>@pureOrBreakMyCode</code> for improved bundler c...</li> <li><a href="https://github.com/angular/angular/commit/da9c0c504435ed46d3c5cef1a8f1793602eabb26"><code>da9c0c5</code></a> refactor: cleanup initializers that use ctor params (<a href="https://github.com/angular/angular/tree/HEAD/packages/common/issues/58349">#58349</a>)</li> <li><a href="https://github.com/angular/angular/commit/24c6373820231faf9d012a2e4d7ea945d3e8513b"><code>24c6373</code></a> feat(common): add optional rounded transform support in cloudinary image load...</li> <li><a href="https://github.com/angular/angular/commit/4b9accdf166f3990b3706de83ada15937fe786e2"><code>4b9accd</code></a> feat(http): promote <code>withRequestsMadeViaParent</code> to stable. (<a href="https://github.com/angular/angular/tree/HEAD/packages/common/issues/58221">#58221</a>)</li> <li><a href="https://github.com/angular/angular/commit/13c13067bc3ed50cb80b0a86e62655448adb3051"><code>13c1306</code></a> feat(common): disable keyvalue sorting using null compareFn (<a href="https://github.com/angular/angular/tree/HEAD/packages/common/issues/57487">#57487</a>)</li> <li><a href="https://github.com/angular/angular/commit/09df589e31ee4d546c536ca385d4f5f1a948df93"><code>09df589</code></a> refactor(core): Migrate all packages with the <code>explicit-standalone-flag</code> sche...</li> <li><a href="https://github.com/angular/angular/commit/08b4a8af6e1b7974c3c4c13d4f6de6dbe7d1f2bb"><code>08b4a8a</code></a> docs: move JSDoc below constructor (<a href="https://github.com/angular/angular/tree/HEAD/packages/common/issues/57187">#57187</a>)</li> <li><a href="https://github.com/angular/angular/commit/a36744e4bb946cb10c10542e6b3700cd70633666"><code>a36744e</code></a> docs: move JSDoc before functions (<a href="https://github.com/angular/angular/tree/HEAD/packages/common/issues/58087">#58087</a>)</li> <li><a href="https://github.com/angular/angular/commit/0eb1c5c021bd49f94d289d993a5ab7fd19887e3f"><code>0eb1c5c</code></a> docs(common): Minor typo in code example (<a href="https://github.com/angular/angular/tree/HEAD/packages/common/issues/58085">#58085</a>)</li> <li><a href="https://github.com/angular/angular/commit/84b68969561b6f387ef8761218a89fb343fc4442"><code>84b6896</code></a> refactor(platform-server): Add an ssr benchmark setup. (<a href="https://github.com/angular/angular/tree/HEAD/packages/common/issues/57647">#57647</a>)</li> <li>Additional commits viewable in <a href="https://github.com/angular/angular/commits/19.0.0/packages/common">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@angular/common&package-manager=npm_and_yarn&previous-version=18.2.12&new-version=19.0.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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`. --- <details> <summary>Dependabot commands and options</summary> <br /> 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 show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@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) </details>
4 months ago
"@angular/common": "^19.0.0",
Bump @angular/compiler from 18.2.12 to 19.0.0 in /web_embedding/ng-flutter (#2494) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- Bumps [@angular/compiler](https://github.com/angular/angular/tree/HEAD/packages/compiler) from 18.2.12 to 19.0.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/angular/angular/releases"><code>@​angular/compiler</code>'s releases</a>.</em></p> <blockquote> <h2>v19.0.0</h2> <h1>19.0.0 (2024-11-19)</h1> <p>Explore Angular v19 with a blog post from the Angular team: <a href="https://blog.angular.dev/meet-angular-v19-7b29dfd05b84">https://blog.angular.dev/meet-angular-v19-7b29dfd05b84</a></p> <h2>Breaking Changes</h2> <h3>compiler</h3> <ul> <li><code>this.foo</code> property reads no longer refer to template context variables. If you intended to read the template variable, do not use <code>this.</code>.</li> </ul> <h3>core</h3> <ul> <li> <p>Angular directives, components and pipes are now standalone by default.</p> <ul> <li>Specify <code>standalone: false</code> for declarations that are currently declared in <code>@NgModule</code>s.</li> <li><code>ng update</code> for v19 will take care of this automatically.</li> </ul> </li> <li> <p>TypeScript versions less than 5.5 are no longer supported.</p> </li> <li> <p>Timing changes for <code>effect</code> API (in developer preview):</p> <ul> <li> <p>effects which are triggered outside of change detection run as part of the change detection process instead of as a microtask. Depending on the specifics of application/test setup, this can result in them executing earlier or later (or requiring additional test steps to trigger; see below examples).</p> </li> <li> <p>effects which are triggered during change detection (e.g. by input signals) run <em>earlier</em>, before the component's template.</p> </li> </ul> </li> <li> <p><code>ExperimentalPendingTasks</code> has been renamed to <code>PendingTasks</code>.</p> </li> <li> <p>The <code>autoDetect</code> feature of <code>ComponentFixture</code> will now attach the fixture to the <code>ApplicationRef</code>. As a result, errors during automatic change detection of the fixture be reported to the <code>ErrorHandler</code>. This change may cause custom error handlers to observe new failures that were previously unreported.</p> </li> <li> <p><code>createComponent</code> will now render default fallback with empty <code>projectableNodes</code>.</p> <ul> <li>When passing an empty array to <code>projectableNodes</code> in the <code>createComponent</code> API, the default fallback content of the <code>ng-content</code> will be rendered if present. To prevent rendering the default content, pass <code>document.createTextNode('')</code> as a <code>projectableNode</code>.</li> </ul> <pre lang="ts"><code>// The first ng-content will render the default fallback content if present createComponent(MyComponent. { projectableNodes: [[], [secondNode]] }); <p>// To prevent projecting the default fallback content: createComponent(MyComponent. { projectableNodes: [[document.createTextNode('')], [secondNode]] });</p> <p></code></pre></p> </li> <li> <p>Errors that are thrown during <code>ApplicationRef.tick</code> will now be rethrown when using <code>TestBed</code>. These errors should be resolved by ensuring the test environment is set up correctly to complete change detection successfully. There are two alternatives to catch the errors:</p> <ul> <li>Instead of waiting for automatic change detection to happen, trigger</li> </ul> </li> </ul> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/angular/angular/blob/main/CHANGELOG.md"><code>@​angular/compiler</code>'s changelog</a>.</em></p> <blockquote> <h1>19.0.0 (2024-11-19)</h1> <p>Blog post: <a href="https://blog.angular.dev/meet-angular-v19-7b29dfd05b84">https://blog.angular.dev/meet-angular-v19-7b29dfd05b84</a></p> <h2>Breaking Changes</h2> <h3>compiler</h3> <ul> <li><code>this.foo</code> property reads no longer refer to template context variables. If you intended to read the template variable, do not use <code>this.</code>.</li> </ul> <h3>core</h3> <ul> <li> <p>Angular directives, components and pipes are now standalone by default.</p> <ul> <li>Specify <code>standalone: false</code> for declarations that are currently declared in <code>@NgModule</code>s.</li> <li><code>ng update</code> for v19 will take care of this automatically.</li> </ul> </li> <li> <p>TypeScript versions less than 5.5 are no longer supported.</p> </li> <li> <p>Timing changes for <code>effect</code> API (in developer preview):</p> <ul> <li> <p>effects which are triggered outside of change detection run as part of the change detection process instead of as a microtask. Depending on the specifics of application/test setup, this can result in them executing earlier or later (or requiring additional test steps to trigger; see below examples).</p> </li> <li> <p>effects which are triggered during change detection (e.g. by input signals) run <em>earlier</em>, before the component's template.</p> </li> </ul> </li> <li> <p><code>ExperimentalPendingTasks</code> has been renamed to <code>PendingTasks</code>.</p> </li> <li> <p>The <code>autoDetect</code> feature of <code>ComponentFixture</code> will now attach the fixture to the <code>ApplicationRef</code>. As a result, errors during automatic change detection of the fixture be reported to the <code>ErrorHandler</code>. This change may cause custom error handlers to observe new failures that were previously unreported.</p> </li> <li> <p><code>createComponent</code> will now render default fallback with empty <code>projectableNodes</code>.</p> <ul> <li>When passing an empty array to <code>projectableNodes</code> in the <code>createComponent</code> API, the default fallback content of the <code>ng-content</code> will be rendered if present. To prevent rendering the default content, pass <code>document.createTextNode('')</code> as a <code>projectableNode</code>.</li> </ul> <pre lang="ts"><code>// The first ng-content will render the default fallback content if present createComponent(MyComponent. { projectableNodes: [[], [secondNode]] }); <p>// To prevent projecting the default fallback content: createComponent(MyComponent. { projectableNodes: [[document.createTextNode('')], [secondNode]] });</p> <p></code></pre></p> </li> <li> <p>Errors that are thrown during <code>ApplicationRef.tick</code> will now be rethrown when using <code>TestBed</code>. These errors should be resolved by ensuring the test environment is set up correctly to complete change detection successfully. There are two alternatives to catch the errors:</p> <ul> <li>Instead of waiting for automatic change detection to happen, trigger it synchronously and expect the error. For example, a jasmine test could write <code>expect(() =&gt; TestBed.inject(ApplicationRef).tick()).toThrow()</code></li> </ul> </li> </ul> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/angular/angular/commit/806a61b5a619d98c0226ba6a566b1562f6e16e5a"><code>806a61b</code></a> fix(compiler): fix multiline selectors (<a href="https://github.com/angular/angular/tree/HEAD/packages/compiler/issues/58681">#58681</a>)</li> <li><a href="https://github.com/angular/angular/commit/e5d3abb29842412f82a67562aceff245d493ec53"><code>e5d3abb</code></a> fix(compiler): resolve <code>:host:host-context(.foo)</code> (<a href="https://github.com/angular/angular/tree/HEAD/packages/compiler/issues/58681">#58681</a>)</li> <li><a href="https://github.com/angular/angular/commit/80f56954cecf763e36bdcfbbd592a82d693eeef7"><code>80f5695</code></a> fix(compiler): transform chained pseudo-selectors (<a href="https://github.com/angular/angular/tree/HEAD/packages/compiler/issues/58681">#58681</a>)</li> <li><a href="https://github.com/angular/angular/commit/2be161d015ce6bab0142b6e6c34a8ede6341f627"><code>2be161d</code></a> fix(compiler): fix <code>:host</code> parsing in pseudo-selectors (<a href="https://github.com/angular/angular/tree/HEAD/packages/compiler/issues/58681">#58681</a>)</li> <li><a href="https://github.com/angular/angular/commit/560282aa9b3204ad8311017905beed63072c7303"><code>560282a</code></a> fix(compiler): control flow nodes with root at the end projected incorrectly ...</li> <li><a href="https://github.com/angular/angular/commit/86d8f6bda895c6681614e4ca8fe272c5dcfbebbf"><code>86d8f6b</code></a> refactor(compiler): trigger hmr load on initialization (<a href="https://github.com/angular/angular/tree/HEAD/packages/compiler/issues/58465">#58465</a>)</li> <li><a href="https://github.com/angular/angular/commit/abd0da7265fb761deebc04e3a9d9e19ba508030f"><code>abd0da7</code></a> refactor(compiler): remove unused field from output AST (<a href="https://github.com/angular/angular/tree/HEAD/packages/compiler/issues/58444">#58444</a>)</li> <li><a href="https://github.com/angular/angular/commit/b25121ee4aba427954fef074a967b9332654be84"><code>b25121e</code></a> fix(compiler): avoid having to duplicate core environment (<a href="https://github.com/angular/angular/tree/HEAD/packages/compiler/issues/58444">#58444</a>)</li> <li><a href="https://github.com/angular/angular/commit/98804fd4beb6292f5a50ce728424fdb33c47f654"><code>98804fd</code></a> fix(compiler): add more specific matcher for hydrate never block (<a href="https://github.com/angular/angular/tree/HEAD/packages/compiler/issues/58360">#58360</a>)</li> <li><a href="https://github.com/angular/angular/commit/c79b62ced2b16710876e7696b8794edc26683343"><code>c79b62c</code></a> refactor(core): remove the standalone feature (<a href="https://github.com/angular/angular/tree/HEAD/packages/compiler/issues/58288">#58288</a>)</li> <li>Additional commits viewable in <a href="https://github.com/angular/angular/commits/19.0.0/packages/compiler">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@angular/compiler&package-manager=npm_and_yarn&previous-version=18.2.12&new-version=19.0.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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`. --- <details> <summary>Dependabot commands and options</summary> <br /> 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 show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@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) </details>
4 months ago
"@angular/compiler": "^19.0.0",
Bump @angular/core from 18.2.13 to 19.0.3 in /web_embedding/ng-flutter (#2546) Bumps [@angular/core](https://github.com/angular/angular/tree/HEAD/packages/core) from 18.2.13 to 19.0.3. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/angular/angular/releases"><code>@​angular/core</code>'s releases</a>.</em></p> <blockquote> <h2>v19.0.3</h2> <h1>19.0.3 (2024-12-04)</h1> <h2>v19.0.2</h2> <h1>19.0.2 (2024-12-04)</h1> <h3>compiler-cli</h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/9f99196d239479bcba0b42a18a5155ed5a1764ff"><img src="https://img.shields.io/badge/9f99196d23-fix-green" alt="fix - 9f99196d23" /></a></td> <td>account for multiple generated namespace imports in HMR (<a href="https://github.com/angular/angular/tree/HEAD/packages/core/issues/58924">#58924</a>)</td> </tr> </tbody> </table> <h3>core</h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/4792db9a6d3a7dc076c9b200cd31a53a4fd30683"><img src="https://img.shields.io/badge/4792db9a6d-fix-green" alt="fix - 4792db9a6d" /></a></td> <td>Explicitly manage TracingSnapshot lifecycle and dispose of it once it's been used. (<a href="https://github.com/angular/angular/tree/HEAD/packages/core/issues/58929">#58929</a>)</td> </tr> </tbody> </table> <h3>migrations</h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/7b5bacc2285803e6ac9691c2dae2361ddca9da9a"><img src="https://img.shields.io/badge/7b5bacc228-fix-green" alt="fix - 7b5bacc228" /></a></td> <td>class content being deleted in some edge cases (<a href="https://github.com/angular/angular/tree/HEAD/packages/core/issues/58959">#58959</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/d1cbdd6acb228773e0fb33958978a14e12be178f"><img src="https://img.shields.io/badge/d1cbdd6acb-fix-green" alt="fix - d1cbdd6acb" /></a></td> <td>correctly strip away parameters surrounded by comments in inject migration (<a href="https://github.com/angular/angular/tree/HEAD/packages/core/issues/58959">#58959</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/e17ff71c318a1b32d5207b7516856f330f2bcf5a"><img src="https://img.shields.io/badge/e17ff71c31-fix-green" alt="fix - e17ff71c31" /></a></td> <td>don't migrate classes with parameters that can't be injected (<a href="https://github.com/angular/angular/tree/HEAD/packages/core/issues/58959">#58959</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/7c5f990001c4aac9f48c5461421579c398295356"><img src="https://img.shields.io/badge/7c5f990001-fix-green" alt="fix - 7c5f990001" /></a></td> <td>inject migration aggressively removing imports (<a href="https://github.com/angular/angular/tree/HEAD/packages/core/issues/58959">#58959</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/4392ccedf997e79486af7ad60172eea98ed3351f"><img src="https://img.shields.io/badge/4392ccedf9-fix-green" alt="fix - 4392ccedf9" /></a></td> <td>inject migration dropping code if everything except super is removed (<a href="https://github.com/angular/angular/tree/HEAD/packages/core/issues/58959">#58959</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/9cbebc6dda89d2fdfc52799aef1ea895dcac2d00"><img src="https://img.shields.io/badge/9cbebc6dda-fix-green" alt="fix - 9cbebc6dda" /></a></td> <td>preserve type literals and tuples in inject migrations (<a href="https://github.com/angular/angular/tree/HEAD/packages/core/issues/58959">#58959</a>)</td> </tr> </tbody> </table> <h3>platform-server</h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/f3c388ecda5e836946031a554827cdaee9801734"><img src="https://img.shields.io/badge/f3c388ecda-fix-green" alt="fix - f3c388ecda" /></a></td> <td>remove peer dependency on animations (<a href="https://github.com/angular/angular/tree/HEAD/packages/core/issues/58997">#58997</a>)</td> </tr> </tbody> </table> <h2>v19.0.1</h2> <h1>19.0.1 (2024-11-26)</h1> <h3>compiler-cli</h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/fb1fa8b0fc04c9cfac6551ca27bee89dcd7c72ac"><img src="https://img.shields.io/badge/fb1fa8b0fc-fix-green" alt="fix - fb1fa8b0fc" /></a></td> <td>more accurate diagnostics for host binding parser errors (<a href="https://github.com/angular/angular/tree/HEAD/packages/core/issues/58870">#58870</a>)</td> </tr> </tbody> </table> <h3>core</h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/502ee0e7221a9e7cfa0fa3bd92298d3b650a7713"><img src="https://img.shields.io/badge/502ee0e722-fix-green" alt="fix - 502ee0e722" /></a></td> <td>correctly clear template HMR internal renderer cache (<a href="https://github.com/angular/angular/tree/HEAD/packages/core/issues/58724">#58724</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/99715104a1a787c3899dfbfac6b44f28c7d24356"><img src="https://img.shields.io/badge/99715104a1-fix-green" alt="fix - 99715104a1" /></a></td> <td>correctly perform lazy routes migration for components with additional decorators (<a href="https://github.com/angular/angular/tree/HEAD/packages/core/issues/58796">#58796</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/118803035f366acdffc577ec857b888f764bb338"><img src="https://img.shields.io/badge/118803035f-fix-green" alt="fix - 118803035f" /></a></td> <td>Ensure _tick is always run within the TracingSnapshot. (<a href="https://github.com/angular/angular/tree/HEAD/packages/core/issues/58881">#58881</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/08b9452f012b2ef660f767c2f0a4bf86bb15bb61"><img src="https://img.shields.io/badge/08b9452f01-fix-green" alt="fix - 08b9452f01" /></a></td> <td>Ensure resource sets an error (<a href="https://github.com/angular/angular/tree/HEAD/packages/core/issues/58855">#58855</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/84f45ea3ffe02003350c6c19fdafdc6f4d521ccb"><img src="https://img.shields.io/badge/84f45ea3ff-fix-green" alt="fix - 84f45ea3ff" /></a></td> <td>make component id generation more stable between client and server builds (<a href="https://github.com/angular/angular/tree/HEAD/packages/core/issues/58813">#58813</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/d3491c7cee3d110da1adb51f8047b4e1976ece71"><img src="https://img.shields.io/badge/d3491c7cee-fix-green" alt="fix - d3491c7cee" /></a></td> <td>Prevents race condition of cleanup for incremental hydration (<a href="https://github.com/angular/angular/tree/HEAD/packages/core/issues/58722">#58722</a>)</td> </tr> </tbody> </table> <h3>forms</h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/4dfe5b6cefd7901a466b37b660f8b3a051a06cb3"><img src="https://img.shields.io/badge/4dfe5b6cef-fix-green" alt="fix - 4dfe5b6cef" /></a></td> <td>work around TypeScript 5.7 issue (<a href="https://github.com/angular/angular/tree/HEAD/packages/core/issues/58731">#58731</a>)</td> </tr> </tbody> </table> <h3>language-service</h3> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/angular/angular/blob/main/CHANGELOG.md"><code>@​angular/core</code>'s changelog</a>.</em></p> <blockquote> <h1>19.0.3 (2024-12-04)</h1> <h1>19.1.0-next.1 (2024-12-04)</h1> <h3>compiler-cli</h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/f280467398c6980878b5e755a78606251814447b">f280467398</a></td> <td>fix</td> <td>account for multiple generated namespace imports in HMR (<a href="https://redirect.github.com/angular/angular/pull/58924">#58924</a>)</td> </tr> </tbody> </table> <h3>core</h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/e894a5daea401b4e1173b0e66557ae40140eb9a0">e894a5daea</a></td> <td>feat</td> <td>set kind field on template and effect nodes (<a href="https://redirect.github.com/angular/angular/pull/58865">#58865</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/3b765367f31b6d1bb32406505f18151acdf1f2b2">3b765367f3</a></td> <td>fix</td> <td>Explicitly manage TracingSnapshot lifecycle and dispose of it once it's been used. (<a href="https://redirect.github.com/angular/angular/pull/58929">#58929</a>)</td> </tr> </tbody> </table> <h3>migrations</h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/e31e52e1771ea565a6869b4ed252d6ff7097d4ad">e31e52e177</a></td> <td>fix</td> <td>class content being deleted in some edge cases (<a href="https://redirect.github.com/angular/angular/pull/58959">#58959</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/508d3a1b3bc5770f18e3e46e2105bf0ba6178a87">508d3a1b3b</a></td> <td>fix</td> <td>correctly strip away parameters surrounded by comments in inject migration (<a href="https://redirect.github.com/angular/angular/pull/58959">#58959</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/7191aa6e09ca3b85efd3fd14a18944eac4384763">7191aa6e09</a></td> <td>fix</td> <td>don't migrate classes with parameters that can't be injected (<a href="https://redirect.github.com/angular/angular/pull/58959">#58959</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/a4924af6d580c5bdaa185c4c97277c4effb55af9">a4924af6d5</a></td> <td>fix</td> <td>inject migration aggressively removing imports (<a href="https://redirect.github.com/angular/angular/pull/58959">#58959</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/35165d152d7f9c3c8789ebdf792037aafdc1cc66">35165d152d</a></td> <td>fix</td> <td>inject migration dropping code if everything except super is removed (<a href="https://redirect.github.com/angular/angular/pull/58959">#58959</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/68e5ba7a3a44c2f1647c4c6cc7ed66b010f85d15">68e5ba7a3a</a></td> <td>fix</td> <td>preserve type literals and tuples in inject migrations (<a href="https://redirect.github.com/angular/angular/pull/58959">#58959</a>)</td> </tr> </tbody> </table> <h3>platform-server</h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/1cfbfc66d3a24b6c41abf13550e7c2911e20b550">1cfbfc66d3</a></td> <td>fix</td> <td>remove peer dependency on animations (<a href="https://redirect.github.com/angular/angular/pull/58997">#58997</a>)</td> </tr> </tbody> </table> <h1>19.0.2 (2024-12-04)</h1> <h3>compiler-cli</h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/9f99196d239479bcba0b42a18a5155ed5a1764ff">9f99196d23</a></td> <td>fix</td> <td>account for multiple generated namespace imports in HMR (<a href="https://redirect.github.com/angular/angular/pull/58924">#58924</a>)</td> </tr> </tbody> </table> <h3>core</h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/4792db9a6d3a7dc076c9b200cd31a53a4fd30683">4792db9a6d</a></td> <td>fix</td> <td>Explicitly manage TracingSnapshot lifecycle and dispose of it once it's been used. (<a href="https://redirect.github.com/angular/angular/pull/58929">#58929</a>)</td> </tr> </tbody> </table> <h3>migrations</h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/7b5bacc2285803e6ac9691c2dae2361ddca9da9a">7b5bacc228</a></td> <td>fix</td> <td>class content being deleted in some edge cases (<a href="https://redirect.github.com/angular/angular/pull/58959">#58959</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/d1cbdd6acb228773e0fb33958978a14e12be178f">d1cbdd6acb</a></td> <td>fix</td> <td>correctly strip away parameters surrounded by comments in inject migration (<a href="https://redirect.github.com/angular/angular/pull/58959">#58959</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/e17ff71c318a1b32d5207b7516856f330f2bcf5a">e17ff71c31</a></td> <td>fix</td> <td>don't migrate classes with parameters that can't be injected (<a href="https://redirect.github.com/angular/angular/pull/58959">#58959</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/7c5f990001c4aac9f48c5461421579c398295356">7c5f990001</a></td> <td>fix</td> <td>inject migration aggressively removing imports (<a href="https://redirect.github.com/angular/angular/pull/58959">#58959</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/4392ccedf997e79486af7ad60172eea98ed3351f">4392ccedf9</a></td> <td>fix</td> <td>inject migration dropping code if everything except super is removed (<a href="https://redirect.github.com/angular/angular/pull/58959">#58959</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/9cbebc6dda89d2fdfc52799aef1ea895dcac2d00">9cbebc6dda</a></td> <td>fix</td> <td>preserve type literals and tuples in inject migrations (<a href="https://redirect.github.com/angular/angular/pull/58959">#58959</a>)</td> </tr> </tbody> </table> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/angular/angular/commit/0c40bb28e1ec6fca4ee7c62b05e97035db469375"><code>0c40bb2</code></a> refactor(docs-infra): convert code-example-s that have only region param to @...</li> <li><a href="https://github.com/angular/angular/commit/5f3ba068f18ad5db6e89f61ca40838260897e851"><code>5f3ba06</code></a> docs: set syntax highlighting of code examples MD code blocks (<a href="https://github.com/angular/angular/tree/HEAD/packages/core/issues/59026">#59026</a>)</li> <li><a href="https://github.com/angular/angular/commit/b8a2ae01d5a3fb2d5499e6ee3f80261932737187"><code>b8a2ae0</code></a> docs: fix missing alert block styles in the API reference (<a href="https://github.com/angular/angular/tree/HEAD/packages/core/issues/59020">#59020</a>)</li> <li><a href="https://github.com/angular/angular/commit/c453f5dc2ffbd7d9c24576ea07a6eaa764b6baca"><code>c453f5d</code></a> docs(core): fix eventCoalescing comment (<a href="https://github.com/angular/angular/tree/HEAD/packages/core/issues/57097">#57097</a>)</li> <li><a href="https://github.com/angular/angular/commit/4392ccedf997e79486af7ad60172eea98ed3351f"><code>4392cce</code></a> fix(migrations): inject migration dropping code if everything except super is...</li> <li><a href="https://github.com/angular/angular/commit/e17ff71c318a1b32d5207b7516856f330f2bcf5a"><code>e17ff71</code></a> fix(migrations): don't migrate classes with parameters that can't be injected...</li> <li><a href="https://github.com/angular/angular/commit/9cbebc6dda89d2fdfc52799aef1ea895dcac2d00"><code>9cbebc6</code></a> fix(migrations): preserve type literals and tuples in inject migrations (<a href="https://github.com/angular/angular/tree/HEAD/packages/core/issues/58959">#58959</a>)</li> <li><a href="https://github.com/angular/angular/commit/7c5f990001c4aac9f48c5461421579c398295356"><code>7c5f990</code></a> fix(migrations): inject migration aggressively removing imports (<a href="https://github.com/angular/angular/tree/HEAD/packages/core/issues/58959">#58959</a>)</li> <li><a href="https://github.com/angular/angular/commit/d1cbdd6acb228773e0fb33958978a14e12be178f"><code>d1cbdd6</code></a> fix(migrations): correctly strip away parameters surrounded by comments in in...</li> <li><a href="https://github.com/angular/angular/commit/7b5bacc2285803e6ac9691c2dae2361ddca9da9a"><code>7b5bacc</code></a> fix(migrations): class content being deleted in some edge cases (<a href="https://github.com/angular/angular/tree/HEAD/packages/core/issues/58959">#58959</a>)</li> <li>Additional commits viewable in <a href="https://github.com/angular/angular/commits/19.0.3/packages/core">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@angular/core&package-manager=npm_and_yarn&previous-version=18.2.13&new-version=19.0.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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`. --- <details> <summary>Dependabot commands and options</summary> <br /> 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 show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@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) </details>
4 months ago
"@angular/core": "^19.0.3",
Bump @angular/forms from 18.2.13 to 19.0.1 in /web_embedding/ng-flutter (#2501) Bumps [@angular/forms](https://github.com/angular/angular/tree/HEAD/packages/forms) from 18.2.13 to 19.0.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/angular/angular/releases"><code>@​angular/forms</code>'s releases</a>.</em></p> <blockquote> <h2>v19.0.1</h2> <h1>19.0.1 (2024-11-26)</h1> <h3>compiler-cli</h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/fb1fa8b0fc04c9cfac6551ca27bee89dcd7c72ac"><img src="https://img.shields.io/badge/fb1fa8b0fc-fix-green" alt="fix - fb1fa8b0fc" /></a></td> <td>more accurate diagnostics for host binding parser errors (<a href="https://github.com/angular/angular/tree/HEAD/packages/forms/issues/58870">#58870</a>)</td> </tr> </tbody> </table> <h3>core</h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/502ee0e7221a9e7cfa0fa3bd92298d3b650a7713"><img src="https://img.shields.io/badge/502ee0e722-fix-green" alt="fix - 502ee0e722" /></a></td> <td>correctly clear template HMR internal renderer cache (<a href="https://github.com/angular/angular/tree/HEAD/packages/forms/issues/58724">#58724</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/99715104a1a787c3899dfbfac6b44f28c7d24356"><img src="https://img.shields.io/badge/99715104a1-fix-green" alt="fix - 99715104a1" /></a></td> <td>correctly perform lazy routes migration for components with additional decorators (<a href="https://github.com/angular/angular/tree/HEAD/packages/forms/issues/58796">#58796</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/118803035f366acdffc577ec857b888f764bb338"><img src="https://img.shields.io/badge/118803035f-fix-green" alt="fix - 118803035f" /></a></td> <td>Ensure _tick is always run within the TracingSnapshot. (<a href="https://github.com/angular/angular/tree/HEAD/packages/forms/issues/58881">#58881</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/08b9452f012b2ef660f767c2f0a4bf86bb15bb61"><img src="https://img.shields.io/badge/08b9452f01-fix-green" alt="fix - 08b9452f01" /></a></td> <td>Ensure resource sets an error (<a href="https://github.com/angular/angular/tree/HEAD/packages/forms/issues/58855">#58855</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/84f45ea3ffe02003350c6c19fdafdc6f4d521ccb"><img src="https://img.shields.io/badge/84f45ea3ff-fix-green" alt="fix - 84f45ea3ff" /></a></td> <td>make component id generation more stable between client and server builds (<a href="https://github.com/angular/angular/tree/HEAD/packages/forms/issues/58813">#58813</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/d3491c7cee3d110da1adb51f8047b4e1976ece71"><img src="https://img.shields.io/badge/d3491c7cee-fix-green" alt="fix - d3491c7cee" /></a></td> <td>Prevents race condition of cleanup for incremental hydration (<a href="https://github.com/angular/angular/tree/HEAD/packages/forms/issues/58722">#58722</a>)</td> </tr> </tbody> </table> <h3>forms</h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/4dfe5b6cefd7901a466b37b660f8b3a051a06cb3"><img src="https://img.shields.io/badge/4dfe5b6cef-fix-green" alt="fix - 4dfe5b6cef" /></a></td> <td>work around TypeScript 5.7 issue (<a href="https://github.com/angular/angular/tree/HEAD/packages/forms/issues/58731">#58731</a>)</td> </tr> </tbody> </table> <h3>language-service</h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/a983865bffa828a982ef7e56204924d9c2989ead"><img src="https://img.shields.io/badge/a983865bff-fix-green" alt="fix - a983865bff" /></a></td> <td>add fix for individual unused imports (<a href="https://github.com/angular/angular/tree/HEAD/packages/forms/issues/58719">#58719</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/e6e7a4e22b0a654808e5eb88a30cd6effa383332"><img src="https://img.shields.io/badge/e6e7a4e22b-fix-green" alt="fix - e6e7a4e22b" /></a></td> <td>allow fixes to run without template info (<a href="https://github.com/angular/angular/tree/HEAD/packages/forms/issues/58719">#58719</a>)</td> </tr> </tbody> </table> <h3>migrations</h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/5ce10264a434ffc8e31cdc68208d2c3c7f8378ed"><img src="https://img.shields.io/badge/5ce10264a4-fix-green" alt="fix - 5ce10264a4" /></a></td> <td>fix provide-initializer migration when using useFactory (<a href="https://github.com/angular/angular/tree/HEAD/packages/forms/issues/58518">#58518</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/d4f5c85f60133550303d59b3f9e3e34f14ca63ce"><img src="https://img.shields.io/badge/d4f5c85f60-fix-green" alt="fix - d4f5c85f60" /></a></td> <td>handle parameters with initializers in inject migration (<a href="https://github.com/angular/angular/tree/HEAD/packages/forms/issues/58769">#58769</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/a6d2d2dc104608f14c3850b21bc23ba75ca04e4d"><img src="https://img.shields.io/badge/a6d2d2dc10-fix-green" alt="fix - a6d2d2dc10" /></a></td> <td>Mark hoisted properties as removed in inject migration (<a href="https://github.com/angular/angular/tree/HEAD/packages/forms/issues/58804">#58804</a>)</td> </tr> </tbody> </table> <h2>v19.0.0</h2> <h1>19.0.0 (2024-11-19)</h1> <p>Explore Angular v19 with a blog post from the Angular team: <a href="https://blog.angular.dev/meet-angular-v19-7b29dfd05b84">https://blog.angular.dev/meet-angular-v19-7b29dfd05b84</a></p> <h2>Breaking Changes</h2> <h3>compiler</h3> <ul> <li><code>this.foo</code> property reads no longer refer to template context variables. If you intended to read the template variable, do not use <code>this.</code>.</li> </ul> <h3>core</h3> <ul> <li> <p>Angular directives, components and pipes are now standalone by default.</p> <ul> <li>Specify <code>standalone: false</code> for declarations that are currently declared in <code>@NgModule</code>s.</li> <li><code>ng update</code> for v19 will take care of this automatically.</li> </ul> </li> <li> <p>TypeScript versions less than 5.5 are no longer supported.</p> </li> <li> <p>Timing changes for <code>effect</code> API (in developer preview):</p> <ul> <li>effects which are triggered outside of change detection run as part of the change detection process instead of as a microtask. Depending on the</li> </ul> </li> </ul> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/angular/angular/blob/main/CHANGELOG.md"><code>@​angular/forms</code>'s changelog</a>.</em></p> <blockquote> <h1>18.2.13 (2024-11-26)</h1> <h3>migrations</h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/06d70a25ea7a6ef32f47516fcb8542d98ac45e14">06d70a25ea</a></td> <td>fix</td> <td>take care of tests that import both HttpClientModule &amp; HttpClientTestingModule. (<a href="https://redirect.github.com/angular/angular/pull/58777">#58777</a>)</td> </tr> </tbody> </table> <h1>19.1.0-next.0 (2024-11-26)</h1> <h3>common</h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/e4c50b3bea22ca2afba74465893c36730952f4b9">e4c50b3bea</a></td> <td>feat</td> <td>expose component instance in NgComponentOutlet (<a href="https://redirect.github.com/angular/angular/pull/58698">#58698</a>)</td> </tr> </tbody> </table> <h3>core</h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/bd1f1294aeb0d47b24421b7b7a608988689a459f">bd1f1294ae</a></td> <td>feat</td> <td>support TypeScript 5.7 (<a href="https://redirect.github.com/angular/angular/pull/58609">#58609</a>)</td> </tr> </tbody> </table> <h1>19.0.1 (2024-11-26)</h1> <h3>compiler-cli</h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/fb1fa8b0fc04c9cfac6551ca27bee89dcd7c72ac">fb1fa8b0fc</a></td> <td>fix</td> <td>more accurate diagnostics for host binding parser errors (<a href="https://redirect.github.com/angular/angular/pull/58870">#58870</a>)</td> </tr> </tbody> </table> <h3>core</h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/502ee0e7221a9e7cfa0fa3bd92298d3b650a7713">502ee0e722</a></td> <td>fix</td> <td>correctly clear template HMR internal renderer cache (<a href="https://redirect.github.com/angular/angular/pull/58724">#58724</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/99715104a1a787c3899dfbfac6b44f28c7d24356">99715104a1</a></td> <td>fix</td> <td>correctly perform lazy routes migration for components with additional decorators (<a href="https://redirect.github.com/angular/angular/pull/58796">#58796</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/118803035f366acdffc577ec857b888f764bb338">118803035f</a></td> <td>fix</td> <td>Ensure _tick is always run within the TracingSnapshot. (<a href="https://redirect.github.com/angular/angular/pull/58881">#58881</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/08b9452f012b2ef660f767c2f0a4bf86bb15bb61">08b9452f01</a></td> <td>fix</td> <td>Ensure resource sets an error (<a href="https://redirect.github.com/angular/angular/pull/58855">#58855</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/84f45ea3ffe02003350c6c19fdafdc6f4d521ccb">84f45ea3ff</a></td> <td>fix</td> <td>make component id generation more stable between client and server builds (<a href="https://redirect.github.com/angular/angular/pull/58813">#58813</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/d3491c7cee3d110da1adb51f8047b4e1976ece71">d3491c7cee</a></td> <td>fix</td> <td>Prevents race condition of cleanup for incremental hydration (<a href="https://redirect.github.com/angular/angular/pull/58722">#58722</a>)</td> </tr> </tbody> </table> <h3>forms</h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/4dfe5b6cefd7901a466b37b660f8b3a051a06cb3">4dfe5b6cef</a></td> <td>fix</td> <td>work around TypeScript 5.7 issue (<a href="https://redirect.github.com/angular/angular/pull/58731">#58731</a>)</td> </tr> </tbody> </table> <h3>language-service</h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/a983865bffa828a982ef7e56204924d9c2989ead">a983865bff</a></td> <td>fix</td> <td>add fix for individual unused imports (<a href="https://redirect.github.com/angular/angular/pull/58719">#58719</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/e6e7a4e22b0a654808e5eb88a30cd6effa383332">e6e7a4e22b</a></td> <td>fix</td> <td>allow fixes to run without template info (<a href="https://redirect.github.com/angular/angular/pull/58719">#58719</a>)</td> </tr> </tbody> </table> <h3>migrations</h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/5ce10264a434ffc8e31cdc68208d2c3c7f8378ed">5ce10264a4</a></td> <td>fix</td> <td>fix provide-initializer migration when using useFactory (<a href="https://redirect.github.com/angular/angular/pull/58518">#58518</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/d4f5c85f60133550303d59b3f9e3e34f14ca63ce">d4f5c85f60</a></td> <td>fix</td> <td>handle parameters with initializers in inject migration (<a href="https://redirect.github.com/angular/angular/pull/58769">#58769</a>)</td> </tr> </tbody> </table> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/angular/angular/commit/6b057bcfdb1b8ac75ee6ce3b177e98e1921f234d"><code>6b057bc</code></a> refactor(forms): work around another TypeScript 5.7 issue (<a href="https://github.com/angular/angular/tree/HEAD/packages/forms/issues/58782">#58782</a>)</li> <li><a href="https://github.com/angular/angular/commit/4dfe5b6cefd7901a466b37b660f8b3a051a06cb3"><code>4dfe5b6</code></a> fix(forms): work around TypeScript 5.7 issue (<a href="https://github.com/angular/angular/tree/HEAD/packages/forms/issues/58731">#58731</a>)</li> <li><a href="https://github.com/angular/angular/commit/93c3f7a931a20a12fa6f8336bcf78343fb178b76"><code>93c3f7a</code></a> build: remove usages of <code>useDefineForClassFields: false</code> (<a href="https://github.com/angular/angular/tree/HEAD/packages/forms/issues/58297">#58297</a>)</li> <li><a href="https://github.com/angular/angular/commit/1f4533807ebd4a130c5d174531179c4640dade47"><code>1f45338</code></a> Revert &quot;fix(forms): fix FormRecord type inference (<a href="https://github.com/angular/angular/tree/HEAD/packages/forms/issues/50750">#50750</a>)&quot; (<a href="https://github.com/angular/angular/tree/HEAD/packages/forms/issues/58315">#58315</a>)</li> <li><a href="https://github.com/angular/angular/commit/79d9be3e6309daafb86106cf78220bc027c61c41"><code>79d9be3</code></a> Revert &quot;feat(forms): add ability to clear a FormRecord (<a href="https://github.com/angular/angular/tree/HEAD/packages/forms/issues/50750">#50750</a>)&quot; (<a href="https://github.com/angular/angular/tree/HEAD/packages/forms/issues/58315">#58315</a>)</li> <li><a href="https://github.com/angular/angular/commit/a5b0394313beda397b0c58a2897dc27678eefb57"><code>a5b0394</code></a> Revert &quot;test(forms): add unit test (<a href="https://github.com/angular/angular/tree/HEAD/packages/forms/issues/50750">#50750</a>)&quot; (<a href="https://github.com/angular/angular/tree/HEAD/packages/forms/issues/58315">#58315</a>)</li> <li><a href="https://github.com/angular/angular/commit/b0c4c1fd2bcd56baa881dde489f095dbc126af0d"><code>b0c4c1f</code></a> test(forms): add unit test (<a href="https://github.com/angular/angular/tree/HEAD/packages/forms/issues/50750">#50750</a>)</li> <li><a href="https://github.com/angular/angular/commit/3e7d724037cca4d256b1442eda20d6c6ad91d279"><code>3e7d724</code></a> feat(forms): add ability to clear a FormRecord (<a href="https://github.com/angular/angular/tree/HEAD/packages/forms/issues/50750">#50750</a>)</li> <li><a href="https://github.com/angular/angular/commit/18b6f3339f46b37ee67fce2fa8a900cc73b2f23c"><code>18b6f33</code></a> fix(forms): fix FormRecord type inference (<a href="https://github.com/angular/angular/tree/HEAD/packages/forms/issues/50750">#50750</a>)</li> <li><a href="https://github.com/angular/angular/commit/09df589e31ee4d546c536ca385d4f5f1a948df93"><code>09df589</code></a> refactor(core): Migrate all packages with the <code>explicit-standalone-flag</code> sche...</li> <li>Additional commits viewable in <a href="https://github.com/angular/angular/commits/19.0.1/packages/forms">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@angular/forms&package-manager=npm_and_yarn&previous-version=18.2.13&new-version=19.0.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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`. --- <details> <summary>Dependabot commands and options</summary> <br /> 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 show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@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) </details>
4 months ago
"@angular/forms": "^19.0.1",
Bump @angular/material from 18.2.14 to 19.0.2 in /web_embedding/ng-flutter (#2547) Bumps [@angular/material](https://github.com/angular/components) from 18.2.14 to 19.0.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/angular/components/releases"><code>@​angular/material</code>'s releases</a>.</em></p> <blockquote> <h2>v19.0.2</h2> <h1>19.0.2 &quot;plastic-rhino&quot; (2024-12-04)</h1> <h3>youtube-player</h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/components/commit/1d3905a2086954cbeec2b17aa8b11378d48311f3"><img src="https://img.shields.io/badge/1d3905a208-fix-green" alt="fix - 1d3905a208" /></a></td> <td>update to latest typings (<a href="https://redirect.github.com/angular/components/issues/30126">#30126</a>)</td> </tr> </tbody> </table> <h3>material</h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/components/commit/0ed9869529b4c7a2d008f8125f252d49e913228c"><img src="https://img.shields.io/badge/0ed9869529-fix-green" alt="fix - 0ed9869529" /></a></td> <td><strong>button-toggle:</strong> unable to tab into ngModel-based group on first render (<a href="https://redirect.github.com/angular/components/issues/30103">#30103</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/72ff6fcce323c1f44b57b3fa2dec92a13a5dbcd3"><img src="https://img.shields.io/badge/72ff6fcce3-fix-green" alt="fix - 72ff6fcce3" /></a></td> <td><strong>core:</strong> optgroup label color not inferred correctly (<a href="https://redirect.github.com/angular/components/issues/30085">#30085</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/c3955854469db7bc07dbfc511391bbcd00ae7666"><img src="https://img.shields.io/badge/c395585446-fix-green" alt="fix - c395585446" /></a></td> <td><strong>schematics:</strong> avoid parsing stylesheets that don't include Material</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/5b3350a60eb9c0dfcf483bacc3c782c1308f180e"><img src="https://img.shields.io/badge/5b3350a60e-fix-green" alt="fix - 5b3350a60e" /></a></td> <td><strong>schematics:</strong> error if stylesheet contains syntax errors</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/1235ad28bcf7f950510f6c0e548268e125298f62"><img src="https://img.shields.io/badge/1235ad28bc-fix-green" alt="fix - 1235ad28bc" /></a></td> <td><strong>sort:</strong> simplify animations (<a href="https://redirect.github.com/angular/components/issues/30057">#30057</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/5b165067e8f12587db4fa15f30069651164c3e4e"><img src="https://img.shields.io/badge/5b165067e8-fix-green" alt="fix - 5b165067e8" /></a></td> <td><strong>tabs:</strong> ink bar not showing when same tab is re-selected (<a href="https://redirect.github.com/angular/components/issues/30121">#30121</a>)</td> </tr> </tbody> </table> <h3>cdk</h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/components/commit/460f971b27239d0102061a9b976e86af513065a7"><img src="https://img.shields.io/badge/460f971b27-fix-green" alt="fix - 460f971b27" /></a></td> <td><strong>accordion:</strong> improve accessibility in example code (<a href="https://redirect.github.com/angular/components/issues/30087">#30087</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/6306a12c12ee0c255e20dfb9be78076f880120bf"><img src="https://img.shields.io/badge/6306a12c12-fix-green" alt="fix - 6306a12c12" /></a></td> <td><strong>menu:</strong> disable flexible dimensions (<a href="https://redirect.github.com/angular/components/issues/30086">#30086</a>)</td> </tr> </tbody> </table> <h2>v19.0.1</h2> <h1>19.0.1 &quot;mercury-mailbox&quot; (2024-11-27)</h1> <h3>material</h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/components/commit/2d7e078bb46d665f21a6ef3ff1b76fec336862bc"><img src="https://img.shields.io/badge/2d7e078bb-fix-green" alt="fix - 2d7e078bb" /></a></td> <td><strong>button-toggle:</strong> animate checkbox (<a href="https://redirect.github.com/angular/components/issues/30025">#30025</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/edac40645f5130a9b85eaefa2479792a93d62396"><img src="https://img.shields.io/badge/edac40645-fix-green" alt="fix - edac40645" /></a></td> <td><strong>chips:</strong> emit state changes when chip grid is disabled (<a href="https://redirect.github.com/angular/components/issues/30033">#30033</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/18f7f4bb9e3b9cae8563f3134aadede818140e9d"><img src="https://img.shields.io/badge/18f7f4bb9-fix-green" alt="fix - 18f7f4bb9" /></a></td> <td><strong>datepicker:</strong> adds comparison ids and aria-describedby spans (<a href="https://redirect.github.com/angular/components/issues/30040">#30040</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/375435497fa42446ea51d11f72c32853fb337933"><img src="https://img.shields.io/badge/375435497-fix-green" alt="fix - 375435497" /></a></td> <td><strong>slider:</strong> update documentation (<a href="https://redirect.github.com/angular/components/issues/30029">#30029</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/a3120147523da86bc0e8d9531344d3c531c4795b"><img src="https://img.shields.io/badge/a31201475-fix-green" alt="fix - a31201475" /></a></td> <td><strong>timepicker:</strong> make disabled input public (<a href="https://redirect.github.com/angular/components/issues/30063">#30063</a>)</td> </tr> </tbody> </table> <h3>docs</h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/components/commit/f9d9d2c8115da469c234768c220205feb2a58eb1"><img src="https://img.shields.io/badge/f9d9d2c81-fix-green" alt="fix - f9d9d2c81" /></a></td> <td>update errorState example to cover handle missing state (<a href="https://redirect.github.com/angular/components/issues/30059">#30059</a>)</td> </tr> </tbody> </table> <h3>multiple</h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/components/commit/59b7f436acc5c4b2e732ec09ac44e031e8b422bf"><img src="https://img.shields.io/badge/59b7f436a-fix-green" alt="fix - 59b7f436a" /></a></td> <td>use cross-compatible type for setTimeout (<a href="https://redirect.github.com/angular/components/issues/30073">#30073</a>)</td> </tr> </tbody> </table> <h2>v19.0.0</h2> <h1>19.0.0 &quot;hafnium-hippo&quot; (2024-11-19)</h1> <h3>cdk</h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/components/commit/f4a02adb779968ab1e696aa93dc69b62e7a18929"><img src="https://img.shields.io/badge/f4a02adb7-feat-blue" alt="feat - f4a02adb7" /></a></td> <td><strong>a11y:</strong> use native media query for high contrast detection (<a href="https://redirect.github.com/angular/components/issues/29678">#29678</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/9b4085c6e3eee78556000c0f60ef2c51c0668ed9"><img src="https://img.shields.io/badge/9b4085c6e-feat-blue" alt="feat - 9b4085c6e" /></a></td> <td><strong>private:</strong> create cdk-visually-hidden style loader (<a href="https://redirect.github.com/angular/components/issues/29757">#29757</a>)</td> </tr> </tbody> </table> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/angular/components/blob/main/CHANGELOG.md"><code>@​angular/material</code>'s changelog</a>.</em></p> <blockquote> <h1>19.0.2 &quot;plastic-rhino&quot; (2024-12-04)</h1> <h3>cdk</h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/components/commit/460f971b27239d0102061a9b976e86af513065a7">460f971b27</a></td> <td>fix</td> <td><strong>accordion:</strong> improve accessibility in example code (<a href="https://redirect.github.com/angular/components/pull/30087">#30087</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/6306a12c12ee0c255e20dfb9be78076f880120bf">6306a12c12</a></td> <td>fix</td> <td><strong>menu:</strong> disable flexible dimensions (<a href="https://redirect.github.com/angular/components/pull/30086">#30086</a>)</td> </tr> </tbody> </table> <h3>material</h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/components/commit/0ed9869529b4c7a2d008f8125f252d49e913228c">0ed9869529</a></td> <td>fix</td> <td><strong>button-toggle:</strong> unable to tab into ngModel-based group on first render (<a href="https://redirect.github.com/angular/components/pull/30103">#30103</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/72ff6fcce323c1f44b57b3fa2dec92a13a5dbcd3">72ff6fcce3</a></td> <td>fix</td> <td><strong>core:</strong> optgroup label color not inferred correctly (<a href="https://redirect.github.com/angular/components/pull/30085">#30085</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/c3955854469db7bc07dbfc511391bbcd00ae7666">c395585446</a></td> <td>fix</td> <td><strong>schematics:</strong> avoid parsing stylesheets that don't include Material</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/5b3350a60eb9c0dfcf483bacc3c782c1308f180e">5b3350a60e</a></td> <td>fix</td> <td><strong>schematics:</strong> error if stylesheet contains syntax errors</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/1235ad28bcf7f950510f6c0e548268e125298f62">1235ad28bc</a></td> <td>fix</td> <td><strong>sort:</strong> simplify animations (<a href="https://redirect.github.com/angular/components/pull/30057">#30057</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/5b165067e8f12587db4fa15f30069651164c3e4e">5b165067e8</a></td> <td>fix</td> <td><strong>tabs:</strong> ink bar not showing when same tab is re-selected (<a href="https://redirect.github.com/angular/components/pull/30121">#30121</a>)</td> </tr> </tbody> </table> <h3>youtube-player</h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/components/commit/1d3905a2086954cbeec2b17aa8b11378d48311f3">1d3905a208</a></td> <td>fix</td> <td>update to latest typings (<a href="https://redirect.github.com/angular/components/pull/30126">#30126</a>)</td> </tr> </tbody> </table> <h1>19.1.0-next.0 &quot;hassium-ham&quot; (2024-11-27)</h1> <h3>material</h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/components/commit/f47f5f9a1ed294ecd8d1dac5dee3019a80a932d6">f47f5f9a1</a></td> <td>feat</td> <td><strong>schematics:</strong> Add CSS output to custom theme schematic (<a href="https://redirect.github.com/angular/components/pull/30004">#30004</a>)</td> </tr> </tbody> </table> <h3>multiple</h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/components/commit/3a7724e9580c64dd4a9f4d3eb7b3cad2182cea2f">3a7724e95</a></td> <td>fix</td> <td>remove webkit-overflow-scrolling (<a href="https://redirect.github.com/angular/components/pull/30003">#30003</a>)</td> </tr> </tbody> </table> <h1>19.0.1 &quot;mercury-mailbox&quot; (2024-11-27)</h1> <h3>material</h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/components/commit/2d7e078bb46d665f21a6ef3ff1b76fec336862bc">2d7e078bb</a></td> <td>fix</td> <td><strong>button-toggle:</strong> animate checkbox (<a href="https://redirect.github.com/angular/components/pull/30025">#30025</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/edac40645f5130a9b85eaefa2479792a93d62396">edac40645</a></td> <td>fix</td> <td><strong>chips:</strong> emit state changes when chip grid is disabled (<a href="https://redirect.github.com/angular/components/pull/30033">#30033</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/18f7f4bb9e3b9cae8563f3134aadede818140e9d">18f7f4bb9</a></td> <td>fix</td> <td><strong>datepicker:</strong> adds comparison ids and aria-describedby spans (<a href="https://redirect.github.com/angular/components/pull/30040">#30040</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/375435497fa42446ea51d11f72c32853fb337933">375435497</a></td> <td>fix</td> <td><strong>slider:</strong> update documentation (<a href="https://redirect.github.com/angular/components/pull/30029">#30029</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/components/commit/a3120147523da86bc0e8d9531344d3c531c4795b">a31201475</a></td> <td>fix</td> <td><strong>timepicker:</strong> make disabled input public (<a href="https://redirect.github.com/angular/components/pull/30063">#30063</a>)</td> </tr> </tbody> </table> <h3>docs</h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/components/commit/f9d9d2c8115da469c234768c220205feb2a58eb1">f9d9d2c81</a></td> <td>fix</td> <td>update errorState example to cover handle missing state (<a href="https://redirect.github.com/angular/components/pull/30059">#30059</a>)</td> </tr> </tbody> </table> <h3>multiple</h3> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/angular/components/commit/8f2b8f368d61c179a30682426daa8563933d67aa"><code>8f2b8f3</code></a> release: cut the v19.0.2 release</li> <li><a href="https://github.com/angular/components/commit/5b165067e8f12587db4fa15f30069651164c3e4e"><code>5b16506</code></a> fix(material/tabs): ink bar not showing when same tab is re-selected (<a href="https://redirect.github.com/angular/components/issues/30121">#30121</a>)</li> <li><a href="https://github.com/angular/components/commit/1d3905a2086954cbeec2b17aa8b11378d48311f3"><code>1d3905a</code></a> fix(youtube-player): update to latest typings (<a href="https://redirect.github.com/angular/components/issues/30126">#30126</a>)</li> <li><a href="https://github.com/angular/components/commit/341bd14243de9af966714d91ef2e60f5e5b1c28e"><code>341bd14</code></a> docs(material/tabs): remove duplicated tabs example (<a href="https://redirect.github.com/angular/components/issues/30109">#30109</a>)</li> <li><a href="https://github.com/angular/components/commit/c3955854469db7bc07dbfc511391bbcd00ae7666"><code>c395585</code></a> fix(material/schematics): avoid parsing stylesheets that don't include Material</li> <li><a href="https://github.com/angular/components/commit/5b3350a60eb9c0dfcf483bacc3c782c1308f180e"><code>5b3350a</code></a> fix(material/schematics): error if stylesheet contains syntax errors</li> <li><a href="https://github.com/angular/components/commit/0ed9869529b4c7a2d008f8125f252d49e913228c"><code>0ed9869</code></a> fix(material/button-toggle): unable to tab into ngModel-based group on first ...</li> <li><a href="https://github.com/angular/components/commit/460f971b27239d0102061a9b976e86af513065a7"><code>460f971</code></a> fix(cdk/accordion): improve accessibility in example code (<a href="https://redirect.github.com/angular/components/issues/30087">#30087</a>)</li> <li><a href="https://github.com/angular/components/commit/dfe4f2fd02f58dc6648d26685d26512689b807a7"><code>dfe4f2f</code></a> docs(material/timepicker): fix missing icon in example (<a href="https://redirect.github.com/angular/components/issues/30096">#30096</a>)</li> <li><a href="https://github.com/angular/components/commit/66e9093be2983851031c61e2a82b07cba4ee470f"><code>66e9093</code></a> docs(material/button): avoid clipping icon (<a href="https://redirect.github.com/angular/components/issues/30095">#30095</a>)</li> <li>Additional commits viewable in <a href="https://github.com/angular/components/compare/18.2.14...19.0.2">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@angular/material&package-manager=npm_and_yarn&previous-version=18.2.14&new-version=19.0.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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`. --- <details> <summary>Dependabot commands and options</summary> <br /> 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 show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@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) </details>
4 months ago
"@angular/material": "^19.0.2",
Bump @angular/platform-browser from 18.2.13 to 19.0.3 in /web_embedding/ng-flutter (#2548) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- Bumps [@angular/platform-browser](https://github.com/angular/angular/tree/HEAD/packages/platform-browser) from 18.2.13 to 19.0.3. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/angular/angular/releases"><code>@​angular/platform-browser</code>'s releases</a>.</em></p> <blockquote> <h2>v19.0.3</h2> <h1>19.0.3 (2024-12-04)</h1> <h2>v19.0.2</h2> <h1>19.0.2 (2024-12-04)</h1> <h3>compiler-cli</h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/9f99196d239479bcba0b42a18a5155ed5a1764ff"><img src="https://img.shields.io/badge/9f99196d23-fix-green" alt="fix - 9f99196d23" /></a></td> <td>account for multiple generated namespace imports in HMR (<a href="https://github.com/angular/angular/tree/HEAD/packages/platform-browser/issues/58924">#58924</a>)</td> </tr> </tbody> </table> <h3>core</h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/4792db9a6d3a7dc076c9b200cd31a53a4fd30683"><img src="https://img.shields.io/badge/4792db9a6d-fix-green" alt="fix - 4792db9a6d" /></a></td> <td>Explicitly manage TracingSnapshot lifecycle and dispose of it once it's been used. (<a href="https://github.com/angular/angular/tree/HEAD/packages/platform-browser/issues/58929">#58929</a>)</td> </tr> </tbody> </table> <h3>migrations</h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/7b5bacc2285803e6ac9691c2dae2361ddca9da9a"><img src="https://img.shields.io/badge/7b5bacc228-fix-green" alt="fix - 7b5bacc228" /></a></td> <td>class content being deleted in some edge cases (<a href="https://github.com/angular/angular/tree/HEAD/packages/platform-browser/issues/58959">#58959</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/d1cbdd6acb228773e0fb33958978a14e12be178f"><img src="https://img.shields.io/badge/d1cbdd6acb-fix-green" alt="fix - d1cbdd6acb" /></a></td> <td>correctly strip away parameters surrounded by comments in inject migration (<a href="https://github.com/angular/angular/tree/HEAD/packages/platform-browser/issues/58959">#58959</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/e17ff71c318a1b32d5207b7516856f330f2bcf5a"><img src="https://img.shields.io/badge/e17ff71c31-fix-green" alt="fix - e17ff71c31" /></a></td> <td>don't migrate classes with parameters that can't be injected (<a href="https://github.com/angular/angular/tree/HEAD/packages/platform-browser/issues/58959">#58959</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/7c5f990001c4aac9f48c5461421579c398295356"><img src="https://img.shields.io/badge/7c5f990001-fix-green" alt="fix - 7c5f990001" /></a></td> <td>inject migration aggressively removing imports (<a href="https://github.com/angular/angular/tree/HEAD/packages/platform-browser/issues/58959">#58959</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/4392ccedf997e79486af7ad60172eea98ed3351f"><img src="https://img.shields.io/badge/4392ccedf9-fix-green" alt="fix - 4392ccedf9" /></a></td> <td>inject migration dropping code if everything except super is removed (<a href="https://github.com/angular/angular/tree/HEAD/packages/platform-browser/issues/58959">#58959</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/9cbebc6dda89d2fdfc52799aef1ea895dcac2d00"><img src="https://img.shields.io/badge/9cbebc6dda-fix-green" alt="fix - 9cbebc6dda" /></a></td> <td>preserve type literals and tuples in inject migrations (<a href="https://github.com/angular/angular/tree/HEAD/packages/platform-browser/issues/58959">#58959</a>)</td> </tr> </tbody> </table> <h3>platform-server</h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/f3c388ecda5e836946031a554827cdaee9801734"><img src="https://img.shields.io/badge/f3c388ecda-fix-green" alt="fix - f3c388ecda" /></a></td> <td>remove peer dependency on animations (<a href="https://github.com/angular/angular/tree/HEAD/packages/platform-browser/issues/58997">#58997</a>)</td> </tr> </tbody> </table> <h2>v19.0.1</h2> <h1>19.0.1 (2024-11-26)</h1> <h3>compiler-cli</h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/fb1fa8b0fc04c9cfac6551ca27bee89dcd7c72ac"><img src="https://img.shields.io/badge/fb1fa8b0fc-fix-green" alt="fix - fb1fa8b0fc" /></a></td> <td>more accurate diagnostics for host binding parser errors (<a href="https://github.com/angular/angular/tree/HEAD/packages/platform-browser/issues/58870">#58870</a>)</td> </tr> </tbody> </table> <h3>core</h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/502ee0e7221a9e7cfa0fa3bd92298d3b650a7713"><img src="https://img.shields.io/badge/502ee0e722-fix-green" alt="fix - 502ee0e722" /></a></td> <td>correctly clear template HMR internal renderer cache (<a href="https://github.com/angular/angular/tree/HEAD/packages/platform-browser/issues/58724">#58724</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/99715104a1a787c3899dfbfac6b44f28c7d24356"><img src="https://img.shields.io/badge/99715104a1-fix-green" alt="fix - 99715104a1" /></a></td> <td>correctly perform lazy routes migration for components with additional decorators (<a href="https://github.com/angular/angular/tree/HEAD/packages/platform-browser/issues/58796">#58796</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/118803035f366acdffc577ec857b888f764bb338"><img src="https://img.shields.io/badge/118803035f-fix-green" alt="fix - 118803035f" /></a></td> <td>Ensure _tick is always run within the TracingSnapshot. (<a href="https://github.com/angular/angular/tree/HEAD/packages/platform-browser/issues/58881">#58881</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/08b9452f012b2ef660f767c2f0a4bf86bb15bb61"><img src="https://img.shields.io/badge/08b9452f01-fix-green" alt="fix - 08b9452f01" /></a></td> <td>Ensure resource sets an error (<a href="https://github.com/angular/angular/tree/HEAD/packages/platform-browser/issues/58855">#58855</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/84f45ea3ffe02003350c6c19fdafdc6f4d521ccb"><img src="https://img.shields.io/badge/84f45ea3ff-fix-green" alt="fix - 84f45ea3ff" /></a></td> <td>make component id generation more stable between client and server builds (<a href="https://github.com/angular/angular/tree/HEAD/packages/platform-browser/issues/58813">#58813</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/d3491c7cee3d110da1adb51f8047b4e1976ece71"><img src="https://img.shields.io/badge/d3491c7cee-fix-green" alt="fix - d3491c7cee" /></a></td> <td>Prevents race condition of cleanup for incremental hydration (<a href="https://github.com/angular/angular/tree/HEAD/packages/platform-browser/issues/58722">#58722</a>)</td> </tr> </tbody> </table> <h3>forms</h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/4dfe5b6cefd7901a466b37b660f8b3a051a06cb3"><img src="https://img.shields.io/badge/4dfe5b6cef-fix-green" alt="fix - 4dfe5b6cef" /></a></td> <td>work around TypeScript 5.7 issue (<a href="https://github.com/angular/angular/tree/HEAD/packages/platform-browser/issues/58731">#58731</a>)</td> </tr> </tbody> </table> <h3>language-service</h3> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/angular/angular/blob/main/CHANGELOG.md"><code>@​angular/platform-browser</code>'s changelog</a>.</em></p> <blockquote> <h1>19.0.3 (2024-12-04)</h1> <h1>19.1.0-next.1 (2024-12-04)</h1> <h3>compiler-cli</h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/f280467398c6980878b5e755a78606251814447b">f280467398</a></td> <td>fix</td> <td>account for multiple generated namespace imports in HMR (<a href="https://redirect.github.com/angular/angular/pull/58924">#58924</a>)</td> </tr> </tbody> </table> <h3>core</h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/e894a5daea401b4e1173b0e66557ae40140eb9a0">e894a5daea</a></td> <td>feat</td> <td>set kind field on template and effect nodes (<a href="https://redirect.github.com/angular/angular/pull/58865">#58865</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/3b765367f31b6d1bb32406505f18151acdf1f2b2">3b765367f3</a></td> <td>fix</td> <td>Explicitly manage TracingSnapshot lifecycle and dispose of it once it's been used. (<a href="https://redirect.github.com/angular/angular/pull/58929">#58929</a>)</td> </tr> </tbody> </table> <h3>migrations</h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/e31e52e1771ea565a6869b4ed252d6ff7097d4ad">e31e52e177</a></td> <td>fix</td> <td>class content being deleted in some edge cases (<a href="https://redirect.github.com/angular/angular/pull/58959">#58959</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/508d3a1b3bc5770f18e3e46e2105bf0ba6178a87">508d3a1b3b</a></td> <td>fix</td> <td>correctly strip away parameters surrounded by comments in inject migration (<a href="https://redirect.github.com/angular/angular/pull/58959">#58959</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/7191aa6e09ca3b85efd3fd14a18944eac4384763">7191aa6e09</a></td> <td>fix</td> <td>don't migrate classes with parameters that can't be injected (<a href="https://redirect.github.com/angular/angular/pull/58959">#58959</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/a4924af6d580c5bdaa185c4c97277c4effb55af9">a4924af6d5</a></td> <td>fix</td> <td>inject migration aggressively removing imports (<a href="https://redirect.github.com/angular/angular/pull/58959">#58959</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/35165d152d7f9c3c8789ebdf792037aafdc1cc66">35165d152d</a></td> <td>fix</td> <td>inject migration dropping code if everything except super is removed (<a href="https://redirect.github.com/angular/angular/pull/58959">#58959</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/68e5ba7a3a44c2f1647c4c6cc7ed66b010f85d15">68e5ba7a3a</a></td> <td>fix</td> <td>preserve type literals and tuples in inject migrations (<a href="https://redirect.github.com/angular/angular/pull/58959">#58959</a>)</td> </tr> </tbody> </table> <h3>platform-server</h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/1cfbfc66d3a24b6c41abf13550e7c2911e20b550">1cfbfc66d3</a></td> <td>fix</td> <td>remove peer dependency on animations (<a href="https://redirect.github.com/angular/angular/pull/58997">#58997</a>)</td> </tr> </tbody> </table> <h1>19.0.2 (2024-12-04)</h1> <h3>compiler-cli</h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/9f99196d239479bcba0b42a18a5155ed5a1764ff">9f99196d23</a></td> <td>fix</td> <td>account for multiple generated namespace imports in HMR (<a href="https://redirect.github.com/angular/angular/pull/58924">#58924</a>)</td> </tr> </tbody> </table> <h3>core</h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/4792db9a6d3a7dc076c9b200cd31a53a4fd30683">4792db9a6d</a></td> <td>fix</td> <td>Explicitly manage TracingSnapshot lifecycle and dispose of it once it's been used. (<a href="https://redirect.github.com/angular/angular/pull/58929">#58929</a>)</td> </tr> </tbody> </table> <h3>migrations</h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/7b5bacc2285803e6ac9691c2dae2361ddca9da9a">7b5bacc228</a></td> <td>fix</td> <td>class content being deleted in some edge cases (<a href="https://redirect.github.com/angular/angular/pull/58959">#58959</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/d1cbdd6acb228773e0fb33958978a14e12be178f">d1cbdd6acb</a></td> <td>fix</td> <td>correctly strip away parameters surrounded by comments in inject migration (<a href="https://redirect.github.com/angular/angular/pull/58959">#58959</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/e17ff71c318a1b32d5207b7516856f330f2bcf5a">e17ff71c31</a></td> <td>fix</td> <td>don't migrate classes with parameters that can't be injected (<a href="https://redirect.github.com/angular/angular/pull/58959">#58959</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/7c5f990001c4aac9f48c5461421579c398295356">7c5f990001</a></td> <td>fix</td> <td>inject migration aggressively removing imports (<a href="https://redirect.github.com/angular/angular/pull/58959">#58959</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/4392ccedf997e79486af7ad60172eea98ed3351f">4392ccedf9</a></td> <td>fix</td> <td>inject migration dropping code if everything except super is removed (<a href="https://redirect.github.com/angular/angular/pull/58959">#58959</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/9cbebc6dda89d2fdfc52799aef1ea895dcac2d00">9cbebc6dda</a></td> <td>fix</td> <td>preserve type literals and tuples in inject migrations (<a href="https://redirect.github.com/angular/angular/pull/58959">#58959</a>)</td> </tr> </tbody> </table> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/angular/angular/commit/5f3ba068f18ad5db6e89f61ca40838260897e851"><code>5f3ba06</code></a> docs: set syntax highlighting of code examples MD code blocks (<a href="https://github.com/angular/angular/tree/HEAD/packages/platform-browser/issues/59026">#59026</a>)</li> <li><a href="https://github.com/angular/angular/commit/c36a1c023b34f9b2056e1bef6364787e8495bfad"><code>c36a1c0</code></a> fix(platform-browser): correctly add external stylesheets to ShadowDOM compon...</li> <li><a href="https://github.com/angular/angular/commit/917e99db42d4ae3a5f8063ca4421ed842d2bd7ef"><code>917e99d</code></a> docs(platform-browser): update usage notes for incremental hydration (<a href="https://github.com/angular/angular/tree/HEAD/packages/platform-browser/issues/58339">#58339</a>)</li> <li><a href="https://github.com/angular/angular/commit/19edf2c057f7587bc16812685d31a556521ad414"><code>19edf2c</code></a> feat(core): add syntactic sugar for initializers (<a href="https://github.com/angular/angular/tree/HEAD/packages/platform-browser/issues/53152">#53152</a>)</li> <li><a href="https://github.com/angular/angular/commit/69fc5ae9229b872a9ad70eb920087af2a378fead"><code>69fc5ae</code></a> feat(core): Add incremental hydration public api (<a href="https://github.com/angular/angular/tree/HEAD/packages/platform-browser/issues/58249">#58249</a>)</li> <li><a href="https://github.com/angular/angular/commit/95449302e95b800985e5ad03a2313ddd58de7081"><code>9544930</code></a> refactor(core): add incremental hydration infrastructure (<a href="https://github.com/angular/angular/tree/HEAD/packages/platform-browser/issues/58193">#58193</a>)</li> <li><a href="https://github.com/angular/angular/commit/b542f152043cbd9f6ac4b0494ab026f5fbc9a655"><code>b542f15</code></a> docs: removed typos of withHttpTransferCacheOptions description (<a href="https://github.com/angular/angular/tree/HEAD/packages/platform-browser/issues/58244">#58244</a>)</li> <li><a href="https://github.com/angular/angular/commit/09df589e31ee4d546c536ca385d4f5f1a948df93"><code>09df589</code></a> refactor(core): Migrate all packages with the <code>explicit-standalone-flag</code> sche...</li> <li><a href="https://github.com/angular/angular/commit/5c61f46409855bb8fe66d71a9c16c00753032987"><code>5c61f46</code></a> refactor(platform-browser): remove deprecated `BrowserModule.withServerTransi...</li> <li><a href="https://github.com/angular/angular/commit/84b68969561b6f387ef8761218a89fb343fc4442"><code>84b6896</code></a> refactor(platform-server): Add an ssr benchmark setup. (<a href="https://github.com/angular/angular/tree/HEAD/packages/platform-browser/issues/57647">#57647</a>)</li> <li>Additional commits viewable in <a href="https://github.com/angular/angular/commits/19.0.3/packages/platform-browser">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@angular/platform-browser&package-manager=npm_and_yarn&previous-version=18.2.13&new-version=19.0.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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`. --- <details> <summary>Dependabot commands and options</summary> <br /> 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 show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@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) </details>
4 months ago
"@angular/platform-browser": "^19.0.3",
Bump @angular/platform-browser-dynamic from 18.2.12 to 19.0.0 in /web_embedding/ng-flutter (#2492) Bumps [@angular/platform-browser-dynamic](https://github.com/angular/angular/tree/HEAD/packages/platform-browser-dynamic) from 18.2.12 to 19.0.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/angular/angular/releases"><code>@​angular/platform-browser-dynamic</code>'s releases</a>.</em></p> <blockquote> <h2>v19.0.0</h2> <h1>19.0.0 (2024-11-19)</h1> <p>Explore Angular v19 with a blog post from the Angular team: <a href="https://blog.angular.dev/meet-angular-v19-7b29dfd05b84">https://blog.angular.dev/meet-angular-v19-7b29dfd05b84</a></p> <h2>Breaking Changes</h2> <h3>compiler</h3> <ul> <li><code>this.foo</code> property reads no longer refer to template context variables. If you intended to read the template variable, do not use <code>this.</code>.</li> </ul> <h3>core</h3> <ul> <li> <p>Angular directives, components and pipes are now standalone by default.</p> <ul> <li>Specify <code>standalone: false</code> for declarations that are currently declared in <code>@NgModule</code>s.</li> <li><code>ng update</code> for v19 will take care of this automatically.</li> </ul> </li> <li> <p>TypeScript versions less than 5.5 are no longer supported.</p> </li> <li> <p>Timing changes for <code>effect</code> API (in developer preview):</p> <ul> <li> <p>effects which are triggered outside of change detection run as part of the change detection process instead of as a microtask. Depending on the specifics of application/test setup, this can result in them executing earlier or later (or requiring additional test steps to trigger; see below examples).</p> </li> <li> <p>effects which are triggered during change detection (e.g. by input signals) run <em>earlier</em>, before the component's template.</p> </li> </ul> </li> <li> <p><code>ExperimentalPendingTasks</code> has been renamed to <code>PendingTasks</code>.</p> </li> <li> <p>The <code>autoDetect</code> feature of <code>ComponentFixture</code> will now attach the fixture to the <code>ApplicationRef</code>. As a result, errors during automatic change detection of the fixture be reported to the <code>ErrorHandler</code>. This change may cause custom error handlers to observe new failures that were previously unreported.</p> </li> <li> <p><code>createComponent</code> will now render default fallback with empty <code>projectableNodes</code>.</p> <ul> <li>When passing an empty array to <code>projectableNodes</code> in the <code>createComponent</code> API, the default fallback content of the <code>ng-content</code> will be rendered if present. To prevent rendering the default content, pass <code>document.createTextNode('')</code> as a <code>projectableNode</code>.</li> </ul> <pre lang="ts"><code>// The first ng-content will render the default fallback content if present createComponent(MyComponent. { projectableNodes: [[], [secondNode]] }); <p>// To prevent projecting the default fallback content: createComponent(MyComponent. { projectableNodes: [[document.createTextNode('')], [secondNode]] });</p> <p></code></pre></p> </li> <li> <p>Errors that are thrown during <code>ApplicationRef.tick</code> will now be rethrown when using <code>TestBed</code>. These errors should be resolved by ensuring the test environment is set up correctly to complete change detection successfully. There are two alternatives to catch the errors:</p> <ul> <li>Instead of waiting for automatic change detection to happen, trigger</li> </ul> </li> </ul> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/angular/angular/blob/main/CHANGELOG.md"><code>@​angular/platform-browser-dynamic</code>'s changelog</a>.</em></p> <blockquote> <h1>19.0.0 (2024-11-19)</h1> <p>Blog post: <a href="https://blog.angular.dev/meet-angular-v19-7b29dfd05b84">https://blog.angular.dev/meet-angular-v19-7b29dfd05b84</a></p> <h2>Breaking Changes</h2> <h3>compiler</h3> <ul> <li><code>this.foo</code> property reads no longer refer to template context variables. If you intended to read the template variable, do not use <code>this.</code>.</li> </ul> <h3>core</h3> <ul> <li> <p>Angular directives, components and pipes are now standalone by default.</p> <ul> <li>Specify <code>standalone: false</code> for declarations that are currently declared in <code>@NgModule</code>s.</li> <li><code>ng update</code> for v19 will take care of this automatically.</li> </ul> </li> <li> <p>TypeScript versions less than 5.5 are no longer supported.</p> </li> <li> <p>Timing changes for <code>effect</code> API (in developer preview):</p> <ul> <li> <p>effects which are triggered outside of change detection run as part of the change detection process instead of as a microtask. Depending on the specifics of application/test setup, this can result in them executing earlier or later (or requiring additional test steps to trigger; see below examples).</p> </li> <li> <p>effects which are triggered during change detection (e.g. by input signals) run <em>earlier</em>, before the component's template.</p> </li> </ul> </li> <li> <p><code>ExperimentalPendingTasks</code> has been renamed to <code>PendingTasks</code>.</p> </li> <li> <p>The <code>autoDetect</code> feature of <code>ComponentFixture</code> will now attach the fixture to the <code>ApplicationRef</code>. As a result, errors during automatic change detection of the fixture be reported to the <code>ErrorHandler</code>. This change may cause custom error handlers to observe new failures that were previously unreported.</p> </li> <li> <p><code>createComponent</code> will now render default fallback with empty <code>projectableNodes</code>.</p> <ul> <li>When passing an empty array to <code>projectableNodes</code> in the <code>createComponent</code> API, the default fallback content of the <code>ng-content</code> will be rendered if present. To prevent rendering the default content, pass <code>document.createTextNode('')</code> as a <code>projectableNode</code>.</li> </ul> <pre lang="ts"><code>// The first ng-content will render the default fallback content if present createComponent(MyComponent. { projectableNodes: [[], [secondNode]] }); <p>// To prevent projecting the default fallback content: createComponent(MyComponent. { projectableNodes: [[document.createTextNode('')], [secondNode]] });</p> <p></code></pre></p> </li> <li> <p>Errors that are thrown during <code>ApplicationRef.tick</code> will now be rethrown when using <code>TestBed</code>. These errors should be resolved by ensuring the test environment is set up correctly to complete change detection successfully. There are two alternatives to catch the errors:</p> <ul> <li>Instead of waiting for automatic change detection to happen, trigger it synchronously and expect the error. For example, a jasmine test could write <code>expect(() =&gt; TestBed.inject(ApplicationRef).tick()).toThrow()</code></li> </ul> </li> </ul> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/angular/angular/commit/09df589e31ee4d546c536ca385d4f5f1a948df93"><code>09df589</code></a> refactor(core): Migrate all packages with the <code>explicit-standalone-flag</code> sche...</li> <li><a href="https://github.com/angular/angular/commit/84b68969561b6f387ef8761218a89fb343fc4442"><code>84b6896</code></a> refactor(platform-server): Add an ssr benchmark setup. (<a href="https://github.com/angular/angular/tree/HEAD/packages/platform-browser-dynamic/issues/57647">#57647</a>)</li> <li><a href="https://github.com/angular/angular/commit/9dbe6fc18be700e89f28a023378f4775f3f7c3fe"><code>9dbe6fc</code></a> refactor: update license text to point to angular.dev (<a href="https://github.com/angular/angular/tree/HEAD/packages/platform-browser-dynamic/issues/57901">#57901</a>)</li> <li>See full diff in <a href="https://github.com/angular/angular/commits/19.0.0/packages/platform-browser-dynamic">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@angular/platform-browser-dynamic&package-manager=npm_and_yarn&previous-version=18.2.12&new-version=19.0.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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`. --- <details> <summary>Dependabot commands and options</summary> <br /> 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 show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@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) </details>
4 months ago
"@angular/platform-browser-dynamic": "^19.0.0",
Bump @angular/router from 18.2.13 to 19.0.1 in /web_embedding/ng-flutter (#2503) Bumps [@angular/router](https://github.com/angular/angular/tree/HEAD/packages/router) from 18.2.13 to 19.0.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/angular/angular/releases"><code>@​angular/router</code>'s releases</a>.</em></p> <blockquote> <h2>v19.0.1</h2> <h1>19.0.1 (2024-11-26)</h1> <h3>compiler-cli</h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/fb1fa8b0fc04c9cfac6551ca27bee89dcd7c72ac"><img src="https://img.shields.io/badge/fb1fa8b0fc-fix-green" alt="fix - fb1fa8b0fc" /></a></td> <td>more accurate diagnostics for host binding parser errors (<a href="https://github.com/angular/angular/tree/HEAD/packages/router/issues/58870">#58870</a>)</td> </tr> </tbody> </table> <h3>core</h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/502ee0e7221a9e7cfa0fa3bd92298d3b650a7713"><img src="https://img.shields.io/badge/502ee0e722-fix-green" alt="fix - 502ee0e722" /></a></td> <td>correctly clear template HMR internal renderer cache (<a href="https://github.com/angular/angular/tree/HEAD/packages/router/issues/58724">#58724</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/99715104a1a787c3899dfbfac6b44f28c7d24356"><img src="https://img.shields.io/badge/99715104a1-fix-green" alt="fix - 99715104a1" /></a></td> <td>correctly perform lazy routes migration for components with additional decorators (<a href="https://github.com/angular/angular/tree/HEAD/packages/router/issues/58796">#58796</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/118803035f366acdffc577ec857b888f764bb338"><img src="https://img.shields.io/badge/118803035f-fix-green" alt="fix - 118803035f" /></a></td> <td>Ensure _tick is always run within the TracingSnapshot. (<a href="https://github.com/angular/angular/tree/HEAD/packages/router/issues/58881">#58881</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/08b9452f012b2ef660f767c2f0a4bf86bb15bb61"><img src="https://img.shields.io/badge/08b9452f01-fix-green" alt="fix - 08b9452f01" /></a></td> <td>Ensure resource sets an error (<a href="https://github.com/angular/angular/tree/HEAD/packages/router/issues/58855">#58855</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/84f45ea3ffe02003350c6c19fdafdc6f4d521ccb"><img src="https://img.shields.io/badge/84f45ea3ff-fix-green" alt="fix - 84f45ea3ff" /></a></td> <td>make component id generation more stable between client and server builds (<a href="https://github.com/angular/angular/tree/HEAD/packages/router/issues/58813">#58813</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/d3491c7cee3d110da1adb51f8047b4e1976ece71"><img src="https://img.shields.io/badge/d3491c7cee-fix-green" alt="fix - d3491c7cee" /></a></td> <td>Prevents race condition of cleanup for incremental hydration (<a href="https://github.com/angular/angular/tree/HEAD/packages/router/issues/58722">#58722</a>)</td> </tr> </tbody> </table> <h3>forms</h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/4dfe5b6cefd7901a466b37b660f8b3a051a06cb3"><img src="https://img.shields.io/badge/4dfe5b6cef-fix-green" alt="fix - 4dfe5b6cef" /></a></td> <td>work around TypeScript 5.7 issue (<a href="https://github.com/angular/angular/tree/HEAD/packages/router/issues/58731">#58731</a>)</td> </tr> </tbody> </table> <h3>language-service</h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/a983865bffa828a982ef7e56204924d9c2989ead"><img src="https://img.shields.io/badge/a983865bff-fix-green" alt="fix - a983865bff" /></a></td> <td>add fix for individual unused imports (<a href="https://github.com/angular/angular/tree/HEAD/packages/router/issues/58719">#58719</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/e6e7a4e22b0a654808e5eb88a30cd6effa383332"><img src="https://img.shields.io/badge/e6e7a4e22b-fix-green" alt="fix - e6e7a4e22b" /></a></td> <td>allow fixes to run without template info (<a href="https://github.com/angular/angular/tree/HEAD/packages/router/issues/58719">#58719</a>)</td> </tr> </tbody> </table> <h3>migrations</h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/5ce10264a434ffc8e31cdc68208d2c3c7f8378ed"><img src="https://img.shields.io/badge/5ce10264a4-fix-green" alt="fix - 5ce10264a4" /></a></td> <td>fix provide-initializer migration when using useFactory (<a href="https://github.com/angular/angular/tree/HEAD/packages/router/issues/58518">#58518</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/d4f5c85f60133550303d59b3f9e3e34f14ca63ce"><img src="https://img.shields.io/badge/d4f5c85f60-fix-green" alt="fix - d4f5c85f60" /></a></td> <td>handle parameters with initializers in inject migration (<a href="https://github.com/angular/angular/tree/HEAD/packages/router/issues/58769">#58769</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/a6d2d2dc104608f14c3850b21bc23ba75ca04e4d"><img src="https://img.shields.io/badge/a6d2d2dc10-fix-green" alt="fix - a6d2d2dc10" /></a></td> <td>Mark hoisted properties as removed in inject migration (<a href="https://github.com/angular/angular/tree/HEAD/packages/router/issues/58804">#58804</a>)</td> </tr> </tbody> </table> <h2>v19.0.0</h2> <h1>19.0.0 (2024-11-19)</h1> <p>Explore Angular v19 with a blog post from the Angular team: <a href="https://blog.angular.dev/meet-angular-v19-7b29dfd05b84">https://blog.angular.dev/meet-angular-v19-7b29dfd05b84</a></p> <h2>Breaking Changes</h2> <h3>compiler</h3> <ul> <li><code>this.foo</code> property reads no longer refer to template context variables. If you intended to read the template variable, do not use <code>this.</code>.</li> </ul> <h3>core</h3> <ul> <li> <p>Angular directives, components and pipes are now standalone by default.</p> <ul> <li>Specify <code>standalone: false</code> for declarations that are currently declared in <code>@NgModule</code>s.</li> <li><code>ng update</code> for v19 will take care of this automatically.</li> </ul> </li> <li> <p>TypeScript versions less than 5.5 are no longer supported.</p> </li> <li> <p>Timing changes for <code>effect</code> API (in developer preview):</p> <ul> <li>effects which are triggered outside of change detection run as part of the change detection process instead of as a microtask. Depending on the</li> </ul> </li> </ul> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/angular/angular/blob/main/CHANGELOG.md"><code>@​angular/router</code>'s changelog</a>.</em></p> <blockquote> <h1>18.2.13 (2024-11-26)</h1> <h3>migrations</h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/06d70a25ea7a6ef32f47516fcb8542d98ac45e14">06d70a25ea</a></td> <td>fix</td> <td>take care of tests that import both HttpClientModule &amp; HttpClientTestingModule. (<a href="https://redirect.github.com/angular/angular/pull/58777">#58777</a>)</td> </tr> </tbody> </table> <h1>19.1.0-next.0 (2024-11-26)</h1> <h3>common</h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/e4c50b3bea22ca2afba74465893c36730952f4b9">e4c50b3bea</a></td> <td>feat</td> <td>expose component instance in NgComponentOutlet (<a href="https://redirect.github.com/angular/angular/pull/58698">#58698</a>)</td> </tr> </tbody> </table> <h3>core</h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/bd1f1294aeb0d47b24421b7b7a608988689a459f">bd1f1294ae</a></td> <td>feat</td> <td>support TypeScript 5.7 (<a href="https://redirect.github.com/angular/angular/pull/58609">#58609</a>)</td> </tr> </tbody> </table> <h1>19.0.1 (2024-11-26)</h1> <h3>compiler-cli</h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/fb1fa8b0fc04c9cfac6551ca27bee89dcd7c72ac">fb1fa8b0fc</a></td> <td>fix</td> <td>more accurate diagnostics for host binding parser errors (<a href="https://redirect.github.com/angular/angular/pull/58870">#58870</a>)</td> </tr> </tbody> </table> <h3>core</h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/502ee0e7221a9e7cfa0fa3bd92298d3b650a7713">502ee0e722</a></td> <td>fix</td> <td>correctly clear template HMR internal renderer cache (<a href="https://redirect.github.com/angular/angular/pull/58724">#58724</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/99715104a1a787c3899dfbfac6b44f28c7d24356">99715104a1</a></td> <td>fix</td> <td>correctly perform lazy routes migration for components with additional decorators (<a href="https://redirect.github.com/angular/angular/pull/58796">#58796</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/118803035f366acdffc577ec857b888f764bb338">118803035f</a></td> <td>fix</td> <td>Ensure _tick is always run within the TracingSnapshot. (<a href="https://redirect.github.com/angular/angular/pull/58881">#58881</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/08b9452f012b2ef660f767c2f0a4bf86bb15bb61">08b9452f01</a></td> <td>fix</td> <td>Ensure resource sets an error (<a href="https://redirect.github.com/angular/angular/pull/58855">#58855</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/84f45ea3ffe02003350c6c19fdafdc6f4d521ccb">84f45ea3ff</a></td> <td>fix</td> <td>make component id generation more stable between client and server builds (<a href="https://redirect.github.com/angular/angular/pull/58813">#58813</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/d3491c7cee3d110da1adb51f8047b4e1976ece71">d3491c7cee</a></td> <td>fix</td> <td>Prevents race condition of cleanup for incremental hydration (<a href="https://redirect.github.com/angular/angular/pull/58722">#58722</a>)</td> </tr> </tbody> </table> <h3>forms</h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/4dfe5b6cefd7901a466b37b660f8b3a051a06cb3">4dfe5b6cef</a></td> <td>fix</td> <td>work around TypeScript 5.7 issue (<a href="https://redirect.github.com/angular/angular/pull/58731">#58731</a>)</td> </tr> </tbody> </table> <h3>language-service</h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/a983865bffa828a982ef7e56204924d9c2989ead">a983865bff</a></td> <td>fix</td> <td>add fix for individual unused imports (<a href="https://redirect.github.com/angular/angular/pull/58719">#58719</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/e6e7a4e22b0a654808e5eb88a30cd6effa383332">e6e7a4e22b</a></td> <td>fix</td> <td>allow fixes to run without template info (<a href="https://redirect.github.com/angular/angular/pull/58719">#58719</a>)</td> </tr> </tbody> </table> <h3>migrations</h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/5ce10264a434ffc8e31cdc68208d2c3c7f8378ed">5ce10264a4</a></td> <td>fix</td> <td>fix provide-initializer migration when using useFactory (<a href="https://redirect.github.com/angular/angular/pull/58518">#58518</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/d4f5c85f60133550303d59b3f9e3e34f14ca63ce">d4f5c85f60</a></td> <td>fix</td> <td>handle parameters with initializers in inject migration (<a href="https://redirect.github.com/angular/angular/pull/58769">#58769</a>)</td> </tr> </tbody> </table> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/angular/angular/commit/0c86d3e1f3416f7aaee5b0d67004cbac60cbe2a4"><code>0c86d3e</code></a> refactor(router): remove unused default error handler function (<a href="https://github.com/angular/angular/tree/HEAD/packages/router/issues/58819">#58819</a>)</li> <li><a href="https://github.com/angular/angular/commit/a49c35ec769461b9eb490719f0aa3e5aea8e243f"><code>a49c35e</code></a> fix(router): remove setter for <code>injector</code> on <code>OutletContext</code> (<a href="https://github.com/angular/angular/tree/HEAD/packages/router/issues/58343">#58343</a>)</li> <li><a href="https://github.com/angular/angular/commit/da9c0c504435ed46d3c5cef1a8f1793602eabb26"><code>da9c0c5</code></a> refactor: cleanup initializers that use ctor params (<a href="https://github.com/angular/angular/tree/HEAD/packages/router/issues/58349">#58349</a>)</li> <li><a href="https://github.com/angular/angular/commit/a36b54d63e2643a76c6756f80747418062365113"><code>a36b54d</code></a> docs(router): document segment consumption during route evaluation (<a href="https://github.com/angular/angular/tree/HEAD/packages/router/issues/58069">#58069</a>)</li> <li><a href="https://github.com/angular/angular/commit/0ea9b8892bf68f8cf3af6ca243760e571e8c5a69"><code>0ea9b88</code></a> test(router): adding test for getLoadedRoutes (<a href="https://github.com/angular/angular/tree/HEAD/packages/router/issues/58199">#58199</a>)</li> <li><a href="https://github.com/angular/angular/commit/0674965b5912457979115843ecbbba7141a2532f"><code>0674965</code></a> refactor(router): publishing getLoadedRoutes using the global utils function ...</li> <li><a href="https://github.com/angular/angular/commit/09df589e31ee4d546c536ca385d4f5f1a948df93"><code>09df589</code></a> refactor(core): Migrate all packages with the <code>explicit-standalone-flag</code> sche...</li> <li><a href="https://github.com/angular/angular/commit/84b68969561b6f387ef8761218a89fb343fc4442"><code>84b6896</code></a> refactor(platform-server): Add an ssr benchmark setup. (<a href="https://github.com/angular/angular/tree/HEAD/packages/router/issues/57647">#57647</a>)</li> <li><a href="https://github.com/angular/angular/commit/ed57c5c9c87d315d2f2bb31fc86ab621ea4b41ef"><code>ed57c5c</code></a> docs: export ComponentInputBindingFeature which is part of the public API (<a href="https://github.com/angular/angular/tree/HEAD/packages/router/issues/5">#5</a>...</li> <li><a href="https://github.com/angular/angular/commit/2ece9dff75b0ee8800e78576531c5f042017d97a"><code>2ece9df</code></a> docs(router): Document missing input for route binding (<a href="https://github.com/angular/angular/tree/HEAD/packages/router/issues/57697">#57697</a>)</li> <li>Additional commits viewable in <a href="https://github.com/angular/angular/commits/19.0.1/packages/router">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@angular/router&package-manager=npm_and_yarn&previous-version=18.2.13&new-version=19.0.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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`. --- <details> <summary>Dependabot commands and options</summary> <br /> 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 show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@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) </details>
4 months ago
"@angular/router": "^19.0.1",
"rxjs": "~7.8.1",
"tslib": "^2.6.2",
Bump zone.js from 0.14.10 to 0.15.0 in /web_embedding/ng-flutter (#2397) Bumps [zone.js](https://github.com/angular/angular/tree/HEAD/packages/zone.js) from 0.14.10 to 0.15.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/angular/angular/blob/main/packages/zone.js/CHANGELOG.md">zone.js's changelog</a>.</em></p> <blockquote> <h1><a href="https://github.com/angular/angular/compare/zone.js-0.14.10...zone.js-0.15.0">0.15.0</a> (2024-08-15)</h1> <h3>Bug Fixes</h3> <ul> <li><strong>zone.js:</strong> Add support for addition jest functions. (<a href="https://redirect.github.com/angular/angular/issues/57280">#57280</a>) (<a href="https://github.com/angular/angular/commit/e1240c6f5d9a3d68ccef7ffbf0a0646ad1164cd8">e1240c6</a>), closes <a href="https://redirect.github.com/angular/angular/issues/57277">#57277</a></li> <li><strong>zone.js:</strong> Update the default behavior of fakeAsync to flush after the test (<a href="https://redirect.github.com/angular/angular/issues/57240">#57240</a>) (<a href="https://github.com/angular/angular/commit/70e8b40750e894bc1439713cd508d8bd9fafb7a4">70e8b40</a>)</li> </ul> <h3>BREAKING CHANGES</h3> <ul> <li><strong>zone.js:</strong> <code>fakeAsync</code> will now flush pending timers at the end of the given function by default. To opt-out of this, you can use <code>{flush: false}</code> in options parameter of <code>fakeAsync</code></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/angular/angular/commit/d1d4adcba24affa30a903acedeb41d1e63776778"><code>d1d4adc</code></a> release: cut the zone.js-0.15.0 release (<a href="https://github.com/angular/angular/tree/HEAD/packages/zone.js/issues/57418">#57418</a>)</li> <li><a href="https://github.com/angular/angular/commit/24cd1c8db6be568d4988e4f0178e31b54572e948"><code>24cd1c8</code></a> build: lock file maintenance (<a href="https://github.com/angular/angular/tree/HEAD/packages/zone.js/issues/57340">#57340</a>)</li> <li><a href="https://github.com/angular/angular/commit/e1240c6f5d9a3d68ccef7ffbf0a0646ad1164cd8"><code>e1240c6</code></a> fix(zone.js): Add support for addition jest functions. (<a href="https://github.com/angular/angular/tree/HEAD/packages/zone.js/issues/57280">#57280</a>)</li> <li><a href="https://github.com/angular/angular/commit/70e8b40750e894bc1439713cd508d8bd9fafb7a4"><code>70e8b40</code></a> fix(zone.js): Update the default behavior of fakeAsync to flush after the tes...</li> <li>See full diff in <a href="https://github.com/angular/angular/commits/zone.js-0.15.0/packages/zone.js">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=zone.js&package-manager=npm_and_yarn&previous-version=0.14.10&new-version=0.15.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@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) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
7 months ago
"zone.js": "~0.15.0"
},
"devDependencies": {
Bump @angular-devkit/build-angular from 18.2.12 to 19.0.2 in /web_embedding/ng-flutter (#2502) Bumps [@angular-devkit/build-angular](https://github.com/angular/angular-cli) from 18.2.12 to 19.0.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/angular/angular-cli/releases"><code>@​angular-devkit/build-angular</code>'s releases</a>.</em></p> <blockquote> <h2>v19.0.2</h2> <h1>19.0.2 (2024-11-25)</h1> <h3><code>@​schematics/angular</code></h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular-cli/commit/2f53e2af55794795979232b0f3e95359299e1aee"><img src="https://img.shields.io/badge/2f53e2af5-fix-green" alt="fix - 2f53e2af5" /></a></td> <td>skip SSR routing prompt in webcontainer</td> </tr> </tbody> </table> <h3><code>@​angular/build</code></h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular-cli/commit/f9da163f8852800763844ae89e85eaafe0c37f2b"><img src="https://img.shields.io/badge/f9da163f8-fix-green" alt="fix - f9da163f8" /></a></td> <td>minimize reliance on esbuild <code>inject</code> to prevent code reordering</td> </tr> <tr> <td><a href="https://github.com/angular/angular-cli/commit/c497749e670e916e17a4e7fb0acb1abe26d9bd9a"><img src="https://img.shields.io/badge/c497749e6-fix-green" alt="fix - c497749e6" /></a></td> <td>prevent errors with parameterized routes when <code>getPrerenderParams</code> is undefined</td> </tr> </tbody> </table> <h3><code>@​angular/ssr</code></h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular-cli/commit/c8cd90e0f601a6baa05b84e45bbd37b4bf6049f5"><img src="https://img.shields.io/badge/c8cd90e0f-fix-green" alt="fix - c8cd90e0f" /></a></td> <td>handle nested redirects not explicitly defined in router config</td> </tr> </tbody> </table> <h2>v19.0.1</h2> <h1>19.0.1 (2024-11-21)</h1> <h3><code>@​angular-devkit/build-angular</code></h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular-cli/commit/b63123f20702bd53ea99888b83b4253810ae0a09"><img src="https://img.shields.io/badge/b63123f20-fix-green" alt="fix - b63123f20" /></a></td> <td>use stylePreprocessorOptions</td> </tr> </tbody> </table> <h3><code>@​angular/build</code></h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular-cli/commit/74461da6439b70b5348c99682842ae20043d9b61"><img src="https://img.shields.io/badge/74461da64-fix-green" alt="fix - 74461da64" /></a></td> <td>ensure accurate content length for server assets</td> </tr> <tr> <td><a href="https://github.com/angular/angular-cli/commit/1b4dcedd594b5d9a1701cd8d1e9874742c05e47f"><img src="https://img.shields.io/badge/1b4dcedd5-fix-green" alt="fix - 1b4dcedd5" /></a></td> <td>use <code>sha256</code> instead of <code>sha-256</code> as hash algorithm name</td> </tr> </tbody> </table> <h3><code>@​angular/ssr</code></h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular-cli/commit/8bd2b260e2008f1ffc71af0e55b27884c3660c54"><img src="https://img.shields.io/badge/8bd2b260e-fix-green" alt="fix - 8bd2b260e" /></a></td> <td>handle baseHref that start with <code>./</code></td> </tr> </tbody> </table> <h2>v19.0.0</h2> <h1>19.0.0 (2024-11-19)</h1> <h3><code>@​angular/cli</code></h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular-cli/commit/201b60e1dd25b4abb7670e21d103b67d4eda0e14"><img src="https://img.shields.io/badge/201b60e1d-feat-blue" alt="feat - 201b60e1d" /></a></td> <td>handle string key/value pairs, e.g. --define</td> </tr> <tr> <td><a href="https://github.com/angular/angular-cli/commit/b847d4460c352604e1935d494efd761915caaa3f"><img src="https://img.shields.io/badge/b847d4460-fix-green" alt="fix - b847d4460" /></a></td> <td>recommend optional application update migration during v19 update</td> </tr> <tr> <td><a href="https://github.com/angular/angular-cli/commit/f249e7e856bf16e8c5f154fdb8aff36421649a1b"><img src="https://img.shields.io/badge/f249e7e85-perf-orange" alt="perf - f249e7e85" /></a></td> <td>enable Node.js compile code cache when available</td> </tr> <tr> <td><a href="https://github.com/angular/angular-cli/commit/ecc107d83bfdfd9d5dd1087e264892d60361625c"><img src="https://img.shields.io/badge/ecc107d83-perf-orange" alt="perf - ecc107d83" /></a></td> <td>enable Node.js compile code cache when available</td> </tr> </tbody> </table> <h3><code>@​schematics/angular</code></h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular-cli/commit/a381a3db187f7b20e5ec8d1e1a1f1bd860426fcd"><img src="https://img.shields.io/badge/a381a3db1-feat-blue" alt="feat - a381a3db1" /></a></td> <td>add option to export component as default</td> </tr> <tr> <td><a href="https://github.com/angular/angular-cli/commit/755f3a07f5fe485c1ed8c0c6060d6d5c799c085c"><img src="https://img.shields.io/badge/755f3a07f-feat-blue" alt="feat - 755f3a07f" /></a></td> <td>add option to setup new workspace or application as zoneless mode</td> </tr> <tr> <td><a href="https://github.com/angular/angular-cli/commit/cfca5442ec01cc4eff4fe75822eb7ef780ccfef1"><img src="https://img.shields.io/badge/cfca5442e-feat-blue" alt="feat - cfca5442e" /></a></td> <td>integrate <code>withEventReplay()</code> in <code>provideClientHydration</code> for new SSR apps</td> </tr> </tbody> </table> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/angular/angular-cli/blob/main/CHANGELOG.md"><code>@​angular-devkit/build-angular</code>'s changelog</a>.</em></p> <blockquote> <h1>19.0.2 (2024-11-25)</h1> <h3><code>@​schematics/angular</code></h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular-cli/commit/2f53e2af55794795979232b0f3e95359299e1aee">2f53e2af5</a></td> <td>fix</td> <td>skip SSR routing prompt in webcontainer</td> </tr> </tbody> </table> <h3><code>@​angular/build</code></h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular-cli/commit/f9da163f8852800763844ae89e85eaafe0c37f2b">f9da163f8</a></td> <td>fix</td> <td>minimize reliance on esbuild <code>inject</code> to prevent code reordering</td> </tr> <tr> <td><a href="https://github.com/angular/angular-cli/commit/c497749e670e916e17a4e7fb0acb1abe26d9bd9a">c497749e6</a></td> <td>fix</td> <td>prevent errors with parameterized routes when <code>getPrerenderParams</code> is undefined</td> </tr> </tbody> </table> <h3><code>@​angular/ssr</code></h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular-cli/commit/c8cd90e0f601a6baa05b84e45bbd37b4bf6049f5">c8cd90e0f</a></td> <td>fix</td> <td>handle nested redirects not explicitly defined in router config</td> </tr> </tbody> </table> <h1>19.0.1 (2024-11-21)</h1> <h3><code>@​angular-devkit/build-angular</code></h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular-cli/commit/b63123f20702bd53ea99888b83b4253810ae0a09">b63123f20</a></td> <td>fix</td> <td>use stylePreprocessorOptions</td> </tr> </tbody> </table> <h3><code>@​angular/build</code></h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular-cli/commit/74461da6439b70b5348c99682842ae20043d9b61">74461da64</a></td> <td>fix</td> <td>ensure accurate content length for server assets</td> </tr> <tr> <td><a href="https://github.com/angular/angular-cli/commit/1b4dcedd594b5d9a1701cd8d1e9874742c05e47f">1b4dcedd5</a></td> <td>fix</td> <td>use <code>sha256</code> instead of <code>sha-256</code> as hash algorithm name</td> </tr> </tbody> </table> <h3><code>@​angular/ssr</code></h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular-cli/commit/8bd2b260e2008f1ffc71af0e55b27884c3660c54">8bd2b260e</a></td> <td>fix</td> <td>handle baseHref that start with <code>./</code></td> </tr> </tbody> </table> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/angular/angular-cli/commit/d2612468347a232c25c6a77bb50b647e13926cef"><code>d261246</code></a> release: cut the v19.0.2 release</li> <li><a href="https://github.com/angular/angular-cli/commit/c497749e670e916e17a4e7fb0acb1abe26d9bd9a"><code>c497749</code></a> fix(<code>@​angular/build</code>): prevent errors with parameterized routes when `getPreren...</li> <li><a href="https://github.com/angular/angular-cli/commit/d8cbf3b57615256a3e7d3f9f0ef1fbae8f733c8c"><code>d8cbf3b</code></a> refactor(<code>@​angular/build</code>): maintain previous compiler plugin factory signature</li> <li><a href="https://github.com/angular/angular-cli/commit/2f53e2af55794795979232b0f3e95359299e1aee"><code>2f53e2a</code></a> fix(<code>@​schematics/angular</code>): skip SSR routing prompt in webcontainer</li> <li><a href="https://github.com/angular/angular-cli/commit/f9da163f8852800763844ae89e85eaafe0c37f2b"><code>f9da163</code></a> fix(<code>@​angular/build</code>): minimize reliance on esbuild <code>inject</code> to prevent code re...</li> <li><a href="https://github.com/angular/angular-cli/commit/5ac03f40e720b47bdd29aad4a685c2a13dbb537c"><code>5ac03f4</code></a> refactor(<code>@​angular/ssr</code>): use appRef.whenStable instead of util function from a...</li> <li><a href="https://github.com/angular/angular-cli/commit/0eb5870190b920f3c99b466d8f10a0be68ea8de4"><code>0eb5870</code></a> refactor(<code>@​angular/ssr</code>): replace <code>:params</code> with <code>*</code></li> <li><a href="https://github.com/angular/angular-cli/commit/c8cd90e0f601a6baa05b84e45bbd37b4bf6049f5"><code>c8cd90e</code></a> fix(<code>@​angular/ssr</code>): handle nested redirects not explicitly defined in router c...</li> <li><a href="https://github.com/angular/angular-cli/commit/8cd6aa94b79e6e15add173964b305ddf47357b49"><code>8cd6aa9</code></a> release: cut the v19.0.1 release</li> <li><a href="https://github.com/angular/angular-cli/commit/1b4dcedd594b5d9a1701cd8d1e9874742c05e47f"><code>1b4dced</code></a> fix(<code>@​angular/build</code>): use <code>sha256</code> instead of <code>sha-256</code> as hash algorithm name</li> <li>Additional commits viewable in <a href="https://github.com/angular/angular-cli/compare/18.2.12...19.0.2">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@angular-devkit/build-angular&package-manager=npm_and_yarn&previous-version=18.2.12&new-version=19.0.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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`. --- <details> <summary>Dependabot commands and options</summary> <br /> 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 show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@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) </details>
4 months ago
"@angular-devkit/build-angular": "^19.0.2",
Bump @angular/cli from 18.2.12 to 19.0.2 in /web_embedding/ng-flutter (#2504) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- Bumps [@angular/cli](https://github.com/angular/angular-cli) from 18.2.12 to 19.0.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/angular/angular-cli/releases"><code>@​angular/cli</code>'s releases</a>.</em></p> <blockquote> <h2>v19.0.2</h2> <h1>19.0.2 (2024-11-25)</h1> <h3><code>@​schematics/angular</code></h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular-cli/commit/2f53e2af55794795979232b0f3e95359299e1aee"><img src="https://img.shields.io/badge/2f53e2af5-fix-green" alt="fix - 2f53e2af5" /></a></td> <td>skip SSR routing prompt in webcontainer</td> </tr> </tbody> </table> <h3><code>@​angular/build</code></h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular-cli/commit/f9da163f8852800763844ae89e85eaafe0c37f2b"><img src="https://img.shields.io/badge/f9da163f8-fix-green" alt="fix - f9da163f8" /></a></td> <td>minimize reliance on esbuild <code>inject</code> to prevent code reordering</td> </tr> <tr> <td><a href="https://github.com/angular/angular-cli/commit/c497749e670e916e17a4e7fb0acb1abe26d9bd9a"><img src="https://img.shields.io/badge/c497749e6-fix-green" alt="fix - c497749e6" /></a></td> <td>prevent errors with parameterized routes when <code>getPrerenderParams</code> is undefined</td> </tr> </tbody> </table> <h3><code>@​angular/ssr</code></h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular-cli/commit/c8cd90e0f601a6baa05b84e45bbd37b4bf6049f5"><img src="https://img.shields.io/badge/c8cd90e0f-fix-green" alt="fix - c8cd90e0f" /></a></td> <td>handle nested redirects not explicitly defined in router config</td> </tr> </tbody> </table> <h2>v19.0.1</h2> <h1>19.0.1 (2024-11-21)</h1> <h3><code>@​angular-devkit/build-angular</code></h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular-cli/commit/b63123f20702bd53ea99888b83b4253810ae0a09"><img src="https://img.shields.io/badge/b63123f20-fix-green" alt="fix - b63123f20" /></a></td> <td>use stylePreprocessorOptions</td> </tr> </tbody> </table> <h3><code>@​angular/build</code></h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular-cli/commit/74461da6439b70b5348c99682842ae20043d9b61"><img src="https://img.shields.io/badge/74461da64-fix-green" alt="fix - 74461da64" /></a></td> <td>ensure accurate content length for server assets</td> </tr> <tr> <td><a href="https://github.com/angular/angular-cli/commit/1b4dcedd594b5d9a1701cd8d1e9874742c05e47f"><img src="https://img.shields.io/badge/1b4dcedd5-fix-green" alt="fix - 1b4dcedd5" /></a></td> <td>use <code>sha256</code> instead of <code>sha-256</code> as hash algorithm name</td> </tr> </tbody> </table> <h3><code>@​angular/ssr</code></h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular-cli/commit/8bd2b260e2008f1ffc71af0e55b27884c3660c54"><img src="https://img.shields.io/badge/8bd2b260e-fix-green" alt="fix - 8bd2b260e" /></a></td> <td>handle baseHref that start with <code>./</code></td> </tr> </tbody> </table> <h2>v19.0.0</h2> <h1>19.0.0 (2024-11-19)</h1> <h3><code>@​angular/cli</code></h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular-cli/commit/201b60e1dd25b4abb7670e21d103b67d4eda0e14"><img src="https://img.shields.io/badge/201b60e1d-feat-blue" alt="feat - 201b60e1d" /></a></td> <td>handle string key/value pairs, e.g. --define</td> </tr> <tr> <td><a href="https://github.com/angular/angular-cli/commit/b847d4460c352604e1935d494efd761915caaa3f"><img src="https://img.shields.io/badge/b847d4460-fix-green" alt="fix - b847d4460" /></a></td> <td>recommend optional application update migration during v19 update</td> </tr> <tr> <td><a href="https://github.com/angular/angular-cli/commit/f249e7e856bf16e8c5f154fdb8aff36421649a1b"><img src="https://img.shields.io/badge/f249e7e85-perf-orange" alt="perf - f249e7e85" /></a></td> <td>enable Node.js compile code cache when available</td> </tr> <tr> <td><a href="https://github.com/angular/angular-cli/commit/ecc107d83bfdfd9d5dd1087e264892d60361625c"><img src="https://img.shields.io/badge/ecc107d83-perf-orange" alt="perf - ecc107d83" /></a></td> <td>enable Node.js compile code cache when available</td> </tr> </tbody> </table> <h3><code>@​schematics/angular</code></h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular-cli/commit/a381a3db187f7b20e5ec8d1e1a1f1bd860426fcd"><img src="https://img.shields.io/badge/a381a3db1-feat-blue" alt="feat - a381a3db1" /></a></td> <td>add option to export component as default</td> </tr> <tr> <td><a href="https://github.com/angular/angular-cli/commit/755f3a07f5fe485c1ed8c0c6060d6d5c799c085c"><img src="https://img.shields.io/badge/755f3a07f-feat-blue" alt="feat - 755f3a07f" /></a></td> <td>add option to setup new workspace or application as zoneless mode</td> </tr> <tr> <td><a href="https://github.com/angular/angular-cli/commit/cfca5442ec01cc4eff4fe75822eb7ef780ccfef1"><img src="https://img.shields.io/badge/cfca5442e-feat-blue" alt="feat - cfca5442e" /></a></td> <td>integrate <code>withEventReplay()</code> in <code>provideClientHydration</code> for new SSR apps</td> </tr> </tbody> </table> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/angular/angular-cli/blob/main/CHANGELOG.md"><code>@​angular/cli</code>'s changelog</a>.</em></p> <blockquote> <h1>19.0.2 (2024-11-25)</h1> <h3><code>@​schematics/angular</code></h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular-cli/commit/2f53e2af55794795979232b0f3e95359299e1aee">2f53e2af5</a></td> <td>fix</td> <td>skip SSR routing prompt in webcontainer</td> </tr> </tbody> </table> <h3><code>@​angular/build</code></h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular-cli/commit/f9da163f8852800763844ae89e85eaafe0c37f2b">f9da163f8</a></td> <td>fix</td> <td>minimize reliance on esbuild <code>inject</code> to prevent code reordering</td> </tr> <tr> <td><a href="https://github.com/angular/angular-cli/commit/c497749e670e916e17a4e7fb0acb1abe26d9bd9a">c497749e6</a></td> <td>fix</td> <td>prevent errors with parameterized routes when <code>getPrerenderParams</code> is undefined</td> </tr> </tbody> </table> <h3><code>@​angular/ssr</code></h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular-cli/commit/c8cd90e0f601a6baa05b84e45bbd37b4bf6049f5">c8cd90e0f</a></td> <td>fix</td> <td>handle nested redirects not explicitly defined in router config</td> </tr> </tbody> </table> <h1>19.0.1 (2024-11-21)</h1> <h3><code>@​angular-devkit/build-angular</code></h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular-cli/commit/b63123f20702bd53ea99888b83b4253810ae0a09">b63123f20</a></td> <td>fix</td> <td>use stylePreprocessorOptions</td> </tr> </tbody> </table> <h3><code>@​angular/build</code></h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular-cli/commit/74461da6439b70b5348c99682842ae20043d9b61">74461da64</a></td> <td>fix</td> <td>ensure accurate content length for server assets</td> </tr> <tr> <td><a href="https://github.com/angular/angular-cli/commit/1b4dcedd594b5d9a1701cd8d1e9874742c05e47f">1b4dcedd5</a></td> <td>fix</td> <td>use <code>sha256</code> instead of <code>sha-256</code> as hash algorithm name</td> </tr> </tbody> </table> <h3><code>@​angular/ssr</code></h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular-cli/commit/8bd2b260e2008f1ffc71af0e55b27884c3660c54">8bd2b260e</a></td> <td>fix</td> <td>handle baseHref that start with <code>./</code></td> </tr> </tbody> </table> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/angular/angular-cli/commit/d2612468347a232c25c6a77bb50b647e13926cef"><code>d261246</code></a> release: cut the v19.0.2 release</li> <li><a href="https://github.com/angular/angular-cli/commit/c497749e670e916e17a4e7fb0acb1abe26d9bd9a"><code>c497749</code></a> fix(<code>@​angular/build</code>): prevent errors with parameterized routes when `getPreren...</li> <li><a href="https://github.com/angular/angular-cli/commit/d8cbf3b57615256a3e7d3f9f0ef1fbae8f733c8c"><code>d8cbf3b</code></a> refactor(<code>@​angular/build</code>): maintain previous compiler plugin factory signature</li> <li><a href="https://github.com/angular/angular-cli/commit/2f53e2af55794795979232b0f3e95359299e1aee"><code>2f53e2a</code></a> fix(<code>@​schematics/angular</code>): skip SSR routing prompt in webcontainer</li> <li><a href="https://github.com/angular/angular-cli/commit/f9da163f8852800763844ae89e85eaafe0c37f2b"><code>f9da163</code></a> fix(<code>@​angular/build</code>): minimize reliance on esbuild <code>inject</code> to prevent code re...</li> <li><a href="https://github.com/angular/angular-cli/commit/5ac03f40e720b47bdd29aad4a685c2a13dbb537c"><code>5ac03f4</code></a> refactor(<code>@​angular/ssr</code>): use appRef.whenStable instead of util function from a...</li> <li><a href="https://github.com/angular/angular-cli/commit/0eb5870190b920f3c99b466d8f10a0be68ea8de4"><code>0eb5870</code></a> refactor(<code>@​angular/ssr</code>): replace <code>:params</code> with <code>*</code></li> <li><a href="https://github.com/angular/angular-cli/commit/c8cd90e0f601a6baa05b84e45bbd37b4bf6049f5"><code>c8cd90e</code></a> fix(<code>@​angular/ssr</code>): handle nested redirects not explicitly defined in router c...</li> <li><a href="https://github.com/angular/angular-cli/commit/8cd6aa94b79e6e15add173964b305ddf47357b49"><code>8cd6aa9</code></a> release: cut the v19.0.1 release</li> <li><a href="https://github.com/angular/angular-cli/commit/1b4dcedd594b5d9a1701cd8d1e9874742c05e47f"><code>1b4dced</code></a> fix(<code>@​angular/build</code>): use <code>sha256</code> instead of <code>sha-256</code> as hash algorithm name</li> <li>Additional commits viewable in <a href="https://github.com/angular/angular-cli/compare/18.2.12...19.0.2">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@angular/cli&package-manager=npm_and_yarn&previous-version=18.2.12&new-version=19.0.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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`. --- <details> <summary>Dependabot commands and options</summary> <br /> 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 show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@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) </details>
4 months ago
"@angular/cli": "~19.0.2",
Bump @angular/compiler-cli from 18.2.13 to 19.0.1 in /web_embedding/ng-flutter (#2505) Bumps [@angular/compiler-cli](https://github.com/angular/angular/tree/HEAD/packages/compiler-cli) from 18.2.13 to 19.0.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/angular/angular/releases"><code>@​angular/compiler-cli</code>'s releases</a>.</em></p> <blockquote> <h2>v19.0.1</h2> <h1>19.0.1 (2024-11-26)</h1> <h3>compiler-cli</h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/fb1fa8b0fc04c9cfac6551ca27bee89dcd7c72ac"><img src="https://img.shields.io/badge/fb1fa8b0fc-fix-green" alt="fix - fb1fa8b0fc" /></a></td> <td>more accurate diagnostics for host binding parser errors (<a href="https://github.com/angular/angular/tree/HEAD/packages/compiler-cli/issues/58870">#58870</a>)</td> </tr> </tbody> </table> <h3>core</h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/502ee0e7221a9e7cfa0fa3bd92298d3b650a7713"><img src="https://img.shields.io/badge/502ee0e722-fix-green" alt="fix - 502ee0e722" /></a></td> <td>correctly clear template HMR internal renderer cache (<a href="https://github.com/angular/angular/tree/HEAD/packages/compiler-cli/issues/58724">#58724</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/99715104a1a787c3899dfbfac6b44f28c7d24356"><img src="https://img.shields.io/badge/99715104a1-fix-green" alt="fix - 99715104a1" /></a></td> <td>correctly perform lazy routes migration for components with additional decorators (<a href="https://github.com/angular/angular/tree/HEAD/packages/compiler-cli/issues/58796">#58796</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/118803035f366acdffc577ec857b888f764bb338"><img src="https://img.shields.io/badge/118803035f-fix-green" alt="fix - 118803035f" /></a></td> <td>Ensure _tick is always run within the TracingSnapshot. (<a href="https://github.com/angular/angular/tree/HEAD/packages/compiler-cli/issues/58881">#58881</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/08b9452f012b2ef660f767c2f0a4bf86bb15bb61"><img src="https://img.shields.io/badge/08b9452f01-fix-green" alt="fix - 08b9452f01" /></a></td> <td>Ensure resource sets an error (<a href="https://github.com/angular/angular/tree/HEAD/packages/compiler-cli/issues/58855">#58855</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/84f45ea3ffe02003350c6c19fdafdc6f4d521ccb"><img src="https://img.shields.io/badge/84f45ea3ff-fix-green" alt="fix - 84f45ea3ff" /></a></td> <td>make component id generation more stable between client and server builds (<a href="https://github.com/angular/angular/tree/HEAD/packages/compiler-cli/issues/58813">#58813</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/d3491c7cee3d110da1adb51f8047b4e1976ece71"><img src="https://img.shields.io/badge/d3491c7cee-fix-green" alt="fix - d3491c7cee" /></a></td> <td>Prevents race condition of cleanup for incremental hydration (<a href="https://github.com/angular/angular/tree/HEAD/packages/compiler-cli/issues/58722">#58722</a>)</td> </tr> </tbody> </table> <h3>forms</h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/4dfe5b6cefd7901a466b37b660f8b3a051a06cb3"><img src="https://img.shields.io/badge/4dfe5b6cef-fix-green" alt="fix - 4dfe5b6cef" /></a></td> <td>work around TypeScript 5.7 issue (<a href="https://github.com/angular/angular/tree/HEAD/packages/compiler-cli/issues/58731">#58731</a>)</td> </tr> </tbody> </table> <h3>language-service</h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/a983865bffa828a982ef7e56204924d9c2989ead"><img src="https://img.shields.io/badge/a983865bff-fix-green" alt="fix - a983865bff" /></a></td> <td>add fix for individual unused imports (<a href="https://github.com/angular/angular/tree/HEAD/packages/compiler-cli/issues/58719">#58719</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/e6e7a4e22b0a654808e5eb88a30cd6effa383332"><img src="https://img.shields.io/badge/e6e7a4e22b-fix-green" alt="fix - e6e7a4e22b" /></a></td> <td>allow fixes to run without template info (<a href="https://github.com/angular/angular/tree/HEAD/packages/compiler-cli/issues/58719">#58719</a>)</td> </tr> </tbody> </table> <h3>migrations</h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/5ce10264a434ffc8e31cdc68208d2c3c7f8378ed"><img src="https://img.shields.io/badge/5ce10264a4-fix-green" alt="fix - 5ce10264a4" /></a></td> <td>fix provide-initializer migration when using useFactory (<a href="https://github.com/angular/angular/tree/HEAD/packages/compiler-cli/issues/58518">#58518</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/d4f5c85f60133550303d59b3f9e3e34f14ca63ce"><img src="https://img.shields.io/badge/d4f5c85f60-fix-green" alt="fix - d4f5c85f60" /></a></td> <td>handle parameters with initializers in inject migration (<a href="https://github.com/angular/angular/tree/HEAD/packages/compiler-cli/issues/58769">#58769</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/a6d2d2dc104608f14c3850b21bc23ba75ca04e4d"><img src="https://img.shields.io/badge/a6d2d2dc10-fix-green" alt="fix - a6d2d2dc10" /></a></td> <td>Mark hoisted properties as removed in inject migration (<a href="https://github.com/angular/angular/tree/HEAD/packages/compiler-cli/issues/58804">#58804</a>)</td> </tr> </tbody> </table> <h2>v19.0.0</h2> <h1>19.0.0 (2024-11-19)</h1> <p>Explore Angular v19 with a blog post from the Angular team: <a href="https://blog.angular.dev/meet-angular-v19-7b29dfd05b84">https://blog.angular.dev/meet-angular-v19-7b29dfd05b84</a></p> <h2>Breaking Changes</h2> <h3>compiler</h3> <ul> <li><code>this.foo</code> property reads no longer refer to template context variables. If you intended to read the template variable, do not use <code>this.</code>.</li> </ul> <h3>core</h3> <ul> <li> <p>Angular directives, components and pipes are now standalone by default.</p> <ul> <li>Specify <code>standalone: false</code> for declarations that are currently declared in <code>@NgModule</code>s.</li> <li><code>ng update</code> for v19 will take care of this automatically.</li> </ul> </li> <li> <p>TypeScript versions less than 5.5 are no longer supported.</p> </li> <li> <p>Timing changes for <code>effect</code> API (in developer preview):</p> <ul> <li>effects which are triggered outside of change detection run as part of the change detection process instead of as a microtask. Depending on the</li> </ul> </li> </ul> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/angular/angular/blob/main/CHANGELOG.md"><code>@​angular/compiler-cli</code>'s changelog</a>.</em></p> <blockquote> <h1>18.2.13 (2024-11-26)</h1> <h3>migrations</h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/06d70a25ea7a6ef32f47516fcb8542d98ac45e14">06d70a25ea</a></td> <td>fix</td> <td>take care of tests that import both HttpClientModule &amp; HttpClientTestingModule. (<a href="https://redirect.github.com/angular/angular/pull/58777">#58777</a>)</td> </tr> </tbody> </table> <h1>19.1.0-next.0 (2024-11-26)</h1> <h3>common</h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/e4c50b3bea22ca2afba74465893c36730952f4b9">e4c50b3bea</a></td> <td>feat</td> <td>expose component instance in NgComponentOutlet (<a href="https://redirect.github.com/angular/angular/pull/58698">#58698</a>)</td> </tr> </tbody> </table> <h3>core</h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/bd1f1294aeb0d47b24421b7b7a608988689a459f">bd1f1294ae</a></td> <td>feat</td> <td>support TypeScript 5.7 (<a href="https://redirect.github.com/angular/angular/pull/58609">#58609</a>)</td> </tr> </tbody> </table> <h1>19.0.1 (2024-11-26)</h1> <h3>compiler-cli</h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/fb1fa8b0fc04c9cfac6551ca27bee89dcd7c72ac">fb1fa8b0fc</a></td> <td>fix</td> <td>more accurate diagnostics for host binding parser errors (<a href="https://redirect.github.com/angular/angular/pull/58870">#58870</a>)</td> </tr> </tbody> </table> <h3>core</h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/502ee0e7221a9e7cfa0fa3bd92298d3b650a7713">502ee0e722</a></td> <td>fix</td> <td>correctly clear template HMR internal renderer cache (<a href="https://redirect.github.com/angular/angular/pull/58724">#58724</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/99715104a1a787c3899dfbfac6b44f28c7d24356">99715104a1</a></td> <td>fix</td> <td>correctly perform lazy routes migration for components with additional decorators (<a href="https://redirect.github.com/angular/angular/pull/58796">#58796</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/118803035f366acdffc577ec857b888f764bb338">118803035f</a></td> <td>fix</td> <td>Ensure _tick is always run within the TracingSnapshot. (<a href="https://redirect.github.com/angular/angular/pull/58881">#58881</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/08b9452f012b2ef660f767c2f0a4bf86bb15bb61">08b9452f01</a></td> <td>fix</td> <td>Ensure resource sets an error (<a href="https://redirect.github.com/angular/angular/pull/58855">#58855</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/84f45ea3ffe02003350c6c19fdafdc6f4d521ccb">84f45ea3ff</a></td> <td>fix</td> <td>make component id generation more stable between client and server builds (<a href="https://redirect.github.com/angular/angular/pull/58813">#58813</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/d3491c7cee3d110da1adb51f8047b4e1976ece71">d3491c7cee</a></td> <td>fix</td> <td>Prevents race condition of cleanup for incremental hydration (<a href="https://redirect.github.com/angular/angular/pull/58722">#58722</a>)</td> </tr> </tbody> </table> <h3>forms</h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/4dfe5b6cefd7901a466b37b660f8b3a051a06cb3">4dfe5b6cef</a></td> <td>fix</td> <td>work around TypeScript 5.7 issue (<a href="https://redirect.github.com/angular/angular/pull/58731">#58731</a>)</td> </tr> </tbody> </table> <h3>language-service</h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/a983865bffa828a982ef7e56204924d9c2989ead">a983865bff</a></td> <td>fix</td> <td>add fix for individual unused imports (<a href="https://redirect.github.com/angular/angular/pull/58719">#58719</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/e6e7a4e22b0a654808e5eb88a30cd6effa383332">e6e7a4e22b</a></td> <td>fix</td> <td>allow fixes to run without template info (<a href="https://redirect.github.com/angular/angular/pull/58719">#58719</a>)</td> </tr> </tbody> </table> <h3>migrations</h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular/commit/5ce10264a434ffc8e31cdc68208d2c3c7f8378ed">5ce10264a4</a></td> <td>fix</td> <td>fix provide-initializer migration when using useFactory (<a href="https://redirect.github.com/angular/angular/pull/58518">#58518</a>)</td> </tr> <tr> <td><a href="https://github.com/angular/angular/commit/d4f5c85f60133550303d59b3f9e3e34f14ca63ce">d4f5c85f60</a></td> <td>fix</td> <td>handle parameters with initializers in inject migration (<a href="https://redirect.github.com/angular/angular/pull/58769">#58769</a>)</td> </tr> </tbody> </table> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/angular/angular/commit/fb1fa8b0fc04c9cfac6551ca27bee89dcd7c72ac"><code>fb1fa8b</code></a> fix(compiler-cli): more accurate diagnostics for host binding parser errors (...</li> <li><a href="https://github.com/angular/angular/commit/99715104a1a787c3899dfbfac6b44f28c7d24356"><code>9971510</code></a> fix(core): correctly perform lazy routes migration for components with additi...</li> <li><a href="https://github.com/angular/angular/commit/f503c15ea9552a498e9a9013e7d655bc7a6bc760"><code>f503c15</code></a> refactor(compiler-cli): parse <code>angularCompilerOptions</code> from bazel options as ...</li> <li><a href="https://github.com/angular/angular/commit/c570be385c1d643b5b39101c4d64b9893062446d"><code>c570be3</code></a> refactor(compiler-cli): broaden type of getPotentialImportsFor (<a href="https://github.com/angular/angular/tree/HEAD/packages/compiler-cli/issues/58627">#58627</a>)</li> <li><a href="https://github.com/angular/angular/commit/560282aa9b3204ad8311017905beed63072c7303"><code>560282a</code></a> fix(compiler): control flow nodes with root at the end projected incorrectly ...</li> <li><a href="https://github.com/angular/angular/commit/9bbb01c85e763b0457456a2393a834db15008671"><code>9bbb01c</code></a> fix(compiler-cli): report individual diagnostics for unused imports (<a href="https://github.com/angular/angular/tree/HEAD/packages/compiler-cli/issues/58589">#58589</a>)</li> <li><a href="https://github.com/angular/angular/commit/c53ad709b1a5d694427523b0ae2ba7d004d86f8b"><code>c53ad70</code></a> refactor(migrations): support running existing migrations with plain TS progr...</li> <li><a href="https://github.com/angular/angular/commit/791ee323dc5e9ba60b385048f42ff5c5ded7a8c0"><code>791ee32</code></a> fix(compiler-cli): correct extraction of generics from type aliases (<a href="https://github.com/angular/angular/tree/HEAD/packages/compiler-cli/issues/58548">#58548</a>)</li> <li><a href="https://github.com/angular/angular/commit/c4a84920b2b042c3496cd194806d29341847e446"><code>c4a8492</code></a> refactor(compiler-cli): Improved <code>filterMethodOverloads</code> to Include Members w...</li> <li><a href="https://github.com/angular/angular/commit/728bfbbb3192ac72a299fdecd41df19400b697ed"><code>728bfbb</code></a> refactor(migrations): speed up code refactoring action for queries (<a href="https://github.com/angular/angular/tree/HEAD/packages/compiler-cli/issues/58525">#58525</a>)</li> <li>Additional commits viewable in <a href="https://github.com/angular/angular/commits/19.0.1/packages/compiler-cli">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@angular/compiler-cli&package-manager=npm_and_yarn&previous-version=18.2.13&new-version=19.0.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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`. --- <details> <summary>Dependabot commands and options</summary> <br /> 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 show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@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) </details>
4 months ago
"@angular/compiler-cli": "^19.0.1",
Bump @types/jasmine from 4.3.1 to 5.1.0 in /web_embedding/ng-flutter (#2038) Bumps [@types/jasmine](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jasmine) from 4.3.1 to 5.1.0. <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jasmine">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@types/jasmine&package-manager=npm_and_yarn&previous-version=4.3.1&new-version=5.1.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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`. --- <details> <summary>Dependabot commands and options</summary> <br /> 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 show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@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) </details>
1 year ago
"@types/jasmine": "~5.1.0",
Bump jasmine-core from 5.4.0 to 5.5.0 in /web_embedding/ng-flutter (#2545) Bumps [jasmine-core](https://github.com/jasmine/jasmine) from 5.4.0 to 5.5.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/jasmine/jasmine/releases">jasmine-core's releases</a>.</em></p> <blockquote> <h2>v5.5.0</h2> <p>Please see the <a href="https://github.com/jasmine/jasmine/blob/main/release_notes/5.5.0.md">release notes</a>.</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/jasmine/jasmine/commit/483d4ab3c3aaf279481df653824d89da1cbd1458"><code>483d4ab</code></a> Bump version to 5.5.0</li> <li><a href="https://github.com/jasmine/jasmine/commit/663dfe59329f63741bb13be4b2d11dbe7a00c97b"><code>663dfe5</code></a> Updated release instructions</li> <li><a href="https://github.com/jasmine/jasmine/commit/ce9c7528990a11b414ea18a2b56b2840f7381d40"><code>ce9c752</code></a> Added debug logging to flaky test</li> <li><a href="https://github.com/jasmine/jasmine/commit/d5e7bc9fd62acf65eb6cd2fe778e9f2255014d57"><code>d5e7bc9</code></a> Optionally enforce uniqueness of spec and suite names</li> <li><a href="https://github.com/jasmine/jasmine/commit/744e765d6f1a21b198f200438e02f9a86781b96d"><code>744e765</code></a> Update copyright date</li> <li><a href="https://github.com/jasmine/jasmine/commit/29551ba4f31f862e26683c0543162eb3da1b178f"><code>29551ba</code></a> Prettier</li> <li><a href="https://github.com/jasmine/jasmine/commit/bd9a3b23058ae2bd41992f0b703babc32949a954"><code>bd9a3b2</code></a> Include property value mismatches in diffs even when there are missing or ext...</li> <li>See full diff in <a href="https://github.com/jasmine/jasmine/compare/v5.4.0...v5.5.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=jasmine-core&package-manager=npm_and_yarn&previous-version=5.4.0&new-version=5.5.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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`. --- <details> <summary>Dependabot commands and options</summary> <br /> 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 show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@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) </details>
4 months ago
"jasmine-core": "~5.5.0",
Bump karma from 6.4.1 to 6.4.2 in /web_embedding/ng-flutter (#1780) Bumps [karma](https://github.com/karma-runner/karma) from 6.4.1 to 6.4.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/karma-runner/karma/releases">karma's releases</a>.</em></p> <blockquote> <h2>v6.4.2</h2> <h2><a href="https://github.com/karma-runner/karma/compare/v6.4.1...v6.4.2">6.4.2</a> (2023-04-21)</h2> <h3>Bug Fixes</h3> <ul> <li>few typos (<a href="https://github.com/karma-runner/karma/commit/c6a42710b40e81269f1e6c5d5bb55d01188a8872">c6a4271</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/karma-runner/karma/blob/master/CHANGELOG.md">karma's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/karma-runner/karma/compare/v6.4.1...v6.4.2">6.4.2</a> (2023-04-21)</h2> <h3>Bug Fixes</h3> <ul> <li>few typos (<a href="https://github.com/karma-runner/karma/commit/c6a42710b40e81269f1e6c5d5bb55d01188a8872">c6a4271</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/karma-runner/karma/commit/9de3c00988884335775de746eb8571697a86410b"><code>9de3c00</code></a> chore(release): 6.4.2 [skip ci]</li> <li><a href="https://github.com/karma-runner/karma/commit/c6a42710b40e81269f1e6c5d5bb55d01188a8872"><code>c6a4271</code></a> fix: few typos</li> <li><a href="https://github.com/karma-runner/karma/commit/50f963551fbccf669c8d42499d0406ded2ec6176"><code>50f9635</code></a> docs: update codeclimate badge in readme.md</li> <li>See full diff in <a href="https://github.com/karma-runner/karma/compare/v6.4.1...v6.4.2">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=karma&package-manager=npm_and_yarn&previous-version=6.4.1&new-version=6.4.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2 years ago
"karma": "~6.4.2",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
Bump typescript from 5.6.3 to 5.7.2 in /web_embedding/ng-flutter (#2544) Bumps [typescript](https://github.com/microsoft/TypeScript) from 5.6.3 to 5.7.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/microsoft/TypeScript/releases">typescript's releases</a>.</em></p> <blockquote> <h2>TypeScript 5.7</h2> <p>For release notes, check out the <a href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-7/">release announcement</a>.</p> <ul> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.7.0%22+is%3Aclosed+">fixed issues query for Typescript 5.7.0 (Beta)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.7.1%22+is%3Aclosed+">fixed issues query for Typescript 5.7.1 (RC)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.7.2%22+is%3Aclosed+">fixed issues query for Typescript 5.7.2 (Stable)</a>.</li> </ul> <p>Downloads are available on:</p> <ul> <li><a href="https://www.npmjs.com/package/typescript">npm</a></li> </ul> <h2>TypeScript 5.7 RC</h2> <p>For release notes, check out the <a href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-7-rc/">release announcement</a>.</p> <p>For the complete list of fixed issues, check out the</p> <ul> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.7.0%22+is%3Aclosed+">fixed issues query for Typescript 5.7.0 (Beta)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.7.1%22+is%3Aclosed+">fixed issues query for Typescript 5.7.1 (RC)</a>.</li> </ul> <p>Downloads are available on:</p> <ul> <li><a href="https://www.npmjs.com/package/typescript">npm</a></li> </ul> <h2>TypeScript 5.7 Beta</h2> <p>For release notes, check out the <a href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-7-beta/">release announcement</a>.</p> <p>For the complete list of fixed issues, check out the</p> <ul> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.7.0%22+is%3Aclosed+">fixed issues query for Typescript 5.7.0 (Beta)</a>.</li> </ul> <p>Downloads are available on:</p> <ul> <li><a href="https://www.npmjs.com/package/typescript">npm</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/microsoft/TypeScript/commit/d701d908d534e68cfab24b6df15539014ac348a3"><code>d701d90</code></a> Bump version to 5.7.2 and LKG</li> <li><a href="https://github.com/microsoft/TypeScript/commit/0503a630fdc1478a63fe8bcb9bea2d6d927fcca4"><code>0503a63</code></a> 🤖 Pick PR <a href="https://redirect.github.com/microsoft/TypeScript/issues/60450">#60450</a> (Move to file: fix detection of refe...) into release-5.7 (#...</li> <li><a href="https://github.com/microsoft/TypeScript/commit/3140dbb79a42897eeebbc357a5a78e409b429323"><code>3140dbb</code></a> 🤖 Pick PR <a href="https://redirect.github.com/microsoft/TypeScript/issues/60488">#60488</a> (Stub out copilotRelated command) into release-5.7 (<a href="https://redirect.github.com/microsoft/TypeScript/issues/60495">#60495</a>)</li> <li><a href="https://github.com/microsoft/TypeScript/commit/c1216dea1a504da7b89b5221b925abcd1702d7e4"><code>c1216de</code></a> Update LKG</li> <li><a href="https://github.com/microsoft/TypeScript/commit/3ee2b95689943c720d47db01b4a1da2b6ab9d9ff"><code>3ee2b95</code></a> 🤖 Pick PR <a href="https://redirect.github.com/microsoft/TypeScript/issues/60415">#60415</a> (Fix false positive rewriteRelativeI...) into release-5.7 (#...</li> <li><a href="https://github.com/microsoft/TypeScript/commit/44bd3f21fe50b3ea28c881b38814701e105cabdc"><code>44bd3f2</code></a> Bump version to 5.7.1-rc and LKG</li> <li><a href="https://github.com/microsoft/TypeScript/commit/5925c81eea81c2d8a484db993efc4d471ddf8bd2"><code>5925c81</code></a> Update LKG</li> <li><a href="https://github.com/microsoft/TypeScript/commit/84d58cf52522d0ceed1f2a00f5c8443ff9d86698"><code>84d58cf</code></a> Merge remote-tracking branch 'origin/main' into release-5.7</li> <li><a href="https://github.com/microsoft/TypeScript/commit/0ec4d30a6e2ebbc87292c9829378d4e98de8ef43"><code>0ec4d30</code></a> Fixing exception on unsaved file (<a href="https://redirect.github.com/microsoft/TypeScript/issues/60362">#60362</a>)</li> <li><a href="https://github.com/microsoft/TypeScript/commit/11b2930fa2c9f73b0ffb725a9715b8d3c4121bbc"><code>11b2930</code></a> Add compatible overloads that accept ArrayBuffer to BigInt64Array/BigUint64Ar...</li> <li>Additional commits viewable in <a href="https://github.com/microsoft/TypeScript/compare/v5.6.3...v5.7.2">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=typescript&package-manager=npm_and_yarn&previous-version=5.6.3&new-version=5.7.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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`. --- <details> <summary>Dependabot commands and options</summary> <br /> 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 show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@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) </details>
4 months ago
"typescript": "~5.7.2"
},
"sideEffects": false
}