Skip to content

Rebased our fork on top of latest Flutter Maplibre GL v0.26.0 (DT-4798)#6

Draft
albertmoravec wants to merge 15 commits into
mainfrom
rebase-v0.26.0
Draft

Rebased our fork on top of latest Flutter Maplibre GL v0.26.0 (DT-4798)#6
albertmoravec wants to merge 15 commits into
mainfrom
rebase-v0.26.0

Conversation

@albertmoravec

Copy link
Copy Markdown
Collaborator

Basically what the title says - I tried to manually resolve all merge conflicts the best I can.

Once tested to be working with Dronemap and our apps, main branch should be forced to this PR's branch.

gabbopalma and others added 15 commits April 24, 2026 15:47
#### Version 0.26.0 marks a milestone for `flutter-maplibre-gl`
This release resolves numerous long-standing bugs accumulated over the
years and completes the transition to **WASM compilation** for the web
platform, ensuring full compatibility with Flutter's modern web
toolchain.\
It also introduces a new Example App for users to explore the latest
features - see [maplibre_gl_example](maplibre_gl_example/) for details.

Closes maplibre#710.

### Breaking
* `initialCameraPosition` is now nullable to support style-defined
camera options (maplibre#769).
* Removed `LocationEngineAndroidProperties`. All fields flattened into
`LocationEnginePlatforms` with nullable platform-specific fields.\
Use Platform-specific constructors: `LocationEnginePlatforms.android()`,
`.iOS()`, `.web()` instead.
* Removed deprecated typedefs: `MaplibreMapController`, `MaplibreMap`,
`MaplibreStyles`. Use `MapLibreMapController`, `MapLibreMap`,
`MapLibreStyles` instead.
* Removed deprecated callback: `onInfoWindowTapped` from
`MapLibreMapController`.
* Removed deprecated methods: `removeImageSource` (use `removeSource`)
and `addLayerBelow` (use `addImageLayerBelow`).

### Added
* Cross-platform map snapshot functionality via `takeSnapshot()` (maplibre#726).
* `featureTapsTriggersMapClick` option to control whether feature taps
also trigger map click callbacks, defaults to `false` (maplibre#729).
* Fire `onMapClick` for all map taps, including after interactive
features (maplibre#707).
* Unit tests for core packages (maplibre#765).
* **Offline Regions**: richer control and observability over downloads
on Android and iOS (maplibre#795).
* `pauseOfflineRegionDownload` / `resumeOfflineRegionDownload` to
control in-progress downloads.
* `getOfflineRegionStatus` returning `OfflineRegionStatus` with resource
counts, bytes, progress and completion.
* `InProgress` events now carry `completedResourceCount`,
`requiredResourceCount`, and `completedResourceSize` for tile/byte
progress in addition to the percentage.
* `clearAmbientCache` and `resetOfflineDatabase` globals to evict
unpinned tiles or fully reset the offline DB (in-flight downloads are
terminated Dart-side before reset/deletion).
* `setOfflineMaxConcurrentRequests` to cap tile concurrency (total on
Android, per-host on both) and avoid upstream rate limiting.
* **clusterProperties**: Introduced native implementation of
`clusterProperties` for clustered GeoJSON sources. Both the simple
operator-string form (e.g. `{'sum': ['+', ['get', 'x']]}`) and the
explicit reduce-expression form are now applied natively; previously the
property was serialized from Dart but ignored by both native converters
(maplibre#792).
* **easeCamera interpolation**: `easeCamera` accepts an optional
`CameraAnimationInterpolation` to control the animation easing curve
(`linear`, `easeInOut`, `easeOut`, `fastOutLinearIn`). Use
`CameraAnimationInterpolation.linear` for smooth continuous tracking
(e.g. following a moving GPS target) without velocity discontinuities
between successive calls. Omitting the parameter preserves the previous
default behavior (maplibre#789).
* **iOS**: all four curves are supported exactly; `fastOutLinearIn` is
implemented via `CAMediaTimingFunction(controlPoints: 0.4, 0.0, 1.0,
1.0)` (Material Design cubic Bezier).
* **Android**: MapLibre Android only exposes a boolean easing flag on
`easeCamera`, so only `linear` is distinct — `easeInOut`, `easeOut`, and
`fastOutLinearIn` all map to the native ease-in/ease-out. See
`CameraAnimationInterpolation` dartdoc for per-value details.
* **Web**: `easeCamera` is now fully implemented via MapLibre GL JS
`map.easeTo({easing})`. Each interpolation value maps to a cubic-bezier
callback (`easeInOut` → `(0.42, 0, 0.58, 1)`, `easeOut` → `(0, 0, 0.58,
1)`, `fastOutLinearIn` → `(0.4, 0, 1, 1)`). Previously threw
`UnimplementedError`.
* **iOS**: Implemented `setMaximumFps` to control the preferred frame
rate (maplibre#739).
* **Android**: Google Mobile Services (GMS) Location Engine support
(maplibre#721).
* **Web**: Exposed `onMouseMove` and added feature state management
(`setFeatureState`, `getFeatureState`, `removeFeatureState`) (maplibre#718).
* **Web**: Added `getLayerVisibility`, web snapshot, and map sizing
features (maplibre#722).
* **Web**: Added Scale Control (maplibre#720).
* **iOS**: Location engine support — `enableHighAccuracy` and
`displacement` configurable via `LocationEnginePlatforms.iOS()`.
* **Web**: Location engine properties (`enableHighAccuracy`,
`maximumAge`, `timeout`) via `LocationEnginePlatforms.web()`.
* Platform-specific constructors for `LocationEnginePlatforms`:
`.android()`, `.iOS()`, `.web()`.

### Changed
* **Android**: Reduced MapLibre SDK logging verbosity to minimize log
spam (maplibre#752).
* **Android**: Enhanced GeoJSON source handling with type checks and
error logging (maplibre#764).
* **Android**: Check style exists and is loaded before adding a Layer
(maplibre#768).
* **Android**: Check source exists before adding (maplibre#734).
* **Android**: MapLibre Android SDK upgraded from 13.0.0 to 13.0.2,
switched to OpenGL renderer variant (`android-sdk-opengl`) for better
stability and performance on older devices.
* **iOS**: Updated project settings for UISceneDelegate compatibility
(maplibre#767).
* **iOS**: MapLibre iOS SDK upgraded from 6.19.1 to 6.25.1.
* **Web**: Upgraded MapLibre GL JS from 4.7.1 to
[5.24.0](https://github.com/maplibre/maplibre-gl-js/releases/tag/v5.21.0)
(maplibre#761, maplibre#651).
* **Web**: Migrated `preserveDrawingBuffer`, `antialias`, and
`failIfMajorPerformanceCaveat` from top-level `MapOptions` to
`canvasContextAttributes`.
* **Web**: Updated `on()`/`off()`/`once()` event methods to handle v5's
`Subscription` return type instead of map instance.
* **Web**: Removed obsolete `customAttribution` from `MapOptions` (now
part of `AttributionControl` options in v5).
* **GitHub Actions**: `actions/upload-artifact` updated from v6 to v7
(maplibre#748).
* Bumped Dart and melos version to latest (maplibre#762).
* Minimum Dart SDK version bumped from `3.5.0` to `3.7.0` (maplibre#762).
* Gradle wrapper updated to 9.4.0, Kotlin to 2.3.10, Android Gradle
Plugin to 9.1.0 (maplibre#753-maplibre#758).

### Fixed
* Fix data properties not being added to Annotation created in
AnnotationManager (maplibre#770).
* Fix double JSON encoding in layer properties causing Android/iOS type
errors (maplibre#747).
* **iOS**: `icon-text-fit-padding` insets now use the correct style-spec
order `[top, right, bottom, left]` — `left` and `right` were previously
swapped (maplibre#792).
* Fix `text-font` property handling on Android and iOS to correctly
accept font stacks as string arrays instead of only expressions.
* Fix `textFont` in `SymbolManager` to pass font names as a simple
string array, resolving rendering issues on native platforms.
* Add DEM encoding support (`terrarium`/`mapbox`) for raster-dem tile
sources on Android and iOS.
* Fix heatmap color expressions in example app to use proper
`Expressions.rgba`/`Expressions.rgb` syntax.
* **Android**: Fix map partially not responsive in split screen (maplibre#771).
* **Android**: GeoJSON source updates are now synchronous when drag is
enabled, preventing stale feature positions during drag interactions and
improved performance (maplibre#716).
* **Android**: Disabled texture mode by default and improved MapView
lifecycle management (maplibre#723).
* **Android**: Removed unnecessary `OfflineActivity` from
`AndroidManifest.xml` (maplibre#724).
* **Offline Regions**: retain download `StreamSubscription`s in a
module-level map so Dart's GC can't drop native events while a download
is paused (maplibre#795).
* **Android (Offline)**: throttle progress events to 100ms and discard
non-monotonic counts so cache-served bursts don't starve the isolate and
block pause taps; track in-flight downloads to support
pause/resume/status (maplibre#795).
* **iOS (Offline)**: track active `MLNOfflinePack` instances so
pause/resume/status operate on the live pack rather than reloading from
storage (maplibre#795).
* **iOS**: Deferred `onStyleLoaded` callback to avoid race conditions
(maplibre#719).
* **Web**: Improved `styleimagemissing` handling (maplibre#725).
* **Web**: Fixed JS Interop and WASM compilation in release mode (maplibre#714).
* **Web**: Fixed missing prototype on empty JS object created via
interop.
* **Web**: `removeLayer` and `removeSource` no longer throw when the
layer/source doesn't exist.
* **Web**: `setGeoJsonSource` returns early instead of crashing when the
source doesn't exist.
* **Web**: `GeolocateControl` now respects `MyLocationTrackingMode` and
triggers programmatically.
* **Example**: GPS location page. Fixed web permission check, wired
`onUserLocationUpdated`, web-specific tracking modes.
* **Example**: GeoJSON cluster. Added `['has', 'point_count']` filter to
fix null property errors on unclustered points.

**Full Changelog**:
[v0.25.0...v0.26.0](maplibre/flutter-maplibre-gl@v0.25.0...v0.26.0)

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: MichaelNeufeld <127945686+MichaelNeufeld@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Daniel Eichmueller <75301212+danieljosua1@users.noreply.github.com>
Co-authored-by: EyreFree <eyrefree@eyrefree.org>
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-authored-by: Skol <biggbest@gmail.com>
Bumps
[codecov/codecov-action](https://github.com/codecov/codecov-action) from
5 to 6.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/codecov/codecov-action/releases">codecov/codecov-action's
releases</a>.</em></p>
<blockquote>
<h2>v6.0.0</h2>
<h2>⚠️ This version introduces support for node24 which make cause
breaking changes for systems that do not currently support node24.
⚠️</h2>
<h2>What's Changed</h2>
<ul>
<li>Revert &quot;Revert &quot;build(deps): bump actions/github-script
from 7.0.1 to 8.0.0&quot;&quot; by <a
href="https://github.com/thomasrockhu-codecov"><code>@​thomasrockhu-codecov</code></a>
in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1929">codecov/codecov-action#1929</a></li>
<li>Th/6.0.0 by <a
href="https://github.com/thomasrockhu-codecov"><code>@​thomasrockhu-codecov</code></a>
in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1928">codecov/codecov-action#1928</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/codecov/codecov-action/compare/v5.5.4...v6.0.0">https://github.com/codecov/codecov-action/compare/v5.5.4...v6.0.0</a></p>
<h2>v5.5.4</h2>
<p>This is a mirror of <code>v5.5.2</code>. <code>v6</code> will be
released which requires <code>node24</code></p>
<h2>What's Changed</h2>
<ul>
<li>Revert &quot;build(deps): bump actions/github-script from 7.0.1 to
8.0.0&quot; by <a
href="https://github.com/thomasrockhu-codecov"><code>@​thomasrockhu-codecov</code></a>
in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1926">codecov/codecov-action#1926</a></li>
<li>chore(release): 5.5.4 by <a
href="https://github.com/thomasrockhu-codecov"><code>@​thomasrockhu-codecov</code></a>
in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1927">codecov/codecov-action#1927</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/codecov/codecov-action/compare/v5.5.3...v5.5.4">https://github.com/codecov/codecov-action/compare/v5.5.3...v5.5.4</a></p>
<h2>v5.5.3</h2>
<h2>What's Changed</h2>
<ul>
<li>build(deps): bump actions/github-script from 7.0.1 to 8.0.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot]
in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1874">codecov/codecov-action#1874</a></li>
<li>chore(release): bump to 5.5.3 by <a
href="https://github.com/thomasrockhu-codecov"><code>@​thomasrockhu-codecov</code></a>
in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1922">codecov/codecov-action#1922</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/codecov/codecov-action/compare/v5.5.2...v5.5.3">https://github.com/codecov/codecov-action/compare/v5.5.2...v5.5.3</a></p>
<h2>v5.5.2</h2>
<h2>What's Changed</h2>
<ul>
<li>check gpg only when skip-validation = false by <a
href="https://github.com/maxweng-sentry"><code>@​maxweng-sentry</code></a>
in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1894">codecov/codecov-action#1894</a></li>
<li>chore: <code>disable_search</code> alignment by <a
href="https://github.com/freemanzMrojo"><code>@​freemanzMrojo</code></a>
in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1881">codecov/codecov-action#1881</a></li>
<li>chore(release): 5.5.2 by <a
href="https://github.com/thomasrockhu-codecov"><code>@​thomasrockhu-codecov</code></a>
in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1902">codecov/codecov-action#1902</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a
href="https://github.com/maxweng-sentry"><code>@​maxweng-sentry</code></a>
made their first contribution in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1894">codecov/codecov-action#1894</a></li>
<li><a
href="https://github.com/freemanzMrojo"><code>@​freemanzMrojo</code></a>
made their first contribution in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1881">codecov/codecov-action#1881</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/codecov/codecov-action/compare/v5.5.1...v5.5.2">https://github.com/codecov/codecov-action/compare/v5.5.1...v5.5.2</a></p>
<h2>v5.5.1</h2>
<h2>What's Changed</h2>
<ul>
<li>build(deps): bump ossf/scorecard-action from 2.4.1 to 2.4.2 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot]
in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1833">codecov/codecov-action#1833</a></li>
<li>build(deps): bump github/codeql-action from 3.28.18 to 3.29.9 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot]
in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1861">codecov/codecov-action#1861</a></li>
<li>Document a <code>codecov-cli</code> version reference example by <a
href="https://github.com/webknjaz"><code>@​webknjaz</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1774">codecov/codecov-action#1774</a></li>
<li>docs: fix typo in README by <a
href="https://github.com/datalater"><code>@​datalater</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1866">codecov/codecov-action#1866</a></li>
<li>fix: update to use local app/ dir by <a
href="https://github.com/thomasrockhu-codecov"><code>@​thomasrockhu-codecov</code></a>
in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1872">codecov/codecov-action#1872</a></li>
<li>build(deps): bump github/codeql-action from 3.29.9 to 3.29.11 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot]
in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1867">codecov/codecov-action#1867</a></li>
<li>build(deps): bump actions/checkout from 4.2.2 to 5.0.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot]
in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1868">codecov/codecov-action#1868</a></li>
<li>fix: overwrite pr number on fork by <a
href="https://github.com/thomasrockhu-codecov"><code>@​thomasrockhu-codecov</code></a>
in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1871">codecov/codecov-action#1871</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md">codecov/codecov-action's
changelog</a>.</em></p>
<blockquote>
<h2>v5.5.2</h2>
<h3>What's Changed</h3>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/codecov/codecov-action/compare/v5.5.1..v5.5.2">https://github.com/codecov/codecov-action/compare/v5.5.1..v5.5.2</a></p>
<h2>v5.5.1</h2>
<h3>What's Changed</h3>
<ul>
<li>fix: overwrite pr number on fork by <a
href="https://github.com/thomasrockhu-codecov"><code>@​thomasrockhu-codecov</code></a>
in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1871">codecov/codecov-action#1871</a></li>
<li>build(deps): bump actions/checkout from 4.2.2 to 5.0.0 by
<code>@​app/dependabot</code> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1868">codecov/codecov-action#1868</a></li>
<li>build(deps): bump github/codeql-action from 3.29.9 to 3.29.11 by
<code>@​app/dependabot</code> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1867">codecov/codecov-action#1867</a></li>
<li>fix: update to use local app/ dir by <a
href="https://github.com/thomasrockhu-codecov"><code>@​thomasrockhu-codecov</code></a>
in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1872">codecov/codecov-action#1872</a></li>
<li>docs: fix typo in README by <a
href="https://github.com/datalater"><code>@​datalater</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1866">codecov/codecov-action#1866</a></li>
<li>Document a <code>codecov-cli</code> version reference example by <a
href="https://github.com/webknjaz"><code>@​webknjaz</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1774">codecov/codecov-action#1774</a></li>
<li>build(deps): bump github/codeql-action from 3.28.18 to 3.29.9 by
<code>@​app/dependabot</code> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1861">codecov/codecov-action#1861</a></li>
<li>build(deps): bump ossf/scorecard-action from 2.4.1 to 2.4.2 by
<code>@​app/dependabot</code> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1833">codecov/codecov-action#1833</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/codecov/codecov-action/compare/v5.5.0..v5.5.1">https://github.com/codecov/codecov-action/compare/v5.5.0..v5.5.1</a></p>
<h2>v5.5.0</h2>
<h3>What's Changed</h3>
<ul>
<li>feat: upgrade wrapper to 0.2.4 by <a
href="https://github.com/jviall"><code>@​jviall</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1864">codecov/codecov-action#1864</a></li>
<li>Pin actions/github-script by Git SHA by <a
href="https://github.com/martincostello"><code>@​martincostello</code></a>
in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1859">codecov/codecov-action#1859</a></li>
<li>fix: check reqs exist by <a
href="https://github.com/joseph-sentry"><code>@​joseph-sentry</code></a>
in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1835">codecov/codecov-action#1835</a></li>
<li>fix: Typo in README by <a
href="https://github.com/spalmurray"><code>@​spalmurray</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1838">codecov/codecov-action#1838</a></li>
<li>docs: Refine OIDC docs by <a
href="https://github.com/spalmurray"><code>@​spalmurray</code></a> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1837">codecov/codecov-action#1837</a></li>
<li>build(deps): bump github/codeql-action from 3.28.17 to 3.28.18 by
<code>@​app/dependabot</code> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1829">codecov/codecov-action#1829</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/codecov/codecov-action/compare/v5.4.3..v5.5.0">https://github.com/codecov/codecov-action/compare/v5.4.3..v5.5.0</a></p>
<h2>v5.4.3</h2>
<h3>What's Changed</h3>
<ul>
<li>build(deps): bump github/codeql-action from 3.28.13 to 3.28.17 by
<code>@​app/dependabot</code> in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1822">codecov/codecov-action#1822</a></li>
<li>fix: OIDC on forks by <a
href="https://github.com/joseph-sentry"><code>@​joseph-sentry</code></a>
in <a
href="https://redirect.github.com/codecov/codecov-action/pull/1823">codecov/codecov-action#1823</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/codecov/codecov-action/compare/v5.4.2..v5.4.3">https://github.com/codecov/codecov-action/compare/v5.4.2..v5.4.3</a></p>
<h2>v5.4.2</h2>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/codecov/codecov-action/commit/57e3a136b779b570ffcdbf80b3bdc90e7fab3de2"><code>57e3a13</code></a>
Th/6.0.0 (<a
href="https://redirect.github.com/codecov/codecov-action/issues/1928">#1928</a>)</li>
<li><a
href="https://github.com/codecov/codecov-action/commit/f67d33dda8a42b51c42a8318a1f66468119e898b"><code>f67d33d</code></a>
Revert &quot;Revert &quot;build(deps): bump actions/github-script from
7.0.1 to 8.0.0&quot;&quot;...</li>
<li>See full diff in <a
href="https://github.com/codecov/codecov-action/compare/v5...v6">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=codecov/codecov-action&package-manager=github_actions&previous-version=5&new-version=6)](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 show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Development

Successfully merging this pull request may close these issues.

3 participants