-
Notifications
You must be signed in to change notification settings - Fork 171
(chore) New release 0.23.0 #631
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
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 maplibre#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]>
…maplibre#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.
…re#623) 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 maplibre#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 maplibre#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]>
- Bump Android SDK and related libraries to latest versions - Update iOS podspec and Package.swift for compatibility
… and correcting package references
…, breaking changes, and fixes across all packages. Updated Podfile.lock
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 bumps the Flutter MapLibre plugin to version 0.23.0, delivering significant feature additions and breaking changes aligned with latest MapLibre Native versions.
- Runtime style switching APIs and hover interaction events for enhanced user experience
- MapLibre Native updates (Android 11.13.5, iOS 6.19.1) bringing PMTiles support and performance improvements
- Breaking changes to feature interaction callbacks and comprehensive naming/enum harmonization
Reviewed Changes
Copilot reviewed 108 out of 110 changed files in this pull request and generated 5 comments.
Show a summary per file
| File | Description |
|---|---|
| pubspec.yaml | Updates workspace configuration and melos scripts with dependency bumps |
| maplibre_gl/pubspec.yaml | Core plugin version bump to 0.23.0 with updated dependencies |
| maplibre_gl_web/pubspec.yaml | Web implementation version update and dependency alignment |
| maplibre_gl_platform_interface/pubspec.yaml | Platform interface version bump with new method signatures |
| maplibre_gl_example/pubspec.yaml | Example app dependency updates and configuration changes |
| scripts/pubspec.yaml | Code generation tooling updates and workspace integration |
| maplibre_gl/lib/src/controller.dart | Major refactor of feature interaction callbacks and new API methods |
| maplibre_gl_web/lib/src/maplibre_web_gl_platform.dart | Web platform implementation with style switching and interaction improvements |
| maplibre_gl/ios/maplibre_gl/Sources/maplibre_gl/MapLibreMapController.swift | iOS native implementation updates with new method handlers |
| maplibre_gl/android/src/main/java/org/maplibre/maplibregl/MapLibreMapController.java | Android native implementation with new API support |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
maplibre_gl/ios/maplibre_gl/Sources/maplibre_gl/MapLibreMapController.swift
Outdated
Show resolved
Hide resolved
maplibre_gl/ios/maplibre_gl/Sources/maplibre_gl/MapLibreMapController.swift
Show resolved
Hide resolved
Co-authored-by: Copilot <[email protected]>
…troller.swift Co-authored-by: Copilot <[email protected]>
…e, and contribution workflow. Enhance RELEASE.md with detailed versioning policy and pre-release checklist. Revise README.md for clarity on features, installation, and usage examples.
…hanges, new features, and improvements. Add acknowledgment for contributors and link to full changelog.
…ses, clarifying usage and properties
TODO List for this PR
13.0