mirror of https://github.com/flutter/samples.git
gh-pages
main
material_refactor_fun
flutter3.27
jwill_m3_demo
sethladd-patch-1
recipe_readme
add_ai_recipe_app
khanh_m3_demo
navigation-and-routing-update
update_demo_code
master_archived
${ noResults }
1726 Commits (c6c931801aeafb2868bda8ad09e41145f1e5c579)
Author | SHA1 | Message | Date |
---|---|---|---|
|
c6c931801a
|
Update contributing guidelines for repository (#2500)
Update contributing guidelines to reflect new policies for 2025. Related to #2497, but does not complete it. ## Pre-launch Checklist - [x] I read the [Flutter Style Guide] _recently_, and have followed its advice. - [x] I signed the [CLA]. - [x] I read the [Contributors Guide]. - [x] I updated/added relevant documentation (doc comments with `///`). - [x] All existing and new tests are passing. |
3 months ago |
|
16c3c021e8
|
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(() => TestBed.inject(ApplicationRef).tick()).toThrow()</code></li> </ul> </li> </ul> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
4 months ago |
|
ce5238b4fa
|
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(() => TestBed.inject(ApplicationRef).tick()).toThrow()</code></li> </ul> </li> </ul> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
4 months ago |
|
b869a51104
|
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 "hafnium-hippo" (2024-11-19)</h1> <h3>cdk</h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href=" |
4 months ago |
|
7533556459
|
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(() => TestBed.inject(ApplicationRef).tick()).toThrow()</code></li> </ul> </li> </ul> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
4 months ago |
|
10b21a4567
|
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(() => TestBed.inject(ApplicationRef).tick()).toThrow()</code></li> </ul> </li> </ul> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
4 months ago |
|
07b0156299
|
Bump subosito/flutter-action from 2.16.0 to 2.17.0 (#2491)
Bumps [subosito/flutter-action](https://github.com/subosito/flutter-action) from 2.16.0 to 2.17.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/subosito/flutter-action/releases">subosito/flutter-action's releases</a>.</em></p> <blockquote> <h2>v2.17.0</h2> <p>This release adds support for older <code>yq</code> versions, as added in PR <a href="https://redirect.github.com/subosito/flutter-action/issues/329">#329</a>. Thanks for contributing, <a href="https://github.com/ThomasAunvik"><code>@âThomasAunvik</code></a>!</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
4 months ago |
|
66ab725924
|
Remove io sample (#2490)
This sample has been moved to my personal Github, because we shouldn't maintain samples that are tied to events. - Moved sample to personal repo - Removed sample from this repo - Updated README here and the link to this repo in the YouTube video |
4 months ago |
|
36b4e6e602
|
Bump ffigen from 15.0.0 to 16.0.0 in /experimental/pedometer (#2489)
Bumps [ffigen](https://github.com/dart-lang/native/tree/main/pkgs) from 15.0.0 to 16.0.0. <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/dart-lang/native/commits/HEAD/pkgs">compare view</a></li> </ul> </details> <br /> [](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 |
|
6921283923
|
Bump intl from 0.19.0 to 0.20.0 in /experimental/pedometer/example (#2487)
Bumps [intl](https://github.com/dart-lang/i18n/tree/main/pkgs) from 0.19.0 to 0.20.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dart-lang/i18n/releases">intl's releases</a>.</em></p> <blockquote> <h2>package:intl v0.20.0</h2> <ul> <li>Fix caching of messages in <code>CompositeMessageLookup</code>.</li> <li>Type <code>numberFormatSymbols</code> as a <code>Map<String, NumberSymbols></code>.</li> <li>Type <code>dateTimeSymbolMap</code> as a <code>Map<String, DateSymbols></code>.</li> <li>Add example for pub.dev.</li> <li>Fix issues with AM/PM markers.</li> <li>Update to CLDR v44.1.</li> <li>Require Dart <code>^3.3</code></li> <li>Require <code>package:web</code> <code>^0.5.0</code>.</li> <li>Support compiling to WASM.</li> <li>Update to and account for <code>package:lints</code> <code>^4.0.0</code>.</li> <li>rtl Detection fix in <code>bidi.dart</code> for Kordi Sorani "ckb".</li> <li>Update to CLDR v45.</li> </ul> <h2>package:intl_translation v0.20.0</h2> <ul> <li>Throw if the <code>Intl.select</code> <code>arg</code> is not in the list of <code>args</code>.</li> <li>Support <code>package:intl</code> <code>0.19.0</code>.</li> <li>Require Dart 3.0.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
4 months ago |
|
d63686c3d9
|
Bump intl from 0.19.0 to 0.20.0 in /veggieseasons (#2486)
Bumps [intl](https://github.com/dart-lang/i18n/tree/main/pkgs) from 0.19.0 to 0.20.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dart-lang/i18n/releases">intl's releases</a>.</em></p> <blockquote> <h2>package:intl v0.20.0</h2> <ul> <li>Fix caching of messages in <code>CompositeMessageLookup</code>.</li> <li>Type <code>numberFormatSymbols</code> as a <code>Map<String, NumberSymbols></code>.</li> <li>Type <code>dateTimeSymbolMap</code> as a <code>Map<String, DateSymbols></code>.</li> <li>Add example for pub.dev.</li> <li>Fix issues with AM/PM markers.</li> <li>Update to CLDR v44.1.</li> <li>Require Dart <code>^3.3</code></li> <li>Require <code>package:web</code> <code>^0.5.0</code>.</li> <li>Support compiling to WASM.</li> <li>Update to and account for <code>package:lints</code> <code>^4.0.0</code>.</li> <li>rtl Detection fix in <code>bidi.dart</code> for Kordi Sorani "ckb".</li> <li>Update to CLDR v45.</li> </ul> <h2>package:intl_translation v0.20.0</h2> <ul> <li>Throw if the <code>Intl.select</code> <code>arg</code> is not in the list of <code>args</code>.</li> <li>Support <code>package:intl</code> <code>0.19.0</code>.</li> <li>Require Dart 3.0.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
4 months ago |
|
55e4254e70
|
Bump intl from 0.19.0 to 0.20.0 in /form_app (#2485)
â ï¸ **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 [intl](https://github.com/dart-lang/i18n/tree/main/pkgs) from 0.19.0 to 0.20.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dart-lang/i18n/releases">intl's releases</a>.</em></p> <blockquote> <h2>package:intl v0.20.0</h2> <ul> <li>Fix caching of messages in <code>CompositeMessageLookup</code>.</li> <li>Type <code>numberFormatSymbols</code> as a <code>Map<String, NumberSymbols></code>.</li> <li>Type <code>dateTimeSymbolMap</code> as a <code>Map<String, DateSymbols></code>.</li> <li>Add example for pub.dev.</li> <li>Fix issues with AM/PM markers.</li> <li>Update to CLDR v44.1.</li> <li>Require Dart <code>^3.3</code></li> <li>Require <code>package:web</code> <code>^0.5.0</code>.</li> <li>Support compiling to WASM.</li> <li>Update to and account for <code>package:lints</code> <code>^4.0.0</code>.</li> <li>rtl Detection fix in <code>bidi.dart</code> for Kordi Sorani "ckb".</li> <li>Update to CLDR v45.</li> </ul> <h2>package:intl_translation v0.20.0</h2> <ul> <li>Throw if the <code>Intl.select</code> <code>arg</code> is not in the list of <code>args</code>.</li> <li>Support <code>package:intl</code> <code>0.19.0</code>.</li> <li>Require Dart 3.0.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
4 months ago |
|
06137a4acd
|
Bump intl from 0.19.0 to 0.20.0 in /background_isolate_channels (#2484)
Bumps [intl](https://github.com/dart-lang/i18n/tree/main/pkgs) from 0.19.0 to 0.20.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dart-lang/i18n/releases">intl's releases</a>.</em></p> <blockquote> <h2>package:intl v0.20.0</h2> <ul> <li>Fix caching of messages in <code>CompositeMessageLookup</code>.</li> <li>Type <code>numberFormatSymbols</code> as a <code>Map<String, NumberSymbols></code>.</li> <li>Type <code>dateTimeSymbolMap</code> as a <code>Map<String, DateSymbols></code>.</li> <li>Add example for pub.dev.</li> <li>Fix issues with AM/PM markers.</li> <li>Update to CLDR v44.1.</li> <li>Require Dart <code>^3.3</code></li> <li>Require <code>package:web</code> <code>^0.5.0</code>.</li> <li>Support compiling to WASM.</li> <li>Update to and account for <code>package:lints</code> <code>^4.0.0</code>.</li> <li>rtl Detection fix in <code>bidi.dart</code> for Kordi Sorani "ckb".</li> <li>Update to CLDR v45.</li> </ul> <h2>package:intl_translation v0.20.0</h2> <ul> <li>Throw if the <code>Intl.select</code> <code>arg</code> is not in the list of <code>args</code>.</li> <li>Support <code>package:intl</code> <code>0.19.0</code>.</li> <li>Require Dart 3.0.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
4 months ago |
|
9a01200cf8
|
Bump actions/setup-java from 4.4.0 to 4.5.0 (#2482)
Bumps [actions/setup-java](https://github.com/actions/setup-java) from 4.4.0 to 4.5.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/actions/setup-java/releases">actions/setup-java's releases</a>.</em></p> <blockquote> <h2>v4.5.0</h2> <h2>What's Changed</h2> <ul> <li>Upgrade IA Publish by <a href="https://github.com/Jcambass"><code>@âJcambass</code></a> in <a href="https://redirect.github.com/actions/setup-java/issues/686">#686</a></li> </ul> <h3>Bug fixes:</h3> <ul> <li>Improve archive extraction on windows runners without powershell core and Update micromatch dependency by <a href="https://github.com/priyagupta108"><code>@âpriyagupta108</code></a> in <a href="https://redirect.github.com/actions/setup-java/issues/689">#689</a></li> <li>Update workflows for GraalVM and Version Enhancements by <a href="https://github.com/mahabaleshwars"><code>@âmahabaleshwars</code></a> in <a href="https://redirect.github.com/actions/setup-java/issues/699">#699</a></li> <li>Refine <code>isGhes</code> logic by <a href="https://github.com/jww3"><code>@âjww3</code></a> in <a href="https://redirect.github.com/actions/setup-java/issues/697">#697</a></li> </ul> <h3>New Contributors:</h3> <ul> <li><a href="https://github.com/priyagupta108"><code>@âpriyagupta108</code></a> made their first contribution in <a href="https://redirect.github.com/actions/setup-java/pull/689">actions/setup-java#689</a></li> <li><a href="https://github.com/jww3"><code>@âjww3</code></a> made their first contribution in <a href="https://redirect.github.com/actions/setup-java/pull/697">actions/setup-java#697</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/actions/setup-java/compare/v4...v4.5.0">https://github.com/actions/setup-java/compare/v4...v4.5.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
5 months ago |
|
7060cfea08
|
Elide `ios_app_clip` from beta CI (#2481)
## Pre-launch Checklist - [x] I read the [Flutter Style Guide] _recently_, and have followed its advice. - [x] I signed the [CLA]. - [x] I read the [Contributors Guide]. - [x] I updated/added relevant documentation (doc comments with `///`). - [x] All existing and new tests are passing. If you need help, consider asking for advice on the #hackers-devrel channel on [Discord]. <!-- Links --> [Flutter Style Guide]: https://github.com/flutter/flutter/blob/master/docs/contributing/Style-guide-for-Flutter-repo.md [CLA]: https://cla.developers.google.com/ [Discord]: https://github.com/flutter/flutter/blob/master/docs/contributing/Chat.md [Contributors Guide]: https://github.com/flutter/samples/blob/main/CONTRIBUTING.md |
5 months ago |
|
93eb030f3c
|
Bump actions/checkout from 4.2.1 to 4.2.2 (#2480)
|
5 months ago |
|
9d334c0e48
|
Update veggie seasons README.md (#2479)
|
5 months ago |
|
98faf92b0c
|
Bump ffigen from 14.0.1 to 15.0.0 in /experimental/pedometer (#2477)
Bumps [ffigen](https://github.com/dart-lang/native/tree/main/pkgs) from 14.0.1 to 15.0.0. <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/dart-lang/native/commits/HEAD/pkgs">compare view</a></li> </ul> </details> <br /> [](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> |
5 months ago |
|
a0466d0520
|
Bump jasmine-core from 5.3.0 to 5.4.0 in /web_embedding/ng-flutter (#2473)
Bumps [jasmine-core](https://github.com/jasmine/jasmine) from 5.3.0 to 5.4.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.4.0</h2> <p>Please see the <a href="https://github.com/jasmine/jasmine/blob/main/release_notes/5.4.0.md">release notes</a>.</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
5 months ago |
|
3c90705715
|
Retire `linting_tool` desktop sample (#2472)
Adds a README as a breadcrumb with the history of the sample as well as links to some relevant resources. Part of https://github.com/dart-lang/sdk/issues/56835 Contributes to https://github.com/flutter/samples/issues/2409 |
5 months ago |
|
90f0584108
|
Clean up SDK constraints and lints (#2471)
|
5 months ago |
|
35787ba95c
|
Bump jni from 0.11.0 to 0.12.0 in /experimental/pedometer (#2465)
Bumps [jni](https://github.com/dart-lang/native/tree/main/pkgs) from 0.11.0 to 0.12.0. <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/dart-lang/native/commits/HEAD/pkgs">compare view</a></li> </ul> </details> <br /> [](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> Co-authored-by: Brett Morgan <brett.morgan@gmail.com> Co-authored-by: Hossein Yousefi <yousefi@google.com> |
5 months ago |
|
8ecb09f126
|
Bump actions/checkout from 4.2.0 to 4.2.1 (#2469)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.2.0 to 4.2.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/actions/checkout/releases">actions/checkout's releases</a>.</em></p> <blockquote> <h2>v4.2.1</h2> <h2>What's Changed</h2> <ul> <li>Check out other refs/* by commit if provided, fall back to ref by <a href="https://github.com/orhantoy"><code>@âorhantoy</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1924">actions/checkout#1924</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/Jcambass"><code>@âJcambass</code></a> made their first contribution in <a href="https://redirect.github.com/actions/checkout/pull/1919">actions/checkout#1919</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/actions/checkout/compare/v4.2.0...v4.2.1">https://github.com/actions/checkout/compare/v4.2.0...v4.2.1</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/actions/checkout/blob/main/CHANGELOG.md">actions/checkout's changelog</a>.</em></p> <blockquote> <h1>Changelog</h1> <h2>v4.2.1</h2> <ul> <li>Check out other refs/* by commit if provided, fall back to ref by <a href="https://github.com/orhantoy"><code>@âorhantoy</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1924">actions/checkout#1924</a></li> </ul> <h2>v4.2.0</h2> <ul> <li>Add Ref and Commit outputs by <a href="https://github.com/lucacome"><code>@âlucacome</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1180">actions/checkout#1180</a></li> <li>Dependency updates by <a href="https://github.com/dependabot"><code>@âdependabot</code></a>- <a href="https://redirect.github.com/actions/checkout/pull/1777">actions/checkout#1777</a>, <a href="https://redirect.github.com/actions/checkout/pull/1872">actions/checkout#1872</a></li> </ul> <h2>v4.1.7</h2> <ul> <li>Bump the minor-npm-dependencies group across 1 directory with 4 updates by <a href="https://github.com/dependabot"><code>@âdependabot</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1739">actions/checkout#1739</a></li> <li>Bump actions/checkout from 3 to 4 by <a href="https://github.com/dependabot"><code>@âdependabot</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1697">actions/checkout#1697</a></li> <li>Check out other refs/* by commit by <a href="https://github.com/orhantoy"><code>@âorhantoy</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1774">actions/checkout#1774</a></li> <li>Pin actions/checkout's own workflows to a known, good, stable version. by <a href="https://github.com/jww3"><code>@âjww3</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1776">actions/checkout#1776</a></li> </ul> <h2>v4.1.6</h2> <ul> <li>Check platform to set archive extension appropriately by <a href="https://github.com/cory-miller"><code>@âcory-miller</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1732">actions/checkout#1732</a></li> </ul> <h2>v4.1.5</h2> <ul> <li>Update NPM dependencies by <a href="https://github.com/cory-miller"><code>@âcory-miller</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1703">actions/checkout#1703</a></li> <li>Bump github/codeql-action from 2 to 3 by <a href="https://github.com/dependabot"><code>@âdependabot</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1694">actions/checkout#1694</a></li> <li>Bump actions/setup-node from 1 to 4 by <a href="https://github.com/dependabot"><code>@âdependabot</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1696">actions/checkout#1696</a></li> <li>Bump actions/upload-artifact from 2 to 4 by <a href="https://github.com/dependabot"><code>@âdependabot</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1695">actions/checkout#1695</a></li> <li>README: Suggest <code>user.email</code> to be <code>41898282+github-actions[bot]@users.noreply.github.com</code> by <a href="https://github.com/cory-miller"><code>@âcory-miller</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1707">actions/checkout#1707</a></li> </ul> <h2>v4.1.4</h2> <ul> <li>Disable <code>extensions.worktreeConfig</code> when disabling <code>sparse-checkout</code> by <a href="https://github.com/jww3"><code>@âjww3</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1692">actions/checkout#1692</a></li> <li>Add dependabot config by <a href="https://github.com/cory-miller"><code>@âcory-miller</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1688">actions/checkout#1688</a></li> <li>Bump the minor-actions-dependencies group with 2 updates by <a href="https://github.com/dependabot"><code>@âdependabot</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1693">actions/checkout#1693</a></li> <li>Bump word-wrap from 1.2.3 to 1.2.5 by <a href="https://github.com/dependabot"><code>@âdependabot</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1643">actions/checkout#1643</a></li> </ul> <h2>v4.1.3</h2> <ul> <li>Check git version before attempting to disable <code>sparse-checkout</code> by <a href="https://github.com/jww3"><code>@âjww3</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1656">actions/checkout#1656</a></li> <li>Add SSH user parameter by <a href="https://github.com/cory-miller"><code>@âcory-miller</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1685">actions/checkout#1685</a></li> <li>Update <code>actions/checkout</code> version in <code>update-main-version.yml</code> by <a href="https://github.com/jww3"><code>@âjww3</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1650">actions/checkout#1650</a></li> </ul> <h2>v4.1.2</h2> <ul> <li>Fix: Disable sparse checkout whenever <code>sparse-checkout</code> option is not present <a href="https://github.com/dscho"><code>@âdscho</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1598">actions/checkout#1598</a></li> </ul> <h2>v4.1.1</h2> <ul> <li>Correct link to GitHub Docs by <a href="https://github.com/peterbe"><code>@âpeterbe</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1511">actions/checkout#1511</a></li> <li>Link to release page from what's new section by <a href="https://github.com/cory-miller"><code>@âcory-miller</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1514">actions/checkout#1514</a></li> </ul> <h2>v4.1.0</h2> <ul> <li><a href="https://redirect.github.com/actions/checkout/pull/1396">Add support for partial checkout filters</a></li> </ul> <h2>v4.0.0</h2> <ul> <li><a href="https://redirect.github.com/actions/checkout/pull/1067">Support fetching without the --progress option</a></li> <li><a href="https://redirect.github.com/actions/checkout/pull/1436">Update to node20</a></li> </ul> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
5 months ago |
|
c4a5e02665
|
Bump jnigen from 0.11.0 to 0.12.0 in /experimental/pedometer (#2466)
Bumps [jnigen](https://github.com/dart-lang/native/tree/main/pkgs) from 0.11.0 to 0.12.0. <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/dart-lang/native/commits/HEAD/pkgs">compare view</a></li> </ul> </details> <br /> [](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> Co-authored-by: Brett Morgan <brett.morgan@gmail.com> |
5 months ago |
|
250a9ecc6c
|
Remove Gallery from web index (#2464)
Remove Flutter Gallary from the visual index at https://flutter.github.io/samples/, as the Gallery is no longer being maintained ## Pre-launch Checklist - [x] I read the [Flutter Style Guide] _recently_, and have followed its advice. - [x] I signed the [CLA]. - [x] I read the [Contributors Guide]. - [x] I updated/added relevant documentation (doc comments with `///`). - [x] All existing and new tests are passing. If you need help, consider asking for advice on the #hackers-devrel channel on [Discord]. <!-- Links --> [Flutter Style Guide]: https://github.com/flutter/flutter/blob/master/docs/contributing/Style-guide-for-Flutter-repo.md [CLA]: https://cla.developers.google.com/ [Discord]: https://github.com/flutter/flutter/blob/master/docs/contributing/Chat.md [Contributors Guide]: https://github.com/flutter/samples/blob/main/CONTRIBUTING.md |
5 months ago |
|
533c1a7332
|
Bump lints from 4.0.0 to 5.0.0 in /web/_tool (#2458)
Bumps [lints](https://github.com/dart-lang/lints) from 4.0.0 to 5.0.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dart-lang/lints/releases">lints's releases</a>.</em></p> <blockquote> <h2>package:lints v5.0.0</h2> <ul> <li><code>recommended</code>: <ul> <li>added <a href="https://dart.dev/tools/linter-rules/invalid_runtime_check_with_js_interop_types">invalid_runtime_check_with_js_interop_types</a> (<a href="https://redirect.github.com/dart-lang/lints/issues/188">dart-lang/lints#188</a>)</li> <li>added <a href="https://dart.dev/lints/unnecessary_library_name">unnecessary_library_name</a> (<a href="https://redirect.github.com/dart-lang/lints/issues/181">dart-lang/lints#181</a>)</li> <li>removed <a href="https://dart.dev/tools/linter-rules/avoid_null_checks_in_equality_operators">avoid_null_checks_in_equality_operators</a> (<a href="https://redirect.github.com/dart-lang/lints/issues/200">dart-lang/lints#200</a>)</li> </ul> </li> <li>Updated the SDK lower-bound to 3.5.</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/dart-lang/lints/blob/main/CHANGELOG.md">lints's changelog</a>.</em></p> <blockquote> <h2>5.0.0</h2> <ul> <li><code>recommended</code>: <ul> <li>added <a href="https://dart.dev/tools/linter-rules/invalid_runtime_check_with_js_interop_types">invalid_runtime_check_with_js_interop_types</a> (<a href="https://redirect.github.com/dart-lang/lints/issues/188">dart-lang/lints#188</a>)</li> <li>added <a href="https://dart.dev/lints/unnecessary_library_name">unnecessary_library_name</a> (<a href="https://redirect.github.com/dart-lang/lints/issues/181">dart-lang/lints#181</a>)</li> <li>removed <a href="https://dart.dev/tools/linter-rules/avoid_null_checks_in_equality_operators">avoid_null_checks_in_equality_operators</a> (<a href="https://redirect.github.com/dart-lang/lints/issues/200">dart-lang/lints#200</a>)</li> </ul> </li> <li>Updated the SDK lower-bound to 3.5.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
5 months ago |
|
c7cddc2f4a
|
Bump lints from 4.0.0 to 5.0.0 in /code_sharing/shared (#2456)
Bumps [lints](https://github.com/dart-lang/lints) from 4.0.0 to 5.0.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dart-lang/lints/releases">lints's releases</a>.</em></p> <blockquote> <h2>package:lints v5.0.0</h2> <ul> <li><code>recommended</code>: <ul> <li>added <a href="https://dart.dev/tools/linter-rules/invalid_runtime_check_with_js_interop_types">invalid_runtime_check_with_js_interop_types</a> (<a href="https://redirect.github.com/dart-lang/lints/issues/188">dart-lang/lints#188</a>)</li> <li>added <a href="https://dart.dev/lints/unnecessary_library_name">unnecessary_library_name</a> (<a href="https://redirect.github.com/dart-lang/lints/issues/181">dart-lang/lints#181</a>)</li> <li>removed <a href="https://dart.dev/tools/linter-rules/avoid_null_checks_in_equality_operators">avoid_null_checks_in_equality_operators</a> (<a href="https://redirect.github.com/dart-lang/lints/issues/200">dart-lang/lints#200</a>)</li> </ul> </li> <li>Updated the SDK lower-bound to 3.5.</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/dart-lang/lints/blob/main/CHANGELOG.md">lints's changelog</a>.</em></p> <blockquote> <h2>5.0.0</h2> <ul> <li><code>recommended</code>: <ul> <li>added <a href="https://dart.dev/tools/linter-rules/invalid_runtime_check_with_js_interop_types">invalid_runtime_check_with_js_interop_types</a> (<a href="https://redirect.github.com/dart-lang/lints/issues/188">dart-lang/lints#188</a>)</li> <li>added <a href="https://dart.dev/lints/unnecessary_library_name">unnecessary_library_name</a> (<a href="https://redirect.github.com/dart-lang/lints/issues/181">dart-lang/lints#181</a>)</li> <li>removed <a href="https://dart.dev/tools/linter-rules/avoid_null_checks_in_equality_operators">avoid_null_checks_in_equality_operators</a> (<a href="https://redirect.github.com/dart-lang/lints/issues/200">dart-lang/lints#200</a>)</li> </ul> </li> <li>Updated the SDK lower-bound to 3.5.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
5 months ago |
|
51a386e1c8
|
Bump flutter_lints from 4.0.0 to 5.0.0 in /experimental/pedometer (#2452)
Bumps [flutter_lints](https://github.com/flutter/packages/tree/main/packages) from 4.0.0 to 5.0.0. <details> <summary>Commits</summary> <ul> <li><a href=" |
5 months ago |
|
46b5a26b26
|
Compass app (#2446)
|
6 months ago |
|
fcf2552cda
|
Bump flutter_lints from 4.0.0 to 5.0.0 in /code_sharing/client (#2462)
Bumps [flutter_lints](https://github.com/flutter/packages/tree/main/packages) from 4.0.0 to 5.0.0. <details> <summary>Commits</summary> <ul> <li><a href=" |
6 months ago |
|
884da6ca4d
|
Bump lints from 4.0.0 to 5.0.0 in /code_sharing/server (#2461)
â ï¸ **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 [lints](https://github.com/dart-lang/lints) from 4.0.0 to 5.0.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dart-lang/lints/releases">lints's releases</a>.</em></p> <blockquote> <h2>package:lints v5.0.0</h2> <ul> <li><code>recommended</code>: <ul> <li>added <a href="https://dart.dev/tools/linter-rules/invalid_runtime_check_with_js_interop_types">invalid_runtime_check_with_js_interop_types</a> (<a href="https://redirect.github.com/dart-lang/lints/issues/188">dart-lang/lints#188</a>)</li> <li>added <a href="https://dart.dev/lints/unnecessary_library_name">unnecessary_library_name</a> (<a href="https://redirect.github.com/dart-lang/lints/issues/181">dart-lang/lints#181</a>)</li> <li>removed <a href="https://dart.dev/tools/linter-rules/avoid_null_checks_in_equality_operators">avoid_null_checks_in_equality_operators</a> (<a href="https://redirect.github.com/dart-lang/lints/issues/200">dart-lang/lints#200</a>)</li> </ul> </li> <li>Updated the SDK lower-bound to 3.5.</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/dart-lang/lints/blob/main/CHANGELOG.md">lints's changelog</a>.</em></p> <blockquote> <h2>5.0.0</h2> <ul> <li><code>recommended</code>: <ul> <li>added <a href="https://dart.dev/tools/linter-rules/invalid_runtime_check_with_js_interop_types">invalid_runtime_check_with_js_interop_types</a> (<a href="https://redirect.github.com/dart-lang/lints/issues/188">dart-lang/lints#188</a>)</li> <li>added <a href="https://dart.dev/lints/unnecessary_library_name">unnecessary_library_name</a> (<a href="https://redirect.github.com/dart-lang/lints/issues/181">dart-lang/lints#181</a>)</li> <li>removed <a href="https://dart.dev/tools/linter-rules/avoid_null_checks_in_equality_operators">avoid_null_checks_in_equality_operators</a> (<a href="https://redirect.github.com/dart-lang/lints/issues/200">dart-lang/lints#200</a>)</li> </ul> </li> <li>Updated the SDK lower-bound to 3.5.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
6 months ago |
|
c0540ebc1e
|
Bump flutter_lints from 4.0.0 to 5.0.0 in /analysis_defaults (#2459)
â ï¸ **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 [flutter_lints](https://github.com/flutter/packages/tree/main/packages) from 4.0.0 to 5.0.0. <details> <summary>Commits</summary> <ul> <li><a href=" |
6 months ago |
|
862adfba1f
|
Bump flutter_lints from 4.0.0 to 5.0.0 in /web_embedding/ng-flutter/flutter (#2453)
â ï¸ **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 [flutter_lints](https://github.com/flutter/packages/tree/main/packages) from 4.0.0 to 5.0.0. <details> <summary>Commits</summary> <ul> <li><a href=" |
6 months ago |
|
12c7308022
|
Bump flutter_lints from 4.0.0 to 5.0.0 in /game_template (#2463)
â ï¸ **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 [flutter_lints](https://github.com/flutter/packages/tree/main/packages) from 4.0.0 to 5.0.0. <details> <summary>Commits</summary> <ul> <li><a href=" |
6 months ago |
|
a547bb8704
|
Bump flutter_lints from 4.0.0 to 5.0.0 in /deeplink_store_example (#2460)
â ï¸ **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 [flutter_lints](https://github.com/flutter/packages/tree/main/packages) from 4.0.0 to 5.0.0. <details> <summary>Commits</summary> <ul> <li><a href=" |
6 months ago |
|
211bced701
|
Bump lints from 4.0.0 to 5.0.0 in /web/samples_index (#2457)
â ï¸ **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 [lints](https://github.com/dart-lang/lints) from 4.0.0 to 5.0.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dart-lang/lints/releases">lints's releases</a>.</em></p> <blockquote> <h2>package:lints v5.0.0</h2> <ul> <li><code>recommended</code>: <ul> <li>added <a href="https://dart.dev/tools/linter-rules/invalid_runtime_check_with_js_interop_types">invalid_runtime_check_with_js_interop_types</a> (<a href="https://redirect.github.com/dart-lang/lints/issues/188">dart-lang/lints#188</a>)</li> <li>added <a href="https://dart.dev/lints/unnecessary_library_name">unnecessary_library_name</a> (<a href="https://redirect.github.com/dart-lang/lints/issues/181">dart-lang/lints#181</a>)</li> <li>removed <a href="https://dart.dev/tools/linter-rules/avoid_null_checks_in_equality_operators">avoid_null_checks_in_equality_operators</a> (<a href="https://redirect.github.com/dart-lang/lints/issues/200">dart-lang/lints#200</a>)</li> </ul> </li> <li>Updated the SDK lower-bound to 3.5.</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/dart-lang/lints/blob/main/CHANGELOG.md">lints's changelog</a>.</em></p> <blockquote> <h2>5.0.0</h2> <ul> <li><code>recommended</code>: <ul> <li>added <a href="https://dart.dev/tools/linter-rules/invalid_runtime_check_with_js_interop_types">invalid_runtime_check_with_js_interop_types</a> (<a href="https://redirect.github.com/dart-lang/lints/issues/188">dart-lang/lints#188</a>)</li> <li>added <a href="https://dart.dev/lints/unnecessary_library_name">unnecessary_library_name</a> (<a href="https://redirect.github.com/dart-lang/lints/issues/181">dart-lang/lints#181</a>)</li> <li>removed <a href="https://dart.dev/tools/linter-rules/avoid_null_checks_in_equality_operators">avoid_null_checks_in_equality_operators</a> (<a href="https://redirect.github.com/dart-lang/lints/issues/200">dart-lang/lints#200</a>)</li> </ul> </li> <li>Updated the SDK lower-bound to 3.5.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
6 months ago |
|
6628a05e24
|
Bump flutter_lints from 4.0.0 to 5.0.0 in /web_embedding/element_embedding_demo (#2454)
Bumps [flutter_lints](https://github.com/flutter/packages/tree/main/packages) from 4.0.0 to 5.0.0. <details> <summary>Commits</summary> <ul> <li><a href=" |
6 months ago |
|
f45a3aa0c4
|
Bump actions/checkout from 4.1.7 to 4.2.0 (#2455)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.7 to 4.2.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/actions/checkout/releases">actions/checkout's releases</a>.</em></p> <blockquote> <h2>v4.2.0</h2> <h2>What's Changed</h2> <ul> <li>Add Ref and Commit outputs by <a href="https://github.com/lucacome"><code>@âlucacome</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1180">actions/checkout#1180</a></li> <li>Dependabot updates in <a href="https://redirect.github.com/actions/checkout/pull/1777">actions/checkout#1777</a> & <a href="https://redirect.github.com/actions/checkout/pull/1872">actions/checkout#1872</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/yasonk"><code>@âyasonk</code></a> made their first contribution in <a href="https://redirect.github.com/actions/checkout/pull/1869">actions/checkout#1869</a></li> <li><a href="https://github.com/lucacome"><code>@âlucacome</code></a> made their first contribution in <a href="https://redirect.github.com/actions/checkout/pull/1180">actions/checkout#1180</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/actions/checkout/compare/v4.1.7...v4.2.0">https://github.com/actions/checkout/compare/v4.1.7...v4.2.0</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/actions/checkout/blob/main/CHANGELOG.md">actions/checkout's changelog</a>.</em></p> <blockquote> <h1>Changelog</h1> <h2>v4.2.0</h2> <ul> <li>Add Ref and Commit outputs by <a href="https://github.com/lucacome"><code>@âlucacome</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1180">actions/checkout#1180</a></li> <li>Dependency updates by <a href="https://github.com/dependabot"><code>@âdependabot</code></a>- <a href="https://redirect.github.com/actions/checkout/pull/1777">actions/checkout#1777</a>, <a href="https://redirect.github.com/actions/checkout/pull/1872">actions/checkout#1872</a></li> </ul> <h2>v4.1.7</h2> <ul> <li>Bump the minor-npm-dependencies group across 1 directory with 4 updates by <a href="https://github.com/dependabot"><code>@âdependabot</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1739">actions/checkout#1739</a></li> <li>Bump actions/checkout from 3 to 4 by <a href="https://github.com/dependabot"><code>@âdependabot</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1697">actions/checkout#1697</a></li> <li>Check out other refs/* by commit by <a href="https://github.com/orhantoy"><code>@âorhantoy</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1774">actions/checkout#1774</a></li> <li>Pin actions/checkout's own workflows to a known, good, stable version. by <a href="https://github.com/jww3"><code>@âjww3</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1776">actions/checkout#1776</a></li> </ul> <h2>v4.1.6</h2> <ul> <li>Check platform to set archive extension appropriately by <a href="https://github.com/cory-miller"><code>@âcory-miller</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1732">actions/checkout#1732</a></li> </ul> <h2>v4.1.5</h2> <ul> <li>Update NPM dependencies by <a href="https://github.com/cory-miller"><code>@âcory-miller</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1703">actions/checkout#1703</a></li> <li>Bump github/codeql-action from 2 to 3 by <a href="https://github.com/dependabot"><code>@âdependabot</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1694">actions/checkout#1694</a></li> <li>Bump actions/setup-node from 1 to 4 by <a href="https://github.com/dependabot"><code>@âdependabot</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1696">actions/checkout#1696</a></li> <li>Bump actions/upload-artifact from 2 to 4 by <a href="https://github.com/dependabot"><code>@âdependabot</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1695">actions/checkout#1695</a></li> <li>README: Suggest <code>user.email</code> to be <code>41898282+github-actions[bot]@users.noreply.github.com</code> by <a href="https://github.com/cory-miller"><code>@âcory-miller</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1707">actions/checkout#1707</a></li> </ul> <h2>v4.1.4</h2> <ul> <li>Disable <code>extensions.worktreeConfig</code> when disabling <code>sparse-checkout</code> by <a href="https://github.com/jww3"><code>@âjww3</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1692">actions/checkout#1692</a></li> <li>Add dependabot config by <a href="https://github.com/cory-miller"><code>@âcory-miller</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1688">actions/checkout#1688</a></li> <li>Bump the minor-actions-dependencies group with 2 updates by <a href="https://github.com/dependabot"><code>@âdependabot</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1693">actions/checkout#1693</a></li> <li>Bump word-wrap from 1.2.3 to 1.2.5 by <a href="https://github.com/dependabot"><code>@âdependabot</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1643">actions/checkout#1643</a></li> </ul> <h2>v4.1.3</h2> <ul> <li>Check git version before attempting to disable <code>sparse-checkout</code> by <a href="https://github.com/jww3"><code>@âjww3</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1656">actions/checkout#1656</a></li> <li>Add SSH user parameter by <a href="https://github.com/cory-miller"><code>@âcory-miller</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1685">actions/checkout#1685</a></li> <li>Update <code>actions/checkout</code> version in <code>update-main-version.yml</code> by <a href="https://github.com/jww3"><code>@âjww3</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1650">actions/checkout#1650</a></li> </ul> <h2>v4.1.2</h2> <ul> <li>Fix: Disable sparse checkout whenever <code>sparse-checkout</code> option is not present <a href="https://github.com/dscho"><code>@âdscho</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1598">actions/checkout#1598</a></li> </ul> <h2>v4.1.1</h2> <ul> <li>Correct link to GitHub Docs by <a href="https://github.com/peterbe"><code>@âpeterbe</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1511">actions/checkout#1511</a></li> <li>Link to release page from what's new section by <a href="https://github.com/cory-miller"><code>@âcory-miller</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1514">actions/checkout#1514</a></li> </ul> <h2>v4.1.0</h2> <ul> <li><a href="https://redirect.github.com/actions/checkout/pull/1396">Add support for partial checkout filters</a></li> </ul> <h2>v4.0.0</h2> <ul> <li><a href="https://redirect.github.com/actions/checkout/pull/1067">Support fetching without the --progress option</a></li> <li><a href="https://redirect.github.com/actions/checkout/pull/1436">Update to node20</a></li> </ul> <h2>v3.6.0</h2> <ul> <li><a href="https://redirect.github.com/actions/checkout/pull/1377">Fix: Mark test scripts with Bash'isms to be run via Bash</a></li> </ul> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
6 months ago |
|
098acb56e3
|
Bump flutter_lints from 4.0.0 to 5.0.0 in /experimental/pedometer/example (#2451)
Bumps [flutter_lints](https://github.com/flutter/packages/tree/main/packages) from 4.0.0 to 5.0.0. <details> <summary>Commits</summary> <ul> <li><a href=" |
6 months ago |
|
bd09ba04f7
|
Adding copyright license to recently added files. Minor text label tweak. (#2450)
|
6 months ago |
|
eb47a728ce
|
Bump actions/setup-java from 4.3.0 to 4.4.0 (#2448)
Bumps [actions/setup-java](https://github.com/actions/setup-java) from 4.3.0 to 4.4.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/actions/setup-java/releases">actions/setup-java's releases</a>.</em></p> <blockquote> <h2>v4.4.0</h2> <h2>What's Changed</h2> <p><strong>Add-ons :</strong></p> <ul> <li>Add support for Oracle GraalVM by <a href="https://github.com/fniephaus"><code>@âfniephaus</code></a> in <a href="https://redirect.github.com/actions/setup-java/pull/501">actions/setup-java#501</a></li> </ul> <pre><code>steps: - name: Checkout uses: actions/checkout@v4 - name: Setup-java uses: actions/setup-java@v4 with: distribution: 'graalvm' java-version: '21' </code></pre> <ul> <li>Add workflow file for publishing releases to immutable action package by <a href="https://github.com/Jcambass"><code>@âJcambass</code></a> in <a href="https://redirect.github.com/actions/setup-java/pull/684">actions/setup-java#684</a></li> </ul> <p><strong>Bug fixes :</strong></p> <ul> <li>Add architecture to cache key by <a href="https://github.com/Zxilly"><code>@âZxilly</code></a> in <a href="https://redirect.github.com/actions/setup-java/pull/664">actions/setup-java#664</a> This addresses issues with caching by adding the architecture (arch) to the cache key, ensuring that cache keys are accurate to prevent conflicts. Note: This change may break previous cache keys as they will no longer be compatible with the new format.</li> <li>Resolve check failures by <a href="https://github.com/aparnajyothi-y"><code>@âaparnajyothi-y</code></a> in <a href="https://redirect.github.com/actions/setup-java/pull/687">actions/setup-java#687</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/Jcambass"><code>@âJcambass</code></a> made their first contribution in <a href="https://redirect.github.com/actions/setup-java/pull/684">actions/setup-java#684</a></li> <li><a href="https://github.com/Zxilly"><code>@âZxilly</code></a> made their first contribution in <a href="https://redirect.github.com/actions/setup-java/pull/664">actions/setup-java#664</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/actions/setup-java/compare/v4...v4.4.0">https://github.com/actions/setup-java/compare/v4...v4.4.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
6 months ago |
|
259403e8a6
|
Update CONTRIBUTING.md (#2447)
## Pre-launch Checklist - [x] I read the [Flutter Style Guide] _recently_, and have followed its advice. - [x] I signed the [CLA]. - [x] I read the [Contributors Guide]. - [x] I updated/added relevant documentation (doc comments with `///`). - [x] All existing and new tests are passing. If you need help, consider asking for advice on the #hackers-devrel channel on [Discord]. <!-- Links --> [Flutter Style Guide]: https://github.com/flutter/flutter/blob/master/docs/contributing/Style-guide-for-Flutter-repo.md [CLA]: https://cla.developers.google.com/ [Discord]: https://github.com/flutter/flutter/blob/master/docs/contributing/Chat.md [Contributors Guide]: https://github.com/flutter/samples/blob/main/CONTRIBUTING.md |
6 months ago |
|
a7df23f2ef
|
Improve color display in M3 Demo (#2438)
- Added the color scheme schematic from Material Theme Builder aligning how colors are displayed here and in documentation across Android and Figma. - On desktop, individual colors can be copied to the clipboard - View adapts from the existing single column view to the new schematic at 500dp width. ### Before: <img width="1727" alt="Screenshot 2024-09-12 at 2 40 15 PM" src="https://github.com/user-attachments/assets/37423d79-174a-4691-b0e1-8f18c947550a"> ### After:   ## Pre-launch Checklist - [x] I read the [Flutter Style Guide] _recently_, and have followed its advice. - [x] I signed the [CLA]. - [x] I read the [Contributors Guide]. - [x] I updated/added relevant documentation (doc comments with `///`). - [x] All existing and new tests are passing. If you need help, consider asking for advice on the #hackers-devrel channel on [Discord]. <!-- Links --> [Flutter Style Guide]: https://github.com/flutter/flutter/blob/master/docs/contributing/Style-guide-for-Flutter-repo.md [CLA]: https://cla.developers.google.com/ [Discord]: https://github.com/flutter/flutter/blob/master/docs/contributing/Chat.md [Contributors Guide]: https://github.com/flutter/samples/blob/main/CONTRIBUTING.md --------- Co-authored-by: Eric Windmill <ewindmill@google.com> |
6 months ago |
|
c83e8c77b0
|
Bump flutter_launcher_icons from 0.13.1 to 0.14.0 in /game_template (#2443)
Bumps [flutter_launcher_icons](https://github.com/fluttercommunity/flutter_launcher_icons) from 0.13.1 to 0.14.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/fluttercommunity/flutter_launcher_icons/releases">flutter_launcher_icons's releases</a>.</em></p> <blockquote> <h2>v0.14.0</h2> <h2>What's Changed</h2> <ul> <li>Update README.md by <a href="https://github.com/malibayram"><code>@âmalibayram</code></a> in <a href="https://redirect.github.com/fluttercommunity/flutter_launcher_icons/pull/483">fluttercommunity/flutter_launcher_icons#483</a></li> <li>Revert "Update README.md" by <a href="https://github.com/RatakondalaArun"><code>@âRatakondalaArun</code></a> in <a href="https://redirect.github.com/fluttercommunity/flutter_launcher_icons/pull/484">fluttercommunity/flutter_launcher_icons#484</a></li> <li>docs: generate config file feature documentation by <a href="https://github.com/OutdatedGuy"><code>@âOutdatedGuy</code></a> in <a href="https://redirect.github.com/fluttercommunity/flutter_launcher_icons/pull/485">fluttercommunity/flutter_launcher_icons#485</a></li> <li>style: fixed linting warnings on pub website by <a href="https://github.com/OutdatedGuy"><code>@âOutdatedGuy</code></a> in <a href="https://redirect.github.com/fluttercommunity/flutter_launcher_icons/pull/486">fluttercommunity/flutter_launcher_icons#486</a></li> <li>support ios icon background color when removing alpha by <a href="https://github.com/HaoCherHong"><code>@âHaoCherHong</code></a> in <a href="https://redirect.github.com/fluttercommunity/flutter_launcher_icons/pull/450">fluttercommunity/flutter_launcher_icons#450</a></li> <li>add <code>background_color_ios</code> description to README.md by <a href="https://github.com/HaoCherHong"><code>@âHaoCherHong</code></a> in <a href="https://redirect.github.com/fluttercommunity/flutter_launcher_icons/pull/487">fluttercommunity/flutter_launcher_icons#487</a></li> <li>Fix typo in README.md by <a href="https://github.com/HaoCherHong"><code>@âHaoCherHong</code></a> in <a href="https://redirect.github.com/fluttercommunity/flutter_launcher_icons/pull/488">fluttercommunity/flutter_launcher_icons#488</a></li> <li>Fixed the misspellings of whether [Issue <a href="https://redirect.github.com/fluttercommunity/flutter_launcher_icons/issues/526">#526</a>] by <a href="https://github.com/muddi900"><code>@âmuddi900</code></a> in <a href="https://redirect.github.com/fluttercommunity/flutter_launcher_icons/pull/527">fluttercommunity/flutter_launcher_icons#527</a></li> <li>feat: added support for android 13+ themed icons by <a href="https://github.com/OutdatedGuy"><code>@âOutdatedGuy</code></a> in <a href="https://redirect.github.com/fluttercommunity/flutter_launcher_icons/pull/497">fluttercommunity/flutter_launcher_icons#497</a></li> <li>Feature: Configure dark and tinted mode icons for iOS 18+ by <a href="https://github.com/KevinHaendel"><code>@âKevinHaendel</code></a> in <a href="https://redirect.github.com/fluttercommunity/flutter_launcher_icons/pull/569">fluttercommunity/flutter_launcher_icons#569</a></li> <li>related to [issue <a href="https://redirect.github.com/fluttercommunity/flutter_launcher_icons/issues/96">#96</a>], Suggestion for an easier way to apply foreground inset by <a href="https://github.com/LOCKEDFILE"><code>@âLOCKEDFILE</code></a> in <a href="https://redirect.github.com/fluttercommunity/flutter_launcher_icons/pull/563">fluttercommunity/flutter_launcher_icons#563</a></li> <li>update readme to use dart run by <a href="https://github.com/eifr"><code>@âeifr</code></a> in <a href="https://redirect.github.com/fluttercommunity/flutter_launcher_icons/pull/561">fluttercommunity/flutter_launcher_icons#561</a></li> <li>fix: tests fails for the newly generated ios list by <a href="https://github.com/OutdatedGuy"><code>@âOutdatedGuy</code></a> in <a href="https://redirect.github.com/fluttercommunity/flutter_launcher_icons/pull/576">fluttercommunity/flutter_launcher_icons#576</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/malibayram"><code>@âmalibayram</code></a> made their first contribution in <a href="https://redirect.github.com/fluttercommunity/flutter_launcher_icons/pull/483">fluttercommunity/flutter_launcher_icons#483</a></li> <li><a href="https://github.com/HaoCherHong"><code>@âHaoCherHong</code></a> made their first contribution in <a href="https://redirect.github.com/fluttercommunity/flutter_launcher_icons/pull/450">fluttercommunity/flutter_launcher_icons#450</a></li> <li><a href="https://github.com/muddi900"><code>@âmuddi900</code></a> made their first contribution in <a href="https://redirect.github.com/fluttercommunity/flutter_launcher_icons/pull/527">fluttercommunity/flutter_launcher_icons#527</a></li> <li><a href="https://github.com/KevinHaendel"><code>@âKevinHaendel</code></a> made their first contribution in <a href="https://redirect.github.com/fluttercommunity/flutter_launcher_icons/pull/569">fluttercommunity/flutter_launcher_icons#569</a></li> <li><a href="https://github.com/LOCKEDFILE"><code>@âLOCKEDFILE</code></a> made their first contribution in <a href="https://redirect.github.com/fluttercommunity/flutter_launcher_icons/pull/563">fluttercommunity/flutter_launcher_icons#563</a></li> <li><a href="https://github.com/eifr"><code>@âeifr</code></a> made their first contribution in <a href="https://redirect.github.com/fluttercommunity/flutter_launcher_icons/pull/561">fluttercommunity/flutter_launcher_icons#561</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/fluttercommunity/flutter_launcher_icons/compare/v0.13.1...v0.14.0">https://github.com/fluttercommunity/flutter_launcher_icons/compare/v0.13.1...v0.14.0</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/fluttercommunity/flutter_launcher_icons/blob/master/CHANGELOG.md">flutter_launcher_icons's changelog</a>.</em></p> <blockquote> <h2>0.14.0 (21st September 2024)</h2> <ul> <li>Android: Support for monochrome icons <a href="https://redirect.github.com/fluttercommunity/flutter_launcher_icons/pull/563">#563</a></li> </ul> <p><strong>Before</strong></p> <p><strong>Now</strong></p> <ul> <li>Android: Ability to set inset for adaptive icon foreground and monochrome icon <a href="https://redirect.github.com/fluttercommunity/flutter_launcher_icons/pull/563">#563</a></li> <li>iOS: Dark and Tinted icons for iOS 18+ <a href="https://redirect.github.com/fluttercommunity/flutter_launcher_icons/pull/569">#569</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
6 months ago |
|
f53b6df9f1
|
Bump flutter_launcher_icons from 0.13.1 to 0.14.0 in /veggieseasons (#2442)
Bumps [flutter_launcher_icons](https://github.com/fluttercommunity/flutter_launcher_icons) from 0.13.1 to 0.14.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/fluttercommunity/flutter_launcher_icons/releases">flutter_launcher_icons's releases</a>.</em></p> <blockquote> <h2>v0.14.0</h2> <h2>What's Changed</h2> <ul> <li>Update README.md by <a href="https://github.com/malibayram"><code>@âmalibayram</code></a> in <a href="https://redirect.github.com/fluttercommunity/flutter_launcher_icons/pull/483">fluttercommunity/flutter_launcher_icons#483</a></li> <li>Revert "Update README.md" by <a href="https://github.com/RatakondalaArun"><code>@âRatakondalaArun</code></a> in <a href="https://redirect.github.com/fluttercommunity/flutter_launcher_icons/pull/484">fluttercommunity/flutter_launcher_icons#484</a></li> <li>docs: generate config file feature documentation by <a href="https://github.com/OutdatedGuy"><code>@âOutdatedGuy</code></a> in <a href="https://redirect.github.com/fluttercommunity/flutter_launcher_icons/pull/485">fluttercommunity/flutter_launcher_icons#485</a></li> <li>style: fixed linting warnings on pub website by <a href="https://github.com/OutdatedGuy"><code>@âOutdatedGuy</code></a> in <a href="https://redirect.github.com/fluttercommunity/flutter_launcher_icons/pull/486">fluttercommunity/flutter_launcher_icons#486</a></li> <li>support ios icon background color when removing alpha by <a href="https://github.com/HaoCherHong"><code>@âHaoCherHong</code></a> in <a href="https://redirect.github.com/fluttercommunity/flutter_launcher_icons/pull/450">fluttercommunity/flutter_launcher_icons#450</a></li> <li>add <code>background_color_ios</code> description to README.md by <a href="https://github.com/HaoCherHong"><code>@âHaoCherHong</code></a> in <a href="https://redirect.github.com/fluttercommunity/flutter_launcher_icons/pull/487">fluttercommunity/flutter_launcher_icons#487</a></li> <li>Fix typo in README.md by <a href="https://github.com/HaoCherHong"><code>@âHaoCherHong</code></a> in <a href="https://redirect.github.com/fluttercommunity/flutter_launcher_icons/pull/488">fluttercommunity/flutter_launcher_icons#488</a></li> <li>Fixed the misspellings of whether [Issue <a href="https://redirect.github.com/fluttercommunity/flutter_launcher_icons/issues/526">#526</a>] by <a href="https://github.com/muddi900"><code>@âmuddi900</code></a> in <a href="https://redirect.github.com/fluttercommunity/flutter_launcher_icons/pull/527">fluttercommunity/flutter_launcher_icons#527</a></li> <li>feat: added support for android 13+ themed icons by <a href="https://github.com/OutdatedGuy"><code>@âOutdatedGuy</code></a> in <a href="https://redirect.github.com/fluttercommunity/flutter_launcher_icons/pull/497">fluttercommunity/flutter_launcher_icons#497</a></li> <li>Feature: Configure dark and tinted mode icons for iOS 18+ by <a href="https://github.com/KevinHaendel"><code>@âKevinHaendel</code></a> in <a href="https://redirect.github.com/fluttercommunity/flutter_launcher_icons/pull/569">fluttercommunity/flutter_launcher_icons#569</a></li> <li>related to [issue <a href="https://redirect.github.com/fluttercommunity/flutter_launcher_icons/issues/96">#96</a>], Suggestion for an easier way to apply foreground inset by <a href="https://github.com/LOCKEDFILE"><code>@âLOCKEDFILE</code></a> in <a href="https://redirect.github.com/fluttercommunity/flutter_launcher_icons/pull/563">fluttercommunity/flutter_launcher_icons#563</a></li> <li>update readme to use dart run by <a href="https://github.com/eifr"><code>@âeifr</code></a> in <a href="https://redirect.github.com/fluttercommunity/flutter_launcher_icons/pull/561">fluttercommunity/flutter_launcher_icons#561</a></li> <li>fix: tests fails for the newly generated ios list by <a href="https://github.com/OutdatedGuy"><code>@âOutdatedGuy</code></a> in <a href="https://redirect.github.com/fluttercommunity/flutter_launcher_icons/pull/576">fluttercommunity/flutter_launcher_icons#576</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/malibayram"><code>@âmalibayram</code></a> made their first contribution in <a href="https://redirect.github.com/fluttercommunity/flutter_launcher_icons/pull/483">fluttercommunity/flutter_launcher_icons#483</a></li> <li><a href="https://github.com/HaoCherHong"><code>@âHaoCherHong</code></a> made their first contribution in <a href="https://redirect.github.com/fluttercommunity/flutter_launcher_icons/pull/450">fluttercommunity/flutter_launcher_icons#450</a></li> <li><a href="https://github.com/muddi900"><code>@âmuddi900</code></a> made their first contribution in <a href="https://redirect.github.com/fluttercommunity/flutter_launcher_icons/pull/527">fluttercommunity/flutter_launcher_icons#527</a></li> <li><a href="https://github.com/KevinHaendel"><code>@âKevinHaendel</code></a> made their first contribution in <a href="https://redirect.github.com/fluttercommunity/flutter_launcher_icons/pull/569">fluttercommunity/flutter_launcher_icons#569</a></li> <li><a href="https://github.com/LOCKEDFILE"><code>@âLOCKEDFILE</code></a> made their first contribution in <a href="https://redirect.github.com/fluttercommunity/flutter_launcher_icons/pull/563">fluttercommunity/flutter_launcher_icons#563</a></li> <li><a href="https://github.com/eifr"><code>@âeifr</code></a> made their first contribution in <a href="https://redirect.github.com/fluttercommunity/flutter_launcher_icons/pull/561">fluttercommunity/flutter_launcher_icons#561</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/fluttercommunity/flutter_launcher_icons/compare/v0.13.1...v0.14.0">https://github.com/fluttercommunity/flutter_launcher_icons/compare/v0.13.1...v0.14.0</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/fluttercommunity/flutter_launcher_icons/blob/master/CHANGELOG.md">flutter_launcher_icons's changelog</a>.</em></p> <blockquote> <h2>0.14.0 (21st September 2024)</h2> <ul> <li>Android: Support for monochrome icons <a href="https://redirect.github.com/fluttercommunity/flutter_launcher_icons/pull/563">#563</a></li> </ul> <p><strong>Before</strong></p> <p><strong>Now</strong></p> <ul> <li>Android: Ability to set inset for adaptive icon foreground and monochrome icon <a href="https://redirect.github.com/fluttercommunity/flutter_launcher_icons/pull/563">#563</a></li> <li>iOS: Dark and Tinted icons for iOS 18+ <a href="https://redirect.github.com/fluttercommunity/flutter_launcher_icons/pull/569">#569</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
6 months ago |
|
78d3ea47c9
|
m3_demo - Enables edge to edge support. (#2441)
Edge to edge is coming by default to Flutter 3.26+ (or thereabouts) when the targetSdk is raised to Android 15(API 35). In the meantime, it can be done manually by adjusting the theme and setting `WindowCompat.setDecorFitsSystemWindows`. The fix is purely on the Android side. iOS is unaffected. Sourced from https://developer.android.com/develop/ui/views/layout/edge-to-edge-manually Fixes #1720 . ## Pre-launch Checklist - [X] I read the [Flutter Style Guide] _recently_, and have followed its advice. - [X] I signed the [CLA]. - [X] I read the [Contributors Guide]. - [X] I updated/added relevant documentation (doc comments with `///`). - [x] All existing and new tests are passing. If you need help, consider asking for advice on the #hackers-devrel channel on [Discord]. <!-- Links --> [Flutter Style Guide]: https://github.com/flutter/flutter/blob/master/docs/contributing/Style-guide-for-Flutter-repo.md [CLA]: https://cla.developers.google.com/ [Discord]: https://github.com/flutter/flutter/blob/master/docs/contributing/Chat.md [Contributors Guide]: https://github.com/flutter/samples/blob/main/CONTRIBUTING.md |
6 months ago |
|
cdd2a427d1
|
Bump typescript from 5.5.4 to 5.6.2 in /web_embedding/ng-flutter (#2439)
Bumps [typescript](https://github.com/microsoft/TypeScript) from 5.5.4 to 5.6.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.6</h2> <p>For release notes, check out the <a href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-6/">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&q=milestone%3A%22TypeScript+5.6.0%22+is%3Aclosed+">fixed issues query for Typescript 5.6.0 (Beta)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=milestone%3A%22TypeScript+5.6.1%22+is%3Aclosed+">fixed issues query for Typescript 5.6.1 (RC)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=milestone%3A%22TypeScript+5.6.2%22+is%3Aclosed+">fixed issues query for Typescript 5.6.2 (Stable)</a>.</li> </ul> <p>Downloads are available on:</p> <ul> <li><a href="https://www.npmjs.com/package/typescript">npm</a></li> <li><a href="https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild">NuGet package</a></li> </ul> <h2>TypeScript 5.6 RC</h2> <p>For release notes, check out the <a href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-6-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&milestone%3A%22TypeScript+5.6.1%22+is%3Aclosed+">fixed issues query for TypeScript v5.6.1 (RC)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&milestone%3A%22TypeScript+5.6.0%22+is%3Aclosed+">fixed issues query for TypeScript v5.6.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> <h2>TypeScript 5.6 Beta</h2> <p>For release notes, check out the <a href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-6-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&q=milestone%3A%22TypeScript+5.6.0%22+is%3Aclosed+">fixed issues query for Typescript 5.6.0 (Beta)</a>.</li> </ul> <p>Downloads are available on:</p> <ul> <li><a href="https://www.npmjs.com/package/typescript">npm</a></li> <li><a href="https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild">NuGet package</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
6 months ago |
|
578477a329
|
Bump actions/setup-java from 4.2.2 to 4.3.0 (#2434)
Bumps [actions/setup-java](https://github.com/actions/setup-java) from 4.2.2 to 4.3.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/actions/setup-java/releases">actions/setup-java's releases</a>.</em></p> <blockquote> <h2>v4.3.0</h2> <p>What's Changed</p> <ul> <li>Add support for SapMachine JDK/JRE by <a href="https://github.com/Shegox"><code>@âShegox</code></a> in <a href="https://redirect.github.com/actions/setup-java/issues/614">#614</a></li> </ul> <pre lang="yaml"><code>steps: - name: Checkout uses: actions/checkout@v4 - name: Setup-java uses: actions/setup-java@v4 with: distribution: âsapmachineâ java-version: â21â </code></pre> <p>Bug fixes :</p> <ul> <li> <pre><code>Fix typos on Corretto by @johnshajiang in [#666](https://github.com/actions/setup-java/issues/666) </code></pre> </li> <li> <pre><code>IBM Semeru Enhancement on arm64 by @mahabaleshwars in [#677](https://github.com/actions/setup-java/issues/677) </code></pre> </li> <li> <pre><code>Resolve Basic Validation Check Failures by @aparnajyothi-yâ¨Â in [#682](https://github.com/actions/setup-java/issues/682) </code></pre> </li> </ul> <p>New Contributors :</p> <ul> <li> <pre><code>@johnshajiang made their first contribution in [#666](https://github.com/actions/setup-java/issues/666) </code></pre> </li> <li> <pre><code>@Shegox made their first contribution in [#614](https://github.com/actions/setup-java/issues/614) </code></pre> </li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/actions/setup-java/compare/v4...v4.3.0">https://github.com/actions/setup-java/compare/v4...v4.3.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
6 months ago |
|
76e9632bbb
|
Bump ffigen from 13.0.0 to 14.0.0 in /experimental/pedometer (#2433)
Bumps [ffigen](https://github.com/dart-lang/native/tree/main/pkgs) from 13.0.0 to 14.0.0. <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/dart-lang/native/commits/HEAD/pkgs">compare view</a></li> </ul> </details> <br /> [](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> |
6 months ago |
|
d78f4e0b51
|
Bump jasmine-core from 5.2.0 to 5.3.0 in /web_embedding/ng-flutter (#2432)
Bumps [jasmine-core](https://github.com/jasmine/jasmine) from 5.2.0 to 5.3.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.3.0</h2> <p>Please see the <a href="https://github.com/jasmine/jasmine/blob/main/release_notes/5.3.0.md">release notes</a>.</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
6 months ago |