-
Notifications
You must be signed in to change notification settings - Fork 171
Release 0.23.0 #638
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release 0.23.0 #638
Conversation
Since the release of maplibre-native iOS v6.13 it is now possible to pass a styleJSON string directly to `MLNMapView`. This PR adds logic to handle style JSON strings on iOS and web. --------- Co-authored-by: Gabriel <[email protected]>
Summary This PR expose hover events on annotations (such as symbols, circles, lines and fills) by registering a listener. Developers can now receive updates when mouse enters, move or leave an annotation. Also, this PR removes onSymbolDrag, onCircleDrag , onFillDrag and onLineDrag from #607 and introduce annotation parameter to onFeatureDrag. New Parameters Added onFeatureHover were introduced to the MapLibreMapController. Usage Example ``` void _onMapCreated(MapLibreMapController controller) { this.controller = controller; controller.onFeatureDrag.add(_onFeatureDrag); controller.onFeatureHover.add(_onFeatureHover); } void _onFeatureDrag(dynamic id, {required Annotation annotation, required Point<double> point, required LatLng origin, required LatLng current, required LatLng delta, required DragEventType eventType}{ print('Annotation ${id} was dragged: ${current}'); } void _onFeatureHover(Annotation annotation, Point<double> point, LatLng latLng, HoverEventType eventType)){ print('Annotation ${annotation.id} is hovered: ${latLng}'); } void _addCircle() { controller!.addCircle(CircleOptions(geometry: latlng, draggable: true)); } @OverRide void dispose() { controller?.onFeatureDrag.remove(_onFeatureDrag); controller?.onFeatureHover.remove(_onFeatureHover); super.dispose(); } --------- Co-authored-by: Joscha Eckert <[email protected]>
## Overview This PR introduces additional functionality to the flutter wrapper from the native library. ### 1. Performance Controls - **`setMaximumFps(int fps)`** - Controls rendering performance by limiting frame rate - **`forceOnlineMode()`** - Forces the map to use online mode in some cases on older Android devices where device is offline but you're serving offline data via local server **Why this matters:** Essential for battery optimization on mobile devices and ensuring custom implemented offline data. ### 2. Enhanced Camera Control - **`animateCameraWithDuration(CameraUpdate cameraUpdate, int duration)`** - Smooth camera animations with precise timing control - **`queryCameraPosition()`** - Retrieves current camera state for programmatic map control **Why this matters:** Enables smooth user experiences and allows developers to build sophisticated map interactions with predictable timing. ### 3. Advanced Style and Layer Control - **`editGeoJsonSource(String id, String data)`** - Updates GeoJSON data in real-time - **`editGeoJsonUrl(String id, String url)`** - Changes GeoJSON source URLs dynamically - **`setLayerFilter(String layerId, String filter)`** - Applies complex filters to map layers - **`getStyle()`** - Exports current map style as JSON **Why this matters:** Very useful when you want to manipulate style and layers quickly and dynamically. ### 5. Custom Authentication - **`setCustomHeaders(Map<String, String> headers, List<String> filter)`** - Adds custom headers to map requests - **`getCustomHeaders()`** - Retrieves current custom headers **Why this matters:** Essential for authenticating map tiles. ## Impact This is production ready and well tested, we ported our exposed functionality from previous repository from tobrun. As we're switching to maplibre, this is what we need. --------- Co-authored-by: Simon Irmančnik <[email protected]> Co-authored-by: Gabriel <[email protected]>
…#621) #### Issue: On mobile, if an async action such as adding or removing features is executed right before the controller is disposed, an error may occur. This happens because these actions are asynchronous, and the controller still attempts to call notifyListeners() after it has already been disposed. #### Fix: • Introduced an isDisposed flag inside the controller. • Wrapped calls to notifyListeners() with a check to ensure the controller has not been disposed.
Bug fixes: - Resolved issue where _map.off() wasn't properly removing event listeners because it wasn't passing the JavaScript function reference - Fixed issue where hovered event handling wasn't working propery with different layers on the map Added: - Parse layer ID from feature json object on web.
Bumps [actions/setup-java](https://github.com/actions/setup-java) from 4 to 5. <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>v5.0.0</h2> <h2>What's Changed</h2> <h3>Breaking Changes</h3> <ul> <li>Upgrade to node 24 by <a href="https://github.com/salmanmkc"><code>@salmanmkc</code></a> in <a href="https://redirect.github.com/actions/setup-java/pull/888">actions/setup-java#888</a></li> </ul> <p>Make sure your runner is updated to this version or newer to use this release. v2.327.1 <a href="https://github.com/actions/runner/releases/tag/v2.327.1">Release Notes</a></p> <h3>Dependency Upgrades</h3> <ul> <li>Upgrade Publish Immutable Action by <a href="https://github.com/HarithaVattikuti"><code>@HarithaVattikuti</code></a> in <a href="https://redirect.github.com/actions/setup-java/pull/798">actions/setup-java#798</a></li> <li>Upgrade eslint-plugin-jest from 27.9.0 to 28.11.0 by <a href="https://github.com/dependabot"><code>@dependabot</code></a>[bot] in <a href="https://redirect.github.com/actions/setup-java/pull/730">actions/setup-java#730</a></li> <li>Upgrade undici from 5.28.5 to 5.29.0 by <a href="https://github.com/dependabot"><code>@dependabot</code></a>[bot] in <a href="https://redirect.github.com/actions/setup-java/pull/833">actions/setup-java#833</a></li> <li>Upgrade form-data to bring in fix for critical vulnerability by <a href="https://github.com/gowridurgad"><code>@gowridurgad</code></a> in <a href="https://redirect.github.com/actions/setup-java/pull/887">actions/setup-java#887</a></li> <li>Upgrade actions/checkout from 4 to 5 by <a href="https://github.com/dependabot"><code>@dependabot</code></a>[bot] in <a href="https://redirect.github.com/actions/setup-java/pull/896">actions/setup-java#896</a></li> </ul> <h3>Bug Fixes</h3> <ul> <li>Prevent default installation of JetBrains pre-releases by <a href="https://github.com/priyagupta108"><code>@priyagupta108</code></a> in <a href="https://redirect.github.com/actions/setup-java/pull/859">actions/setup-java#859</a></li> <li>Improve Error Handling for Setup-Java Action to Help Debug Intermittent Failures by <a href="https://github.com/gowridurgad"><code>@gowridurgad</code></a> in <a href="https://redirect.github.com/actions/setup-java/pull/848">actions/setup-java#848</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/gowridurgad"><code>@gowridurgad</code></a> made their first contribution in <a href="https://redirect.github.com/actions/setup-java/pull/848">actions/setup-java#848</a></li> <li><a href="https://github.com/salmanmkc"><code>@salmanmkc</code></a> made their first contribution in <a href="https://redirect.github.com/actions/setup-java/pull/888">actions/setup-java#888</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/actions/setup-java/compare/v4...v5.0.0">https://github.com/actions/setup-java/compare/v4...v5.0.0</a></p> <h2>v4.7.1</h2> <h2>What's Changed</h2> <h3>Documentation changes</h3> <ul> <li>Add Documentation to Recommend Using GraalVM JDK 17 Version to 17.0.12 to Align with GFTC License Terms by <a href="https://github.com/aparnajyothi-y"><code>@aparnajyothi-y</code></a> in <a href="https://redirect.github.com/actions/setup-java/pull/704">actions/setup-java#704</a></li> <li>Remove duplicated GraalVM section in documentation by <a href="https://github.com/Marcono1234"><code>@Marcono1234</code></a> in <a href="https://redirect.github.com/actions/setup-java/pull/716">actions/setup-java#716</a></li> </ul> <h3>Dependency updates:</h3> <ul> <li>Upgrade <code>@action/cache</code> from 4.0.0 to 4.0.2 by <a href="https://github.com/aparnajyothi-y"><code>@aparnajyothi-y</code></a> in <a href="https://redirect.github.com/actions/setup-java/pull/766">actions/setup-java#766</a></li> <li>Upgrade <code>@actions/glob</code> from 0.4.0 to 0.5.0 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/actions/setup-java/pull/744">actions/setup-java#744</a></li> <li>Upgrade ts-jest from 29.1.2 to 29.2.5 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/actions/setup-java/pull/743">actions/setup-java#743</a></li> <li>Upgrade <code>@action/cache</code> to 4.0.3 by <a href="https://github.com/aparnajyothi-y"><code>@aparnajyothi-y</code></a> in <a href="https://redirect.github.com/actions/setup-java/pull/773">actions/setup-java#773</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/actions/setup-java/compare/v4...v4.7.1">https://github.com/actions/setup-java/compare/v4...v4.7.1</a></p> <h2>v4.7.0</h2> <h2>What's Changed</h2> <ul> <li>Configure Dependabot settings by <a href="https://github.com/HarithaVattikuti"><code>@HarithaVattikuti</code></a> in <a href="https://redirect.github.com/actions/setup-java/pull/722">actions/setup-java#722</a></li> <li>README Update: Added a permissions section by <a href="https://github.com/benwells"><code>@benwells</code></a> in <a href="https://redirect.github.com/actions/setup-java/pull/723">actions/setup-java#723</a></li> <li>Upgrade <code>cache</code> from version 3.2.4 to 4.0.0 by <a href="https://github.com/aparnajyothi-y"><code>@aparnajyothi-y</code></a> in <a href="https://redirect.github.com/actions/setup-java/pull/724">actions/setup-java#724</a></li> <li>Upgrade <code>@actions/http-client</code> from 2.2.1 to 2.2.3 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/actions/setup-java/pull/728">actions/setup-java#728</a></li> <li>Upgrade <code>actions/publish-immutable-action</code> from 0.0.3 to 0.0.4 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/actions/setup-java/pull/727">actions/setup-java#727</a></li> <li>Upgrade <code>@types/jest</code> from 29.5.12 to 29.5.14 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/actions/setup-java/pull/729">actions/setup-java#729</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/actions/setup-java/commit/dded0888837ed1f317902acf8a20df0ad188d165"><code>dded088</code></a> Bump actions/checkout from 4 to 5 (<a href="https://redirect.github.com/actions/setup-java/issues/896">#896</a>)</li> <li><a href="https://github.com/actions/setup-java/commit/0913e9a06eb8b69c62db76aa61f580c2b3a5b4e0"><code>0913e9a</code></a> Upgrade to node 24 (<a href="https://redirect.github.com/actions/setup-java/issues/888">#888</a>)</li> <li><a href="https://github.com/actions/setup-java/commit/e9343db97e09d87a3c50e544105d99fe912c204b"><code>e9343db</code></a> Bumps form-data (<a href="https://redirect.github.com/actions/setup-java/issues/887">#887</a>)</li> <li><a href="https://github.com/actions/setup-java/commit/ae2b61dbc685e60e4427b2e8ed4f0135c6ea8597"><code>ae2b61d</code></a> Bump undici from 5.28.5 to 5.29.0 (<a href="https://redirect.github.com/actions/setup-java/issues/833">#833</a>)</li> <li><a href="https://github.com/actions/setup-java/commit/c190c18febcf6c040d80b10ea201a05a2c320263"><code>c190c18</code></a> Bump eslint-plugin-jest from 27.9.0 to 29.0.1 (<a href="https://redirect.github.com/actions/setup-java/issues/730">#730</a>)</li> <li><a href="https://github.com/actions/setup-java/commit/67aec007b3fcabe15ca665bfccc1e255dd52e30d"><code>67aec00</code></a> Fix: prevent default installation of JetBrains pre-releases (<a href="https://redirect.github.com/actions/setup-java/issues/859">#859</a>)</li> <li><a href="https://github.com/actions/setup-java/commit/ebb356cc4e59bcf94f518203228485f5d40e4b58"><code>ebb356c</code></a> Improve Error Handling for Setup-Java Action to Help Debug Intermittent Failu...</li> <li><a href="https://github.com/actions/setup-java/commit/f4f1212c880fdec8162ea9a6493f4495191887b4"><code>f4f1212</code></a> Update publish-immutable-actions.yml (<a href="https://redirect.github.com/actions/setup-java/issues/798">#798</a>)</li> <li>See full diff in <a href="https://github.com/actions/setup-java/compare/v4...v5">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] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. <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>v5.0.0</h2> <h2>What's Changed</h2> <ul> <li>Update actions checkout to use node 24 by <a href="https://github.com/salmanmkc"><code>@salmanmkc</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/2226">actions/checkout#2226</a></li> <li>Prepare v5.0.0 release by <a href="https://github.com/salmanmkc"><code>@salmanmkc</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/2238">actions/checkout#2238</a></li> </ul> <h2>⚠️ Minimum Compatible Runner Version</h2> <p><strong>v2.327.1</strong><br /> <a href="https://github.com/actions/runner/releases/tag/v2.327.1">Release Notes</a></p> <p>Make sure your runner is updated to this version or newer to use this release.</p> <p><strong>Full Changelog</strong>: <a href="https://github.com/actions/checkout/compare/v4...v5.0.0">https://github.com/actions/checkout/compare/v4...v5.0.0</a></p> <h2>v4.3.0</h2> <h2>What's Changed</h2> <ul> <li>docs: update README.md by <a href="https://github.com/motss"><code>@motss</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1971">actions/checkout#1971</a></li> <li>Add internal repos for checking out multiple repositories by <a href="https://github.com/mouismail"><code>@mouismail</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1977">actions/checkout#1977</a></li> <li>Documentation update - add recommended permissions to Readme by <a href="https://github.com/benwells"><code>@benwells</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/2043">actions/checkout#2043</a></li> <li>Adjust positioning of user email note and permissions heading by <a href="https://github.com/joshmgross"><code>@joshmgross</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/2044">actions/checkout#2044</a></li> <li>Update README.md by <a href="https://github.com/nebuk89"><code>@nebuk89</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/2194">actions/checkout#2194</a></li> <li>Update CODEOWNERS for actions by <a href="https://github.com/TingluoHuang"><code>@TingluoHuang</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/2224">actions/checkout#2224</a></li> <li>Update package dependencies by <a href="https://github.com/salmanmkc"><code>@salmanmkc</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/2236">actions/checkout#2236</a></li> <li>Prepare release v4.3.0 by <a href="https://github.com/salmanmkc"><code>@salmanmkc</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/2237">actions/checkout#2237</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/motss"><code>@motss</code></a> made their first contribution in <a href="https://redirect.github.com/actions/checkout/pull/1971">actions/checkout#1971</a></li> <li><a href="https://github.com/mouismail"><code>@mouismail</code></a> made their first contribution in <a href="https://redirect.github.com/actions/checkout/pull/1977">actions/checkout#1977</a></li> <li><a href="https://github.com/benwells"><code>@benwells</code></a> made their first contribution in <a href="https://redirect.github.com/actions/checkout/pull/2043">actions/checkout#2043</a></li> <li><a href="https://github.com/nebuk89"><code>@nebuk89</code></a> made their first contribution in <a href="https://redirect.github.com/actions/checkout/pull/2194">actions/checkout#2194</a></li> <li><a href="https://github.com/salmanmkc"><code>@salmanmkc</code></a> made their first contribution in <a href="https://redirect.github.com/actions/checkout/pull/2236">actions/checkout#2236</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/actions/checkout/compare/v4...v4.3.0">https://github.com/actions/checkout/compare/v4...v4.3.0</a></p> <h2>v4.2.2</h2> <h2>What's Changed</h2> <ul> <li><code>url-helper.ts</code> now leverages well-known environment variables by <a href="https://github.com/jww3"><code>@jww3</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1941">actions/checkout#1941</a></li> <li>Expand unit test coverage for <code>isGhes</code> by <a href="https://github.com/jww3"><code>@jww3</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1946">actions/checkout#1946</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/actions/checkout/compare/v4.2.1...v4.2.2">https://github.com/actions/checkout/compare/v4.2.1...v4.2.2</a></p> <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> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </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>V5.0.0</h2> <ul> <li>Update actions checkout to use node 24 by <a href="https://github.com/salmanmkc"><code>@salmanmkc</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/2226">actions/checkout#2226</a></li> </ul> <h2>V4.3.0</h2> <ul> <li>docs: update README.md by <a href="https://github.com/motss"><code>@motss</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1971">actions/checkout#1971</a></li> <li>Add internal repos for checking out multiple repositories by <a href="https://github.com/mouismail"><code>@mouismail</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1977">actions/checkout#1977</a></li> <li>Documentation update - add recommended permissions to Readme by <a href="https://github.com/benwells"><code>@benwells</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/2043">actions/checkout#2043</a></li> <li>Adjust positioning of user email note and permissions heading by <a href="https://github.com/joshmgross"><code>@joshmgross</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/2044">actions/checkout#2044</a></li> <li>Update README.md by <a href="https://github.com/nebuk89"><code>@nebuk89</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/2194">actions/checkout#2194</a></li> <li>Update CODEOWNERS for actions by <a href="https://github.com/TingluoHuang"><code>@TingluoHuang</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/2224">actions/checkout#2224</a></li> <li>Update package dependencies by <a href="https://github.com/salmanmkc"><code>@salmanmkc</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/2236">actions/checkout#2236</a></li> </ul> <h2>v4.2.2</h2> <ul> <li><code>url-helper.ts</code> now leverages well-known environment variables by <a href="https://github.com/jww3"><code>@jww3</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1941">actions/checkout#1941</a></li> <li>Expand unit test coverage for <code>isGhes</code> by <a href="https://github.com/jww3"><code>@jww3</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1946">actions/checkout#1946</a></li> </ul> <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> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/actions/checkout/commit/08c6903cd8c0fde910a37f88322edcfb5dd907a8"><code>08c6903</code></a> Prepare v5.0.0 release (<a href="https://redirect.github.com/actions/checkout/issues/2238">#2238</a>)</li> <li><a href="https://github.com/actions/checkout/commit/9f265659d3bb64ab1440b03b12f4d47a24320917"><code>9f26565</code></a> Update actions checkout to use node 24 (<a href="https://redirect.github.com/actions/checkout/issues/2226">#2226</a>)</li> <li>See full diff in <a href="https://github.com/actions/checkout/compare/v4...v5">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] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Gabriel <[email protected]>
Bumps [very_good_analysis](https://github.com/VeryGoodOpenSource/very_good_analysis) from 6.0.0 to 8.0.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/VeryGoodOpenSource/very_good_analysis/releases">very_good_analysis's releases</a>.</em></p> <blockquote> <h2>v7.0.0</h2> <ul> <li>chore: release 7.0.0-dev.1</li> </ul> <h2>v7.0.0-dev.1</h2> <ul> <li>feat: add <code>document_ignores</code> <a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/pull/125">125</a></li> <li>feat: remove <code>avoid_null_checks_in_equality_operators</code> <a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/pull/124">124</a></li> <li>feat: add avoid_catches_without_on_clauses <a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/pull/123">123</a></li> <li>feat: add invalid_runtime_check_with_js_interop_types <a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/pull/122">122</a></li> <li>feat: add unintended_html_in_doc_comment <a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/pull/121">121</a></li> <li>chore: Remove the package_api_docs lint in next release <a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/pull/118">118</a></li> <li>feat: update lints for Dart 3.5 <a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/pull/111">111</a></li> <li>docs: update exclusion reasons <a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/pull/109">109</a></li> <li>docs: update commands in contributing <a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/pull/110">110</a></li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/VeryGoodOpenSource/very_good_analysis/blob/main/CHANGELOG.md">very_good_analysis's changelog</a>.</em></p> <blockquote> <h1>8.0.0</h1> <ul> <li>chore: release 8.0.0-rc.1</li> <li>fix: remove <code>omit_obvious_property_types</code> as it conflicts with <code>type_annotate_public_apis</code> <a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/pull/148">148</a></li> </ul> <h1>8.0.0-rc.1</h1> <ul> <li>feat: add <code>omit_obvious_property_types</code> <a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/pull/143">143</a></li> <li>feat: add <code>specify_nonobvious_property_types</code> <a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/pull/143">143</a></li> <li>feat: add <code>strict_top_level_inference</code> <a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/pull/143">143</a></li> <li>feat: add <code>unnecessary_underscores</code> <a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/pull/143">143</a></li> <li>feat: remove <code>require_trailing_commas</code> <a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/pull/143">143</a></li> </ul> <h1>7.0.0</h1> <ul> <li>chore: release 7.0.0-dev.1</li> </ul> <h1>7.0.0-dev.1</h1> <ul> <li>feat: add <code>document_ignores</code> <a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/pull/125">125</a></li> <li>feat: remove <code>avoid_null_checks_in_equality_operators</code> <a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/pull/124">124</a></li> <li>feat: add avoid_catches_without_on_clauses <a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/pull/123">123</a></li> <li>feat: add invalid_runtime_check_with_js_interop_types <a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/pull/122">122</a></li> <li>feat: add unintended_html_in_doc_comment <a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/pull/121">121</a></li> <li>chore: Remove the package_api_docs lint in next release <a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/pull/118">118</a></li> <li>feat: update lints for Dart 3.5 <a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/pull/111">111</a></li> <li>docs: update exclusion reasons <a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/pull/109">109</a></li> <li>docs: update commands in contributing <a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/pull/110">110</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/VeryGoodOpenSource/very_good_analysis/commits">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) You can trigger a rebase of this PR 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> > **Note** > Automatic rebases have been disabled on this pull request as it has been open for over 30 days. Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Alexander Thiele <[email protected]> Co-authored-by: Gabriel <[email protected]>
Bumps [very_good_analysis](https://github.com/VeryGoodOpenSource/very_good_analysis) from 6.0.0 to 10.0.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/VeryGoodOpenSource/very_good_analysis/releases">very_good_analysis's releases</a>.</em></p> <blockquote> <h2>v10.0.0</h2> <h2><a href="https://github.com/VeryGoodOpenSource/very_good_analysis/compare/v10.0.0-rc.2...v10.0.1-rc.2">10.0.1-rc.2</a> (2025-09-19)</h2> <h3>Miscellaneous Chores</h3> <ul> <li>v10.0.0 (<a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/issues/170">#170</a>) (<a href="https://github.com/VeryGoodOpenSource/very_good_analysis/commit/7a889f9bf8e355494bd6cc808c8e4d5ad0295545">7a889f9</a>)</li> </ul> <h3>Docs</h3> <ul> <li>update exclusion table (<a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/issues/165">#165</a>) (<a href="https://github.com/VeryGoodOpenSource/very_good_analysis/commit/b9bc6f521e773e6e715e835f0d8640f18be0fcc2">b9bc6f5</a>)</li> <li>update exclusion table (<a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/issues/169">#169</a>) (<a href="https://github.com/VeryGoodOpenSource/very_good_analysis/commit/163d6ae95a07b3a87ec94ae6f5fc837b1e78a060">163d6ae</a>)</li> </ul> <h2>v10.0.0-rc.2</h2> <h2><a href="https://github.com/VeryGoodOpenSource/very_good_analysis/compare/v10.0.0-rc.1...v10.0.1-rc.1">10.0.1-rc.1</a> (2025-09-08)</h2> <h3>Miscellaneous Chores</h3> <ul> <li>remove diagnostic_describe_all_properties (<a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/issues/166">#166</a>) (<a href="https://github.com/VeryGoodOpenSource/very_good_analysis/commit/75422792114244117c13c3a5a427b20a20245fec">7542279</a>)</li> </ul> <h2>v10.0.0-rc.1</h2> <h2><a href="https://github.com/VeryGoodOpenSource/very_good_analysis/compare/v9.0.0...v10.0.0-rc.1">10.0.0-rc.1</a> (2025-08-22)</h2> <h3>Features</h3> <ul> <li>support Dart 3.9.0 (<a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/issues/162">#162</a>) (<a href="https://github.com/VeryGoodOpenSource/very_good_analysis/commit/44fab4952609b6b6807136cd9156ed5fa680e37e">44fab49</a>)</li> </ul> <h3>Docs</h3> <ul> <li>update <code>CONTRIBUTING.md</code> to explain how to add new lint rules (<a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/issues/156">#156</a>) (<a href="https://github.com/VeryGoodOpenSource/very_good_analysis/commit/447051a324ac232d5f2c0298449631ac87b09ad7">447051a</a>)</li> </ul> <h2>v9.0.0</h2> <h2>What's Changed</h2> <ul> <li>feat: support Dart 3.8.0 by <a href="https://github.com/wolfenrain"><code>@wolfenrain</code></a> in <a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/pull/152">VeryGoodOpenSource/very_good_analysis#152</a></li> <li>chore: release 9.0.0-rc.1 by <a href="https://github.com/marcossevilla"><code>@marcossevilla</code></a> in <a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/pull/154">VeryGoodOpenSource/very_good_analysis#154</a></li> <li>chore(deps): bump peter-evans/create-pull-request from 7.0.6 to 7.0.8 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/pull/139">VeryGoodOpenSource/very_good_analysis#139</a></li> <li>chore: release v9.0.0 by <a href="https://github.com/marcossevilla"><code>@marcossevilla</code></a> in <a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/pull/155">VeryGoodOpenSource/very_good_analysis#155</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/marcossevilla"><code>@marcossevilla</code></a> made their first contribution in <a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/pull/154">VeryGoodOpenSource/very_good_analysis#154</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/VeryGoodOpenSource/very_good_analysis/compare/v8.0.0...v9.0.0">https://github.com/VeryGoodOpenSource/very_good_analysis/compare/v8.0.0...v9.0.0</a></p> <h2>v9.0.0-rc.1</h2> <ul> <li>feat: support Dart 3.8.0 <a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/pull/152">152</a> <ul> <li>Now preserves old formatter trailing commas.</li> </ul> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/VeryGoodOpenSource/very_good_analysis/blob/main/CHANGELOG.md">very_good_analysis's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/VeryGoodOpenSource/very_good_analysis/compare/v9.0.0...v10.0.0">10.0.0</a> (2025-08-22)</h2> <h3>Features</h3> <ul> <li>support Dart 3.9.0 (<a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/issues/162">#162</a>) (<a href="https://github.com/VeryGoodOpenSource/very_good_analysis/commit/44fab4952609b6b6807136cd9156ed5fa680e37e">44fab49</a>)</li> </ul> <h3>Docs</h3> <ul> <li>update <code>CONTRIBUTING.md</code> to explain how to add new lint rules (<a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/issues/156">#156</a>) (<a href="https://github.com/VeryGoodOpenSource/very_good_analysis/commit/447051a324ac232d5f2c0298449631ac87b09ad7">447051a</a>)</li> </ul> <h2><a href="https://github.com/VeryGoodOpenSource/very_good_analysis/compare/v10.0.0-rc.2...v10.0.0">10.0.0-rc.2</a> (2025-09-19)</h2> <h3>Miscellaneous Chores</h3> <ul> <li>v10.0.0 (<a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/issues/170">#170</a>) (<a href="https://github.com/VeryGoodOpenSource/very_good_analysis/commit/7a889f9bf8e355494bd6cc808c8e4d5ad0295545">7a889f9</a>)</li> </ul> <h3>Docs</h3> <ul> <li>update exclusion table (<a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/issues/165">#165</a>) (<a href="https://github.com/VeryGoodOpenSource/very_good_analysis/commit/b9bc6f521e773e6e715e835f0d8640f18be0fcc2">b9bc6f5</a>)</li> <li>update exclusion table (<a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/issues/169">#169</a>) (<a href="https://github.com/VeryGoodOpenSource/very_good_analysis/commit/163d6ae95a07b3a87ec94ae6f5fc837b1e78a060">163d6ae</a>)</li> </ul> <h2><a href="https://github.com/VeryGoodOpenSource/very_good_analysis/compare/v10.0.0-rc.1...v10.0.0-rc.2">10.0.0-rc.1</a> (2025-09-08)</h2> <h3>Miscellaneous Chores</h3> <ul> <li>remove diagnostic_describe_all_properties (<a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/issues/166">#166</a>) (<a href="https://github.com/VeryGoodOpenSource/very_good_analysis/commit/75422792114244117c13c3a5a427b20a20245fec">7542279</a>)</li> </ul> <h2>9.0.0</h2> <ul> <li>chore(deps): bump peter-evans/create-pull-request from 7.0.6 to 7.0.8 <a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/pull/139">139</a></li> <li>chore: release 9.0.0-rc.1 <a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/pull/154">154</a></li> </ul> <h2>9.0.0-rc.1</h2> <ul> <li>feat: support Dart 3.8.0 <a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/pull/152">152</a></li> </ul> <h2>8.0.0</h2> <ul> <li>chore: release 8.0.0-rc.1</li> <li>fix: remove <code>omit_obvious_property_types</code> as it conflicts with <code>type_annotate_public_apis</code> <a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/pull/148">148</a></li> </ul> <h2>8.0.0-rc.1</h2> <ul> <li>feat: add <code>omit_obvious_property_types</code> <a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/pull/143">143</a></li> <li>feat: add <code>specify_nonobvious_property_types</code> <a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/pull/143">143</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/VeryGoodOpenSource/very_good_analysis/commit/abae958c223dd3bf6f39417a8e27e9d35b797653"><code>abae958</code></a> chore: 10.0.0 (<a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/issues/168">#168</a>)</li> <li><a href="https://github.com/VeryGoodOpenSource/very_good_analysis/commit/163d6ae95a07b3a87ec94ae6f5fc837b1e78a060"><code>163d6ae</code></a> docs: update exclusion table (<a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/issues/169">#169</a>)</li> <li><a href="https://github.com/VeryGoodOpenSource/very_good_analysis/commit/7a889f9bf8e355494bd6cc808c8e4d5ad0295545"><code>7a889f9</code></a> chore: v10.0.0 (<a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/issues/170">#170</a>)</li> <li><a href="https://github.com/VeryGoodOpenSource/very_good_analysis/commit/b9bc6f521e773e6e715e835f0d8640f18be0fcc2"><code>b9bc6f5</code></a> docs: update exclusion table (<a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/issues/165">#165</a>)</li> <li><a href="https://github.com/VeryGoodOpenSource/very_good_analysis/commit/64d46d4c49458c6f966c20c316851ba7a3fe5421"><code>64d46d4</code></a> chore: 10.0.0-rc.2 (<a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/issues/167">#167</a>)</li> <li><a href="https://github.com/VeryGoodOpenSource/very_good_analysis/commit/75422792114244117c13c3a5a427b20a20245fec"><code>7542279</code></a> chore: remove diagnostic_describe_all_properties (<a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/issues/166">#166</a>)</li> <li><a href="https://github.com/VeryGoodOpenSource/very_good_analysis/commit/b5ac11fa074d5233ac52354d725a174f5b85f893"><code>b5ac11f</code></a> chore: 10.0.0-rc.1 (<a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/issues/163">#163</a>)</li> <li><a href="https://github.com/VeryGoodOpenSource/very_good_analysis/commit/44fab4952609b6b6807136cd9156ed5fa680e37e"><code>44fab49</code></a> feat: support Dart 3.9.0 (<a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/issues/162">#162</a>)</li> <li><a href="https://github.com/VeryGoodOpenSource/very_good_analysis/commit/394db3e70b43ee999b70299b2ec8957d419f0438"><code>394db3e</code></a> ci: automate releases (<a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/issues/161">#161</a>)</li> <li><a href="https://github.com/VeryGoodOpenSource/very_good_analysis/commit/7b45e8a1e4c93b9105d921366f117b9b4d6aad36"><code>7b45e8a</code></a> feat: automate deprecated lint rules (<a href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/issues/158">#158</a>)</li> <li>Additional commits viewable in <a href="https://github.com/VeryGoodOpenSource/very_good_analysis/compare/v6.0.0...v10.0.0">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] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Gabriel <[email protected]>
Bumps [melos](https://github.com/invertase/melos/tree/main/packages) from 6.3.3 to 7.1.1. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/invertase/melos/blob/main/CHANGELOG.md">melos's changelog</a>.</em></p> <blockquote> <h4><code>melos</code> - <code>v7.1.1</code></h4> <ul> <li><strong>FIX</strong>: Allow underscore as packagename (<a href="https://redirect.github.com/invertase/melos/issues/936">#936</a>). (<a href="https://github.com/invertase/melos/commit/8cae3163c886d2baa77750827590989401ea6705">8cae3163</a>)</li> </ul> <h2>2025-08-21</h2> <h3>Changes</h3> <hr /> <p>Packages with breaking changes:</p> <ul> <li>There are no breaking changes in this release.</li> </ul> <p>Packages with other changes:</p> <ul> <li><a href="https://github.com/invertase/melos/blob/main/#melos---v710"><code>melos</code> - <code>v7.1.0</code></a></li> </ul> <hr /> <h4><code>melos</code> - <code>v7.1.0</code></h4> <ul> <li><strong>FEAT</strong>: Add useRootAsPackage for Melos 7.x root package support (<a href="https://redirect.github.com/invertase/melos/issues/927">#927</a>). (<a href="https://github.com/invertase/melos/commit/ade8443d7194dc3c6caa124467eb6af498364974">ade8443d</a>)</li> </ul> <h2>2025-08-15</h2> <h3>Changes</h3> <hr /> <p>Packages with breaking changes:</p> <ul> <li><a href="https://github.com/invertase/melos/blob/main/#melos---v700"><code>melos</code> - <code>v7.0.0</code></a></li> </ul> <hr /> <h4><code>melos</code> - <code>v7.0.0</code></h4> <p>This version has all the changes from the <code>7.0.0-dev.x</code> releases, and is the first stable release of Melos that uses the Pub workspaces feature.</p> <blockquote> <p>Note: This release has breaking changes.</p> </blockquote> <ul> <li><strong>FIX</strong>: Update to Dart SDK 3.8.0 and preserve trailing commas (<a href="https://redirect.github.com/invertase/melos/issues/908">#908</a>). (<a href="https://github.com/invertase/melos/commit/eecfa4ea7caff55a58ad98d712213320285a0039">eecfa4ea</a>)</li> <li><strong>FIX</strong>: Tags from origin should be source of truth (<a href="https://redirect.github.com/invertase/melos/issues/902">#902</a>). (<a href="https://github.com/invertase/melos/commit/9589803c6bba66a65aa1263c0028d6f66f31c0b2">9589803c</a>)</li> <li><strong>DOCS</strong>: add flutter_chat_ui (<a href="https://redirect.github.com/invertase/melos/issues/903">#903</a>). (<a href="https://github.com/invertase/melos/commit/190caf741280401385fc0a6e309419c1d5e37417">190caf74</a>)</li> <li><strong>DOCS</strong>: add starknet.dart in projects list (<a href="https://redirect.github.com/invertase/melos/issues/896">#896</a>). (<a href="https://github.com/invertase/melos/commit/9faa3152547235e13225caf97c75b2e27c9d1980">9faa3152</a>)</li> <li><strong>FIX</strong>: Fail early on steps and return error code (<a href="https://redirect.github.com/invertase/melos/issues/891">#891</a>). (<a href="https://github.com/invertase/melos/commit/7161ce8fd8703b628c798cd17abc933817338110">7161ce8f</a>)</li> <li><strong>DOCS</strong>: add jaspr to projects (<a href="https://redirect.github.com/invertase/melos/issues/881">#881</a>). (<a href="https://github.com/invertase/melos/commit/926b62158b5d400fdbd2f9c342b379e0545f04f9">926b6215</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/invertase/melos/commit/233f203ac416705515e8b45de1323f08b203637e"><code>233f203</code></a> chore(release): publish packages</li> <li><a href="https://github.com/invertase/melos/commit/8cae3163c886d2baa77750827590989401ea6705"><code>8cae316</code></a> fix: Allow underscore as packagename (<a href="https://github.com/invertase/melos/tree/main/packages/issues/936">#936</a>)</li> <li><a href="https://github.com/invertase/melos/commit/ae52b58eea25a75d876ca9d33454469a7264af92"><code>ae52b58</code></a> chore(release): Publish Melos v7.1.0 (<a href="https://github.com/invertase/melos/tree/main/packages/issues/928">#928</a>)</li> <li><a href="https://github.com/invertase/melos/commit/ade8443d7194dc3c6caa124467eb6af498364974"><code>ade8443</code></a> feat: Add useRootAsPackage for Melos 7.x root package support (<a href="https://github.com/invertase/melos/tree/main/packages/issues/927">#927</a>)</li> <li><a href="https://github.com/invertase/melos/commit/df0c92ed8108b5161a827b21f69fbfcb1b437467"><code>df0c92e</code></a> chore(release): Publish Melos v7.0.0 (<a href="https://github.com/invertase/melos/tree/main/packages/issues/922">#922</a>)</li> <li><a href="https://github.com/invertase/melos/commit/c32ddfc91f3bf4409ad11d6541430ddd1f828610"><code>c32ddfc</code></a> Chore/bump versions (<a href="https://github.com/invertase/melos/tree/main/packages/issues/921">#921</a>)</li> <li><a href="https://github.com/invertase/melos/commit/4b840c7d090ba6dbddb6473c119f4e02055ddb81"><code>4b840c7</code></a> fix: Avoid duplicated "Change Log" file header on Windows due to CRLF (closes...</li> <li><a href="https://github.com/invertase/melos/commit/fcb787dfbd01f6c8ad6a15cf8e11a8e79082868d"><code>fcb787d</code></a> chore(release): publish packages (<a href="https://github.com/invertase/melos/tree/main/packages/issues/909">#909</a>)</li> <li><a href="https://github.com/invertase/melos/commit/eecfa4ea7caff55a58ad98d712213320285a0039"><code>eecfa4e</code></a> fix: Update to Dart SDK 3.8.0 and preserve trailing commas (<a href="https://github.com/invertase/melos/tree/main/packages/issues/908">#908</a>)</li> <li><a href="https://github.com/invertase/melos/commit/190caf741280401385fc0a6e309419c1d5e37417"><code>190caf7</code></a> docs: add flutter_chat_ui (<a href="https://github.com/invertase/melos/tree/main/packages/issues/903">#903</a>)</li> <li>Additional commits viewable in <a href="https://github.com/invertase/melos/commits/melos-v7.1.1/packages">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] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Gabriel <[email protected]> Co-authored-by: Gabriel Palmisano <[email protected]>
Closes issue #622. TODO and changes list - [X] Android SDK `36` - [X] buildTools `36.0.0` - [X] JavaVersion `21` - [X] kotlin_version `2.1.0` - [X] AGP `8.12.0` --------- Co-authored-by: Copilot <[email protected]>
Co-authored-by: Joscha <[email protected]> Co-authored-by: Gabriel <[email protected]> Co-authored-by: Copilot <[email protected]> Co-authored-by: Gabriel Palmisano <[email protected]>
The offline region downloads don't seem to work with the demo style due to them being hosted on Github pages. There is always a hard crash somewhere in native code (maplibre-native) on both iOS and Android. Fixes #183 Co-authored-by: Gabriel <[email protected]>
Added missing checks which caused crashes in certain situations on Android. This is probably an issue on iOS as well, but I don't have access to my Mac at the moment. I'll open a separate PR for iOS if I am able to confirm and fix this. --------- Co-authored-by: Gabriel <[email protected]> Co-authored-by: Gabriel Palmisano <[email protected]>
…0 in /maplibre_gl/android in the gradle-plugin group (#632) Bumps the gradle-plugin group in /maplibre_gl/android with 1 update: com.android.tools.build:gradle. Updates `com.android.tools.build:gradle` from 8.12.0 to 8.13.0 [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps the root-runtime-deps group with 4 updates: [device_info_plus](https://github.com/fluttercommunity/plus_plugins/tree/main/packages/device_info_plus), [flutter_hooks](https://github.com/rrousselGit/flutter_hooks/tree/master/packages), [js](https://github.com/dart-lang/sdk/tree/main/pkg) and [location](https://github.com/Lyokone/flutterlocation). Updates `device_info_plus` from 11.5.0 to 12.1.0 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/fluttercommunity/plus_plugins/commit/19138be669ec879f85ce3a0d8be66c0670a34f33"><code>19138be</code></a> chore(release): prepare for release (<a href="https://github.com/fluttercommunity/plus_plugins/tree/main/packages/device_info_plus/issues/3678">#3678</a>)</li> <li><a href="https://github.com/fluttercommunity/plus_plugins/commit/80eb98156aed96fbc214736964724604e9c80b4f"><code>80eb981</code></a> feat(device_info_plus): add mapping for new iPhone 17 series models (<a href="https://github.com/fluttercommunity/plus_plugins/tree/main/packages/device_info_plus/issues/3676">#3676</a>)</li> <li><a href="https://github.com/fluttercommunity/plus_plugins/commit/1d2990288799eef1e6c1c00e3ae7d8eb11be2564"><code>1d29902</code></a> chore(release): prepare for release (<a href="https://github.com/fluttercommunity/plus_plugins/tree/main/packages/device_info_plus/issues/3675">#3675</a>)</li> <li><a href="https://github.com/fluttercommunity/plus_plugins/commit/d0fdc582e8187f71522678e19b6329221b5f535d"><code>d0fdc58</code></a> refactor(device_info_plus)!: remove <code>serialNumber</code> property (<a href="https://github.com/fluttercommunity/plus_plugins/tree/main/packages/device_info_plus/issues/3663">#3663</a>)</li> <li><a href="https://github.com/fluttercommunity/plus_plugins/commit/32528e7f852893dd4448c448096e459e1950c7e4"><code>32528e7</code></a> feat(device_info_plus)!: Change Android compile SDK, update Android build con...</li> <li><a href="https://github.com/fluttercommunity/plus_plugins/commit/72b6234c25315c30d8efc9f15a9258b0bb7273a8"><code>72b6234</code></a> docs(all): replace MacOS by macOS in package READMEs (<a href="https://github.com/fluttercommunity/plus_plugins/tree/main/packages/device_info_plus/issues/3658">#3658</a>)</li> <li>See full diff in <a href="https://github.com/fluttercommunity/plus_plugins/commits/device_info_plus-v12.1.0/packages/device_info_plus">compare view</a></li> </ul> </details> <br /> Updates `flutter_hooks` from 0.20.5 to 0.21.3+1 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rrousselGit/flutter_hooks/commit/da69b88010b41cb267f7b9227adce4c89f984d6c"><code>da69b88</code></a> flutter_hooks : 0.21.2 -> 0.21.3</li> <li><a href="https://github.com/rrousselGit/flutter_hooks/commit/c5c5f19928dd6d3743deaae310f907b44c632631"><code>c5c5f19</code></a> Changelog</li> <li><a href="https://github.com/rrousselGit/flutter_hooks/commit/571826acfaeb672db256594fc659eae00cb59c91"><code>571826a</code></a> Merge pull request <a href="https://github.com/rrousselGit/flutter_hooks/tree/master/packages/issues/476">#476</a> from gabber235/master</li> <li><a href="https://github.com/rrousselGit/flutter_hooks/commit/caa480b5135ebe284eccec7b251bb641d1b691d0"><code>caa480b</code></a> Changelog</li> <li><a href="https://github.com/rrousselGit/flutter_hooks/commit/c221c829bb01ffb09ea5f5a0ac3ffc4d979b8562"><code>c221c82</code></a> Format</li> <li><a href="https://github.com/rrousselGit/flutter_hooks/commit/90a71113d8ded55f8a57a2f846c4f1d766200343"><code>90a7111</code></a> Merge branch 'master' of <a href="https://github.com/rrousselGit/flutter_hooks">https://github.com/rrousselGit/flutter_hooks</a> into pr...</li> <li><a href="https://github.com/rrousselGit/flutter_hooks/commit/e8e0e5c483c748afbf528b297daa7d5f887d06d4"><code>e8e0e5c</code></a> Merge branch 'master' of <a href="https://github.com/rrousselGit/flutter_hooks">https://github.com/rrousselGit/flutter_hooks</a> into pr...</li> <li><a href="https://github.com/rrousselGit/flutter_hooks/commit/9fd49579f707ee8b6ed816054a97d52906df94ac"><code>9fd4957</code></a> feat: add descendantsAreTraversable parameter to useFocusNode</li> <li><a href="https://github.com/rrousselGit/flutter_hooks/commit/470968fd8e15652ee6d7ff47f6a66ad46f9d57d6"><code>470968f</code></a> Fix typo in test group name for useCupertinoTabController</li> <li><a href="https://github.com/rrousselGit/flutter_hooks/commit/97a3bef416cb503931ee657be15b148518fa8016"><code>97a3bef</code></a> Add tests for useCupertinoTabController functionality</li> <li>Additional commits viewable in <a href="https://github.com/rrousselGit/flutter_hooks/commits/flutter_hooks-v0.21.3/packages">compare view</a></li> </ul> </details> <br /> Updates `js` from 0.6.7 to 0.7.2 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dart-lang/sdk/commit/8f06fa4b8f5d49cab106e714d9bac180c875a90e"><code>8f06fa4</code></a> Version 0.7.2.0</li> <li><a href="https://github.com/dart-lang/sdk/commit/db3e4422e1f5abb5d14e64dd6323c1a4011a517f"><code>db3e442</code></a> Version 0.7.1.0</li> <li><a href="https://github.com/dart-lang/sdk/commit/dfff7719c2a23d7f1ff12b093e555d562e7f6d84"><code>dfff771</code></a> Version 0.7.0.0</li> <li><a href="https://github.com/dart-lang/sdk/commit/df6ae384cc5111eb3b5f570cd221d08ad38e53df"><code>df6ae38</code></a> Version 0.6.21.3</li> <li><a href="https://github.com/dart-lang/sdk/commit/ce57b84db597d9f3c808c869c1c03dd951300ef4"><code>ce57b84</code></a> Version 0.6.21.0</li> <li><a href="https://github.com/dart-lang/sdk/commit/c2e4ca3466ad16f36451a6a34bd78ba33d3b1e30"><code>c2e4ca3</code></a> svn merge -r 26292:26492 <a href="https://dart.googlecode.com/svn/branches/bleeding_ed">https://dart.googlecode.com/svn/branches/bleeding_ed</a>...</li> <li><a href="https://github.com/dart-lang/sdk/commit/0b2b0fe96823cf54f5dda8c88f6f762ee68068f9"><code>0b2b0fe</code></a> Version 0.6.19.0 .</li> <li><a href="https://github.com/dart-lang/sdk/commit/2c5963a4647fccba51c8866bc9574211988bd842"><code>2c5963a</code></a> Version 0.6.18.0 .</li> <li><a href="https://github.com/dart-lang/sdk/commit/61f7d41c120a7b94e8e6c46c6ae48e75f54cadfb"><code>61f7d41</code></a> Version 0.6.17.0 .</li> <li><a href="https://github.com/dart-lang/sdk/commit/e97cdf2914e1bf29d20a623e2d8a0820d88d5639"><code>e97cdf2</code></a> Version 0.6.16.0 .</li> <li>Additional commits viewable in <a href="https://github.com/dart-lang/sdk/commits/0.7.2.0/pkg">compare view</a></li> </ul> </details> <br /> Updates `location` from 5.0.3 to 8.0.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/Lyokone/flutterlocation/releases">location's releases</a>.</em></p> <blockquote> <h2>location-v8.0.1</h2> <p><a href="https://pub.dev/packages/location/changelog#801">See changelog on pub.dev</a></p> <h2>location-v8.0.0</h2> <p><a href="https://pub.dev/packages/location/changelog#800">See changelog on pub.dev</a></p> <h2>location-v7.0.1</h2> <p><a href="https://pub.dev/packages/location/changelog#701">See changelog on pub.dev</a></p> <h2>location-v7.0.0</h2> <p><a href="https://pub.dev/packages/location/changelog#700">See changelog on pub.dev</a></p> <h2>location-v6.0.2</h2> <p><a href="https://pub.dev/packages/location/changelog#602">See changelog on pub.dev</a></p> <h2>location-v6.0.1</h2> <p><a href="https://pub.dev/packages/location/changelog#601">See changelog on pub.dev</a></p> <h2>location_platform_interface-v6.0.1</h2> <p><a href="https://pub.dev/packages/location_platform_interface/changelog#601">See changelog on pub.dev</a></p> <h2>location_web-v6.0.1</h2> <p><a href="https://pub.dev/packages/location_web/changelog#601">See changelog on pub.dev</a></p> <h2>location-v6.0.0</h2> <p><a href="https://pub.dev/packages/location/changelog#600">See changelog on pub.dev</a></p> <h2>location_platform_interface-v6.0.0</h2> <p><a href="https://pub.dev/packages/location_platform_interface/changelog#600">See changelog on pub.dev</a></p> <h2>location_web-v6.0.0</h2> <p><a href="https://pub.dev/packages/location_web/changelog#600">See changelog on pub.dev</a></p> <h2>location_web-v5.0.4</h2> <p><a href="https://pub.dev/packages/location_web/changelog#504">See changelog on pub.dev</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/Lyokone/flutterlocation/commit/cd1a398e94fe5c1bdfbeadca1f29714e897711dd"><code>cd1a398</code></a> [location] release v8.0.1</li> <li><a href="https://github.com/Lyokone/flutterlocation/commit/5e14ae26d7f9f02c7a719b4d3f8276a055068565"><code>5e14ae2</code></a> [location_platform_interface] release v6.0.1</li> <li><a href="https://github.com/Lyokone/flutterlocation/commit/3d69b7472a06f61651163829357a03795bf8d972"><code>3d69b74</code></a> Updated coded example to reflect current code style conventions (<a href="https://redirect.github.com/Lyokone/flutterlocation/issues/1018">#1018</a>)</li> <li><a href="https://github.com/Lyokone/flutterlocation/commit/0c2dc2db7e853e56a54b0ea276ce1b3d6165ba60"><code>0c2dc2d</code></a> fix readme typo (<a href="https://redirect.github.com/Lyokone/flutterlocation/issues/1028">#1028</a>)</li> <li><a href="https://github.com/Lyokone/flutterlocation/commit/f1fa51b7b46724ca481eb14b5a97fcea42230093"><code>f1fa51b</code></a> Configure pausesLocationUpdatesAutomatically in iOS (Fixes Issue#951, Superse...</li> <li><a href="https://github.com/Lyokone/flutterlocation/commit/0e150d0e06446433e0c6890934ee3940f2e81f65"><code>0e150d0</code></a> location: bump version to 8.0.0</li> <li><a href="https://github.com/Lyokone/flutterlocation/commit/e54b67bdb2050195f7663d2fcd6d888fd75b16fe"><code>e54b67b</code></a> location_web: bump version to 6.0.0</li> <li><a href="https://github.com/Lyokone/flutterlocation/commit/1f7e32852916d5367a8a0e3d0af8f77b455d1320"><code>1f7e328</code></a> periodical cleanup (<a href="https://redirect.github.com/Lyokone/flutterlocation/issues/952">#952</a>)</li> <li><a href="https://github.com/Lyokone/flutterlocation/commit/1ea4c4cf16f2da781964cf8abba28cc341c599a4"><code>1ea4c4c</code></a> Merge pull request <a href="https://redirect.github.com/Lyokone/flutterlocation/issues/1007">#1007</a> from Carapacik/master</li> <li><a href="https://github.com/Lyokone/flutterlocation/commit/3e6bfe02f9b880640513db70bd508289945405e9"><code>3e6bfe0</code></a> Merge pull request <a href="https://redirect.github.com/Lyokone/flutterlocation/issues/972">#972</a> from Leffe108/fix/notification-docs</li> <li>Additional commits viewable in <a href="https://github.com/Lyokone/flutterlocation/compare/location-v5.0.3...location-v8.0.1">compare view</a></li> </ul> </details> <br /> Updates `location` from 5.0.3 to 8.0.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/Lyokone/flutterlocation/releases">location's releases</a>.</em></p> <blockquote> <h2>location-v8.0.1</h2> <p><a href="https://pub.dev/packages/location/changelog#801">See changelog on pub.dev</a></p> <h2>location-v8.0.0</h2> <p><a href="https://pub.dev/packages/location/changelog#800">See changelog on pub.dev</a></p> <h2>location-v7.0.1</h2> <p><a href="https://pub.dev/packages/location/changelog#701">See changelog on pub.dev</a></p> <h2>location-v7.0.0</h2> <p><a href="https://pub.dev/packages/location/changelog#700">See changelog on pub.dev</a></p> <h2>location-v6.0.2</h2> <p><a href="https://pub.dev/packages/location/changelog#602">See changelog on pub.dev</a></p> <h2>location-v6.0.1</h2> <p><a href="https://pub.dev/packages/location/changelog#601">See changelog on pub.dev</a></p> <h2>location_platform_interface-v6.0.1</h2> <p><a href="https://pub.dev/packages/location_platform_interface/changelog#601">See changelog on pub.dev</a></p> <h2>location_web-v6.0.1</h2> <p><a href="https://pub.dev/packages/location_web/changelog#601">See changelog on pub.dev</a></p> <h2>location-v6.0.0</h2> <p><a href="https://pub.dev/packages/location/changelog#600">See changelog on pub.dev</a></p> <h2>location_platform_interface-v6.0.0</h2> <p><a href="https://pub.dev/packages/location_platform_interface/changelog#600">See changelog on pub.dev</a></p> <h2>location_web-v6.0.0</h2> <p><a href="https://pub.dev/packages/location_web/changelog#600">See changelog on pub.dev</a></p> <h2>location_web-v5.0.4</h2> <p><a href="https://pub.dev/packages/location_web/changelog#504">See changelog on pub.dev</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/Lyokone/flutterlocation/commit/cd1a398e94fe5c1bdfbeadca1f29714e897711dd"><code>cd1a398</code></a> [location] release v8.0.1</li> <li><a href="https://github.com/Lyokone/flutterlocation/commit/5e14ae26d7f9f02c7a719b4d3f8276a055068565"><code>5e14ae2</code></a> [location_platform_interface] release v6.0.1</li> <li><a href="https://github.com/Lyokone/flutterlocation/commit/3d69b7472a06f61651163829357a03795bf8d972"><code>3d69b74</code></a> Updated coded example to reflect current code style conventions (<a href="https://redirect.github.com/Lyokone/flutterlocation/issues/1018">#1018</a>)</li> <li><a href="https://github.com/Lyokone/flutterlocation/commit/0c2dc2db7e853e56a54b0ea276ce1b3d6165ba60"><code>0c2dc2d</code></a> fix readme typo (<a href="https://redirect.github.com/Lyokone/flutterlocation/issues/1028">#1028</a>)</li> <li><a href="https://github.com/Lyokone/flutterlocation/commit/f1fa51b7b46724ca481eb14b5a97fcea42230093"><code>f1fa51b</code></a> Configure pausesLocationUpdatesAutomatically in iOS (Fixes Issue#951, Superse...</li> <li><a href="https://github.com/Lyokone/flutterlocation/commit/0e150d0e06446433e0c6890934ee3940f2e81f65"><code>0e150d0</code></a> location: bump version to 8.0.0</li> <li><a href="https://github.com/Lyokone/flutterlocation/commit/e54b67bdb2050195f7663d2fcd6d888fd75b16fe"><code>e54b67b</code></a> location_web: bump version to 6.0.0</li> <li><a href="https://github.com/Lyokone/flutterlocation/commit/1f7e32852916d5367a8a0e3d0af8f77b455d1320"><code>1f7e328</code></a> periodical cleanup (<a href="https://redirect.github.com/Lyokone/flutterlocation/issues/952">#952</a>)</li> <li><a href="https://github.com/Lyokone/flutterlocation/commit/1ea4c4cf16f2da781964cf8abba28cc341c599a4"><code>1ea4c4c</code></a> Merge pull request <a href="https://redirect.github.com/Lyokone/flutterlocation/issues/1007">#1007</a> from Carapacik/master</li> <li><a href="https://github.com/Lyokone/flutterlocation/commit/3e6bfe02f9b880640513db70bd508289945405e9"><code>3e6bfe0</code></a> Merge pull request <a href="https://redirect.github.com/Lyokone/flutterlocation/issues/972">#972</a> from Leffe108/fix/notification-docs</li> <li>Additional commits viewable in <a href="https://github.com/Lyokone/flutterlocation/compare/location-v5.0.3...location-v8.0.1">compare view</a></li> </ul> </details> <br /> 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 <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR updates various package dependencies as part of the 0.23.0 release. The changes focus on updating Android build tools and Flutter/Dart package dependencies to newer versions.
- Updated Android Gradle plugin from 8.12.0 to 8.13.0
- Updated several Flutter package dependencies including js, device_info_plus, flutter_hooks, and location packages
- Simplified js package version constraint from range to caret notation
Reviewed Changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| maplibre_gl_web/pubspec.yaml | Updated js package constraint to use caret notation with version 0.7.2 |
| maplibre_gl_example/pubspec.yaml | Updated multiple package dependencies to newer versions |
| maplibre_gl/android/build.gradle | Updated Android Gradle plugin to version 8.13.0 |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
No description provided.