Skip to content

Conversation

@ErwanJes
Copy link
Collaborator

@ErwanJes ErwanJes commented Jul 4, 2025

Syncing our no-web branch with the upstream to stay aligned with the latest development and fixes.

dependabot bot and others added 30 commits January 1, 2025 17:13
…xha#193)

Bumps the dependencies group in /docs with 3 updates:
[prism-react-renderer](https://github.com/FormidableLabs/prism-react-renderer),
[react](https://github.com/facebook/react/tree/HEAD/packages/react) and
[react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom).

Updates `prism-react-renderer` from 2.4.0 to 2.4.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/FormidableLabs/prism-react-renderer/releases">prism-react-renderer's
releases</a>.</em></p>
<blockquote>
<h2>[email protected]</h2>
<p>This release enables support for React Server Components 🚀</p>
<h2>What's Changed</h2>
<ul>
<li>Remove theme dictionary hook by <a
href="https://github.com/nlkluth"><code>@​nlkluth</code></a> in <a
href="https://redirect.github.com/FormidableLabs/prism-react-renderer/pull/252">FormidableLabs/prism-react-renderer#252</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/nlkluth"><code>@​nlkluth</code></a> made
their first contribution in <a
href="https://redirect.github.com/FormidableLabs/prism-react-renderer/pull/252">FormidableLabs/prism-react-renderer#252</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/FormidableLabs/prism-react-renderer/compare/[email protected]@2.4.1">https://github.com/FormidableLabs/prism-react-renderer/compare/[email protected]@2.4.1</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/FormidableLabs/prism-react-renderer/commit/67c7fbc1cd759fc12142470fc928a6fb3765f5df"><code>67c7fbc</code></a>
Merge pull request <a
href="https://redirect.github.com/FormidableLabs/prism-react-renderer/issues/253">#253</a>
from FormidableLabs/changeset-release/master</li>
<li><a
href="https://github.com/FormidableLabs/prism-react-renderer/commit/e9dfae6a299030cbd7bb5ffb8a07e4df92f35768"><code>e9dfae6</code></a>
Version Packages</li>
<li><a
href="https://github.com/FormidableLabs/prism-react-renderer/commit/53c411c5b9952d48efe244d3afb45f4a83a13015"><code>53c411c</code></a>
Merge pull request <a
href="https://redirect.github.com/FormidableLabs/prism-react-renderer/issues/252">#252</a>
from FormidableLabs/remove-theme-dictionary-hook</li>
<li><a
href="https://github.com/FormidableLabs/prism-react-renderer/commit/3cfe2397c95fa4bdc1ea7904bdd59e28293a1002"><code>3cfe239</code></a>
changelog</li>
<li><a
href="https://github.com/FormidableLabs/prism-react-renderer/commit/db43793737ad3f0954c07b59c5afd8375b6b0f4e"><code>db43793</code></a>
rm useref</li>
<li><a
href="https://github.com/FormidableLabs/prism-react-renderer/commit/9a6e47b039f7e87acee335d989cb797bfbe41d91"><code>9a6e47b</code></a>
refactor: rm useThemeDictionary</li>
<li>See full diff in <a
href="https://github.com/FormidableLabs/prism-react-renderer/compare/[email protected]@2.4.1">compare
view</a></li>
</ul>
</details>
<br />

Updates `react` from 18.3.1 to 19.0.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/facebook/react/releases">react's
releases</a>.</em></p>
<blockquote>
<h2>19.0.0 (December 5, 2024)</h2>
<p>Below is a list of all new features, APIs, deprecations, and breaking
changes. Read <a href="https://react.dev/blog/2024/04/25/react-19">React
19 release post</a> and <a
href="https://react.dev/blog/2024/04/25/react-19-upgrade-guide">React 19
upgrade guide</a> for more information.</p>
<blockquote>
<p>Note: To help make the upgrade to React 19 easier, we’ve published a
[email protected] release that is identical to 18.2 but adds warnings for
deprecated APIs and other changes that are needed for React 19. We
recommend upgrading to React 18.3.1 first to help identify any issues
before upgrading to React 19.</p>
</blockquote>
<h2>New Features</h2>
<h3>React</h3>
<ul>
<li>Actions: <code>startTransition</code> can now accept async
functions. Functions passed to <code>startTransition</code> are called
“Actions”. A given Transition can include one or more Actions which
update state in the background and update the UI with one commit. In
addition to updating state, Actions can now perform side effects
including async requests, and the Action will wait for the work to
finish before finishing the Transition. This feature allows Transitions
to include side effects like <code>fetch()</code> in the pending state,
and provides support for error handling, and optimistic updates.</li>
<li><code>useActionState</code>: is a new hook to order Actions inside
of a Transition with access to the state of the action, and the pending
state. It accepts a reducer that can call Actions, and the initial state
used for first render. It also accepts an optional string that is used
if the action is passed to a form <code>action</code> prop to support
progressive enhancement in forms.</li>
<li><code>useOptimistic</code>: is a new hook to update state while a
Transition is in progress. It returns the state, and a set function that
can be called inside a transition to “optimistically” update the state
to expected final value immediately while the Transition completes in
the background. When the transition finishes, the state is updated to
the new value.</li>
<li><code>use</code>: is a new API that allows reading resources in
render. In React 19, <code>use</code> accepts a promise or Context. If
provided a promise, <code>use</code> will suspend until a value is
resolved. <code>use</code> can only be used in render but can be called
conditionally.</li>
<li><code>ref</code> as a prop: Refs can now be used as props, removing
the need for <code>forwardRef</code>.</li>
<li><strong>Suspense sibling pre-warming</strong>: When a component
suspends, React will immediately commit the fallback of the nearest
Suspense boundary, without waiting for the entire sibling tree to
render. After the fallback commits, React will schedule another render
for the suspended siblings to “pre-warm” lazy requests.</li>
</ul>
<h3>React DOM Client</h3>
<ul>
<li><code>&lt;form&gt; action</code> prop: Form Actions allow you to
manage forms automatically and integrate with
<code>useFormStatus</code>. When a <code>&lt;form&gt; action</code>
succeeds, React will automatically reset the form for uncontrolled
components. The form can be reset manually with the new
<code>requestFormReset</code> API.</li>
<li><code>&lt;button&gt; and &lt;input&gt; formAction</code> prop:
Actions can be passed to the <code>formAction</code> prop to configure
form submission behavior. This allows using different Actions depending
on the input.</li>
<li><code>useFormStatus</code>: is a new hook that provides the status
of the parent <code>&lt;form&gt; action</code>, as if the form was a
Context provider. The hook returns the values: <code>pending</code>,
<code>data</code>, <code>method</code>, and <code>action</code>.</li>
<li>Support for Document Metadata: We’ve added support for rendering
document metadata tags in components natively. React will automatically
hoist them into the <code>&lt;head&gt;</code> section of the
document.</li>
<li>Support for Stylesheets: React 19 will ensure stylesheets are
inserted into the <code>&lt;head&gt;</code> on the client before
revealing the content of a Suspense boundary that depends on that
stylesheet.</li>
<li>Support for async scripts: Async scripts can be rendered anywhere in
the component tree and React will handle ordering and
deduplication.</li>
<li>Support for preloading resources: React 19 ships with
<code>preinit</code>, <code>preload</code>, <code>prefetchDNS</code>,
and <code>preconnect</code> APIs to optimize initial page loads by
moving discovery of additional resources like fonts out of stylesheet
loading. They can also be used to prefetch resources used by an
anticipated navigation.</li>
</ul>
<h3>React DOM Server</h3>
<ul>
<li>Added <code>prerender</code> and <code>prerenderToNodeStream</code>
APIs for static site generation. They are designed to work with
streaming environments like Node.js Streams and Web Streams. Unlike
<code>renderToString</code>, they wait for data to load for HTML
generation.</li>
</ul>
<h3>React Server Components</h3>
<ul>
<li>RSC features such as directives, server components, and server
functions are now stable. This means libraries that ship with Server
Components can now target React 19 as a peer dependency with a
react-server export condition for use in frameworks that support the
Full-stack React Architecture. The underlying APIs used to implement a
React Server Components bundler or framework do not follow semver and
may break between minors in React 19.x. See <a
href="https://19.react.dev/reference/rsc/server-components">docs</a> for
how to support React Server Components.</li>
</ul>
<h2>Deprecations</h2>
<ul>
<li>Deprecated: <code>element.ref</code> access: React 19 supports ref
as a prop, so we’re deprecating <code>element.ref</code> in favor of
<code>element.props.ref</code>. Accessing will result in a warning.</li>
<li><code>react-test-renderer</code>: In React 19, react-test-renderer
logs a deprecation warning and has switched to concurrent rendering for
web usage. We recommend migrating your tests to <a
href="https://github.com/testinglibrary"><code>@​testinglibrary</code></a>.com/docs/react-testing-library/intro/)
or <a
href="https://github.com/testingesting-library"><code>@​testingesting-library</code></a>.com/docs/react-native-testing-library/intro)</li>
</ul>
<h2>Breaking Changes</h2>
<p>React 19 brings in a number of breaking changes, including the
removals of long-deprecated APIs. We recommend first upgrading to
<code>18.3.1</code>, where we've added additional deprecation warnings.
Check out the <a
href="https://19.react.dev/blog/2024/04/25/react-19-upgrade-guide">upgrade
guide</a> for more details and guidance on codemodding.</p>
<h3>React</h3>
<ul>
<li>New JSX Transform is now required: We introduced <a
href="https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html">a
new JSX transform</a> in 2020 to improve bundle size and use JSX without
importing React. In React 19, we’re adding additional improvements like
using ref as a prop and JSX speed improvements that require the new
transform.</li>
<li>Errors in render are not re-thrown: Errors that are not caught by an
Error Boundary are now reported to window.reportError. Errors that are
caught by an Error Boundary are reported to console.error. We’ve
introduced <code>onUncaughtError</code> and <code>onCaughtError</code>
methods to <code>createRoot</code> and <code>hydrateRoot</code> to
customize this error handling.</li>
<li>Removed: <code>propTypes</code>: Using <code>propTypes</code> will
now be silently ignored. If required, we recommend migrating to
TypeScript or another type-checking solution.</li>
<li>Removed: <code>defaultProps</code> for functions: ES6 default
parameters can be used in place. Class components continue to support
<code>defaultProps</code> since there is no ES6 alternative.</li>
<li>Removed: <code>contextTypes</code> and <code>getChildContext</code>:
Legacy Context for class components has been removed in favor of the
<code>contextType</code> API.</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/facebook/react/blob/main/CHANGELOG.md">react's
changelog</a>.</em></p>
<blockquote>
<h2>19.0.0 (December 5, 2024)</h2>
<p>Below is a list of all new features, APIs, deprecations, and breaking
changes. Read <a href="https://react.dev/blog/2024/04/25/react-19">React
19 release post</a> and <a
href="https://react.dev/blog/2024/04/25/react-19-upgrade-guide">React 19
upgrade guide</a> for more information.</p>
<blockquote>
<p>Note: To help make the upgrade to React 19 easier, we’ve published a
[email protected] release that is identical to 18.2 but adds warnings for
deprecated APIs and other changes that are needed for React 19. We
recommend upgrading to React 18.3.1 first to help identify any issues
before upgrading to React 19.</p>
</blockquote>
<h3>New Features</h3>
<h4>React</h4>
<ul>
<li>Actions: <code>startTransition</code> can now accept async
functions. Functions passed to <code>startTransition</code> are called
“Actions”. A given Transition can include one or more Actions which
update state in the background and update the UI with one commit. In
addition to updating state, Actions can now perform side effects
including async requests, and the Action will wait for the work to
finish before finishing the Transition. This feature allows Transitions
to include side effects like <code>fetch()</code> in the pending state,
and provides support for error handling, and optimistic updates.</li>
<li><code>useActionState</code>: is a new hook to order Actions inside
of a Transition with access to the state of the action, and the pending
state. It accepts a reducer that can call Actions, and the initial state
used for first render. It also accepts an optional string that is used
if the action is passed to a form <code>action</code> prop to support
progressive enhancement in forms.</li>
<li><code>useOptimistic</code>: is a new hook to update state while a
Transition is in progress. It returns the state, and a set function that
can be called inside a transition to “optimistically” update the state
to expected final value immediately while the Transition completes in
the background. When the transition finishes, the state is updated to
the new value.</li>
<li><code>use</code>: is a new API that allows reading resources in
render. In React 19, <code>use</code> accepts a promise or Context. If
provided a promise, <code>use</code> will suspend until a value is
resolved. <code>use</code> can only be used in render but can be called
conditionally.</li>
<li><code>ref</code> as a prop: Refs can now be used as props, removing
the need for <code>forwardRef</code>.</li>
<li><strong>Suspense sibling pre-warming</strong>: When a component
suspends, React will immediately commit the fallback of the nearest
Suspense boundary, without waiting for the entire sibling tree to
render. After the fallback commits, React will schedule another render
for the suspended siblings to “pre-warm” lazy requests.</li>
</ul>
<h4>React DOM Client</h4>
<ul>
<li><code>&lt;form&gt; action</code> prop: Form Actions allow you to
manage forms automatically and integrate with
<code>useFormStatus</code>. When a <code>&lt;form&gt; action</code>
succeeds, React will automatically reset the form for uncontrolled
components. The form can be reset manually with the new
<code>requestFormReset</code> API.</li>
<li><code>&lt;button&gt; and &lt;input&gt; formAction</code> prop:
Actions can be passed to the <code>formAction</code> prop to configure
form submission behavior. This allows using different Actions depending
on the input.</li>
<li><code>useFormStatus</code>: is a new hook that provides the status
of the parent <code>&lt;form&gt; action</code>, as if the form was a
Context provider. The hook returns the values: <code>pending</code>,
<code>data</code>, <code>method</code>, and <code>action</code>.</li>
<li>Support for Document Metadata: We’ve added support for rendering
document metadata tags in components natively. React will automatically
hoist them into the <code>&lt;head&gt;</code> section of the
document.</li>
<li>Support for Stylesheets: React 19 will ensure stylesheets are
inserted into the <code>&lt;head&gt;</code> on the client before
revealing the content of a Suspense boundary that depends on that
stylesheet.</li>
<li>Support for async scripts: Async scripts can be rendered anywhere in
the component tree and React will handle ordering and
deduplication.</li>
<li>Support for preloading resources: React 19 ships with
<code>preinit</code>, <code>preload</code>, <code>prefetchDNS</code>,
and <code>preconnect</code> APIs to optimize initial page loads by
moving discovery of additional resources like fonts out of stylesheet
loading. They can also be used to prefetch resources used by an
anticipated navigation.</li>
</ul>
<h4>React DOM Server</h4>
<ul>
<li>Added <code>prerender</code> and <code>prerenderToNodeStream</code>
APIs for static site generation. They are designed to work with
streaming environments like Node.js Streams and Web Streams. Unlike
<code>renderToString</code>, they wait for data to load for HTML
generation.</li>
</ul>
<h4>React Server Components</h4>
<ul>
<li>RSC features such as directives, server components, and server
functions are now stable. This means libraries that ship with Server
Components can now target React 19 as a peer dependency with a
react-server export condition for use in frameworks that support the
Full-stack React Architecture. The underlying APIs used to implement a
React Server Components bundler or framework do not follow semver and
may break between minors in React 19.x. See <a
href="https://19.react.dev/reference/rsc/server-components">docs</a> for
how to support React Server Components.</li>
</ul>
<h3>Deprecations</h3>
<ul>
<li>Deprecated: <code>element.ref</code> access: React 19 supports ref
as a prop, so we’re deprecating <code>element.ref</code> in favor of
<code>element.props.ref</code>. Accessing will result in a warning.</li>
<li><code>react-test-renderer</code>: In React 19, react-test-renderer
logs a deprecation warning and has switched to concurrent rendering for
web usage. We recommend migrating your tests to <a
href="https://testing-library.com/docs/react-testing-library/intro/"><code>@​testing-library/react</code></a>
or <a
href="https://testing-library.com/docs/react-native-testing-library/intro"><code>@​testing-library/react-native</code></a></li>
</ul>
<h3>Breaking Changes</h3>
<p>React 19 brings in a number of breaking changes, including the
removals of long-deprecated APIs. We recommend first upgrading to
<code>18.3.1</code>, where we've added additional deprecation warnings.
Check out the <a
href="https://19.react.dev/blog/2024/04/25/react-19-upgrade-guide">upgrade
guide</a> for more details and guidance on codemodding.</p>
<h3>React</h3>
<ul>
<li>New JSX Transform is now required: We introduced <a
href="https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html">a
new JSX transform</a> in 2020 to improve bundle size and use JSX without
importing React. In React 19, we’re adding additional improvements like
using ref as a prop and JSX speed improvements that require the new
transform.</li>
<li>Errors in render are not re-thrown: Errors that are not caught by an
Error Boundary are now reported to window.reportError. Errors that are
caught by an Error Boundary are reported to console.error. We’ve
introduced <code>onUncaughtError</code> and <code>onCaughtError</code>
methods to <code>createRoot</code> and <code>hydrateRoot</code> to
customize this error handling.</li>
<li>Removed: <code>propTypes</code>: Using <code>propTypes</code> will
now be silently ignored. If required, we recommend migrating to
TypeScript or another type-checking solution.</li>
<li>Removed: <code>defaultProps</code> for functions: ES6 default
parameters can be used in place. Class components continue to support
<code>defaultProps</code> since there is no ES6 alternative.</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/facebook/react/commit/e1378902bbb322aa1fe1953780f4b2b5f80d26b1"><code>e137890</code></a>
[string-refs] cleanup string ref code (<a
href="https://github.com/facebook/react/tree/HEAD/packages/react/issues/31443">#31443</a>)</li>
<li><a
href="https://github.com/facebook/react/commit/d1f04722d617600cc6cd96dcebc1c2ef7affc904"><code>d1f0472</code></a>
[string-refs] remove enableLogStringRefsProd flag (<a
href="https://github.com/facebook/react/tree/HEAD/packages/react/issues/31414">#31414</a>)</li>
<li><a
href="https://github.com/facebook/react/commit/3dc1e4820ec985baa6668a4fa799760c4b99f5d9"><code>3dc1e48</code></a>
Followup: remove dead test code from <a
href="https://github.com/facebook/react/tree/HEAD/packages/react/issues/30346">#30346</a>
(<a
href="https://github.com/facebook/react/tree/HEAD/packages/react/issues/31415">#31415</a>)</li>
<li><a
href="https://github.com/facebook/react/commit/07aa494432e97f63fca9faf2fad6f76fead31063"><code>07aa494</code></a>
Remove enableRefAsProp feature flag (<a
href="https://github.com/facebook/react/tree/HEAD/packages/react/issues/30346">#30346</a>)</li>
<li><a
href="https://github.com/facebook/react/commit/45804af18d589fd2c181f3b020f07661c46b73ea"><code>45804af</code></a>
[flow] Eliminate usage of more than 1-arg
<code>React.AbstractComponent</code> in React ...</li>
<li><a
href="https://github.com/facebook/react/commit/5636fad840942cfea80301d91e931a50c6370d19"><code>5636fad</code></a>
[string-refs] log string ref from prod (<a
href="https://github.com/facebook/react/tree/HEAD/packages/react/issues/31161">#31161</a>)</li>
<li><a
href="https://github.com/facebook/react/commit/b78a7f2f35e554a8647c3262d7f392e68d06febc"><code>b78a7f2</code></a>
[rcr] Re-export useMemoCache in top level React namespace (<a
href="https://github.com/facebook/react/tree/HEAD/packages/react/issues/31139">#31139</a>)</li>
<li><a
href="https://github.com/facebook/react/commit/4e9540e3c2a8f9ae56318b967939c99b3a815190"><code>4e9540e</code></a>
[Fiber] Log the Render/Commit phases and the gaps in between (<a
href="https://github.com/facebook/react/tree/HEAD/packages/react/issues/31016">#31016</a>)</li>
<li><a
href="https://github.com/facebook/react/commit/d4688dfaafe51a4cb6e3c51fc2330662cb4e2296"><code>d4688df</code></a>
[Fiber] Track Event Time, startTransition Time and setState Time (<a
href="https://github.com/facebook/react/tree/HEAD/packages/react/issues/31008">#31008</a>)</li>
<li><a
href="https://github.com/facebook/react/commit/15da9174518f18f82869767ebe2a21be2fc8bd90"><code>15da917</code></a>
Don't read currentTransition back from internals (<a
href="https://github.com/facebook/react/tree/HEAD/packages/react/issues/30991">#30991</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/facebook/react/commits/v19.0.0/packages/react">compare
view</a></li>
</ul>
</details>
<br />

Updates `react-dom` from 18.3.1 to 19.0.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/facebook/react/releases">react-dom's
releases</a>.</em></p>
<blockquote>
<h2>19.0.0 (December 5, 2024)</h2>
<p>Below is a list of all new features, APIs, deprecations, and breaking
changes. Read <a href="https://react.dev/blog/2024/04/25/react-19">React
19 release post</a> and <a
href="https://react.dev/blog/2024/04/25/react-19-upgrade-guide">React 19
upgrade guide</a> for more information.</p>
<blockquote>
<p>Note: To help make the upgrade to React 19 easier, we’ve published a
[email protected] release that is identical to 18.2 but adds warnings for
deprecated APIs and other changes that are needed for React 19. We
recommend upgrading to React 18.3.1 first to help identify any issues
before upgrading to React 19.</p>
</blockquote>
<h2>New Features</h2>
<h3>React</h3>
<ul>
<li>Actions: <code>startTransition</code> can now accept async
functions. Functions passed to <code>startTransition</code> are called
“Actions”. A given Transition can include one or more Actions which
update state in the background and update the UI with one commit. In
addition to updating state, Actions can now perform side effects
including async requests, and the Action will wait for the work to
finish before finishing the Transition. This feature allows Transitions
to include side effects like <code>fetch()</code> in the pending state,
and provides support for error handling, and optimistic updates.</li>
<li><code>useActionState</code>: is a new hook to order Actions inside
of a Transition with access to the state of the action, and the pending
state. It accepts a reducer that can call Actions, and the initial state
used for first render. It also accepts an optional string that is used
if the action is passed to a form <code>action</code> prop to support
progressive enhancement in forms.</li>
<li><code>useOptimistic</code>: is a new hook to update state while a
Transition is in progress. It returns the state, and a set function that
can be called inside a transition to “optimistically” update the state
to expected final value immediately while the Transition completes in
the background. When the transition finishes, the state is updated to
the new value.</li>
<li><code>use</code>: is a new API that allows reading resources in
render. In React 19, <code>use</code> accepts a promise or Context. If
provided a promise, <code>use</code> will suspend until a value is
resolved. <code>use</code> can only be used in render but can be called
conditionally.</li>
<li><code>ref</code> as a prop: Refs can now be used as props, removing
the need for <code>forwardRef</code>.</li>
<li><strong>Suspense sibling pre-warming</strong>: When a component
suspends, React will immediately commit the fallback of the nearest
Suspense boundary, without waiting for the entire sibling tree to
render. After the fallback commits, React will schedule another render
for the suspended siblings to “pre-warm” lazy requests.</li>
</ul>
<h3>React DOM Client</h3>
<ul>
<li><code>&lt;form&gt; action</code> prop: Form Actions allow you to
manage forms automatically and integrate with
<code>useFormStatus</code>. When a <code>&lt;form&gt; action</code>
succeeds, React will automatically reset the form for uncontrolled
components. The form can be reset manually with the new
<code>requestFormReset</code> API.</li>
<li><code>&lt;button&gt; and &lt;input&gt; formAction</code> prop:
Actions can be passed to the <code>formAction</code> prop to configure
form submission behavior. This allows using different Actions depending
on the input.</li>
<li><code>useFormStatus</code>: is a new hook that provides the status
of the parent <code>&lt;form&gt; action</code>, as if the form was a
Context provider. The hook returns the values: <code>pending</code>,
<code>data</code>, <code>method</code>, and <code>action</code>.</li>
<li>Support for Document Metadata: We’ve added support for rendering
document metadata tags in components natively. React will automatically
hoist them into the <code>&lt;head&gt;</code> section of the
document.</li>
<li>Support for Stylesheets: React 19 will ensure stylesheets are
inserted into the <code>&lt;head&gt;</code> on the client before
revealing the content of a Suspense boundary that depends on that
stylesheet.</li>
<li>Support for async scripts: Async scripts can be rendered anywhere in
the component tree and React will handle ordering and
deduplication.</li>
<li>Support for preloading resources: React 19 ships with
<code>preinit</code>, <code>preload</code>, <code>prefetchDNS</code>,
and <code>preconnect</code> APIs to optimize initial page loads by
moving discovery of additional resources like fonts out of stylesheet
loading. They can also be used to prefetch resources used by an
anticipated navigation.</li>
</ul>
<h3>React DOM Server</h3>
<ul>
<li>Added <code>prerender</code> and <code>prerenderToNodeStream</code>
APIs for static site generation. They are designed to work with
streaming environments like Node.js Streams and Web Streams. Unlike
<code>renderToString</code>, they wait for data to load for HTML
generation.</li>
</ul>
<h3>React Server Components</h3>
<ul>
<li>RSC features such as directives, server components, and server
functions are now stable. This means libraries that ship with Server
Components can now target React 19 as a peer dependency with a
react-server export condition for use in frameworks that support the
Full-stack React Architecture. The underlying APIs used to implement a
React Server Components bundler or framework do not follow semver and
may break between minors in React 19.x. See <a
href="https://19.react.dev/reference/rsc/server-components">docs</a> for
how to support React Server Components.</li>
</ul>
<h2>Deprecations</h2>
<ul>
<li>Deprecated: <code>element.ref</code> access: React 19 supports ref
as a prop, so we’re deprecating <code>element.ref</code> in favor of
<code>element.props.ref</code>. Accessing will result in a warning.</li>
<li><code>react-test-renderer</code>: In React 19, react-test-renderer
logs a deprecation warning and has switched to concurrent rendering for
web usage. We recommend migrating your tests to <a
href="https://github.com/testinglibrary"><code>@​testinglibrary</code></a>.com/docs/react-testing-library/intro/)
or <a
href="https://github.com/testingesting-library"><code>@​testingesting-library</code></a>.com/docs/react-native-testing-library/intro)</li>
</ul>
<h2>Breaking Changes</h2>
<p>React 19 brings in a number of breaking changes, including the
removals of long-deprecated APIs. We recommend first upgrading to
<code>18.3.1</code>, where we've added additional deprecation warnings.
Check out the <a
href="https://19.react.dev/blog/2024/04/25/react-19-upgrade-guide">upgrade
guide</a> for more details and guidance on codemodding.</p>
<h3>React</h3>
<ul>
<li>New JSX Transform is now required: We introduced <a
href="https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html">a
new JSX transform</a> in 2020 to improve bundle size and use JSX without
importing React. In React 19, we’re adding additional improvements like
using ref as a prop and JSX speed improvements that require the new
transform.</li>
<li>Errors in render are not re-thrown: Errors that are not caught by an
Error Boundary are now reported to window.reportError. Errors that are
caught by an Error Boundary are reported to console.error. We’ve
introduced <code>onUncaughtError</code> and <code>onCaughtError</code>
methods to <code>createRoot</code> and <code>hydrateRoot</code> to
customize this error handling.</li>
<li>Removed: <code>propTypes</code>: Using <code>propTypes</code> will
now be silently ignored. If required, we recommend migrating to
TypeScript or another type-checking solution.</li>
<li>Removed: <code>defaultProps</code> for functions: ES6 default
parameters can be used in place. Class components continue to support
<code>defaultProps</code> since there is no ES6 alternative.</li>
<li>Removed: <code>contextTypes</code> and <code>getChildContext</code>:
Legacy Context for class components has been removed in favor of the
<code>contextType</code> API.</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/facebook/react/blob/main/CHANGELOG.md">react-dom's
changelog</a>.</em></p>
<blockquote>
<h2>19.0.0 (December 5, 2024)</h2>
<p>Below is a list of all new features, APIs, deprecations, and breaking
changes. Read <a href="https://react.dev/blog/2024/04/25/react-19">React
19 release post</a> and <a
href="https://react.dev/blog/2024/04/25/react-19-upgrade-guide">React 19
upgrade guide</a> for more information.</p>
<blockquote>
<p>Note: To help make the upgrade to React 19 easier, we’ve published a
[email protected] release that is identical to 18.2 but adds warnings for
deprecated APIs and other changes that are needed for React 19. We
recommend upgrading to React 18.3.1 first to help identify any issues
before upgrading to React 19.</p>
</blockquote>
<h3>New Features</h3>
<h4>React</h4>
<ul>
<li>Actions: <code>startTransition</code> can now accept async
functions. Functions passed to <code>startTransition</code> are called
“Actions”. A given Transition can include one or more Actions which
update state in the background and update the UI with one commit. In
addition to updating state, Actions can now perform side effects
including async requests, and the Action will wait for the work to
finish before finishing the Transition. This feature allows Transitions
to include side effects like <code>fetch()</code> in the pending state,
and provides support for error handling, and optimistic updates.</li>
<li><code>useActionState</code>: is a new hook to order Actions inside
of a Transition with access to the state of the action, and the pending
state. It accepts a reducer that can call Actions, and the initial state
used for first render. It also accepts an optional string that is used
if the action is passed to a form <code>action</code> prop to support
progressive enhancement in forms.</li>
<li><code>useOptimistic</code>: is a new hook to update state while a
Transition is in progress. It returns the state, and a set function that
can be called inside a transition to “optimistically” update the state
to expected final value immediately while the Transition completes in
the background. When the transition finishes, the state is updated to
the new value.</li>
<li><code>use</code>: is a new API that allows reading resources in
render. In React 19, <code>use</code> accepts a promise or Context. If
provided a promise, <code>use</code> will suspend until a value is
resolved. <code>use</code> can only be used in render but can be called
conditionally.</li>
<li><code>ref</code> as a prop: Refs can now be used as props, removing
the need for <code>forwardRef</code>.</li>
<li><strong>Suspense sibling pre-warming</strong>: When a component
suspends, React will immediately commit the fallback of the nearest
Suspense boundary, without waiting for the entire sibling tree to
render. After the fallback commits, React will schedule another render
for the suspended siblings to “pre-warm” lazy requests.</li>
</ul>
<h4>React DOM Client</h4>
<ul>
<li><code>&lt;form&gt; action</code> prop: Form Actions allow you to
manage forms automatically and integrate with
<code>useFormStatus</code>. When a <code>&lt;form&gt; action</code>
succeeds, React will automatically reset the form for uncontrolled
components. The form can be reset manually with the new
<code>requestFormReset</code> API.</li>
<li><code>&lt;button&gt; and &lt;input&gt; formAction</code> prop:
Actions can be passed to the <code>formAction</code> prop to configure
form submission behavior. This allows using different Actions depending
on the input.</li>
<li><code>useFormStatus</code>: is a new hook that provides the status
of the parent <code>&lt;form&gt; action</code>, as if the form was a
Context provider. The hook returns the values: <code>pending</code>,
<code>data</code>, <code>method</code>, and <code>action</code>.</li>
<li>Support for Document Metadata: We’ve added support for rendering
document metadata tags in components natively. React will automatically
hoist them into the <code>&lt;head&gt;</code> section of the
document.</li>
<li>Support for Stylesheets: React 19 will ensure stylesheets are
inserted into the <code>&lt;head&gt;</code> on the client before
revealing the content of a Suspense boundary that depends on that
stylesheet.</li>
<li>Support for async scripts: Async scripts can be rendered anywhere in
the component tree and React will handle ordering and
deduplication.</li>
<li>Support for preloading resources: React 19 ships with
<code>preinit</code>, <code>preload</code>, <code>prefetchDNS</code>,
and <code>preconnect</code> APIs to optimize initial page loads by
moving discovery of additional resources like fonts out of stylesheet
loading. They can also be used to prefetch resources used by an
anticipated navigation.</li>
</ul>
<h4>React DOM Server</h4>
<ul>
<li>Added <code>prerender</code> and <code>prerenderToNodeStream</code>
APIs for static site generation. They are designed to work with
streaming environments like Node.js Streams and Web Streams. Unlike
<code>renderToString</code>, they wait for data to load for HTML
generation.</li>
</ul>
<h4>React Server Components</h4>
<ul>
<li>RSC features such as directives, server components, and server
functions are now stable. This means libraries that ship with Server
Components can now target React 19 as a peer dependency with a
react-server export condition for use in frameworks that support the
Full-stack React Architecture. The underlying APIs used to implement a
React Server Components bundler or framework do not follow semver and
may break between minors in React 19.x. See <a
href="https://19.react.dev/reference/rsc/server-components">docs</a> for
how to support React Server Components.</li>
</ul>
<h3>Deprecations</h3>
<ul>
<li>Deprecated: <code>element.ref</code> access: React 19 supports ref
as a prop, so we’re deprecating <code>element.ref</code> in favor of
<code>element.props.ref</code>. Accessing will result in a warning.</li>
<li><code>react-test-renderer</code>: In React 19, react-test-renderer
logs a deprecation warning and has switched to concurrent rendering for
web usage. We recommend migrating your tests to <a
href="https://testing-library.com/docs/react-testing-library/intro/"><code>@​testing-library/react</code></a>
or <a
href="https://testing-library.com/docs/react-native-testing-library/intro"><code>@​testing-library/react-native</code></a></li>
</ul>
<h3>Breaking Changes</h3>
<p>React 19 brings in a number of breaking changes, including the
removals of long-deprecated APIs. We recommend first upgrading to
<code>18.3.1</code>, where we've added additional deprecation warnings.
Check out the <a
href="https://19.react.dev/blog/2024/04/25/react-19-upgrade-guide">upgrade
guide</a> for more details and guidance on codemodding.</p>
<h3>React</h3>
<ul>
<li>New JSX Transform is now required: We introduced <a
href="https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html">a
new JSX transform</a> in 2020 to improve bundle size and use JSX without
importing React. In React 19, we’re adding additional improvements like
using ref as a prop and JSX speed improvements that require the new
transform.</li>
<li>Errors in render are not re-thrown: Errors that are not caught by an
Error Boundary are now reported to window.reportError. Errors that are
caught by an Error Boundary are reported to console.error. We’ve
introduced <code>onUncaughtError</code> and <code>onCaughtError</code>
methods to <code>createRoot</code> and <code>hydrateRoot</code> to
customize this error handling.</li>
<li>Removed: <code>propTypes</code>: Using <code>propTypes</code> will
now be silently ignored. If required, we recommend migrating to
TypeScript or another type-checking solution.</li>
<li>Removed: <code>defaultProps</code> for functions: ES6 default
parameters can be used in place. Class components continue to support
<code>defaultProps</code> since there is no ES6 alternative.</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/facebook/react/commit/989af12f72080c17db03ead91d99b6394a215564"><code>989af12</code></a>
Make prerendering always non-blocking with fix (<a
href="https://github.com/facebook/react/tree/HEAD/packages/react-dom/issues/31452">#31452</a>)</li>
<li><a
href="https://github.com/facebook/react/commit/e1378902bbb322aa1fe1953780f4b2b5f80d26b1"><code>e137890</code></a>
[string-refs] cleanup string ref code (<a
href="https://github.com/facebook/react/tree/HEAD/packages/react-dom/issues/31443">#31443</a>)</li>
<li><a
href="https://github.com/facebook/react/commit/07aa494432e97f63fca9faf2fad6f76fead31063"><code>07aa494</code></a>
Remove enableRefAsProp feature flag (<a
href="https://github.com/facebook/react/tree/HEAD/packages/react-dom/issues/30346">#30346</a>)</li>
<li><a
href="https://github.com/facebook/react/commit/cae764ce81b1bd6c418e9e23651794b6b09208e8"><code>cae764c</code></a>
Revert &quot;[Re-land] Make prerendering always non-blocking (<a
href="https://github.com/facebook/react/tree/HEAD/packages/react-dom/issues/31268">#31268</a>)&quot;
(<a
href="https://github.com/facebook/react/tree/HEAD/packages/react-dom/issues/31355">#31355</a>)</li>
<li><a
href="https://github.com/facebook/react/commit/d49123f73f12564223c890bfa36be537de2c571d"><code>d49123f</code></a>
Expose prerender() for SSG in stable (<a
href="https://github.com/facebook/react/tree/HEAD/packages/react-dom/issues/31298">#31298</a>)</li>
<li><a
href="https://github.com/facebook/react/commit/6c4bbc783286bf6eebd9927cb52e8fec5ad4dd74"><code>6c4bbc7</code></a>
[Re-land] Make prerendering always non-blocking (<a
href="https://github.com/facebook/react/tree/HEAD/packages/react-dom/issues/31268">#31268</a>)</li>
<li><a
href="https://github.com/facebook/react/commit/d8c90fa48d3addefe4b805ec56a3c65e4ee39127"><code>d8c90fa</code></a>
Disable infinite render loop detection (<a
href="https://github.com/facebook/react/tree/HEAD/packages/react-dom/issues/31088">#31088</a>)</li>
<li><a
href="https://github.com/facebook/react/commit/67fee58b1f72754cc77488c40c44e786572ef954"><code>67fee58</code></a>
[Fizz] Start initial work immediately (<a
href="https://github.com/facebook/react/tree/HEAD/packages/react-dom/issues/31079">#31079</a>)</li>
<li><a
href="https://github.com/facebook/react/commit/76aee6f39d94caa04c11be92d75d12cb9ee56494"><code>76aee6f</code></a>
Revert &quot;Make prerendering always non-blocking&quot; (<a
href="https://github.com/facebook/react/tree/HEAD/packages/react-dom/issues/31080">#31080</a>)</li>
<li><a
href="https://github.com/facebook/react/commit/0f1856c49febe96923e469f98c0b123130ea015c"><code>0f1856c</code></a>
Make prerendering always non-blocking (<a
href="https://github.com/facebook/react/tree/HEAD/packages/react-dom/issues/31056">#31056</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/facebook/react/commits/v19.0.0/packages/react-dom">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>
…dates (josxha#200)

Bumps the dependencies group with 2 updates in the /android directory:
com.android.tools.build:gradle and
[org.mockito:mockito-core](https://github.com/mockito/mockito).

Updates `com.android.tools.build:gradle` from 8.6.1 to 8.8.0

Updates `org.mockito:mockito-core` from 5.14.2 to 5.15.2
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/mockito/mockito/releases">org.mockito:mockito-core's
releases</a>.</em></p>
<blockquote>
<h2>v5.15.2</h2>
<p><!-- raw HTML omitted --><!-- raw HTML omitted --><em>Changelog
generated by <a
href="https://github.com/shipkit/shipkit-changelog">Shipkit Changelog
Gradle Plugin</a></em><!-- raw HTML omitted --><!-- raw HTML omitted
--></p>
<h4>5.15.2</h4>
<ul>
<li>2025-01-02 - <a
href="https://github.com/mockito/mockito/compare/v5.15.1...v5.15.2">2
commit(s)</a> by Brice Dutheil, dependabot[bot]</li>
<li>Fix javadoc publication [(<a
href="https://redirect.github.com/mockito/mockito/issues/3561">#3561</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3561">mockito/mockito#3561</a>)</li>
<li>Bump org.assertj:assertj-core from 3.27.0 to 3.27.1 [(<a
href="https://redirect.github.com/mockito/mockito/issues/3560">#3560</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3560">mockito/mockito#3560</a>)</li>
<li>The release job is failed again [(<a
href="https://redirect.github.com/mockito/mockito/issues/3542">#3542</a>)](<a
href="https://redirect.github.com/mockito/mockito/issues/3542">mockito/mockito#3542</a>)</li>
</ul>
<h2>v5.15.1</h2>
<p><!-- raw HTML omitted --><!-- raw HTML omitted --><em>Changelog
generated by <a
href="https://github.com/shipkit/shipkit-changelog">Shipkit Changelog
Gradle Plugin</a></em><!-- raw HTML omitted --><!-- raw HTML omitted
--></p>
<h4>5.15.1</h4>
<ul>
<li>2024-12-22 - <a
href="https://github.com/mockito/mockito/compare/v5.15.0...v5.15.1">8
commit(s)</a> by Brice Dutheil, Rafael Winterhalter,
dependabot[bot]</li>
<li>Bump org.assertj:assertj-core from 3.26.3 to 3.27.0 [(<a
href="https://redirect.github.com/mockito/mockito/issues/3557">#3557</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3557">mockito/mockito#3557</a>)</li>
<li>Bump org.junit.platform:junit-platform-launcher from 1.11.3 to
1.11.4 [(<a
href="https://redirect.github.com/mockito/mockito/issues/3555">#3555</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3555">mockito/mockito#3555</a>)</li>
<li>Bump junit-jupiter from 5.11.3 to 5.11.4 [(<a
href="https://redirect.github.com/mockito/mockito/issues/3554">#3554</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3554">mockito/mockito#3554</a>)</li>
<li>Bump bytebuddy from 1.15.10 to 1.15.11 [(<a
href="https://redirect.github.com/mockito/mockito/issues/3553">#3553</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3553">mockito/mockito#3553</a>)</li>
<li>Avoid warning when dynamic attach is enabled [(<a
href="https://redirect.github.com/mockito/mockito/issues/3551">#3551</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3551">mockito/mockito#3551</a>)</li>
<li>Bump com.google.googlejavaformat:google-java-format from 1.25.1 to
1.25.2 [(<a
href="https://redirect.github.com/mockito/mockito/issues/3545">#3545</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3545">mockito/mockito#3545</a>)</li>
<li>Bump com.gradle.develocity from 3.18.2 to 3.19 [(<a
href="https://redirect.github.com/mockito/mockito/issues/3544">#3544</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3544">mockito/mockito#3544</a>)</li>
<li>Makes shipkit / nexusPublish a convention plugin for root [(<a
href="https://redirect.github.com/mockito/mockito/issues/3533">#3533</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3533">mockito/mockito#3533</a>)</li>
<li>Mockito:5.14.2 Warning: Mockito is currently self-attaching... [(<a
href="https://redirect.github.com/mockito/mockito/issues/3512">#3512</a>)](<a
href="https://redirect.github.com/mockito/mockito/issues/3512">mockito/mockito#3512</a>)</li>
</ul>
<h2>v5.15.0</h2>
<p><!-- raw HTML omitted --><!-- raw HTML omitted --><em>Changelog
generated by <a
href="https://github.com/shipkit/shipkit-changelog">Shipkit Changelog
Gradle Plugin</a></em><!-- raw HTML omitted --><!-- raw HTML omitted
--></p>
<h4>5.15.0</h4>
<ul>
<li>2024-12-19 - <a
href="https://github.com/mockito/mockito/compare/v5.14.2...v5.15.0">69
commit(s)</a> by Andreas Turban, Ashley, Brice Dutheil, Michael Kramer,
Miguel Graham, Rafael Winterhalter, dependabot[bot]</li>
<li>Bump com.google.googlejavaformat:google-java-format from 1.25.0 to
1.25.1 [(<a
href="https://redirect.github.com/mockito/mockito/issues/3541">#3541</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3541">mockito/mockito#3541</a>)</li>
<li>Bump org.eclipse.platform:org.eclipse.osgi from 3.21.0 to 3.22.0
[(<a
href="https://redirect.github.com/mockito/mockito/issues/3539">#3539</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3539">mockito/mockito#3539</a>)</li>
<li>Bump biz.aQute.bnd:biz.aQute.bnd.gradle from 7.0.0 to 7.1.0 [(<a
href="https://redirect.github.com/mockito/mockito/issues/3538">#3538</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3538">mockito/mockito#3538</a>)</li>
<li>Bump org.gradle.toolchains.foojay-resolver-convention from 0.8.0 to
0.9.0 [(<a
href="https://redirect.github.com/mockito/mockito/issues/3537">#3537</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3537">mockito/mockito#3537</a>)</li>
<li>Makes license a convention plugin [(<a
href="https://redirect.github.com/mockito/mockito/issues/3532">#3532</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3532">mockito/mockito#3532</a>)</li>
<li>fixes <a
href="https://redirect.github.com/mockito/mockito/issues/3519">#3519</a>:
adds a Gradle groovy dsl example [(<a
href="https://redirect.github.com/mockito/mockito/issues/3529">#3529</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3529">mockito/mockito#3529</a>)</li>
<li>Instructions on configuring mockito as agent lacks a Gradle Groovy
DSL example (currently only Kotlin DSL) [(<a
href="https://redirect.github.com/mockito/mockito/issues/3519">#3519</a>)](<a
href="https://redirect.github.com/mockito/mockito/issues/3519">mockito/mockito#3519</a>)</li>
<li>Bump com.google.googlejavaformat:google-java-format from 1.24.0 to
1.25.0 [(<a
href="https://redirect.github.com/mockito/mockito/issues/3516">#3516</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3516">mockito/mockito#3516</a>)</li>
<li>Bump ru.vyarus:gradle-animalsniffer-plugin from 1.7.1 to 1.7.2 [(<a
href="https://redirect.github.com/mockito/mockito/issues/3513">#3513</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3513">mockito/mockito#3513</a>)</li>
<li>Bump codecov/codecov-action from 4 to 5 [(<a
href="https://redirect.github.com/mockito/mockito/issues/3507">#3507</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3507">mockito/mockito#3507</a>)</li>
<li>Mockito issue <a
href="https://redirect.github.com/mockito/mockito/issues/3490">#3490</a>
[(<a
href="https://redirect.github.com/mockito/mockito/issues/3506">#3506</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3506">mockito/mockito#3506</a>)</li>
<li>Bump com.gradle.develocity from 3.18.1 to 3.18.2 [(<a
href="https://redirect.github.com/mockito/mockito/issues/3505">#3505</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3505">mockito/mockito#3505</a>)</li>
<li>Bump org.codehaus.groovy:groovy from 3.0.22 to 3.0.23 [(<a
href="https://redirect.github.com/mockito/mockito/issues/3502">#3502</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3502">mockito/mockito#3502</a>)</li>
<li>Declare android gradle plugins in version catalog [(<a
href="https://redirect.github.com/mockito/mockito/issues/3500">#3500</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3500">mockito/mockito#3500</a>)</li>
<li>Mockito fails with JVM internal error when mocking class clinit does
not find a transitive dependency [(<a
href="https://redirect.github.com/mockito/mockito/issues/3499">#3499</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3499">mockito/mockito#3499</a>)</li>
<li>Mockito fails with JVM internal error when mocking class clinit does
not find a transitive dependency [(<a
href="https://redirect.github.com/mockito/mockito/issues/3498">#3498</a>)](<a
href="https://redirect.github.com/mockito/mockito/issues/3498">mockito/mockito#3498</a>)</li>
<li>Bump org.shipkit:shipkit-auto-version from 2.0.17 to 2.1.0 [(<a
href="https://redirect.github.com/mockito/mockito/issues/3497">#3497</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3497">mockito/mockito#3497</a>)</li>
<li>Bump bytebuddy from 1.15.8 to 1.15.10 [(<a
href="https://redirect.github.com/mockito/mockito/issues/3495">#3495</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3495">mockito/mockito#3495</a>)</li>
<li>Bump org.shipkit:shipkit-auto-version from 2.0.11 to 2.0.17 [(<a
href="https://redirect.github.com/mockito/mockito/issues/3492">#3492</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3492">mockito/mockito#3492</a>)</li>
<li>Bump bytebuddy from 1.15.7 to 1.15.8 [(<a
href="https://redirect.github.com/mockito/mockito/issues/3491">#3491</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3491">mockito/mockito#3491</a>)</li>
<li>Bump bytebuddy from 1.15.5 to 1.15.7 [(<a
href="https://redirect.github.com/mockito/mockito/issues/3486">#3486</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3486">mockito/mockito#3486</a>)</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/mockito/mockito/commit/e04dbbe3c83badb0d7d6d9cd700f456e227a9bb3"><code>e04dbbe</code></a>
Fix javadoc publication (<a
href="https://redirect.github.com/mockito/mockito/issues/3561">#3561</a>)</li>
<li><a
href="https://github.com/mockito/mockito/commit/567c5b95bfb98bca343a6c2a9b0c8df9bd86175a"><code>567c5b9</code></a>
Bump org.assertj:assertj-core from 3.27.0 to 3.27.1 (<a
href="https://redirect.github.com/mockito/mockito/issues/3560">#3560</a>)</li>
<li><a
href="https://github.com/mockito/mockito/commit/2c184c9a5f80a46a0dff9a299874973235f48a10"><code>2c184c9</code></a>
Introduce release convention plugin for Shipkit integration (<a
href="https://redirect.github.com/mockito/mockito/issues/3533">#3533</a>)</li>
<li><a
href="https://github.com/mockito/mockito/commit/68c428544cc827d0fe039ef971e9605fec97d3de"><code>68c4285</code></a>
Bump org.assertj:assertj-core from 3.26.3 to 3.27.0 (<a
href="https://redirect.github.com/mockito/mockito/issues/3557">#3557</a>)</li>
<li><a
href="https://github.com/mockito/mockito/commit/cd4704a5caa5bc5afbae4d17ab73984abc599213"><code>cd4704a</code></a>
Avoid warning when dynamic attach is enabled with JVM flag (<a
href="https://redirect.github.com/mockito/mockito/issues/3551">#3551</a>)</li>
<li><a
href="https://github.com/mockito/mockito/commit/3731b6b4b1f790ea6a7c9c165efe15b5a4ab2630"><code>3731b6b</code></a>
Bump org.junit.platform:junit-platform-launcher from 1.11.3 to 1.11.4
(<a
href="https://redirect.github.com/mockito/mockito/issues/3555">#3555</a>)</li>
<li><a
href="https://github.com/mockito/mockito/commit/29c947628af5b816387d01bec0123946236427b9"><code>29c9476</code></a>
Bump junit-jupiter from 5.11.3 to 5.11.4 (<a
href="https://redirect.github.com/mockito/mockito/issues/3554">#3554</a>)</li>
<li><a
href="https://github.com/mockito/mockito/commit/dc0dc88f98d87c29393dd1da8e00c483ec4e8092"><code>dc0dc88</code></a>
Bump bytebuddy from 1.15.10 to 1.15.11 (<a
href="https://redirect.github.com/mockito/mockito/issues/3553">#3553</a>)</li>
<li><a
href="https://github.com/mockito/mockito/commit/2e7992bc98c6fd3e1f51efd02a46e4e0309178b8"><code>2e7992b</code></a>
Bump com.google.googlejavaformat:google-java-format (<a
href="https://redirect.github.com/mockito/mockito/issues/3545">#3545</a>)</li>
<li><a
href="https://github.com/mockito/mockito/commit/51ed33f037dacf19407b4e692e3f6253f874a908"><code>51ed33f</code></a>
Bump com.gradle.develocity from 3.18.2 to 3.19 (<a
href="https://redirect.github.com/mockito/mockito/issues/3544">#3544</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/mockito/mockito/compare/v5.14.2...v5.15.2">compare
view</a></li>
</ul>
</details>
<br />

<details>
<summary>Most Recent Ignore Conditions Applied to This Pull
Request</summary>

| Dependency Name | Ignore Conditions |
| --- | --- |
| com.android.tools.build:gradle | [>= 8.7.a, < 8.8] |
</details>


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>
…nd_yarn group (josxha#202)

Bumps the npm_and_yarn group in /docs with 1 update:
[katex](https://github.com/KaTeX/KaTeX).

Updates `katex` from 0.16.11 to 0.16.21
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/KaTeX/KaTeX/releases">katex's
releases</a>.</em></p>
<blockquote>
<h2>v0.16.21</h2>
<h2><a
href="https://github.com/KaTeX/KaTeX/compare/v0.16.20...v0.16.21">0.16.21</a>
(2025-01-17)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>escape \htmlData attribute name (<a
href="https://github.com/KaTeX/KaTeX/commit/57914ad91eff401357f44bf364b136d37eba04f8">57914ad</a>)
<ul>
<li>See security advisory <a
href="https://github.com/KaTeX/KaTeX/security/advisories/GHSA-cg87-wmx4-v546">https://github.com/KaTeX/KaTeX/security/advisories/GHSA-cg87-wmx4-v546</a></li>
</ul>
</li>
</ul>
<h2>v0.16.20</h2>
<h2><a
href="https://github.com/KaTeX/KaTeX/compare/v0.16.19...v0.16.20">0.16.20</a>
(2025-01-12)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>\providecommand does not overwrite existing macro (<a
href="https://redirect.github.com/KaTeX/KaTeX/issues/4000">#4000</a>)
(<a
href="https://github.com/KaTeX/KaTeX/commit/6d30fe47b06f9da9b836fe518d5cbbecf6a6a3a1">6d30fe4</a>),
closes <a
href="https://redirect.github.com/KaTeX/KaTeX/issues/3928">#3928</a></li>
</ul>
<h2>v0.16.19</h2>
<h2><a
href="https://github.com/KaTeX/KaTeX/compare/v0.16.18...v0.16.19">0.16.19</a>
(2024-12-29)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> improve <code>strict</code> function type
(<a
href="https://redirect.github.com/KaTeX/KaTeX/issues/4009">#4009</a>)
(<a
href="https://github.com/KaTeX/KaTeX/commit/4228b4eb529b8e35def66cc6e4fa467383b98c86">4228b4e</a>)</li>
</ul>
<h2>v0.16.18</h2>
<h2><a
href="https://github.com/KaTeX/KaTeX/compare/v0.16.17...v0.16.18">0.16.18</a>
(2024-12-18)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Actually publish TypeScript type definitions (<a
href="https://redirect.github.com/KaTeX/KaTeX/issues/4008">#4008</a>)
(<a
href="https://github.com/KaTeX/KaTeX/commit/629b87354fdfc04a3769f09b69f6bbadebcb9ae8">629b873</a>)</li>
</ul>
<h2>v0.16.17</h2>
<h2><a
href="https://github.com/KaTeX/KaTeX/compare/v0.16.16...v0.16.17">0.16.17</a>
(2024-12-17)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>MathML combines multidigit numbers with sup/subscript, comma
separators, and multicharacter text when outputting to DOM (<a
href="https://redirect.github.com/KaTeX/KaTeX/issues/3999">#3999</a>)
(<a
href="https://github.com/KaTeX/KaTeX/commit/7d79e220f465c42d4334dc95f1c41e333667e168">7d79e22</a>),
closes <a
href="https://redirect.github.com/KaTeX/KaTeX/issues/3995">#3995</a></li>
</ul>
<h2>v0.16.16</h2>
<h2><a
href="https://github.com/KaTeX/KaTeX/compare/v0.16.15...v0.16.16">0.16.16</a>
(2024-12-17)</h2>
<h3>Features</h3>
<ul>
<li>ESM exports, TypeScript types (<a
href="https://redirect.github.com/KaTeX/KaTeX/issues/3992">#3992</a>)
(<a
href="https://github.com/KaTeX/KaTeX/commit/ea9c173a0de953b49b2ce5d131e88b785f5dffa1">ea9c173</a>)</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/KaTeX/KaTeX/blob/main/CHANGELOG.md">katex's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/KaTeX/KaTeX/compare/v0.16.20...v0.16.21">0.16.21</a>
(2025-01-17)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>escape \htmlData attribute name (<a
href="https://github.com/KaTeX/KaTeX/commit/57914ad91eff401357f44bf364b136d37eba04f8">57914ad</a>)</li>
</ul>
<h2><a
href="https://github.com/KaTeX/KaTeX/compare/v0.16.19...v0.16.20">0.16.20</a>
(2025-01-12)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>\providecommand does not overwrite existing macro (<a
href="https://redirect.github.com/KaTeX/KaTeX/issues/4000">#4000</a>)
(<a
href="https://github.com/KaTeX/KaTeX/commit/6d30fe47b06f9da9b836fe518d5cbbecf6a6a3a1">6d30fe4</a>),
closes <a
href="https://redirect.github.com/KaTeX/KaTeX/issues/3928">#3928</a></li>
</ul>
<h2><a
href="https://github.com/KaTeX/KaTeX/compare/v0.16.18...v0.16.19">0.16.19</a>
(2024-12-29)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> improve <code>strict</code> function type
(<a
href="https://redirect.github.com/KaTeX/KaTeX/issues/4009">#4009</a>)
(<a
href="https://github.com/KaTeX/KaTeX/commit/4228b4eb529b8e35def66cc6e4fa467383b98c86">4228b4e</a>)</li>
</ul>
<h2><a
href="https://github.com/KaTeX/KaTeX/compare/v0.16.17...v0.16.18">0.16.18</a>
(2024-12-18)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Actually publish TypeScript type definitions (<a
href="https://redirect.github.com/KaTeX/KaTeX/issues/4008">#4008</a>)
(<a
href="https://github.com/KaTeX/KaTeX/commit/629b87354fdfc04a3769f09b69f6bbadebcb9ae8">629b873</a>)</li>
</ul>
<h2><a
href="https://github.com/KaTeX/KaTeX/compare/v0.16.16...v0.16.17">0.16.17</a>
(2024-12-17)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>MathML combines multidigit numbers with sup/subscript, comma
separators, and multicharacter text when outputting to DOM (<a
href="https://redirect.github.com/KaTeX/KaTeX/issues/3999">#3999</a>)
(<a
href="https://github.com/KaTeX/KaTeX/commit/7d79e220f465c42d4334dc95f1c41e333667e168">7d79e22</a>),
closes <a
href="https://redirect.github.com/KaTeX/KaTeX/issues/3995">#3995</a></li>
</ul>
<h2><a
href="https://github.com/KaTeX/KaTeX/compare/v0.16.15...v0.16.16">0.16.16</a>
(2024-12-17)</h2>
<h3>Features</h3>
<ul>
<li>ESM exports, TypeScript types (<a
href="https://redirect.github.com/KaTeX/KaTeX/issues/3992">#3992</a>)
(<a
href="https://github.com/KaTeX/KaTeX/commit/ea9c173a0de953b49b2ce5d131e88b785f5dffa1">ea9c173</a>)</li>
</ul>
<h2><a
href="https://github.com/KaTeX/KaTeX/compare/v0.16.14...v0.16.15">0.16.15</a>
(2024-12-09)</h2>
<h3>Features</h3>
<ul>
<li>italic sans-serif in math mode via <code>\mathsfit</code> command
(<a
href="https://redirect.github.com/KaTeX/KaTeX/issues/3998">#3998</a>)
(<a
href="https://github.com/KaTeX/KaTeX/commit/22189018b63c9312ec4ad126804514a7390d60b5">2218901</a>)</li>
</ul>
<h2><a
href="https://github.com/KaTeX/KaTeX/compare/v0.16.13...v0.16.14">0.16.14</a>
(2024-12-08)</h2>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/KaTeX/KaTeX/commit/923f2aa15692d06ef77051bfb018c17339ef1ab4"><code>923f2aa</code></a>
chore(release): 0.16.21 [ci skip]</li>
<li><a
href="https://github.com/KaTeX/KaTeX/commit/57914ad91eff401357f44bf364b136d37eba04f8"><code>57914ad</code></a>
fix: escape \htmlData attribute name</li>
<li><a
href="https://github.com/KaTeX/KaTeX/commit/ff289955e81aab89086eef09254cbf88573d415c"><code>ff28995</code></a>
Merge commit from fork</li>
<li><a
href="https://github.com/KaTeX/KaTeX/commit/28a0bf51139969e9dc52085b72024e0c5447cfbe"><code>28a0bf5</code></a>
chore(release): 0.16.20 [ci skip]</li>
<li><a
href="https://github.com/KaTeX/KaTeX/commit/6d30fe47b06f9da9b836fe518d5cbbecf6a6a3a1"><code>6d30fe4</code></a>
fix: \providecommand does not overwrite existing macro (<a
href="https://redirect.github.com/KaTeX/KaTeX/issues/4000">#4000</a>)</li>
<li><a
href="https://github.com/KaTeX/KaTeX/commit/8f47dba453aa78e03878288fdd5841cfdb4ffb8d"><code>8f47dba</code></a>
chore(deps): update actions/upload-artifact to v4 (<a
href="https://redirect.github.com/KaTeX/KaTeX/issues/4012">#4012</a>)</li>
<li><a
href="https://github.com/KaTeX/KaTeX/commit/88b5056bdc534016d00bbb581a36c4a14d3b0651"><code>88b5056</code></a>
chore(release): 0.16.19 [ci skip]</li>
<li><a
href="https://github.com/KaTeX/KaTeX/commit/4228b4eb529b8e35def66cc6e4fa467383b98c86"><code>4228b4e</code></a>
fix(types): improve <code>strict</code> function type (<a
href="https://redirect.github.com/KaTeX/KaTeX/issues/4009">#4009</a>)</li>
<li><a
href="https://github.com/KaTeX/KaTeX/commit/f93464644419ef0057cc5b314f81e439f1242935"><code>f934646</code></a>
chore(release): 0.16.18 [ci skip]</li>
<li><a
href="https://github.com/KaTeX/KaTeX/commit/629b87354fdfc04a3769f09b69f6bbadebcb9ae8"><code>629b873</code></a>
fix: Actually publish TypeScript type definitions (<a
href="https://redirect.github.com/KaTeX/KaTeX/issues/4008">#4008</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/KaTeX/KaTeX/compare/v0.16.11...v0.16.21">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=katex&package-manager=npm_and_yarn&previous-version=0.16.11&new-version=0.16.21)](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
You can disable automated security fix PRs for this repo from the
[Security Alerts
page](https://github.com/josxha/flutter-maplibre/network/alerts).

</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…0 to 2.1.10 in /android in the dependencies group across 1 directory (josxha#205)

Bumps the dependencies group with 1 update in the /android directory:
[org.jetbrains.kotlin:kotlin-gradle-plugin](https://github.com/JetBrains/kotlin).

Updates `org.jetbrains.kotlin:kotlin-gradle-plugin` from 2.1.0 to 2.1.10
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/JetBrains/kotlin/releases">org.jetbrains.kotlin:kotlin-gradle-plugin's
releases</a>.</em></p>
<blockquote>
<h2>Kotlin 2.1.10</h2>
<h2>Changelog</h2>
<h3>Compiler</h3>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73858"><code>KT-73858</code></a>
Compose / iOS: NullPointerException on building</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73454"><code>KT-73454</code></a>
K2: Fix type parameters mapping for typealiases with inner RHS</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73043"><code>KT-73043</code></a>
K2 Compiler does not allow references to inner constructors with
typealiases</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-74040"><code>KT-74040</code></a>
Compilation of inner class usage does not check the visibility of parent
class during compilation in different rounds</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73339"><code>KT-73339</code></a>
K2: &quot;VerifyError: Bad type on operand stack&quot; because of
missing implicit cast on generic field receiver with star
projection</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-72585"><code>KT-72585</code></a>
K2: Compilation failure when upgrading to Kotlin 2.0.20+: Cannot replace
top-level type with star projection: S</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73399"><code>KT-73399</code></a>
compile-time JVM codegen failure on a KProperty argument of a
KSuspendFunction parameter</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-72725"><code>KT-72725</code></a>
KMP: Unsupported actualization of inherited java field in expect
class</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73153"><code>KT-73153</code></a>
K2: Standalone diagnostics on type arguments are not reported</li>
</ul>
<h3>Compose compiler</h3>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/CMP-5680"><code>CMP-5680</code></a>
Compose compiler: unexpected stability warnings for classes compiled
with 2.0.10</li>
<li><a
href="https://issuetracker.google.com/issues/381407900"><code>b/381407900</code></a>
Avoid adding Compose annotations on synthetic classes</li>
</ul>
<h3>IR. Inlining</h3>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73981"><code>KT-73981</code></a>
Cherry-pick the fix for KT-73482 to 2.1.10</li>
</ul>
<h3>JavaScript</h3>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-70778"><code>KT-70778</code></a>
Kotlin Js companion is undefined in production build</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73130"><code>KT-73130</code></a>
KJS: Missed <code>break</code> for do/while in generated JS code</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-58797"><code>KT-58797</code></a>
Optimize the code generated for objects on JS and Wasm backends</li>
</ul>
<h3>Klibs</h3>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-70146"><code>KT-70146</code></a>
[KLIB Resolve] Don't fail on nonexistent transitive dependency</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73951"><code>KT-73951</code></a>
Workaround for &quot;Partial linkage engine may not patch some
discrepancies in IR when compiling Kotlin/Native static caches&quot; in
2.1.10</li>
</ul>
<h3>Native</h3>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73559"><code>KT-73559</code></a>
K/Native: AndroidNativeArm64 linking fails starting from Kotlin
2.1.0</li>
</ul>
<h3>Tools. CLI</h3>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73967"><code>KT-73967</code></a>
JDK 25: &quot;IllegalArgumentException: 25-ea&quot; with EA builds</li>
</ul>
<h3>Tools. Daemon</h3>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73311"><code>KT-73311</code></a>
&quot;Unable to release compile session, maybe daemon is already
down&quot; flakiness</li>
</ul>
<h3>Tools. Gradle</h3>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73728"><code>KT-73728</code></a>
'generatePomFileForMavenPublication' creates pom with dependencies with
'unspecified' version</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/JetBrains/kotlin/blob/v2.1.10/ChangeLog.md">org.jetbrains.kotlin:kotlin-gradle-plugin's
changelog</a>.</em></p>
<blockquote>
<h2>2.1.10-RC2</h2>
<h3>Compiler</h3>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73858"><code>KT-73858</code></a>
Compose / iOS: NullPointerException on building</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-74040"><code>KT-74040</code></a>
Compilation of inner class usage does not check the visibility of parent
class during compilation in different rounds</li>
</ul>
<h3>Compose compiler</h3>
<ul>
<li><a
href="https://issuetracker.google.com/issues/381407900"><code>b/381407900</code></a>
Avoid adding Compose annotations on synthetic classes</li>
<li><a
href="https://youtrack.jetbrains.com/issue/CMP-5680"><code>CMP-5680</code></a>
Compose compiler: unexpected stability warnings for classes compiled
with 2.0.10</li>
</ul>
<h2>2.1.10-RC</h2>
<h3>Compiler</h3>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73454"><code>KT-73454</code></a>
K2: Fix type parameters mapping for typealiases with inner RHS</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73043"><code>KT-73043</code></a>
K2 Compiler does not allow references to inner constructors with
typealiases</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73339"><code>KT-73339</code></a>
K2: &quot;VerifyError: Bad type on operand stack&quot; because of
missing implicit cast on generic field receiver with star
projection</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-72585"><code>KT-72585</code></a>
K2: Compilation failure when upgrading to Kotlin 2.0.20+: Cannot replace
top-level type with star projection: S</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73399"><code>KT-73399</code></a>
compile-time JVM codegen failure on a KProperty argument of a
KSuspendFunction parameter</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-72725"><code>KT-72725</code></a>
KMP: Unsupported actualization of inherited java field in expect
class</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73153"><code>KT-73153</code></a>
K2: Standalone diagnostics on type arguments are not reported</li>
</ul>
<h3>Compose compiler</h3>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/CMP-5680"><code>CMP-5680</code></a>
Compose compiler: unexpected stability warnings for classes compiled
with 2.0.10</li>
</ul>
<h3>IR. Inlining</h3>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73981"><code>KT-73981</code></a>
Cherry-pick the fix for KT-73482 to 2.1.10</li>
</ul>
<h3>JavaScript</h3>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-58797"><code>KT-58797</code></a>
Optimize the code generated for objects on JS and Wasm backends</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-70778"><code>KT-70778</code></a>
Kotlin Js companion is undefined in production build</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73130"><code>KT-73130</code></a>
KJS: Missed <code>break</code> for do/while in generated JS code</li>
</ul>
<h3>Klibs</h3>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73951"><code>KT-73951</code></a>
Workaround for &quot;Partial linkage engine may not patch some
discrepancies in IR when compiling Kotlin/Native static caches&quot; in
2.1.10</li>
</ul>
<h3>Native</h3>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73559"><code>KT-73559</code></a>
K/Native: AndroidNativeArm64 linking fails starting from Kotlin
2.1.0</li>
</ul>
<h3>Tools. CLI</h3>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73967"><code>KT-73967</code></a>
JDK 25: &quot;IllegalArgumentException: 25-ea&quot; with EA builds</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/JetBrains/kotlin/commit/6dff5659f42b0b90863d10ee503efd5a8ebb1034"><code>6dff565</code></a>
Add ChangeLog for 2.1.10-RC2</li>
<li><a
href="https://github.com/JetBrains/kotlin/commit/5e6f6a655b9efe4aa35387b60143a6c4611e8c2c"><code>5e6f6a6</code></a>
[tests] Turned on passing tests</li>
<li><a
href="https://github.com/JetBrains/kotlin/commit/b968b02674e99f3fb423843b27d382f110b25468"><code>b968b02</code></a>
[K/N] Skip missing dependencies during cache building</li>
<li><a
href="https://github.com/JetBrains/kotlin/commit/8b57d4490f9708a6458c5822a72567778ab1d59c"><code>8b57d44</code></a>
[CMP] no metadata annotations on synthetic classes</li>
<li><a
href="https://github.com/JetBrains/kotlin/commit/f82abd90b3b1de74a89a10034c2ea843308c8fa2"><code>f82abd9</code></a>
[AA] Lazily compute the effective visibility in FIR stub-based
deserializer</li>
<li><a
href="https://github.com/JetBrains/kotlin/commit/618eaff0cdd5dfe40cb37c8fd2c679951d0ff51e"><code>618eaff</code></a>
[FIR] Don't render lazy attributes with <code>null</code> value in FIR
renderer</li>
<li><a
href="https://github.com/JetBrains/kotlin/commit/5f5af3826c2aca1c43e1644830085db3e1cc6a7d"><code>5f5af38</code></a>
[FIR] Remove incorrect fast-path from <a
href="https://github.com/PublishedAPI"><code>@​PublishedAPI</code></a>
computation for binary de...</li>
<li><a
href="https://github.com/JetBrains/kotlin/commit/435080bbd908b4604c4d6e74696506adeba5f453"><code>435080b</code></a>
[FIR] Consider effective visibility of parent class during
deserialization</li>
<li><a
href="https://github.com/JetBrains/kotlin/commit/05e92d4ee57784037b6eb759705b2ab58653cc7f"><code>05e92d4</code></a>
[Test] Reproduce KT-74040 in AA tests</li>
<li><a
href="https://github.com/JetBrains/kotlin/commit/c49acfbcb1262d58ef541340e8f29043665d2e62"><code>c49acfb</code></a>
[Test] Render <code>isPublicApi</code> attribute in AA tests</li>
<li>Additional commits viewable in <a
href="https://github.com/JetBrains/kotlin/compare/v2.1.0...v2.1.10">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.jetbrains.kotlin:kotlin-gradle-plugin&package-manager=gradle&previous-version=2.1.0&new-version=2.1.10)](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>
…xha#212)

Bumps the dependencies group in /docs with 7 updates:

| Package | From | To |
| --- | --- | --- |
|
[@docusaurus/core](https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus)
| `3.6.3` | `3.7.0` |
|
[@docusaurus/preset-classic](https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-preset-classic)
| `3.6.3` | `3.7.0` |
|
[@docusaurus/theme-mermaid](https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-theme-mermaid)
| `3.6.3` | `3.7.0` |
|
[@docusaurus/module-type-aliases](https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-module-type-aliases)
| `3.6.3` | `3.7.0` |
|
[@docusaurus/tsconfig](https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-tsconfig)
| `3.6.3` | `3.7.0` |
|
[@docusaurus/types](https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-types)
| `3.6.3` | `3.7.0` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.7.2` |
`5.7.3` |

Updates `@docusaurus/core` from 3.6.3 to 3.7.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/facebook/docusaurus/releases"><code>@​docusaurus/core</code>'s
releases</a>.</em></p>
<blockquote>
<h2>3.7.0 (2025-01-03)</h2>
<h4>:rocket: New Feature</h4>
<ul>
<li><code>docusaurus-faster</code>, <code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10800">#10800</a>
feat(core): Turn Rspack incremental on by default (again) (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-plugin-content-blog</code>,
<code>docusaurus-theme-classic</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10768">#10768</a>
feat(blog): Add author social icons for bluesky, mastodon, threads,
twitch, youtube, instagram (<a
href="https://github.com/GingerGeek"><code>@​GingerGeek</code></a>)</li>
</ul>
</li>
<li><code>create-docusaurus</code>, <code>docusaurus-mdx-loader</code>,
<code>docusaurus-module-type-aliases</code>,
<code>docusaurus-plugin-client-redirects</code>,
<code>docusaurus-plugin-content-blog</code>,
<code>docusaurus-plugin-content-docs</code>,
<code>docusaurus-plugin-content-pages</code>,
<code>docusaurus-plugin-debug</code>,
<code>docusaurus-plugin-google-analytics</code>,
<code>docusaurus-plugin-google-gtag</code>,
<code>docusaurus-plugin-google-tag-manager</code>,
<code>docusaurus-plugin-ideal-image</code>,
<code>docusaurus-plugin-pwa</code>,
<code>docusaurus-plugin-rsdoctor</code>,
<code>docusaurus-plugin-sitemap</code>,
<code>docusaurus-plugin-svgr</code>,
<code>docusaurus-plugin-vercel-analytics</code>,
<code>docusaurus-preset-classic</code>,
<code>docusaurus-theme-classic</code>,
<code>docusaurus-theme-common</code>,
<code>docusaurus-theme-live-codeblock</code>,
<code>docusaurus-theme-mermaid</code>,
<code>docusaurus-theme-search-algolia</code>,
<code>docusaurus-types</code>, <code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10763">#10763</a>
feat: Add React 19 support to Docusaurus v3 (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-plugin-content-blog</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10729">#10729</a>
feat(blog): Add <code>frontMatter.sidebar_label</code> (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-module-type-aliases</code>,
<code>docusaurus-plugin-svgr</code>,
<code>docusaurus-preset-classic</code>, <code>docusaurus-types</code>,
<code>docusaurus-utils</code>, <code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10677">#10677</a>
feat(svgr): create new Docusaurus SVGR plugin (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>:bug: Bug Fix</h4>
<ul>
<li><code>docusaurus-remark-plugin-npm2yarn</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10803">#10803</a>
fix(npm-to-yarn): add missing npm-to-yarn converter for Bun (<a
href="https://github.com/Lehoczky"><code>@​Lehoczky</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-theme-classic</code>,
<code>docusaurus-theme-common</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10796">#10796</a>
fix(theme): Footer Column/Link should merge provided className (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-bundler</code>,
<code>docusaurus-theme-common</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10786">#10786</a>
fix(core): fix React hydration errors, change html minifier settings (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-theme-common</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10782">#10782</a>
fix(theme-common): code block magic comments should support SQL block
comments (<a
href="https://github.com/WillBlack403"><code>@​WillBlack403</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-theme-translations</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10783">#10783</a>
fix(theme-translations): Add missing Dutch (nl) theme translations (<a
href="https://github.com/janaukema"><code>@​janaukema</code></a>)</li>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10760">#10760</a>
fix(theme-translation): add missing Korean (ko) theme translations (<a
href="https://github.com/effozen"><code>@​effozen</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-plugin-content-docs</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10754">#10754</a>
fix(docs): fix sidebar item visibility bug for category index (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10727">#10727</a>
fix(core): fix codegen routesChunkName possible hash collision (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-mdx-loader</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10723">#10723</a>
fix(mdx-loader): fix md image paths with spaces bug related to
transformImage encoding problem (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>:memo: Documentation</h4>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10740">#10740</a>
docs: Link initialization docs together (<a
href="https://github.com/waldyrious"><code>@​waldyrious</code></a>)</li>
</ul>
<h4>:robot: Dependencies</h4>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10771">#10771</a>
chore(deps): bump nanoid from 3.3.7 to 3.3.8 (<a
href="https://github.com/apps/dependabot"><code>@​dependabot[bot]</code></a>)</li>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10721">#10721</a>
chore(deps): bump actions/dependency-review-action from 4.4.0 to 4.5.0
(<a
href="https://github.com/apps/dependabot"><code>@​dependabot[bot]</code></a>)</li>
</ul>
<h4>:wrench: Maintenance</h4>
<ul>
<li>Other
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10770">#10770</a>
chore: Devcontainer upgrade to Ubuntu Noble &amp; Node 22 (<a
href="https://github.com/GingerGeek"><code>@​GingerGeek</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-theme-search-algolia</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10801">#10801</a>
refactor(algolia): simplify SearchBar component (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10672">#10672</a>
chore(algolia): upgrade algoliasearch to v5 (<a
href="https://github.com/millotp"><code>@​millotp</code></a>)</li>
</ul>
</li>
<li><code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10798">#10798</a>
refactor(core): Use Intl native API to get locale direction, remove
rtl-detect depend… (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10747">#10747</a>
refactor(core): swizzle wrap should use ReactNode instead of JSX.Element
(<a href="https://github.com/slorber"><code>@​slorber</code></a>)</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/facebook/docusaurus/blob/main/CHANGELOG.md"><code>@​docusaurus/core</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>3.7.0 (2025-01-03)</h2>
<h4>:rocket: New Feature</h4>
<ul>
<li><code>docusaurus-faster</code>, <code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10800">#10800</a>
feat(core): Turn Rspack incremental on by default (again) (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-plugin-content-blog</code>,
<code>docusaurus-theme-classic</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10768">#10768</a>
feat(blog): Add author social icons for bluesky, mastodon, threads,
twitch, youtube, instagram (<a
href="https://github.com/GingerGeek"><code>@​GingerGeek</code></a>)</li>
</ul>
</li>
<li><code>create-docusaurus</code>, <code>docusaurus-mdx-loader</code>,
<code>docusaurus-module-type-aliases</code>,
<code>docusaurus-plugin-client-redirects</code>,
<code>docusaurus-plugin-content-blog</code>,
<code>docusaurus-plugin-content-docs</code>,
<code>docusaurus-plugin-content-pages</code>,
<code>docusaurus-plugin-debug</code>,
<code>docusaurus-plugin-google-analytics</code>,
<code>docusaurus-plugin-google-gtag</code>,
<code>docusaurus-plugin-google-tag-manager</code>,
<code>docusaurus-plugin-ideal-image</code>,
<code>docusaurus-plugin-pwa</code>,
<code>docusaurus-plugin-rsdoctor</code>,
<code>docusaurus-plugin-sitemap</code>,
<code>docusaurus-plugin-svgr</code>,
<code>docusaurus-plugin-vercel-analytics</code>,
<code>docusaurus-preset-classic</code>,
<code>docusaurus-theme-classic</code>,
<code>docusaurus-theme-common</code>,
<code>docusaurus-theme-live-codeblock</code>,
<code>docusaurus-theme-mermaid</code>,
<code>docusaurus-theme-search-algolia</code>,
<code>docusaurus-types</code>, <code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10763">#10763</a>
feat: Add React 19 support to Docusaurus v3 (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-plugin-content-blog</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10729">#10729</a>
feat(blog): Add <code>frontMatter.sidebar_label</code> (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-module-type-aliases</code>,
<code>docusaurus-plugin-svgr</code>,
<code>docusaurus-preset-classic</code>, <code>docusaurus-types</code>,
<code>docusaurus-utils</code>, <code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10677">#10677</a>
feat(svgr): create new Docusaurus SVGR plugin (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>:bug: Bug Fix</h4>
<ul>
<li><code>docusaurus-remark-plugin-npm2yarn</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10803">#10803</a>
fix(npm-to-yarn): add missing npm-to-yarn converter for Bun (<a
href="https://github.com/Lehoczky"><code>@​Lehoczky</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-theme-classic</code>,
<code>docusaurus-theme-common</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10796">#10796</a>
fix(theme): Footer Column/Link should merge provided className (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-bundler</code>,
<code>docusaurus-theme-common</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10786">#10786</a>
fix(core): fix React hydration errors, change html minifier settings (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-theme-common</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10782">#10782</a>
fix(theme-common): code block magic comments should support SQL block
comments (<a
href="https://github.com/WillBlack403"><code>@​WillBlack403</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-theme-translations</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10783">#10783</a>
fix(theme-translations): Add missing Dutch (nl) theme translations (<a
href="https://github.com/janaukema"><code>@​janaukema</code></a>)</li>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10760">#10760</a>
fix(theme-translation): add missing Korean (ko) theme translations (<a
href="https://github.com/effozen"><code>@​effozen</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-plugin-content-docs</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10754">#10754</a>
fix(docs): fix sidebar item visibility bug for category index (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10727">#10727</a>
fix(core): fix codegen routesChunkName possible hash collision (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-mdx-loader</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10723">#10723</a>
fix(mdx-loader): fix md image paths with spaces bug related to
transformImage encoding problem (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>:memo: Documentation</h4>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10740">#10740</a>
docs: Link initialization docs together (<a
href="https://github.com/waldyrious"><code>@​waldyrious</code></a>)</li>
</ul>
<h4>:robot: Dependencies</h4>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10771">#10771</a>
chore(deps): bump nanoid from 3.3.7 to 3.3.8 (<a
href="https://github.com/apps/dependabot"><code>@​dependabot[bot]</code></a>)</li>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10721">#10721</a>
chore(deps): bump actions/dependency-review-action from 4.4.0 to 4.5.0
(<a
href="https://github.com/apps/dependabot"><code>@​dependabot[bot]</code></a>)</li>
</ul>
<h4>:wrench: Maintenance</h4>
<ul>
<li>Other
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10770">#10770</a>
chore: Devcontainer upgrade to Ubuntu Noble &amp; Node 22 (<a
href="https://github.com/GingerGeek"><code>@​GingerGeek</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-theme-search-algolia</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10801">#10801</a>
refactor(algolia): simplify SearchBar component (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/facebook/docusaurus/commit/dd59750c16fe6908a26f18806a54d4c3dbe6db43"><code>dd59750</code></a>
v3.7.0</li>
<li><a
href="https://github.com/facebook/docusaurus/commit/cacb973326b6b1b2b6dd0b015f7fb6f43e4b77cb"><code>cacb973</code></a>
feat(core): Turn Rspack incremental on by default (again) (<a
href="https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus/issues/10800">#10800</a>)</li>
<li><a
href="https://github.com/facebook/docusaurus/commit/e7a8c9db82c528772e88a23ef15b1f3b090d28d1"><code>e7a8c9d</code></a>
refactor(core): Use Intl native API to get locale direction, remove
rtl-detec...</li>
<li><a
href="https://github.com/facebook/docusaurus/commit/0f29a37b3a6d3ee48ce21c69ddc7a9b8b5ff2165"><code>0f29a37</code></a>
feat: Add React 19 support to Docusaurus v3 (<a
href="https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus/issues/10763">#10763</a>)</li>
<li><a
href="https://github.com/facebook/docusaurus/commit/4966dce36ed8f0cd2ef8390dd18fc3528d2969e9"><code>4966dce</code></a>
refactor(core): swizzle wrap should use ReactNode instead of JSX.Element
(<a
href="https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus/issues/10">#10</a>...</li>
<li><a
href="https://github.com/facebook/docusaurus/commit/f9825af43e1bbce6cf9761a21d477e8b13bd8cb7"><code>f9825af</code></a>
refactor: prepare types for React 19 (<a
href="https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus/issues/10746">#10746</a>)</li>
<li><a
href="https://github.com/facebook/docusaurus/commit/df6f53a2f55bbb3c14ea813924615d8164c80ae1"><code>df6f53a</code></a>
feat(svgr): create new Docusaurus SVGR plugin (<a
href="https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus/issues/10677">#10677</a>)</li>
<li><a
href="https://github.com/facebook/docusaurus/commit/809874124543405d72fe4d2e2eb67d2fd62c0eb7"><code>8098741</code></a>
fix(core): fix codegen routesChunkName possible hash collision (<a
href="https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus/issues/10727">#10727</a>)</li>
<li><a
href="https://github.com/facebook/docusaurus/commit/fd43036ab80739119040f6c2b7393e0debd3da26"><code>fd43036</code></a>
chore: release Docusaurus 3.6.3 (<a
href="https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus/issues/10713">#10713</a>)</li>
<li>See full diff in <a
href="https://github.com/facebook/docusaurus/commits/v3.7.0/packages/docusaurus">compare
view</a></li>
</ul>
</details>
<br />

Updates `@docusaurus/preset-classic` from 3.6.3 to 3.7.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/facebook/docusaurus/releases"><code>@​docusaurus/preset-classic</code>'s
releases</a>.</em></p>
<blockquote>
<h2>3.7.0 (2025-01-03)</h2>
<h4>:rocket: New Feature</h4>
<ul>
<li><code>docusaurus-faster</code>, <code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10800">#10800</a>
feat(core): Turn Rspack incremental on by default (again) (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-plugin-content-blog</code>,
<code>docusaurus-theme-classic</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10768">#10768</a>
feat(blog): Add author social icons for bluesky, mastodon, threads,
twitch, youtube, instagram (<a
href="https://github.com/GingerGeek"><code>@​GingerGeek</code></a>)</li>
</ul>
</li>
<li><code>create-docusaurus</code>, <code>docusaurus-mdx-loader</code>,
<code>docusaurus-module-type-aliases</code>,
<code>docusaurus-plugin-client-redirects</code>,
<code>docusaurus-plugin-content-blog</code>,
<code>docusaurus-plugin-content-docs</code>,
<code>docusaurus-plugin-content-pages</code>,
<code>docusaurus-plugin-debug</code>,
<code>docusaurus-plugin-google-analytics</code>,
<code>docusaurus-plugin-google-gtag</code>,
<code>docusaurus-plugin-google-tag-manager</code>,
<code>docusaurus-plugin-ideal-image</code>,
<code>docusaurus-plugin-pwa</code>,
<code>docusaurus-plugin-rsdoctor</code>,
<code>docusaurus-plugin-sitemap</code>,
<code>docusaurus-plugin-svgr</code>,
<code>docusaurus-plugin-vercel-analytics</code>,
<code>docusaurus-preset-classic</code>,
<code>docusaurus-theme-classic</code>,
<code>docusaurus-theme-common</code>,
<code>docusaurus-theme-live-codeblock</code>,
<code>docusaurus-theme-mermaid</code>,
<code>docusaurus-theme-search-algolia</code>,
<code>docusaurus-types</code>, <code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10763">#10763</a>
feat: Add React 19 support to Docusaurus v3 (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-plugin-content-blog</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10729">#10729</a>
feat(blog): Add <code>frontMatter.sidebar_label</code> (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-module-type-aliases</code>,
<code>docusaurus-plugin-svgr</code>,
<code>docusaurus-preset-classic</code>, <code>docusaurus-types</code>,
<code>docusaurus-utils</code>, <code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10677">#10677</a>
feat(svgr): create new Docusaurus SVGR plugin (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>:bug: Bug Fix</h4>
<ul>
<li><code>docusaurus-remark-plugin-npm2yarn</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10803">#10803</a>
fix(npm-to-yarn): add missing npm-to-yarn converter for Bun (<a
href="https://github.com/Lehoczky"><code>@​Lehoczky</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-theme-classic</code>,
<code>docusaurus-theme-common</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10796">#10796</a>
fix(theme): Footer Column/Link should merge provided className (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-bundler</code>,
<code>docusaurus-theme-common</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10786">#10786</a>
fix(core): fix React hydration errors, change html minifier settings (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-theme-common</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10782">#10782</a>
fix(theme-common): code block magic comments should support SQL block
comments (<a
href="https://github.com/WillBlack403"><code>@​WillBlack403</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-theme-translations</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10783">#10783</a>
fix(theme-translations): Add missing Dutch (nl) theme translations (<a
href="https://github.com/janaukema"><code>@​janaukema</code></a>)</li>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10760">#10760</a>
fix(theme-translation): add missing Korean (ko) theme translations (<a
href="https://github.com/effozen"><code>@​effozen</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-plugin-content-docs</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10754">#10754</a>
fix(docs): fix sidebar item visibility bug for category index (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10727">#10727</a>
fix(core): fix codegen routesChunkName possible hash collision (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-mdx-loader</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10723">#10723</a>
fix(mdx-loader): fix md image paths with spaces bug related to
transformImage encoding problem (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>:memo: Documentation</h4>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10740">#10740</a>
docs: Link initialization docs together (<a
href="https://github.com/waldyrious"><code>@​waldyrious</code></a>)</li>
</ul>
<h4>:robot: Dependencies</h4>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10771">#10771</a>
chore(deps): bump nanoid from 3.3.7 to 3.3.8 (<a
href="https://github.com/apps/dependabot"><code>@​dependabot[bot]</code></a>)</li>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10721">#10721</a>
chore(deps): bump actions/dependency-review-action from 4.4.0 to 4.5.0
(<a
href="https://github.com/apps/dependabot"><code>@​dependabot[bot]</code></a>)</li>
</ul>
<h4>:wrench: Maintenance</h4>
<ul>
<li>Other
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10770">#10770</a>
chore: Devcontainer upgrade to Ubuntu Noble &amp; Node 22 (<a
href="https://github.com/GingerGeek"><code>@​GingerGeek</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-theme-search-algolia</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10801">#10801</a>
refactor(algolia): simplify SearchBar component (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10672">#10672</a>
chore(algolia): upgrade algoliasearch to v5 (<a
href="https://github.com/millotp"><code>@​millotp</code></a>)</li>
</ul>
</li>
<li><code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10798">#10798</a>
refactor(core): Use Intl native API to get locale direction, remove
rtl-detect depend… (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10747">#10747</a>
refactor(core): swizzle wrap should use ReactNode instead of JSX.Element
(<a href="https://github.com/slorber"><code>@​slorber</code></a>)</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/facebook/docusaurus/blob/main/CHANGELOG.md"><code>@​docusaurus/preset-classic</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>3.7.0 (2025-01-03)</h2>
<h4>:rocket: New Feature</h4>
<ul>
<li><code>docusaurus-faster</code>, <code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10800">#10800</a>
feat(core): Turn Rspack incremental on by default (again) (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-plugin-content-blog</code>,
<code>docusaurus-theme-classic</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10768">#10768</a>
feat(blog): Add author social icons for bluesky, mastodon, threads,
twitch, youtube, instagram (<a
href="https://github.com/GingerGeek"><code>@​GingerGeek</code></a>)</li>
</ul>
</li>
<li><code>create-docusaurus</code>, <code>docusaurus-mdx-loader</code>,
<code>docusaurus-module-type-aliases</code>,
<code>docusaurus-plugin-client-redirects</code>,
<code>docusaurus-plugin-content-blog</code>,
<code>docusaurus-plugin-content-docs</code>,
<code>docusaurus-plugin-content-pages</code>,
<code>docusaurus-plugin-debug</code>,
<code>docusaurus-plugin-google-analytics</code>,
<code>docusaurus-plugin-google-gtag</code>,
<code>docusaurus-plugin-google-tag-manager</code>,
<code>docusaurus-plugin-ideal-image</code>,
<code>docusaurus-plugin-pwa</code>,
<code>docusaurus-plugin-rsdoctor</code>,
<code>docusaurus-plugin-sitemap</code>,
<code>docusaurus-plugin-svgr</code>,
<code>docusaurus-plugin-vercel-analytics</code>,
<code>docusaurus-preset-classic</code>,
<code>docusaurus-theme-classic</code>,
<code>docusaurus-theme-common</code>,
<code>docusaurus-theme-live-codeblock</code>,
<code>docusaurus-theme-mermaid</code>,
<code>docusaurus-theme-search-algolia</code>,
<code>docusaurus-types</code>, <code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10763">#10763</a>
feat: Add React 19 support to Docusaurus v3 (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-plugin-content-blog</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10729">#10729</a>
feat(blog): Add <code>frontMatter.sidebar_label</code> (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-module-type-aliases</code>,
<code>docusaurus-plugin-svgr</code>,
<code>docusaurus-preset-classic</code>, <code>docusaurus-types</code>,
<code>docusaurus-utils</code>, <code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10677">#10677</a>
feat(svgr): create new Docusaurus SVGR plugin (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>:bug: Bug Fix</h4>
<ul>
<li><code>docusaurus-remark-plugin-npm2yarn</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10803">#10803</a>
fix(npm-to-yarn): add missing npm-to-yarn converter for Bun (<a
href="https://github.com/Lehoczky"><code>@​Lehoczky</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-theme-classic</code>,
<code>docusaurus-theme-common</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10796">#10796</a>
fix(theme): Footer Column/Link should merge provided className (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-bundler</code>,
<code>docusaurus-theme-common</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10786">#10786</a>
fix(core): fix React hydration errors, change html minifier settings (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-theme-common</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10782">#10782</a>
fix(theme-common): code block magic comments should support SQL block
comments (<a
href="https://github.com/WillBlack403"><code>@​WillBlack403</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-theme-translations</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10783">#10783</a>
fix(theme-translations): Add missing Dutch (nl) theme translations (<a
href="https://github.com/janaukema"><code>@​janaukema</code></a>)</li>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10760">#10760</a>
fix(theme-translation): add missing Korean (ko) theme translations (<a
href="https://github.com/effozen"><code>@​effozen</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-plugin-content-docs</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10754">#10754</a>
fix(docs): fix sidebar item visibility bug for category index (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10727">#10727</a>
fix(core): fix codegen routesChunkName possible hash collision (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-mdx-loader</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10723">#10723</a>
fix(mdx-loader): fix md image paths with spaces bug related to
transformImage encoding problem (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>:memo: Documentation</h4>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10740">#10740</a>
docs: Link initialization docs together (<a
href="https://github.com/waldyrious"><code>@​waldyrious</code></a>)</li>
</ul>
<h4>:robot: Dependencies</h4>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10771">#10771</a>
chore(deps): bump nanoid from 3.3.7 to 3.3.8 (<a
href="https://github.com/apps/dependabot"><code>@​dependabot[bot]</code></a>)</li>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10721">#10721</a>
chore(deps): bump actions/dependency-review-action from 4.4.0 to 4.5.0
(<a
href="https://github.com/apps/dependabot"><code>@​dependabot[bot]</code></a>)</li>
</ul>
<h4>:wrench: Maintenance</h4>
<ul>
<li>Other
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10770">#10770</a>
chore: Devcontainer upgrade to Ubuntu Noble &amp; Node 22 (<a
href="https://github.com/GingerGeek"><code>@​GingerGeek</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-theme-search-algolia</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10801">#10801</a>
refactor(algolia): simplify SearchBar component (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/facebook/docusaurus/commit/dd59750c16fe6908a26f18806a54d4c3dbe6db43"><code>dd59750</code></a>
v3.7.0</li>
<li><a
href="https://github.com/facebook/docusaurus/commit/0f29a37b3a6d3ee48ce21c69ddc7a9b8b5ff2165"><code>0f29a37</code></a>
feat: Add React 19 support to Docusaurus v3 (<a
href="https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-preset-classic/issues/10763">#10763</a>)</li>
<li><a
href="https://github.com/facebook/docusaurus/commit/df6f53a2f55bbb3c14ea813924615d8164c80ae1"><code>df6f53a</code></a>
feat(svgr): create new Docusaurus SVGR plugin (<a
href="https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-preset-classic/issues/10677">#10677</a>)</li>
<li><a
href="https://github.com/facebook/docusaurus/commit/fd43036ab80739119040f6c2b7393e0debd3da26"><code>fd43036</code></a>
chore: release Docusaurus 3.6.3 (<a
href="https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-preset-classic/issues/10713">#10713</a>)</li>
<li>See full diff in <a
href="https://github.com/facebook/docusaurus/commits/v3.7.0/packages/docusaurus-preset-classic">compare
view</a></li>
</ul>
</details>
<br />

Updates `@docusaurus/theme-mermaid` from 3.6.3 to 3.7.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/facebook/docusaurus/releases"><code>@​docusaurus/theme-mermaid</code>'s
releases</a>.</em></p>
<blockquote>
<h2>3.7.0 (2025-01-03)</h2>
<h4>:rocket: New Feature</h4>
<ul>
<li><code>docusaurus-faster</code>, <code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10800">#10800</a>
feat(core): Turn Rspack incremental on by default (again) (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-plugin-content-blog</code>,
<code>docusaurus-theme-classic</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10768">#10768</a>
feat(blog): Add author social icons for bluesky, mastodon, threads,
twitch, youtube, instagram (<a
href="https://github.com/GingerGeek"><code>@​GingerGeek</code></a>)</li>
</ul>
</li>
<li><code>create-docusaurus</code>, <code>docusaurus-mdx-loader</code>,
<code>docusaurus-module-type-aliases</code>,
<code>docusaurus-plugin-client-redirects</code>,
<code>docusaurus-plugin-content-blog</code>,
<code>docusaurus-plugin-content-docs</code>,
<code>docusaurus-plugin-content-pages</code>,
<code>docusaurus-plugin-debug</code>,
<code>docusaurus-plugin-google-analytics</code>,
<code>docusaurus-plugin-google-gtag</code>,
<code>docusaurus-plugin-google-tag-manager</code>,
<code>docusaurus-plugin-ideal-image</code>,
<code>docusaurus-plugin-pwa</code>,
<code>docusaurus-plugin-rsdoctor</code>,
<code>docusaurus-plugin-sitemap</code>,
<code>docusaurus-plugin-svgr</code>,
<code>docusaurus-plugin-vercel-analytics</code>,
<code>docusaurus-preset-classic</code>,
<code>docusaurus-theme-classic</code>,
<code>docusaurus-theme-common</code>,
<code>docusaurus-theme-live-codeblock</code>,
<code>docusaurus-theme-mermaid</code>,
<code>docusaurus-theme-search-algolia</code>,
<code>docusaurus-types</code>, <code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10763">#10763</a>
feat: Add React 19 support to Docusaurus v3 (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-plugin-content-blog</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10729">#10729</a>
feat(blog): Add <code>frontMatter.sidebar_label</code> (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-module-type-aliases</code>,
<code>docusaurus-plugin-svgr</code>,
<code>docusaurus-preset-classic</code>, <code>docusaurus-types</code>,
<code>docusaurus-utils</code>, <code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10677">#10677</a>
feat(svgr): create new Docusaurus SVGR plugin (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>:bug: Bug Fix</h4>
<ul>
<li><code>docusaurus-remark-plugin-npm2yarn</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10803">#10803</a>
fix(npm-to-yarn): add missing npm-to-yarn converter for Bun (<a
href="https://github.com/Lehoczky"><code>@​Lehoczky</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-theme-classic</code>,
<code>docusaurus-theme-common</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10796">#10796</a>
fix(theme): Footer Column/Link should merge provided className (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-bundler</code>,
<code>docusaurus-theme-common</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10786">#10786</a>
fix(core): fix React hydration errors, change html minifier settings (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-theme-common</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10782">#10782</a>
fix(theme-common): code block magic comments should support SQL block
comments (<a
href="https://github.com/WillBlack403"><code>@​WillBlack403</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-theme-translations</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10783">#10783</a>
fix(theme-translations): Add missing Dutch (nl) theme translations (<a
href="https://github.com/janaukema"><code>@​janaukema</code></a>)</li>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10760">#10760</a>
fix(theme-translation): add missing Korean (ko) theme translations (<a
href="https://github.com/effozen"><code>@​effozen</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-plugin-content-docs</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10754">#10754</a>
fix(docs): fix sidebar item visibility bug for category index (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10727">#10727</a>
fix(core): fix codegen routesChunkName possible hash collision (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-mdx-loader</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10723">#10723</a>
fix(mdx-loader): fix md image paths with spaces bug related to
transformImage encoding problem (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>:memo: Documentation</h4>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10740">#10740</a>
docs: Link initialization docs together (<a
href="https://github.com/waldyrious"><code>@​waldyrious</code></a>)</li>
</ul>
<h4>:robot: Dependencies</h4>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10771">#10771</a>
chore(deps): bump nanoid from 3.3.7 to 3.3.8 (<a
href="https://github.com/apps/dependabot"><code>@​dependabot[bot]</code></a>)</li>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10721">#10721</a>
chore(deps): bump actions/dependency-review-action from 4.4.0 to 4.5.0
(<a
href="https://github.com/apps/dependabot"><code>@​dependabot[bot]</code></a>)</li>
</ul>
<h4>:wrench: Maintenance</h4>
<ul>
<li>Other
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10770">#10770</a>
chore: Devcontainer upgrade to Ubuntu Noble &amp; Node 22 (<a
href="https://github.com/GingerGeek"><code>@​GingerGeek</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-theme-search-algolia</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10801">#10801</a>
refactor(algolia): simplify SearchBar component (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10672">#10672</a>
chore(algolia): upgrade algoliasearch to v5 (<a
href="https://github.com/millotp"><code>@​millotp</code></a>)</li>
</ul>
</li>
<li><code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10798">#10798</a>
refactor(core): Use Intl native API to get locale direction, remove
rtl-detect depend… (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10747">#10747</a>
refactor(core): swizzle wrap should use ReactNode instead of JSX.Element
(<a href="https://github.com/slorber"><code>@​slorber</code></a>)</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/facebook/docusaurus/blob/main/CHANGELOG.md"><code>@​docusaurus/theme-mermaid</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>3.7.0 (2025-01-03)</h2>
<h4>:rocket: New Feature</h4>
<ul>
<li><code>docusaurus-faster</code>, <code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10800">#10800</a>
feat(core): Turn Rspack incremental on by default (again) (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-plugin-content-blog</code>,
<code>docusaurus-theme-classic</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10768">#10768</a>
feat(blog): Add author social icons for bluesky, mastodon, threads,
twitch, youtube, instagram (<a
href="https://github.com/GingerGeek"><code>@​GingerGeek</code></a>)</li>
</ul>
</li>
<li><code>create-docusaurus</code>, <code>docusaurus-mdx-loader</code>,
<code>docusaurus-module-type-aliases</code>,
<code>docusaurus-plugin-client-redirects</code>,
<code>docusaurus-plugin-content-blog</code>,
<code>docusaurus-plugin-content-docs</code>,
<code>docusaurus-plugin-content-pages</code>,
<code>docusaurus-plugin-debug</code>,
<code>docusaurus-plugin-google-analytics</code>,
<code>docusaurus-plugin-google-gtag</code>,
<code>docusaurus-plugin-google-tag-manager</code>,
<code>docusaurus-plugin-ideal-image</code>,
<code>docusaurus-plugin-pwa</code>,
<code>docusaurus-plugin-rsdoctor</code>,
<code>docusaurus-plugin-sitemap</code>,
<code>docusaurus-plugin-svgr</code>,
<code>docusaurus-plugin-vercel-analytics</code>,
<code>docusaurus-preset-classic</code>,
<code>docusaurus-theme-classic</code>,
<code>docusaurus-theme-common</code>,
<code>docusaurus-theme-live-codeblock</code>,
<code>docusaurus-theme-mermaid</code>,
<code>docusaurus-theme-search-algolia</code>,
<code>docusaurus-types</code>, <code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10763">#10763</a>
feat: Add React 19 support to Docusaurus v3 (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-plugin-content-blog</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10729">#10729</a>
feat(blog): Add <code>frontMatter.sidebar_label</code> (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-module-type-aliases</code>,
<code>docusaurus-plugin-svgr</code>,
<code>docusaurus-preset-classic</code>, <code>docusaurus-types</code>,
<code>docusaurus-utils</code>, <code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10677">#10677</a>
feat(svgr): create new Docusaurus SVGR plugin (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>:bug: Bug Fix</h4>
<ul>
<li><code>docusaurus-remark-plugin-npm2yarn</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10803">#10803</a>
fix(npm-to-yarn): add missing npm-to-yarn converter for Bun (<a
href="https://github.com/Lehoczky"><code>@​Lehoczky</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-theme-classic</code>,
<code>docusaurus-theme-common</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10796">#10796</a>
fix(theme): Footer Column/Link should merge provided className (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-bundler</code>,
<code>docusaurus-theme-common</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10786">#10786</a>
fix(core): fix React hydration errors, change html minifier settings (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-theme-common</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10782">#10782</a>
fix(theme-common): code block magic comments should support SQL block
comments (<a
href="https://github.com/WillBlack403"><code>@​WillBlack403</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-theme-translations</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10783">#10783</a>
fix(theme-translations): Add missing Dutch (nl) theme translations (<a
href="https://github.com/janaukema"><code>@​janaukema</code></a>)</li>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10760">#10760</a>
fix(theme-translation): add missing Korean (ko) theme translations (<a
href="https://github.com/effozen"><code>@​effozen</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-plugin-content-docs</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10754">#10754</a>
fix(docs): fix sidebar item visibility bug for category index (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10727">#10727</a>
fix(core): fix codegen routesChunkName possible hash collision (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-mdx-loader</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10723">#10723</a>
fix(mdx-loader): fix md image paths with spaces bug related to
transformImage encoding problem (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>:memo: Documentation</h4>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10740">#10740</a>
docs: Link initialization docs together (<a
href="https://github.com/waldyrious"><code>@​waldyrious</code></a>)</li>
</ul>
<h4>:robot: Dependencies</h4>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10771">#10771</a>
chore(deps): bump nanoid from 3.3.7 to 3.3.8 (<a
href="https://github.com/apps/dependabot"><code>@​dependabot[bot]</code></a>)</li>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10721">#10721</a>
chore(deps): bump actions/dependency-review-action from 4.4.0 to 4.5.0
(<a
href="https://github.com/apps/dependabot"><code>@​dependabot[bot]</code></a>)</li>
</ul>
<h4>:wrench: Maintenance</h4>
<ul>
<li>Other
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10770">#10770</a>
chore: Devcontainer upgrade to Ubuntu Noble &amp; Node 22 (<a
href="https://github.com/GingerGeek"><code>@​GingerGeek</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-theme-search-algolia</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10801">#10801</a>
refactor(algolia): simplify SearchBar component (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/facebook/docusaurus/commit/dd59750c16fe6908a26f18806a54d4c3dbe6db43"><code>dd59750</code></a>
v3.7.0</li>
<li><a
href="https://github.com/facebook/docusaurus/commit/0f29a37b3a6d3ee48ce21c69ddc7a9b8b5ff2165"><code>0f29a37</code></a>
feat: Add React 19 support to Docusaurus v3 (<a
href="https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-theme-mermaid/issues/10763">#10763</a>)</li>
<li><a
href="https://github.com/facebook/docusaurus/commit/f9825af43e1bbce6cf9761a21d477e8b13bd8cb7"><code>f9825af</code></a>
refactor: prepare types for React 19 (<a
href="https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-theme-mermaid/issues/10746">#10746</a>)</li>
<li><a
href="https://github.com/facebook/docusaurus/commit/fd43036ab80739119040f6c2b7393e0debd3da26"><code>fd43036</code></a>
chore: release Docusaurus 3.6.3 (<a
href="https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-theme-mermaid/issues/10713">#10713</a>)</li>
<li>See full diff in <a
href="https://github.com/facebook/docusaurus/commits/v3.7.0/packages/docusaurus-theme-mermaid">compare
view</a></li>
</ul>
</details>
<br />

Updates `@docusaurus/module-type-aliases` from 3.6.3 to 3.7.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/facebook/docusaurus/releases"><code>@​docusaurus/module-type-aliases</code>'s
releases</a>.</em></p>
<blockquote>
<h2>3.7.0 (2025-01-03)</h2>
<h4>:rocket: New Feature</h4>
<ul>
<li><code>docusaurus-faster</code>, <code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10800">#10800</a>
feat(core): Turn Rspack incremental on by default (again) (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-plugin-content-blog</code>,
<code>docusaurus-theme-classic</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10768">#10768</a>
feat(blog): Add author social icons for bluesky, mastodon, threads,
twitch, youtube, instagram (<a
href="https://github.com/GingerGeek"><code>@​GingerGeek</code></a>)</li>
</ul>
</li>
<li><code>create-docusaurus</code>, <code>docusaurus-mdx-loader</code>,
<code>docusaurus-module-type-aliases</code>,
<code>docusaurus-plugin-client-redirects</code>,
<code>docusaurus-plugin-content-blog</code>,
<code>docusaurus-plugin-content-docs</code>,
<code>docusaurus-plugin-content-pages</code>,
<code>docusaurus-plugin-debug</code>,
<code>docusaurus-plugin-google-analytics</code>,
<code>docusaurus-plugin-google-gtag</code>,
<code>docusaurus-plugin-google-tag-manager</code>,
<code>docusaurus-plugin-ideal-image</code>,
<code>docusaurus-plugin-pwa</code>,
<code>docusaurus-plugin-rsdoctor</code>,
<code>docusaurus-plugin-sitemap</code>,
<code>docusaurus-plugin-svgr</code>,
<code>docusaurus-plugin-vercel-analytics</code>,
<code>docusaurus-preset-classic</code>,
<code>docusaurus-theme-classic</code>,
<code>docusaurus-theme-common</code>,
<code>docusaurus-theme-live-codeblock</code>,
<code>docusaurus-theme-mermaid</code>,
<code>docusaurus-theme-search-algolia</code>,
<code>docusaurus-types</code>, <code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10763">#10763</a>
feat: Add React 19 support to Docusaurus v3 (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-plugin-content-blog</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10729">#10729</a>
feat(blog): Add <code>frontMatter.sidebar_label</code> (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-module-type-aliases</code>,
<code>docusaurus-plugin-svgr</code>,
<code>docusaurus-preset-classic</code>, <code>docusaurus-types</code>,
<code>docusaurus-utils</code>, <code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10677">#10677</a>
feat(svgr): create new Docusaurus SVGR plugin (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>:bug: Bug Fix</h4>
<ul>
<li><code>docusaurus-remark-plugin-npm2yarn</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10803">#10803</a>
fix(npm-to-yarn): add missing npm-to-yarn converter for Bun (<a
href="https://github.com/Lehoczky"><code>@​Lehoczky</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-theme-classic</code>,
<code>docusaurus-theme-common</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10796">#10796</a>
fix(theme): Footer Column/Link should merge provided className (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-bundler</code>,
<code>docusaurus-theme-common</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10786">#10786</a>
fix(core): fix React hydration errors, change html minifier settings (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-theme-common</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10782">#10782</a>
fix(theme-common): code block magic comments should support SQL block
comments (<a
href="https://github.com/WillBlack403"><code>@​WillBlack403</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-theme-translations</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10783">#10783</a>
fix(theme-translations): Add missing Dutch (nl) theme translations (<a
href="https://github.com/janaukema"><code>@​janaukema</code></a>)</li>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10760">#10760</a>
fix(theme-translation): add missing Korean (ko) theme translations (<a
href="https://github.com/effozen"><code>@​effozen</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-plugin-content-docs</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10754">#10754</a>
fix(docs): fix sidebar item visibility bug for category index (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10727">#10727</a>
fix(core): fix codegen routesChunkName possible hash collision (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-mdx-loader</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10723">#10723</a>
fix(mdx-loader): fix md image paths with spaces bug related to
transformImage encoding problem (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>:memo: Documentation</h4>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10740">#10740</a>
docs: Link initialization docs together (<a
href="https://github.com/waldyrious"><code>@​waldyrious</code></a>)</li>
</ul>
<h4>:robot: Dependencies</h4>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10771">#10771</a>
chore(deps): bump nanoid from 3.3.7 to 3.3.8 (<a
href="https://github.com/apps/dependabot"><code>@​dependabot[bot]</code></a>)</li>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10721">#10721</a>
chore(deps): bump actions/dependency-review-action from 4.4.0 to 4.5.0
(<a
href="https://github.com/apps/dependabot"><code>@​dependabot[bot]</code></a>)</li>
</ul>
<h4>:wrench: Maintenance</h4>
<ul>
<li>Other
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10770">#10770</a>
chore: Devcontainer upgrade to Ubuntu Noble &amp; Node 22 (<a
href="https://github.com/GingerGeek"><code>@​GingerGeek</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-theme-search-algolia</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10801">#10801</a>
refactor(algolia): simplify SearchBar component (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10672">#10672</a>
chore(algolia): upgrade algoliasearch to v5 (<a
href="https://github.com/millotp"><code>@​millotp</code></a>)</li>
</ul>
</li>
<li><code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10798">#10798</a>
refactor(core): Use Intl native API to get locale direction, remove
rtl-detect depend… (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10747">#10747</a>
refactor(core): swizzle wrap should use ReactNode instead of JSX.Element
(<a href="https://github.com/slorber"><code>@​slorber</code></a>)</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/facebook/docusaurus/blob/main/CHANGELOG.md"><code>@​docusaurus/module-type-aliases</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>3.7.0 (2025-01-03)</h2>
<h4>:rocket: New Feature</h4>
<ul>
<li><code>docusaurus-faster</code>, <code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10800">#10800</a>
feat(core): Turn Rspack incremental on by default (again) (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-plugin-content-blog</code>,
<code>docusaurus-theme-classic</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10768">#10768</a>
feat(blog): Add author social icons for bluesky, mastodon, threads,
twitch, youtube, instagram (<a
href="https://github.com/GingerGeek"><code>@​GingerGeek</code></a>)</li>
</ul>
</li>
<li><code>create-docusaurus</code>, <code>docusaurus-mdx-loader</code>,
<code>docusaurus-module-type-aliases</code>,
<code>docusaurus-plugin-client-redirects</code>,
<code>docusaurus-plugin-content-blog</code>,
<code>docusaurus-plugin-content-docs</code>,
<code>docusaurus-plugin-content-pages</code>,
<code>docusaurus-plugin-debug</code>,
<code>docusaurus-plugin-google-analytics</code>,
<code>docusaurus-plugin-google-gtag</code>,
<code>docusaurus-plugin-google-tag-manager</code>,
<code>docusaurus-plugin-ideal-image</code>,
<code>docusaurus-plugin-pwa</code>,
<code>docusaurus-plugin-rsdoctor</code>,
<code>docusaurus-plugin-sitemap</code>,
<code>docusaurus-plugin-svgr</code>,
<code>docusaurus-plugin-vercel-analytics</code>,
<code>docusaurus-preset-classic</code>,
<code>docusaurus-theme-classic</code>,
<code>docusaurus-theme-common</code>,
<code>docusaurus-theme-live-codeblock</code>,
<code>docusaurus-theme-mermaid</code>,
<code>docusaurus-theme-search-algolia</code>,
<code>docusaurus-types</code>, <code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10763">#10763</a>
feat: Add React 19 support to Docusaurus v3 (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-plugin-content-blog</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10729">#10729</a>
feat(blog): Add <code>frontMatter.sidebar_label</code> (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-module-type-aliases</code>,
<code>docusaurus-plugin-svgr</code>,
<code>docusaurus-preset-classic</code>, <code>docusaurus-types</code>,
<code>docusaurus-utils</code>, <code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10677">#10677</a>
feat(svgr): create new Docusaurus SVGR plugin (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>:bug: Bug Fix</h4>
<ul>
<li><code>docusaurus-remark-plugin-npm2yarn</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10803">#10803</a>
fix(npm-to-yarn): add missing npm-to-yarn converter for Bun (<a
href="https://github.com/Lehoczky"><code>@​Lehoczky</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-theme-classic</code>,
<code>docusaurus-theme-common</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10796">#10796</a>
fix(theme): Footer Column/Link should merge provided className (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-bundler</code>,
<code>docusaurus-theme-common</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10786">#10786</a>
fix(core): fix React hydration errors, change html minifier settings (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-theme-common</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10782">#10782</a>
fix(theme-common): code block magic comments should support SQL block
comments (<a
href="https://github.com/WillBlack403"><code>@​WillBlack403</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-theme-translations</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10783">#10783</a>
fix(theme-translations): Add missing Dutch (nl) theme translations (<a
href="https://github.com/janaukema"><code>@​janaukema</code></a>)</li>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10760">#10760</a>
fix(theme-translation): add missing Korean (ko) theme translations (<a
href="https://github.com/effozen"><code>@​effozen</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-plugin-content-docs</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10754">#10754</a>
fix(docs): fix sidebar item visibility bug for category index (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10727">#10727</a>
fix(core): fix codegen routesChunkName possible hash collision (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-mdx-loader</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10723">#10723</a>
fix(mdx-loader): fix md image paths with spaces bug related to
transformImage encoding problem (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>:memo: Documentation</h4>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10740">#10740</a>
docs: Link initialization docs together (<a
href="https://github.com/waldyrious"><code>@​waldyrious</code></a>)</li>
</ul>
<h4>:robot: Dependencies</h4>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10771">#10771</a>
chore(deps): bump nanoid from 3.3.7 to 3.3.8 (<a
href="https://github.com/apps/dependabot"><code>@​dependabot[bot]</code></a>)</li>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10721">#10721</a>
chore(deps): bump actions/dependency-review-action from 4.4.0 to 4.5.0
(<a
href="https://github.com/apps/dependabot"><code>@​dependabot[bot]</code></a>)</li>
</ul>
<h4>:wrench: Maintenance</h4>
<ul>
<li>Other
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10770">#10770</a>
chore: Devcontainer upgrade to Ubuntu Noble &amp; Node 22 (<a
href="https://github.com/GingerGeek"><code>@​GingerGeek</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-theme-search-algolia</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/10801">#10801</a>
refactor(algolia): simplify SearchBar component (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/facebook/docusaurus/commit/dd59750c16fe6908a26f18806a54d4c3dbe6db43"><code>dd59750</code></a>
v3.7.0</li>
<li><a
href="https://github.com/facebook/docusaurus/commit/0f29a37b3a6d3ee48ce21c69ddc7a9b8b5ff2165"><code>0f29a37</code></a>
feat: Add React 19 support to Docusaurus v3 (<a
href="https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-module-type-aliases/issues/10763">#10763</a>)</li>
<li><a
href="https://github.com/facebook/docusaurus/commit/f9825af43e1bbce6cf9761a21d477e8b13bd8cb7"><code>f9825af</code></a>
refactor: prepare types for React 19 (<a
href="https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-module-type-aliases/issues/10746">#10746</a>)</li>
<li><a
href="https://github.com/facebook/docusaurus/commit/df6f53a2f55bbb3c14ea813924615d8164c80ae1"><code>df6f53a</code></a>
feat(svgr): create new Docusaurus SVGR plugin (<a
href="https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-module-type-aliases/issues/10677">#10677</a>)</li>
<li><a
href="https://github.com/facebook/docusaurus/commit/fd43036ab80739119040f6c2b7393e0debd3da26"><code>fd43036</co…
Bumps [pigeon](https://github.com/flutter/packages/tree/main/packages)
from 22.7.4 to 24.1.0.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/flutter/packages/commit/cb1897817d8c038fcab099faf005831ba2e1bc1b"><code>cb18978</code></a>
[pigeon] Adds annotation options to omit shared classes used in Event
Channel...</li>
<li><a
href="https://github.com/flutter/packages/commit/bae29f6ed53c35bbcb48295b7bda42e1d60c6a3a"><code>bae29f6</code></a>
[quick_actions] Update Android Pigeon version (<a
href="https://github.com/flutter/packages/tree/main/packages/issues/8580">#8580</a>)</li>
<li><a
href="https://github.com/flutter/packages/commit/e6ce02c2a859b59c0b0575cd312ee4498af14dbc"><code>e6ce02c</code></a>
[vector_graphics] Allow transition between placeholder and loaded image
to ha...</li>
<li><a
href="https://github.com/flutter/packages/commit/5018fd3a1dfee5ebec3f8b7347e895463ac15ac1"><code>5018fd3</code></a>
[flutter_markdown] Make custom table column alignments work when text
wraps (...</li>
<li><a
href="https://github.com/flutter/packages/commit/e47b3d8f7a2979da8eeb85d4f30c99bbe23e65dc"><code>e47b3d8</code></a>
[interactive_media_ads] Adds internal wrapper for iOS native
<code>IMAAdPodInfo</code> (...</li>
<li><a
href="https://github.com/flutter/packages/commit/9c9006f1e23ac98094f9e7e4a3b656b833319ab2"><code>9c9006f</code></a>
[pigeon] reorg generator files (<a
href="https://github.com/flutter/packages/tree/main/packages/issues/8532">#8532</a>)</li>
<li><a
href="https://github.com/flutter/packages/commit/3960c96e3c37d3a346e4036e8e15472713818362"><code>3960c96</code></a>
[pigeon] [swift] Fix <code>PigeonError</code> sendability conformance in
Swift 6 (<a
href="https://github.com/flutter/packages/tree/main/packages/issues/8302">#8302</a>)</li>
<li><a
href="https://github.com/flutter/packages/commit/54ef96e47bb871f858264e25b5b8e1edb88eaf0e"><code>54ef96e</code></a>
[google_maps_flutter] Support for Ground Overlay - platform interface
(<a
href="https://github.com/flutter/packages/tree/main/packages/issues/8518">#8518</a>)</li>
<li><a
href="https://github.com/flutter/packages/commit/65177cb7b24f8be8ffbcd80f821d8686530dc179"><code>65177cb</code></a>
[vector_graphics] Revert leak tracker change (<a
href="https://github.com/flutter/packages/tree/main/packages/issues/8544">#8544</a>)</li>
<li><a
href="https://github.com/flutter/packages/commit/c6fcb9bbc10dcaca918be35de421355afcdf5d2b"><code>c6fcb9b</code></a>
[shared_preferences_tool] Loosen vm_service constraint to allow for 15
(<a
href="https://github.com/flutter/packages/tree/main/packages/issues/8539">#8539</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/flutter/packages/commits/pigeon-v24.1.0/packages">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=pigeon&package-manager=pub&previous-version=22.7.4&new-version=24.1.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (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: Joscha <[email protected]>
- merge `ui` example with `styled-map`
- don't use parameters that are null for animateCamera and moveCamera
- add removePinchOnPressed to MapCompass
- refactor code
- underline SourceAttribution attributions on hover
- add max width to the SourceAttribution widget
This PR will add the option to add gesture detection on widgets inside
the WidgetLayer. See discussion
josxha#204

Changes:
- Add property `bool allowInteraction` to class WidgetLayer
  - Property is not required in constructor.
  - Default value is `false`.
- Refactor creation of marker widgets:
- Add/remove `TranslucentPointer` to allow/disallow gesture detection,
depending on value of `allowInteraction`
- Fix Exception when user has added/removed a marker and `FutureBuilder`
returns the previous cached value offsets list.

---------

Co-authored-by: Joscha Eckert <[email protected]>
This PR adds a new example showing the newly added interactivity option
on WidgetLayer. This PR builds upon PR
josxha#213 which add
interactivity to widgets in the WidgetLayer.

Example allows user to:
- Long tap map: Add marker.
- Tap marker: Show dialog.
- Long tap marker: Show popup menu.
- Tap+drag marker: Move marker around. When drag ends, user is asked to
accept/discard the move.

---------

Co-authored-by: Joscha <[email protected]>
### Changes
- bump min flutter version to 3.29.0, min dart version to 3.7.0
- dart format

### Additional information
This pull request is considered non breaking because flutter won't
resolve the new version of the package if the version of flutter is
incompatible.
- moveCamera()
- fitCamera()
- animateCamera()
> Exception thrown:
*"Exception has occurred.
StateError (Bad state: Element type of JArray must be nullable when all
elements with null
Try using .nullableType instead)*"
See StyleControllerAndroid line 86

reported in josxha#211
…nd_yarn group (josxha#229)

Bumps the npm_and_yarn group in /docs with 1 update:
[dompurify](https://github.com/cure53/DOMPurify).

Updates `dompurify` from 3.2.2 to 3.2.4
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/cure53/DOMPurify/releases">dompurify's
releases</a>.</em></p>
<blockquote>
<h2>DOMPurify 3.2.4</h2>
<ul>
<li>Fixed a conditional and config dependent mXSS-style <a
href="https://nsysean.github.io/posts/dompurify-323-bypass/">bypass</a>
reported by <a
href="https://github.com/nsysean"><code>@​nsysean</code></a></li>
<li>Added a new feature to allow specific hook removal, thanks <a
href="https://github.com/davecardwell"><code>@​davecardwell</code></a></li>
<li>Added <em>purify.js</em> and <em>purify.min.js</em> to exports,
thanks <a
href="https://github.com/Aetherinox"><code>@​Aetherinox</code></a></li>
<li>Added better logic in case no window object is president, thanks <a
href="https://github.com/yehuya"><code>@​yehuya</code></a></li>
<li>Updated some dependencies called out by dependabot</li>
<li>Updated license files etc to show the correct year</li>
</ul>
<h2>DOMPurify 3.2.3</h2>
<ul>
<li>Fixed two conditional sanitizer bypasses discovered by <a
href="https://github.com/parrot409"><code>@​parrot409</code></a> and <a
href="https://x.com/slonser_"><code>@​Slonser</code></a></li>
<li>Updated the attribute clobbering checks to prevent future bypasses,
thanks <a
href="https://github.com/parrot409"><code>@​parrot409</code></a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/cure53/DOMPurify/commit/ec29e65f3675077c1a78e6edcab97f797f004a2e"><code>ec29e65</code></a>
Merge pull request <a
href="https://redirect.github.com/cure53/DOMPurify/issues/1062">#1062</a>
from cure53/main</li>
<li><a
href="https://github.com/cure53/DOMPurify/commit/1c1b1838625851939d4b86436feeb3e3ccb7dbb6"><code>1c1b183</code></a>
chore: Preparing 3.2.4 release</li>
<li><a
href="https://github.com/cure53/DOMPurify/commit/d18ffcb554e0001748865da03ac75dd7829f0f02"><code>d18ffcb</code></a>
fix: Changed the template literal regex to avoid a config-dependent
bypass</li>
<li><a
href="https://github.com/cure53/DOMPurify/commit/0d64d2b12f9ecaa28899c60aba0b9ed5072c4d93"><code>0d64d2b</code></a>
Merge pull request <a
href="https://redirect.github.com/cure53/DOMPurify/issues/1060">#1060</a>
from yehuya/initializeTestImprovements</li>
<li><a
href="https://github.com/cure53/DOMPurify/commit/9ad79331566e0671788b120cc1f682f4e7f33f44"><code>9ad7933</code></a>
tests: DOMPurify custom window tests improvements</li>
<li><a
href="https://github.com/cure53/DOMPurify/commit/72760ca8ee425c3129420390d4c10afe698ff2fb"><code>72760ca</code></a>
Merge pull request <a
href="https://redirect.github.com/cure53/DOMPurify/issues/1059">#1059</a>
from yehuya/fixMissingWindowElement</li>
<li><a
href="https://github.com/cure53/DOMPurify/commit/bc72d44b2e3cec00d8ef2427869d03cb668969fa"><code>bc72d44</code></a>
Fix tests</li>
<li><a
href="https://github.com/cure53/DOMPurify/commit/363a89dd3a051b72334cd4d0c867616fdc4ee40d"><code>363a89d</code></a>
fix: handle undefined Element in DOMPurify initialization</li>
<li><a
href="https://github.com/cure53/DOMPurify/commit/f41b45df18a9666a50c1ad2662cee259230cfef4"><code>f41b45d</code></a>
Update LICENSE</li>
<li><a
href="https://github.com/cure53/DOMPurify/commit/b25bf26d674ff4db9074cef01fc51490cb1369a0"><code>b25bf26</code></a>
Update README.md</li>
<li>Additional commits viewable in <a
href="https://github.com/cure53/DOMPurify/compare/3.2.2...3.2.4">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=dompurify&package-manager=npm_and_yarn&previous-version=3.2.2&new-version=3.2.4)](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
You can disable automated security fix PRs for this repo from the
[Security Alerts
page](https://github.com/josxha/flutter-maplibre/network/alerts).

</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…in /android in the dependencies group across 1 directory (josxha#232)

Bumps the dependencies group with 1 update in the /android directory:
com.android.tools.build:gradle.

Updates `com.android.tools.build:gradle` from 8.8.0 to 8.8.1

<details>
<summary>Most Recent Ignore Conditions Applied to This Pull
Request</summary>

| Dependency Name | Ignore Conditions |
| --- | --- |
| com.android.tools.build:gradle | [>= 8.7.a, < 8.8] |
</details>


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.android.tools.build:gradle&package-manager=gradle&previous-version=8.8.0&new-version=8.8.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (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>
…updates (josxha#239)

Bumps the dependencies group with 3 updates in the /android directory:
com.android.tools.build:gradle, org.jlleitschuh.gradle:ktlint-gradle and
[org.mockito:mockito-core](https://github.com/mockito/mockito).
Bumps the dependencies group with 1 update in the /example/android
directory: org.jlleitschuh.gradle.ktlint.

Updates `com.android.tools.build:gradle` from 8.8.1 to 8.8.2

Updates `org.jlleitschuh.gradle:ktlint-gradle` from 12.1.+ to 12.2.0

Updates `org.mockito:mockito-core` from 5.15.2 to 5.16.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/mockito/mockito/releases">org.mockito:mockito-core's
releases</a>.</em></p>
<blockquote>
<h2>v5.16.0</h2>
<p><!-- raw HTML omitted --><!-- raw HTML omitted --><em>Changelog
generated by <a
href="https://github.com/shipkit/shipkit-changelog">Shipkit Changelog
Gradle Plugin</a></em><!-- raw HTML omitted --><!-- raw HTML omitted
--></p>
<h4>5.16.0</h4>
<ul>
<li>2025-03-03 - <a
href="https://github.com/mockito/mockito/compare/v5.15.2...v5.16.0">10
commit(s)</a> by Brice Dutheil, Rafael Winterhalter, TDL,
dependabot[bot]</li>
<li>Add support for including module-info in Mockito. [(<a
href="https://redirect.github.com/mockito/mockito/issues/3597">#3597</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3597">mockito/mockito#3597</a>)</li>
<li>Bump com.gradle.develocity from 3.19 to 3.19.1 [(<a
href="https://redirect.github.com/mockito/mockito/issues/3579">#3579</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3579">mockito/mockito#3579</a>)</li>
<li>Bump org.assertj:assertj-core from 3.27.2 to 3.27.3 [(<a
href="https://redirect.github.com/mockito/mockito/issues/3577">#3577</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3577">mockito/mockito#3577</a>)</li>
<li>Bump com.diffplug.spotless:spotless-plugin-gradle from 7.0.1 to
7.0.2 [(<a
href="https://redirect.github.com/mockito/mockito/issues/3574">#3574</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3574">mockito/mockito#3574</a>)</li>
<li>Bump com.diffplug.spotless:spotless-plugin-gradle from 6.25.0 to
7.0.1 [(<a
href="https://redirect.github.com/mockito/mockito/issues/3571">#3571</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3571">mockito/mockito#3571</a>)</li>
<li>Bump org.assertj:assertj-core from 3.27.1 to 3.27.2 [(<a
href="https://redirect.github.com/mockito/mockito/issues/3569">#3569</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3569">mockito/mockito#3569</a>)</li>
<li>Tweaks documentation on mockito agent config for maven [(<a
href="https://redirect.github.com/mockito/mockito/issues/3568">#3568</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3568">mockito/mockito#3568</a>)</li>
<li>Adds <code>--info</code> to diagnose
closeAndReleaseStagingRepositories issues [(<a
href="https://redirect.github.com/mockito/mockito/issues/3567">#3567</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3567">mockito/mockito#3567</a>)</li>
<li>Refine reflection when calling management factory [(<a
href="https://redirect.github.com/mockito/mockito/issues/3566">#3566</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3566">mockito/mockito#3566</a>)</li>
<li>Avoid warning when dynamic attach is enabled [(<a
href="https://redirect.github.com/mockito/mockito/issues/3551">#3551</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3551">mockito/mockito#3551</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/mockito/mockito/commit/c81be5deedfd966bd17c9619769a34c74d9779e6"><code>c81be5d</code></a>
Add support for including module-info in Mockito. (<a
href="https://redirect.github.com/mockito/mockito/issues/3597">#3597</a>)</li>
<li><a
href="https://github.com/mockito/mockito/commit/d01ac9d8222b01d6694b11a9978a91eb9aced5b1"><code>d01ac9d</code></a>
Issue <a
href="https://redirect.github.com/mockito/mockito/issues/3584">#3584</a>
Improve Gradle Kotlin documentation to add agent</li>
<li><a
href="https://github.com/mockito/mockito/commit/83ee69b8b927e166f7a8acf6e789a26a58f63567"><code>83ee69b</code></a>
Bump com.gradle.develocity from 3.19 to 3.19.1 (<a
href="https://redirect.github.com/mockito/mockito/issues/3579">#3579</a>)</li>
<li><a
href="https://github.com/mockito/mockito/commit/289e97126431d48d835c921789039d2bcb8ddd82"><code>289e971</code></a>
Bump org.assertj:assertj-core from 3.27.2 to 3.27.3 (<a
href="https://redirect.github.com/mockito/mockito/issues/3577">#3577</a>)</li>
<li><a
href="https://github.com/mockito/mockito/commit/1ab848368745281e0fb811f2ad2728ef5178e135"><code>1ab8483</code></a>
Bump com.diffplug.spotless:spotless-plugin-gradle from 7.0.1 to 7.0.2
(<a
href="https://redirect.github.com/mockito/mockito/issues/3574">#3574</a>)</li>
<li><a
href="https://github.com/mockito/mockito/commit/fdb5df19862559d01c9755eecc7d1ab818c10eb6"><code>fdb5df1</code></a>
Bump com.diffplug.spotless:spotless-plugin-gradle from 6.25.0 to 7.0.1
(<a
href="https://redirect.github.com/mockito/mockito/issues/3571">#3571</a>)</li>
<li><a
href="https://github.com/mockito/mockito/commit/e280630e98e21a23c4493dd808c7b79356613cbf"><code>e280630</code></a>
Bump org.assertj:assertj-core from 3.27.1 to 3.27.2 (<a
href="https://redirect.github.com/mockito/mockito/issues/3569">#3569</a>)</li>
<li><a
href="https://github.com/mockito/mockito/commit/96c2095e4f790d0c3a2c120d7f54c9cf44572b30"><code>96c2095</code></a>
Tweak documentation on mockito agent config for maven (<a
href="https://redirect.github.com/mockito/mockito/issues/3568">#3568</a>)</li>
<li><a
href="https://github.com/mockito/mockito/commit/1c3800dff2006ff436f017afdfd926c6d64e7bb7"><code>1c3800d</code></a>
Add <code>--info</code> to diagnose release issues (<a
href="https://redirect.github.com/mockito/mockito/issues/3567">#3567</a>)</li>
<li><a
href="https://github.com/mockito/mockito/commit/e9a4c774ecfcfd0fd00ac3979f711a31724d0c4a"><code>e9a4c77</code></a>
Refine reflection when calling management factory (<a
href="https://redirect.github.com/mockito/mockito/issues/3566">#3566</a>)</li>
<li>See full diff in <a
href="https://github.com/mockito/mockito/compare/v5.15.2...v5.16.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `org.jlleitschuh.gradle.ktlint` from 12.1.+ to 12.2.0

<details>
<summary>Most Recent Ignore Conditions Applied to This Pull
Request</summary>

| Dependency Name | Ignore Conditions |
| --- | --- |
| com.android.tools.build:gradle | [>= 8.7.a, < 8.8] |
</details>


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>
…dependencies group (josxha#238)

Bumps the dependencies group in /docs with 1 update:
[typescript](https://github.com/microsoft/TypeScript).

Updates `typescript` from 5.7.3 to 5.8.2
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/microsoft/TypeScript/releases">typescript's
releases</a>.</em></p>
<blockquote>
<h2>TypeScript 5.8</h2>
<p>For release notes, check out the <a
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-8/">release
announcement</a>.</p>
<ul>
<li><a
href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.8.0%22+is%3Aclosed+">fixed
issues query for Typescript 5.8.0 (Beta)</a>.</li>
<li><a
href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.8.1%22+is%3Aclosed+">fixed
issues query for Typescript 5.8.1 (RC)</a>.</li>
<li><a
href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.8.2%22+is%3Aclosed+">fixed
issues query for Typescript 5.8.2 (Stable)</a>.</li>
</ul>
<p>Downloads are available on:</p>
<ul>
<li><a href="https://www.npmjs.com/package/typescript">npm</a></li>
</ul>
<h2>TypeScript 5.8 RC</h2>
<p>For release notes, check out the <a
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-8-rc/">release
announcement</a>.</p>
<ul>
<li><a
href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.8.0%22+is%3Aclosed+">fixed
issues query for Typescript 5.8.0 (Beta)</a>.</li>
<li><a
href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.8.1%22+is%3Aclosed+">fixed
issues query for Typescript 5.8.1 (RC)</a>.</li>
</ul>
<p>Downloads are available on:</p>
<ul>
<li><a href="https://www.npmjs.com/package/typescript">npm</a></li>
</ul>
<h2>TypeScript 5.8 Beta</h2>
<p>For release notes, check out the <a
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-8-beta/">release
announcement</a>.</p>
<ul>
<li><a
href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.8.0%22+is%3Aclosed+">fixed
issues query for Typescript 5.8.0 (Beta)</a>.</li>
</ul>
<p>Downloads are available on:</p>
<ul>
<li><a href="https://www.npmjs.com/package/typescript">npm</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/microsoft/TypeScript/commit/beb69e4cdd61b1a0fd9ae21ae58bd4bd409d7217"><code>beb69e4</code></a>
Bump version to 5.8.2 and LKG</li>
<li><a
href="https://github.com/microsoft/TypeScript/commit/8fdbd54160e5a6796a2c2522222553e79d61ec7c"><code>8fdbd54</code></a>
🤖 Pick PR <a
href="https://redirect.github.com/microsoft/TypeScript/issues/61210">#61210</a>
(Fix mistakenly disallowed default e...) into release-5.8 (#...</li>
<li><a
href="https://github.com/microsoft/TypeScript/commit/f4a3a8ae67f2bb437cceec710979c3c107cff177"><code>f4a3a8a</code></a>
🤖 Pick PR <a
href="https://redirect.github.com/microsoft/TypeScript/issues/61175">#61175</a>
(Ban import=require and export= unde...) into release-5.8 (#...</li>
<li><a
href="https://github.com/microsoft/TypeScript/commit/420ff069f7e1844c0b94f591acbd4aa68846e295"><code>420ff06</code></a>
Bump version to 5.8.1-rc and LKG</li>
<li><a
href="https://github.com/microsoft/TypeScript/commit/48eb13fd4ac9cfa1ef67b688e735aae48a24d300"><code>48eb13f</code></a>
Update LKG</li>
<li><a
href="https://github.com/microsoft/TypeScript/commit/fb59c19064a547dd08e02b58fec0c6213711a1f3"><code>fb59c19</code></a>
Merge remote-tracking branch 'origin/main' into release-5.8</li>
<li><a
href="https://github.com/microsoft/TypeScript/commit/df342b7206cb56b56bb3b3aecbb2ee2d2ff7b217"><code>df342b7</code></a>
Fixed <code>rewriteRelativeImportExtensions</code> for
<code>import()</code> within call expression...</li>
<li><a
href="https://github.com/microsoft/TypeScript/commit/775412a81af187e67371cd31719d19ab075b4ef3"><code>775412a</code></a>
Bump github/codeql-action from 3.28.8 to 3.28.9 in the github-actions
group (...</li>
<li><a
href="https://github.com/microsoft/TypeScript/commit/e1629e540ef361167e0c96c8703728a419b6e8e9"><code>e1629e5</code></a>
Pass ignoreErrors=true to more resolveEntityName callers (<a
href="https://redirect.github.com/microsoft/TypeScript/issues/61144">#61144</a>)</li>
<li><a
href="https://github.com/microsoft/TypeScript/commit/6fd17992b00a6e64b51fef60e334b71904d06a54"><code>6fd1799</code></a>
Update LKG</li>
<li>Additional commits viewable in <a
href="https://github.com/microsoft/TypeScript/compare/v5.7.3...v5.8.2">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=typescript&package-manager=npm_and_yarn&previous-version=5.7.3&new-version=5.8.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot 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>
- [x] requestLocationPermissions()
- [x] addLayer()
…in /android in the dependencies group across 1 directory (josxha#242)

Bumps the dependencies group with 1 update in the /android directory:
com.android.tools.build:gradle.

Updates `com.android.tools.build:gradle` from 8.8.2 to 8.9.0

<details>
<summary>Most Recent Ignore Conditions Applied to This Pull
Request</summary>

| Dependency Name | Ignore Conditions |
| --- | --- |
| com.android.tools.build:gradle | [>= 8.7.a, < 8.8] |
</details>


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.android.tools.build:gradle&package-manager=gradle&previous-version=8.8.2&new-version=8.9.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>
…nd_yarn group (josxha#243)

Bumps the npm_and_yarn group in /docs with 1 update:
[prismjs](https://github.com/PrismJS/prism).

Updates `prismjs` from 1.29.0 to 1.30.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/PrismJS/prism/releases">prismjs's
releases</a>.</em></p>
<blockquote>
<h2>v1.30.0</h2>
<h2>What's Changed</h2>
<ul>
<li>check that <code>currentScript</code> is set by a script tag by <a
href="https://github.com/lkuechler"><code>@​lkuechler</code></a> in <a
href="https://redirect.github.com/PrismJS/prism/pull/3863">PrismJS/prism#3863</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/lkuechler"><code>@​lkuechler</code></a>
made their first contribution in <a
href="https://redirect.github.com/PrismJS/prism/pull/3863">PrismJS/prism#3863</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/PrismJS/prism/compare/v1.29.0...v1.30.0">https://github.com/PrismJS/prism/compare/v1.29.0...v1.30.0</a></p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/PrismJS/prism/blob/master/CHANGELOG.md">prismjs's
changelog</a>.</em></p>
<blockquote>
<h1>Prism Changelog</h1>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/PrismJS/prism/commit/76dde18a575831c91491895193f56081ac08b0c5"><code>76dde18</code></a>
Release 1.30.0</li>
<li><a
href="https://github.com/PrismJS/prism/commit/93cca40b364215210f23a9e35f085a682a2b8175"><code>93cca40</code></a>
npm pkg fix</li>
<li><a
href="https://github.com/PrismJS/prism/commit/99c5ca970f18f744d75e473573d4679100f87086"><code>99c5ca9</code></a>
Add release script</li>
<li><a
href="https://github.com/PrismJS/prism/commit/8e8b9352dac64457194dd9e51096b4772532e53d"><code>8e8b935</code></a>
check that currentScript is set by a script tag (<a
href="https://redirect.github.com/PrismJS/prism/issues/3863">#3863</a>)</li>
<li><a
href="https://github.com/PrismJS/prism/commit/f894dc2cbb507f565a046fed844fd541f07aa191"><code>f894dc2</code></a>
Fix logo in the footer</li>
<li><a
href="https://github.com/PrismJS/prism/commit/ac38dcec9bea6bac064a7264b7aeba086e3102bf"><code>ac38dce</code></a>
Delete CNAME</li>
<li><a
href="https://github.com/PrismJS/prism/commit/9b5b09aef4dc2c18c28d2f5a6244d4efcc6ab5cb"><code>9b5b09a</code></a>
Enable CORS</li>
<li>See full diff in <a
href="https://github.com/PrismJS/prism/compare/v1.29.0...v1.30.0">compare
view</a></li>
</ul>
</details>
<details>
<summary>Maintainer changes</summary>
<p>This version was pushed to npm by <a
href="https://www.npmjs.com/~dmitrysharabin">dmitrysharabin</a>, a new
releaser for prismjs since your current version.</p>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=prismjs&package-manager=npm_and_yarn&previous-version=1.29.0&new-version=1.30.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
You can disable automated security fix PRs for this repo from the
[Security Alerts
page](https://github.com/josxha/flutter-maplibre/network/alerts).

</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Joscha Eckert <[email protected]>
…xha#245)

Bumps the npm_and_yarn group in /docs with 3 updates:
[@babel/helpers](https://github.com/babel/babel/tree/HEAD/packages/babel-helpers),
[@babel/runtime-corejs3](https://github.com/babel/babel/tree/HEAD/packages/babel-runtime-corejs3)
and
[@babel/runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-runtime).

Updates `@babel/helpers` from 7.25.6 to 7.26.10
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/babel/babel/releases"><code>@​babel/helpers</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v7.26.10 (2025-03-11)</h2>
<p>Thanks <a
href="https://github.com/jordan-choi"><code>@​jordan-choi</code></a> and
<a
href="https://github.com/mmmsssttt404"><code>@​mmmsssttt404</code></a>
for your first PRs!</p>
<p>This release includes a fix for <a
href="https://github.com/babel/babel/security/advisories/GHSA-968p-4wvh-cqc8">https://github.com/babel/babel/security/advisories/GHSA-968p-4wvh-cqc8</a>,
a security vulnerability which affects the <code>.replace</code> method
of transpiled regular expressions that use named capturing groups.</p>
<h4>:eyeglasses: Spec Compliance</h4>
<ul>
<li><code>babel-parser</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17159">#17159</a>
Disallow decorator in array pattern (<a
href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li>
</ul>
</li>
</ul>
<h4>:bug: Bug Fix</h4>
<ul>
<li><code>babel-parser</code>, <code>babel-template</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17164">#17164</a>
Fix: always initialize ExportDeclaration attributes (<a
href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li>
</ul>
</li>
<li><code>babel-core</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17142">#17142</a>
fix: &quot;Map maximum size exceeded&quot; in deepClone (<a
href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li>
</ul>
</li>
<li><code>babel-parser</code>,
<code>babel-plugin-transform-typescript</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17154">#17154</a>
Update typescript parser tests (<a
href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li>
</ul>
</li>
<li><code>babel-traverse</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17151">#17151</a>
fix: Should not evaluate vars in child scope (<a
href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li>
</ul>
</li>
<li><code>babel-generator</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17153">#17153</a>
fix: Correctly generate <code>abstract override</code> (<a
href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li>
</ul>
</li>
<li><code>babel-parser</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17107">#17107</a> Fix
source type detection when parsing TypeScript (<a
href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li>
</ul>
</li>
<li><code>babel-helpers</code>, <code>babel-runtime</code>,
<code>babel-runtime-corejs2</code>, <code>babel-runtime-corejs3</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17173">#17173</a> Fix
processing of replacement pattern with named capture groups (<a
href="https://github.com/%5Bmmmsssttt404%5D(https://github.com/mmmsssttt404)"><code>@​mmmsssttt404</code></a>)</li>
</ul>
</li>
</ul>
<h4>:nail_care: Polish</h4>
<ul>
<li><code>babel-standalone</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17158">#17158</a>
Avoid warnings when re-bundling <code>@​babel/standalone</code> with
webpack (<a
href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li>
</ul>
</li>
</ul>
<h4>:house: Internal</h4>
<ul>
<li><code>babel-parser</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17160">#17160</a>
Left-value parsing cleanup (<a
href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li>
</ul>
</li>
</ul>
<h4>Committers: 6</h4>
<ul>
<li>Babel Bot (<a
href="https://github.com/babel-bot"><code>@​babel-bot</code></a>)</li>
<li>Huáng Jùnliàng (<a
href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li>
<li>Nicolò Ribaudo (<a
href="https://github.com/nicolo-ribaudo"><code>@​nicolo-ribaudo</code></a>)</li>
<li>Yunyoung Jordan Choi (<a
href="https://github.com/jordan-choi"><code>@​jordan-choi</code></a>)</li>
<li><a
href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a></li>
<li><a
href="https://github.com/mmmsssttt404"><code>@​mmmsssttt404</code></a></li>
</ul>
<h2>v7.26.9 (2025-02-14)</h2>
<h4>:bug: Bug Fix</h4>
<ul>
<li><code>babel-types</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17103">#17103</a>
fix: Definition for <code>TSPropertySignature.kind</code> (<a
href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li>
</ul>
</li>
<li><code>babel-generator</code>, <code>babel-types</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17062">#17062</a>
Print TypeScript optional/definite in ClassPrivateProperty (<a
href="https://github.com/jamiebuilds-signal"><code>@​jamiebuilds-signal</code></a>)</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/babel/babel/blob/main/CHANGELOG.md"><code>@​babel/helpers</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>v7.26.10 (2025-03-11)</h2>
<h4>:eyeglasses: Spec Compliance</h4>
<ul>
<li><code>babel-parser</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17159">#17159</a>
Disallow decorator in array pattern (<a
href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li>
</ul>
</li>
</ul>
<h4>:bug: Bug Fix</h4>
<ul>
<li><code>babel-parser</code>, <code>babel-template</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17164">#17164</a>
Fix: always initialize ExportDeclaration attributes (<a
href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li>
</ul>
</li>
<li><code>babel-core</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17142">#17142</a>
fix: &quot;Map maximum size exceeded&quot; in deepClone (<a
href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li>
</ul>
</li>
<li><code>babel-parser</code>,
<code>babel-plugin-transform-typescript</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17154">#17154</a>
Update typescript parser tests (<a
href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li>
</ul>
</li>
<li><code>babel-traverse</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17151">#17151</a>
fix: Should not evaluate vars in child scope (<a
href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li>
</ul>
</li>
<li><code>babel-generator</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17153">#17153</a>
fix: Correctly generate <code>abstract override</code> (<a
href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li>
</ul>
</li>
<li><code>babel-parser</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17107">#17107</a> Fix
source type detection when parsing TypeScript (<a
href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li>
</ul>
</li>
<li><code>babel-helpers</code>, <code>babel-runtime</code>,
<code>babel-runtime-corejs2</code>, <code>babel-runtime-corejs3</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17173">#17173</a> Fix
processing of replacement pattern with named capture groups (<a
href="https://github.com/%5Bmmmsssttt404%5D(https://github.com/mmmsssttt404)"><code>@​mmmsssttt404</code></a>)</li>
</ul>
</li>
</ul>
<h4>:nail_care: Polish</h4>
<ul>
<li><code>babel-standalone</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17158">#17158</a>
Avoid warnings when re-bundling <code>@​babel/standalone</code> with
webpack (<a
href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li>
</ul>
</li>
</ul>
<h4>:house: Internal</h4>
<ul>
<li><code>babel-parser</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17160">#17160</a>
Left-value parsing cleanup (<a
href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li>
</ul>
</li>
</ul>
<h2>v7.26.9 (2025-02-14)</h2>
<h4>:bug: Bug Fix</h4>
<ul>
<li><code>babel-types</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17103">#17103</a>
fix: Definition for <code>TSPropertySignature.kind</code> (<a
href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li>
</ul>
</li>
<li><code>babel-generator</code>, <code>babel-types</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17062">#17062</a>
Print TypeScript optional/definite in ClassPrivateProperty (<a
href="https://github.com/jamiebuilds-signal"><code>@​jamiebuilds-signal</code></a>)</li>
</ul>
</li>
</ul>
<h4>:house: Internal</h4>
<ul>
<li><code>babel-types</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17130">#17130</a> Use
<code>.ts</code> files with explicit reexports to solve name conflicts
(<a
href="https://github.com/nicolo-ribaudo"><code>@​nicolo-ribaudo</code></a>)</li>
</ul>
</li>
<li><code>babel-core</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17127">#17127</a> Do
not depend on <code>@types/gensync</code> in Babel 7 (<a
href="https://github.com/nicolo-ribaudo"><code>@​nicolo-ribaudo</code></a>)</li>
</ul>
</li>
</ul>
<h2>v7.26.7 (2025-01-24)</h2>
<h4>:bug: Bug Fix</h4>
<ul>
<li><code>babel-helpers</code>, <code>babel-preset-env</code>,
<code>babel-runtime-corejs3</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17086">#17086</a>
Make &quot;object without properties&quot; helpers ES6-compatible (<a
href="https://github.com/tquetano-netflix"><code>@​tquetano-netflix</code></a>)</li>
</ul>
</li>
<li><code>babel-plugin-transform-typeof-symbol</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17085">#17085</a>
fix: Correctly handle <code>typeof</code> in arrow functions (<a
href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li>
</ul>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/babel/babel/commit/e1ce99df422971175249509e7bbc2b327b8f7957"><code>e1ce99d</code></a>
v7.26.10</li>
<li><a
href="https://github.com/babel/babel/commit/d5952e80c0faa5ec20e35085531b6e572d31dad4"><code>d5952e8</code></a>
Fix processing of replacement pattern with named capture groups (<a
href="https://github.com/babel/babel/tree/HEAD/packages/babel-helpers/issues/17173">#17173</a>)</li>
<li><a
href="https://github.com/babel/babel/commit/64bca7b5f308cd52c192a5c821a57f6d1b0475f4"><code>64bca7b</code></a>
v7.26.9</li>
<li><a
href="https://github.com/babel/babel/commit/4cf5c9e0fbe8899bb9eb0dac7c615406a4fe926d"><code>4cf5c9e</code></a>
[babel 8] Use <code>@babel/types</code> for parser's return type (<a
href="https://github.com/babel/babel/tree/HEAD/packages/babel-helpers/issues/17117">#17117</a>)</li>
<li><a
href="https://github.com/babel/babel/commit/2d9514066e3b135835ed93246ebbcdb7ca0263ca"><code>2d95140</code></a>
v7.26.7</li>
<li><a
href="https://github.com/babel/babel/commit/0e6199b2aac12f41053416977379066e80ef14a7"><code>0e6199b</code></a>
Make &quot;object without properties&quot; helpers ES6-compatible (<a
href="https://github.com/babel/babel/tree/HEAD/packages/babel-helpers/issues/17086">#17086</a>)</li>
<li><a
href="https://github.com/babel/babel/commit/cd24cc07ef6558b7f6510f9177f6393c91b0549f"><code>cd24cc0</code></a>
chore: Update TS 5.7 (<a
href="https://github.com/babel/babel/tree/HEAD/packages/babel-helpers/issues/17053">#17053</a>)</li>
<li><a
href="https://github.com/babel/babel/commit/63d30381c169780460e01bdb6669c5e01af1dfbe"><code>63d3038</code></a>
v7.26.0</li>
<li><a
href="https://github.com/babel/babel/commit/bfa56c49569f0bfd5579e0e1870ffa92f74fad48"><code>bfa56c4</code></a>
Support <code>import()</code> in <code>rewriteImportExtensions</code>
(<a
href="https://github.com/babel/babel/tree/HEAD/packages/babel-helpers/issues/16794">#16794</a>)</li>
<li><a
href="https://github.com/babel/babel/commit/b07957ebb316a1e2fc67454fc7423508bb942e63"><code>b07957e</code></a>
v7.25.9</li>
<li>Additional commits viewable in <a
href="https://github.com/babel/babel/commits/v7.26.10/packages/babel-helpers">compare
view</a></li>
</ul>
</details>
<br />

Updates `@babel/runtime-corejs3` from 7.26.0 to 7.26.10
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/babel/babel/releases"><code>@​babel/runtime-corejs3</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v7.26.10 (2025-03-11)</h2>
<p>Thanks <a
href="https://github.com/jordan-choi"><code>@​jordan-choi</code></a> and
<a
href="https://github.com/mmmsssttt404"><code>@​mmmsssttt404</code></a>
for your first PRs!</p>
<p>This release includes a fix for <a
href="https://github.com/babel/babel/security/advisories/GHSA-968p-4wvh-cqc8">https://github.com/babel/babel/security/advisories/GHSA-968p-4wvh-cqc8</a>,
a security vulnerability which affects the <code>.replace</code> method
of transpiled regular expressions that use named capturing groups.</p>
<h4>:eyeglasses: Spec Compliance</h4>
<ul>
<li><code>babel-parser</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17159">#17159</a>
Disallow decorator in array pattern (<a
href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li>
</ul>
</li>
</ul>
<h4>:bug: Bug Fix</h4>
<ul>
<li><code>babel-parser</code>, <code>babel-template</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17164">#17164</a>
Fix: always initialize ExportDeclaration attributes (<a
href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li>
</ul>
</li>
<li><code>babel-core</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17142">#17142</a>
fix: &quot;Map maximum size exceeded&quot; in deepClone (<a
href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li>
</ul>
</li>
<li><code>babel-parser</code>,
<code>babel-plugin-transform-typescript</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17154">#17154</a>
Update typescript parser tests (<a
href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li>
</ul>
</li>
<li><code>babel-traverse</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17151">#17151</a>
fix: Should not evaluate vars in child scope (<a
href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li>
</ul>
</li>
<li><code>babel-generator</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17153">#17153</a>
fix: Correctly generate <code>abstract override</code> (<a
href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li>
</ul>
</li>
<li><code>babel-parser</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17107">#17107</a> Fix
source type detection when parsing TypeScript (<a
href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li>
</ul>
</li>
<li><code>babel-helpers</code>, <code>babel-runtime</code>,
<code>babel-runtime-corejs2</code>, <code>babel-runtime-corejs3</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17173">#17173</a> Fix
processing of replacement pattern with named capture groups (<a
href="https://github.com/%5Bmmmsssttt404%5D(https://github.com/mmmsssttt404)"><code>@​mmmsssttt404</code></a>)</li>
</ul>
</li>
</ul>
<h4>:nail_care: Polish</h4>
<ul>
<li><code>babel-standalone</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17158">#17158</a>
Avoid warnings when re-bundling <code>@​babel/standalone</code> with
webpack (<a
href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li>
</ul>
</li>
</ul>
<h4>:house: Internal</h4>
<ul>
<li><code>babel-parser</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17160">#17160</a>
Left-value parsing cleanup (<a
href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li>
</ul>
</li>
</ul>
<h4>Committers: 6</h4>
<ul>
<li>Babel Bot (<a
href="https://github.com/babel-bot"><code>@​babel-bot</code></a>)</li>
<li>Huáng Jùnliàng (<a
href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li>
<li>Nicolò Ribaudo (<a
href="https://github.com/nicolo-ribaudo"><code>@​nicolo-ribaudo</code></a>)</li>
<li>Yunyoung Jordan Choi (<a
href="https://github.com/jordan-choi"><code>@​jordan-choi</code></a>)</li>
<li><a
href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a></li>
<li><a
href="https://github.com/mmmsssttt404"><code>@​mmmsssttt404</code></a></li>
</ul>
<h2>v7.26.9 (2025-02-14)</h2>
<h4>:bug: Bug Fix</h4>
<ul>
<li><code>babel-types</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17103">#17103</a>
fix: Definition for <code>TSPropertySignature.kind</code> (<a
href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li>
</ul>
</li>
<li><code>babel-generator</code>, <code>babel-types</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17062">#17062</a>
Print TypeScript optional/definite in ClassPrivateProperty (<a
href="https://github.com/jamiebuilds-signal"><code>@​jamiebuilds-signal</code></a>)</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/babel/babel/blob/main/CHANGELOG.md"><code>@​babel/runtime-corejs3</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>v7.26.10 (2025-03-11)</h2>
<h4>:eyeglasses: Spec Compliance</h4>
<ul>
<li><code>babel-parser</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17159">#17159</a>
Disallow decorator in array pattern (<a
href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li>
</ul>
</li>
</ul>
<h4>:bug: Bug Fix</h4>
<ul>
<li><code>babel-parser</code>, <code>babel-template</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17164">#17164</a>
Fix: always initialize ExportDeclaration attributes (<a
href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li>
</ul>
</li>
<li><code>babel-core</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17142">#17142</a>
fix: &quot;Map maximum size exceeded&quot; in deepClone (<a
href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li>
</ul>
</li>
<li><code>babel-parser</code>,
<code>babel-plugin-transform-typescript</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17154">#17154</a>
Update typescript parser tests (<a
href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li>
</ul>
</li>
<li><code>babel-traverse</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17151">#17151</a>
fix: Should not evaluate vars in child scope (<a
href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li>
</ul>
</li>
<li><code>babel-generator</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17153">#17153</a>
fix: Correctly generate <code>abstract override</code> (<a
href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li>
</ul>
</li>
<li><code>babel-parser</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17107">#17107</a> Fix
source type detection when parsing TypeScript (<a
href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li>
</ul>
</li>
<li><code>babel-helpers</code>, <code>babel-runtime</code>,
<code>babel-runtime-corejs2</code>, <code>babel-runtime-corejs3</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17173">#17173</a> Fix
processing of replacement pattern with named capture groups (<a
href="https://github.com/%5Bmmmsssttt404%5D(https://github.com/mmmsssttt404)"><code>@​mmmsssttt404</code></a>)</li>
</ul>
</li>
</ul>
<h4>:nail_care: Polish</h4>
<ul>
<li><code>babel-standalone</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17158">#17158</a>
Avoid warnings when re-bundling <code>@​babel/standalone</code> with
webpack (<a
href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li>
</ul>
</li>
</ul>
<h4>:house: Internal</h4>
<ul>
<li><code>babel-parser</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17160">#17160</a>
Left-value parsing cleanup (<a
href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li>
</ul>
</li>
</ul>
<h2>v7.26.9 (2025-02-14)</h2>
<h4>:bug: Bug Fix</h4>
<ul>
<li><code>babel-types</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17103">#17103</a>
fix: Definition for <code>TSPropertySignature.kind</code> (<a
href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li>
</ul>
</li>
<li><code>babel-generator</code>, <code>babel-types</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17062">#17062</a>
Print TypeScript optional/definite in ClassPrivateProperty (<a
href="https://github.com/jamiebuilds-signal"><code>@​jamiebuilds-signal</code></a>)</li>
</ul>
</li>
</ul>
<h4>:house: Internal</h4>
<ul>
<li><code>babel-types</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17130">#17130</a> Use
<code>.ts</code> files with explicit reexports to solve name conflicts
(<a
href="https://github.com/nicolo-ribaudo"><code>@​nicolo-ribaudo</code></a>)</li>
</ul>
</li>
<li><code>babel-core</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17127">#17127</a> Do
not depend on <code>@types/gensync</code> in Babel 7 (<a
href="https://github.com/nicolo-ribaudo"><code>@​nicolo-ribaudo</code></a>)</li>
</ul>
</li>
</ul>
<h2>v7.26.7 (2025-01-24)</h2>
<h4>:bug: Bug Fix</h4>
<ul>
<li><code>babel-helpers</code>, <code>babel-preset-env</code>,
<code>babel-runtime-corejs3</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17086">#17086</a>
Make &quot;object without properties&quot; helpers ES6-compatible (<a
href="https://github.com/tquetano-netflix"><code>@​tquetano-netflix</code></a>)</li>
</ul>
</li>
<li><code>babel-plugin-transform-typeof-symbol</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17085">#17085</a>
fix: Correctly handle <code>typeof</code> in arrow functions (<a
href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li>
</ul>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/babel/babel/commit/e1ce99df422971175249509e7bbc2b327b8f7957"><code>e1ce99d</code></a>
v7.26.10</li>
<li><a
href="https://github.com/babel/babel/commit/d5952e80c0faa5ec20e35085531b6e572d31dad4"><code>d5952e8</code></a>
Fix processing of replacement pattern with named capture groups (<a
href="https://github.com/babel/babel/tree/HEAD/packages/babel-runtime-corejs3/issues/17173">#17173</a>)</li>
<li><a
href="https://github.com/babel/babel/commit/64bca7b5f308cd52c192a5c821a57f6d1b0475f4"><code>64bca7b</code></a>
v7.26.9</li>
<li><a
href="https://github.com/babel/babel/commit/2d9514066e3b135835ed93246ebbcdb7ca0263ca"><code>2d95140</code></a>
v7.26.7</li>
<li><a
href="https://github.com/babel/babel/commit/0e6199b2aac12f41053416977379066e80ef14a7"><code>0e6199b</code></a>
Make &quot;object without properties&quot; helpers ES6-compatible (<a
href="https://github.com/babel/babel/tree/HEAD/packages/babel-runtime-corejs3/issues/17086">#17086</a>)</li>
<li>See full diff in <a
href="https://github.com/babel/babel/commits/v7.26.10/packages/babel-runtime-corejs3">compare
view</a></li>
</ul>
</details>
<br />

Updates `@babel/runtime` from 7.25.6 to 7.26.10
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/babel/babel/releases"><code>@​babel/runtime</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v7.26.10 (2025-03-11)</h2>
<p>Thanks <a
href="https://github.com/jordan-choi"><code>@​jordan-choi</code></a> and
<a
href="https://github.com/mmmsssttt404"><code>@​mmmsssttt404</code></a>
for your first PRs!</p>
<p>This release includes a fix for <a
href="https://github.com/babel/babel/security/advisories/GHSA-968p-4wvh-cqc8">https://github.com/babel/babel/security/advisories/GHSA-968p-4wvh-cqc8</a>,
a security vulnerability which affects the <code>.replace</code> method
of transpiled regular expressions that use named capturing groups.</p>
<h4>:eyeglasses: Spec Compliance</h4>
<ul>
<li><code>babel-parser</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17159">#17159</a>
Disallow decorator in array pattern (<a
href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li>
</ul>
</li>
</ul>
<h4>:bug: Bug Fix</h4>
<ul>
<li><code>babel-parser</code>, <code>babel-template</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17164">#17164</a>
Fix: always initialize ExportDeclaration attributes (<a
href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li>
</ul>
</li>
<li><code>babel-core</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17142">#17142</a>
fix: &quot;Map maximum size exceeded&quot; in deepClone (<a
href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li>
</ul>
</li>
<li><code>babel-parser</code>,
<code>babel-plugin-transform-typescript</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17154">#17154</a>
Update typescript parser tests (<a
href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li>
</ul>
</li>
<li><code>babel-traverse</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17151">#17151</a>
fix: Should not evaluate vars in child scope (<a
href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li>
</ul>
</li>
<li><code>babel-generator</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17153">#17153</a>
fix: Correctly generate <code>abstract override</code> (<a
href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li>
</ul>
</li>
<li><code>babel-parser</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17107">#17107</a> Fix
source type detection when parsing TypeScript (<a
href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li>
</ul>
</li>
<li><code>babel-helpers</code>, <code>babel-runtime</code>,
<code>babel-runtime-corejs2</code>, <code>babel-runtime-corejs3</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17173">#17173</a> Fix
processing of replacement pattern with named capture groups (<a
href="https://github.com/%5Bmmmsssttt404%5D(https://github.com/mmmsssttt404)"><code>@​mmmsssttt404</code></a>)</li>
</ul>
</li>
</ul>
<h4>:nail_care: Polish</h4>
<ul>
<li><code>babel-standalone</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17158">#17158</a>
Avoid warnings when re-bundling <code>@​babel/standalone</code> with
webpack (<a
href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li>
</ul>
</li>
</ul>
<h4>:house: Internal</h4>
<ul>
<li><code>babel-parser</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17160">#17160</a>
Left-value parsing cleanup (<a
href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li>
</ul>
</li>
</ul>
<h4>Committers: 6</h4>
<ul>
<li>Babel Bot (<a
href="https://github.com/babel-bot"><code>@​babel-bot</code></a>)</li>
<li>Huáng Jùnliàng (<a
href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li>
<li>Nicolò Ribaudo (<a
href="https://github.com/nicolo-ribaudo"><code>@​nicolo-ribaudo</code></a>)</li>
<li>Yunyoung Jordan Choi (<a
href="https://github.com/jordan-choi"><code>@​jordan-choi</code></a>)</li>
<li><a
href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a></li>
<li><a
href="https://github.com/mmmsssttt404"><code>@​mmmsssttt404</code></a></li>
</ul>
<h2>v7.26.9 (2025-02-14)</h2>
<h4>:bug: Bug Fix</h4>
<ul>
<li><code>babel-types</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17103">#17103</a>
fix: Definition for <code>TSPropertySignature.kind</code> (<a
href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li>
</ul>
</li>
<li><code>babel-generator</code>, <code>babel-types</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17062">#17062</a>
Print TypeScript optional/definite in ClassPrivateProperty (<a
href="https://github.com/jamiebuilds-signal"><code>@​jamiebuilds-signal</code></a>)</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/babel/babel/blob/main/CHANGELOG.md"><code>@​babel/runtime</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>v7.26.10 (2025-03-11)</h2>
<h4>:eyeglasses: Spec Compliance</h4>
<ul>
<li><code>babel-parser</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17159">#17159</a>
Disallow decorator in array pattern (<a
href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li>
</ul>
</li>
</ul>
<h4>:bug: Bug Fix</h4>
<ul>
<li><code>babel-parser</code>, <code>babel-template</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17164">#17164</a>
Fix: always initialize ExportDeclaration attributes (<a
href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li>
</ul>
</li>
<li><code>babel-core</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17142">#17142</a>
fix: &quot;Map maximum size exceeded&quot; in deepClone (<a
href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li>
</ul>
</li>
<li><code>babel-parser</code>,
<code>babel-plugin-transform-typescript</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17154">#17154</a>
Update typescript parser tests (<a
href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li>
</ul>
</li>
<li><code>babel-traverse</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17151">#17151</a>
fix: Should not evaluate vars in child scope (<a
href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li>
</ul>
</li>
<li><code>babel-generator</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17153">#17153</a>
fix: Correctly generate <code>abstract override</code> (<a
href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li>
</ul>
</li>
<li><code>babel-parser</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17107">#17107</a> Fix
source type detection when parsing TypeScript (<a
href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li>
</ul>
</li>
<li><code>babel-helpers</code>, <code>babel-runtime</code>,
<code>babel-runtime-corejs2</code>, <code>babel-runtime-corejs3</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17173">#17173</a> Fix
processing of replacement pattern with named capture groups (<a
href="https://github.com/%5Bmmmsssttt404%5D(https://github.com/mmmsssttt404)"><code>@​mmmsssttt404</code></a>)</li>
</ul>
</li>
</ul>
<h4>:nail_care: Polish</h4>
<ul>
<li><code>babel-standalone</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17158">#17158</a>
Avoid warnings when re-bundling <code>@​babel/standalone</code> with
webpack (<a
href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li>
</ul>
</li>
</ul>
<h4>:house: Internal</h4>
<ul>
<li><code>babel-parser</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17160">#17160</a>
Left-value parsing cleanup (<a
href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li>
</ul>
</li>
</ul>
<h2>v7.26.9 (2025-02-14)</h2>
<h4>:bug: Bug Fix</h4>
<ul>
<li><code>babel-types</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17103">#17103</a>
fix: Definition for <code>TSPropertySignature.kind</code> (<a
href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li>
</ul>
</li>
<li><code>babel-generator</code>, <code>babel-types</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17062">#17062</a>
Print TypeScript optional/definite in ClassPrivateProperty (<a
href="https://github.com/jamiebuilds-signal"><code>@​jamiebuilds-signal</code></a>)</li>
</ul>
</li>
</ul>
<h4>:house: Internal</h4>
<ul>
<li><code>babel-types</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17130">#17130</a> Use
<code>.ts</code> files with explicit reexports to solve name conflicts
(<a
href="https://github.com/nicolo-ribaudo"><code>@​nicolo-ribaudo</code></a>)</li>
</ul>
</li>
<li><code>babel-core</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17127">#17127</a> Do
not depend on <code>@types/gensync</code> in Babel 7 (<a
href="https://github.com/nicolo-ribaudo"><code>@​nicolo-ribaudo</code></a>)</li>
</ul>
</li>
</ul>
<h2>v7.26.7 (2025-01-24)</h2>
<h4>:bug: Bug Fix</h4>
<ul>
<li><code>babel-helpers</code>, <code>babel-preset-env</code>,
<code>babel-runtime-corejs3</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17086">#17086</a>
Make &quot;object without properties&quot; helpers ES6-compatible (<a
href="https://github.com/tquetano-netflix"><code>@​tquetano-netflix</code></a>)</li>
</ul>
</li>
<li><code>babel-plugin-transform-typeof-symbol</code>
<ul>
<li><a
href="https://redirect.github.com/babel/babel/pull/17085">#17085</a>
fix: Correctly handle <code>typeof</code> in arrow functions (<a
href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li>
</ul>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/babel/babel/commit/e1ce99df422971175249509e7bbc2b327b8f7957"><code>e1ce99d</code></a>
v7.26.10</li>
<li><a
href="https://github.com/babel/babel/commit/d5952e80c0faa5ec20e35085531b6e572d31dad4"><code>d5952e8</code></a>
Fix processing of replacement pattern with named capture groups (<a
href="https://github.com/babel/babel/tree/HEAD/packages/babel-runtime/issues/17173">#17173</a>)</li>
<li><a
href="https://github.com/babel/babel/commit/64bca7b5f308cd52c192a5c821a57f6d1b0475f4"><code>64bca7b</code></a>
v7.26.9</li>
<li><a
href="https://github.com/babel/babel/commit/2d9514066e3b135835ed93246ebbcdb7ca0263ca"><code>2d95140</code></a>
v7.26.7</li>
<li><a
href="https://github.com/babel/babel/commit/63d30381c169780460e01bdb6669c5e01af1dfbe"><code>63d3038</code></a>
v7.26.0</li>
<li><a
href="https://github.com/babel/babel/commit/b07957ebb316a1e2fc67454fc7423508bb942e63"><code>b07957e</code></a>
v7.25.9</li>
<li><a
href="https://github.com/babel/babel/commit/af917594e4df3decdde2ce0b1614d607b27367a5"><code>af91759</code></a>
fix: Accidentally publishing useless files (<a
href="https://github.com/babel/babel/tree/HEAD/packages/babel-runtime/issues/16917">#16917</a>)</li>
<li><a
href="https://github.com/babel/babel/commit/2533cfb0c1d90140f320f1e03d41e20407ca30bf"><code>2533cfb</code></a>
v7.25.7</li>
<li><a
href="https://github.com/babel/babel/commit/69d65f1aef74de135a8b262bb9770a41e97b7476"><code>69d65f1</code></a>
[babel 8] Require Node.js <code>^18.20.0 || ^20.17.0 ||
&gt;=22.8.0</code> (<a
href="https://github.com/babel/babel/tree/HEAD/packages/babel-runtime/issues/16800">#16800</a>)</li>
<li>See full diff in <a
href="https://github.com/babel/babel/commits/v7.26.10/packages/babel-runtime">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
You can disable automated security fix PRs for this repo from the
[Security Alerts
page](https://github.com/josxha/flutter-maplibre/network/alerts).

</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…android in the dependencies group across 1 directory (josxha#247)

Bumps the dependencies group with 1 update in the /android directory:
[org.mockito:mockito-core](https://github.com/mockito/mockito).

Updates `org.mockito:mockito-core` from 5.16.0 to 5.16.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/mockito/mockito/releases">org.mockito:mockito-core's
releases</a>.</em></p>
<blockquote>
<h2>v5.16.1</h2>
<p><!-- raw HTML omitted --><!-- raw HTML omitted --><em>Changelog
generated by <a
href="https://github.com/shipkit/shipkit-changelog">Shipkit Changelog
Gradle Plugin</a></em><!-- raw HTML omitted --><!-- raw HTML omitted
--></p>
<h4>5.16.1</h4>
<ul>
<li>2025-03-15 - <a
href="https://github.com/mockito/mockito/compare/v5.16.0...v5.16.1">3
commit(s)</a> by Adrian Roos, Jérôme Prinet, Rafael Winterhalter</li>
<li>Remove Arrays.asList from critical stubbing path in
GenericMetadataSu… [(<a
href="https://redirect.github.com/mockito/mockito/issues/3610">#3610</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3610">mockito/mockito#3610</a>)</li>
<li>Rework of injection strategy in the context of modules [(<a
href="https://redirect.github.com/mockito/mockito/issues/3608">#3608</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3608">mockito/mockito#3608</a>)</li>
<li>Adjust inline mocking snippet to allow task relocatability [(<a
href="https://redirect.github.com/mockito/mockito/issues/3606">#3606</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3606">mockito/mockito#3606</a>)</li>
<li>Inline mocking configuration snippet for Gradle should allow task
relocatability [(<a
href="https://redirect.github.com/mockito/mockito/issues/3605">#3605</a>)](<a
href="https://redirect.github.com/mockito/mockito/issues/3605">mockito/mockito#3605</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/mockito/mockito/commit/d000e630775cfa45752eeb491a197283e7370621"><code>d000e63</code></a>
Rework of injection strategy in the context of modules (<a
href="https://redirect.github.com/mockito/mockito/issues/3608">#3608</a>)</li>
<li><a
href="https://github.com/mockito/mockito/commit/0215884a5e68016504be98599b3045070a558002"><code>0215884</code></a>
Remove Arrays.asList from critical stubbing path in
GenericMetadataSupport (#...</li>
<li><a
href="https://github.com/mockito/mockito/commit/d18503512b01eed650f5fdf78f7e3c02755c8ee5"><code>d185035</code></a>
Add reference to Gradle documentation on how to make task relocatable
(<a
href="https://redirect.github.com/mockito/mockito/issues/3606">#3606</a>)</li>
<li>See full diff in <a
href="https://github.com/mockito/mockito/compare/v5.16.0...v5.16.1">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.mockito:mockito-core&package-manager=gradle&previous-version=5.16.0&new-version=5.16.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (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>
dependabot bot and others added 18 commits April 2, 2025 09:05
…xha#252)

Bumps the dependencies group in /docs with 2 updates:
[react](https://github.com/facebook/react/tree/HEAD/packages/react) and
[react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom).

Updates `react` from 19.0.0 to 19.1.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/facebook/react/releases">react's
releases</a>.</em></p>
<blockquote>
<h2>19.1.0 (March 28, 2025)</h2>
<h3>Owner Stack</h3>
<p>An Owner Stack is a string representing the components that are
directly responsible for rendering a particular component. You can log
Owner Stacks when debugging or use Owner Stacks to enhance error
overlays or other development tools. Owner Stacks are only available in
development builds. Component Stacks in production are unchanged.</p>
<ul>
<li>An Owner Stack is a development-only stack trace that helps identify
which components are responsible for rendering a particular component.
An Owner Stack is distinct from a Component Stacks, which shows the
hierarchy of components leading to an error.</li>
<li>The <a
href="https://react.dev/reference/react/captureOwnerStack">captureOwnerStack
API</a> is only available in development mode and returns a Owner Stack,
if available. The API can be used to enhance error overlays or log
component relationships when debugging. <a
href="https://redirect.github.com/facebook/react/pull/29923">#29923</a>,
<a
href="https://redirect.github.com/facebook/react/pull/32353">#32353</a>,
<a
href="https://redirect.github.com/facebook/react/pull/30306">#30306</a>,
<a
href="https://redirect.github.com/facebook/react/pull/32538">#32538</a>,
<a
href="https://redirect.github.com/facebook/react/pull/32529">#32529</a>,
<a
href="https://redirect.github.com/facebook/react/pull/32538">#32538</a></li>
</ul>
<h3>React</h3>
<ul>
<li>Enhanced support for Suspense boundaries to be used anywhere,
including the client, server, and during hydration. <a
href="https://redirect.github.com/facebook/react/pull/32069">#32069</a>,
<a
href="https://redirect.github.com/facebook/react/pull/32163">#32163</a>,
<a
href="https://redirect.github.com/facebook/react/pull/32224">#32224</a>,
<a
href="https://redirect.github.com/facebook/react/pull/32252">#32252</a></li>
<li>Reduced unnecessary client rendering through improved hydration
scheduling <a
href="https://redirect.github.com/facebook/react/pull/31751">#31751</a></li>
<li>Increased priority of client rendered Suspense boundaries <a
href="https://redirect.github.com/facebook/react/pull/31776">#31776</a></li>
<li>Fixed frozen fallback states by rendering unfinished Suspense
boundaries on the client. <a
href="https://redirect.github.com/facebook/react/pull/31620">#31620</a></li>
<li>Reduced garbage collection pressure by improving Suspense boundary
retries. <a
href="https://redirect.github.com/facebook/react/pull/31667">#31667</a></li>
<li>Fixed erroneous “Waiting for Paint” log when the passive effect
phase was not delayed <a
href="https://redirect.github.com/facebook/react/pull/31526">#31526</a></li>
<li>Fixed a regression causing key warnings for flattened positional
children in development mode. <a
href="https://redirect.github.com/facebook/react/pull/32117">#32117</a></li>
<li>Updated <code>useId</code> to use valid CSS selectors, changing
format from <code>:r123:</code> to <code>«r123»</code>. <a
href="https://redirect.github.com/facebook/react/pull/32001">#32001</a></li>
<li>Added a dev-only warning for null/undefined created in useEffect,
useInsertionEffect, and useLayoutEffect. <a
href="https://redirect.github.com/facebook/react/pull/32355">#32355</a></li>
<li>Fixed a bug where dev-only methods were exported in production
builds. React.act is no longer available in production builds. <a
href="https://redirect.github.com/facebook/react/pull/32200">#32200</a></li>
<li>Improved consistency across prod and dev to improve compatibility
with Google Closure Complier and bindings <a
href="https://redirect.github.com/facebook/react/pull/31808">#31808</a></li>
<li>Improve passive effect scheduling for consistent task yielding. <a
href="https://redirect.github.com/facebook/react/pull/31785">#31785</a></li>
<li>Fixed asserts in React Native when
passChildrenWhenCloningPersistedNodes is enabled for OffscreenComponent
rendering. <a
href="https://redirect.github.com/facebook/react/pull/32528">#32528</a></li>
<li>Fixed component name resolution for Portal <a
href="https://redirect.github.com/facebook/react/pull/32640">#32640</a></li>
<li>Added support for beforetoggle and toggle events on the dialog
element. <a
href="https://github.com/facebook/react/tree/HEAD/packages/react/issues/32479">#32479</a>
<a
href="https://redirect.github.com/facebook/react/pull/32479">#32479</a></li>
</ul>
<h3>React DOM</h3>
<ul>
<li>Fixed double warning when the <code>href</code> attribute is an
empty string <a
href="https://redirect.github.com/facebook/react/pull/31783">#31783</a></li>
<li>Fixed an edge case where <code>getHoistableRoot()</code> didn’t work
properly when the container was a Document <a
href="https://redirect.github.com/facebook/react/pull/32321">#32321</a></li>
<li>Removed support for using HTML comments (e.g. <code>&lt;!--
--&gt;</code>) as a DOM container. <a
href="https://redirect.github.com/facebook/react/pull/32250">#32250</a></li>
<li>Added support for <code>&lt;script&gt;</code> and
<code>\&lt;template&gt;</code> tags to be nested within
<code>&lt;select&gt;</code> tags. <a
href="https://redirect.github.com/facebook/react/pull/31837">#31837</a></li>
<li>Fixed responsive images to be preloaded as HTML instead of headers
<a
href="https://redirect.github.com/facebook/react/pull/32445">#32445</a></li>
</ul>
<h3>use-sync-external-store</h3>
<ul>
<li>Added <code>exports</code> field to <code>package.json</code> for
<code>use-sync-external-store</code> to support various entrypoints. <a
href="https://redirect.github.com/facebook/react/pull/25231">#25231</a></li>
</ul>
<h3>React Server Components</h3>
<ul>
<li>Added <code>unstable_prerender</code>, a new experimental API for
prerendering React Server Components on the server <a
href="https://redirect.github.com/facebook/react/pull/31724">#31724</a></li>
<li>Fixed an issue where streams would hang when receiving new chunks
after a global error <a
href="https://redirect.github.com/facebook/react/pull/31840">#31840</a>,
<a
href="https://redirect.github.com/facebook/react/pull/31851">#31851</a></li>
<li>Fixed an issue where pending chunks were counted twice. <a
href="https://redirect.github.com/facebook/react/pull/31833">#31833</a></li>
<li>Added support for streaming in edge environments <a
href="https://redirect.github.com/facebook/react/pull/31852">#31852</a></li>
<li>Added support for sending custom error names from a server so that
they are available in the client for console replaying. <a
href="https://redirect.github.com/facebook/react/pull/32116">#32116</a></li>
<li>Updated the server component wire format to remove IDs for hints and
console.log because they have no return value <a
href="https://redirect.github.com/facebook/react/pull/31671">#31671</a></li>
<li>Exposed <code>registerServerReference</code> in client builds to
handle server references in different environments. <a
href="https://redirect.github.com/facebook/react/pull/32534">#32534</a></li>
<li>Added react-server-dom-parcel package which integrates Server
Components with the <a href="https://parceljs.org/">Parcel bundler</a>
<a
href="https://redirect.github.com/facebook/react/pull/31725">#31725</a>,
<a
href="https://redirect.github.com/facebook/react/pull/32132">#32132</a>,
<a
href="https://redirect.github.com/facebook/react/pull/31799">#31799</a>,
<a
href="https://redirect.github.com/facebook/react/pull/32294">#32294</a>,
<a
href="https://redirect.github.com/facebook/react/pull/31741">#31741</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/facebook/react/blob/main/CHANGELOG.md">react's
changelog</a>.</em></p>
<blockquote>
<h2>19.1.0 (March 28, 2025)</h2>
<h3>Owner Stack</h3>
<p>An Owner Stack is a string representing the components that are
directly responsible for rendering a particular component. You can log
Owner Stacks when debugging or use Owner Stacks to enhance error
overlays or other development tools. Owner Stacks are only available in
development builds. Component Stacks in production are unchanged.</p>
<ul>
<li>An Owner Stack is a development-only stack trace that helps identify
which components are responsible for rendering a particular component.
An Owner Stack is distinct from a Component Stacks, which shows the
hierarchy of components leading to an error.</li>
<li>The <a
href="https://react.dev/reference/react/captureOwnerStack">captureOwnerStack
API</a> is only available in development mode and returns a Owner Stack,
if available. The API can be used to enhance error overlays or log
component relationships when debugging. <a
href="https://redirect.github.com/facebook/react/pull/29923">#29923</a>,
<a
href="https://redirect.github.com/facebook/react/pull/32353">#32353</a>,
<a
href="https://redirect.github.com/facebook/react/pull/30306">#30306</a>,
<a
href="https://redirect.github.com/facebook/react/pull/32538">#32538</a>,
<a
href="https://redirect.github.com/facebook/react/pull/32529">#32529</a>,
<a
href="https://redirect.github.com/facebook/react/pull/32538">#32538</a></li>
</ul>
<h3>React</h3>
<ul>
<li>Enhanced support for Suspense boundaries to be used anywhere,
including the client, server, and during hydration. <a
href="https://redirect.github.com/facebook/react/pull/32069">#32069</a>,
<a
href="https://redirect.github.com/facebook/react/pull/32163">#32163</a>,
<a
href="https://redirect.github.com/facebook/react/pull/32224">#32224</a>,
<a
href="https://redirect.github.com/facebook/react/pull/32252">#32252</a></li>
<li>Reduced unnecessary client rendering through improved hydration
scheduling <a
href="https://redirect.github.com/facebook/react/pull/31751">#31751</a></li>
<li>Increased priority of client rendered Suspense boundaries <a
href="https://redirect.github.com/facebook/react/pull/31776">#31776</a></li>
<li>Fixed frozen fallback states by rendering unfinished Suspense
boundaries on the client. <a
href="https://redirect.github.com/facebook/react/pull/31620">#31620</a></li>
<li>Reduced garbage collection pressure by improving Suspense boundary
retries. <a
href="https://redirect.github.com/facebook/react/pull/31667">#31667</a></li>
<li>Fixed erroneous “Waiting for Paint” log when the passive effect
phase was not delayed <a
href="https://redirect.github.com/facebook/react/pull/31526">#31526</a></li>
<li>Fixed a regression causing key warnings for flattened positional
children in development mode. <a
href="https://redirect.github.com/facebook/react/pull/32117">#32117</a></li>
<li>Updated <code>useId</code> to use valid CSS selectors, changing
format from <code>:r123:</code> to <code>«r123»</code>. <a
href="https://redirect.github.com/facebook/react/pull/32001">#32001</a></li>
<li>Added a dev-only warning for null/undefined created in useEffect,
useInsertionEffect, and useLayoutEffect. <a
href="https://redirect.github.com/facebook/react/pull/32355">#32355</a></li>
<li>Fixed a bug where dev-only methods were exported in production
builds. React.act is no longer available in production builds. <a
href="https://redirect.github.com/facebook/react/pull/32200">#32200</a></li>
<li>Improved consistency across prod and dev to improve compatibility
with Google Closure Complier and bindings <a
href="https://redirect.github.com/facebook/react/pull/31808">#31808</a></li>
<li>Improve passive effect scheduling for consistent task yielding. <a
href="https://redirect.github.com/facebook/react/pull/31785">#31785</a></li>
<li>Fixed asserts in React Native when
passChildrenWhenCloningPersistedNodes is enabled for OffscreenComponent
rendering. <a
href="https://redirect.github.com/facebook/react/pull/32528">#32528</a></li>
<li>Fixed component name resolution for Portal <a
href="https://redirect.github.com/facebook/react/pull/32640">#32640</a></li>
<li>Added support for beforetoggle and toggle events on the dialog
element. <a
href="https://github.com/facebook/react/tree/HEAD/packages/react/issues/32479">#32479</a>
<a
href="https://redirect.github.com/facebook/react/pull/32479">#32479</a></li>
</ul>
<h3>React DOM</h3>
<ul>
<li>Fixed double warning when the <code>href</code> attribute is an
empty string <a
href="https://redirect.github.com/facebook/react/pull/31783">#31783</a></li>
<li>Fixed an edge case where <code>getHoistableRoot()</code> didn’t work
properly when the container was a Document <a
href="https://redirect.github.com/facebook/react/pull/32321">#32321</a></li>
<li>Removed support for using HTML comments (e.g. <code>&lt;!--
--&gt;</code>) as a DOM container. <a
href="https://redirect.github.com/facebook/react/pull/32250">#32250</a></li>
<li>Added support for <code>&lt;script&gt;</code> and
<code>\&lt;template&gt;</code> tags to be nested within
<code>&lt;select&gt;</code> tags. <a
href="https://redirect.github.com/facebook/react/pull/31837">#31837</a></li>
<li>Fixed responsive images to be preloaded as HTML instead of headers
<a
href="https://redirect.github.com/facebook/react/pull/32445">#32445</a></li>
</ul>
<h3>use-sync-external-store</h3>
<ul>
<li>Added <code>exports</code> field to <code>package.json</code> for
<code>use-sync-external-store</code> to support various entrypoints. <a
href="https://redirect.github.com/facebook/react/pull/25231">#25231</a></li>
</ul>
<h3>React Server Components</h3>
<ul>
<li>Added <code>unstable_prerender</code>, a new experimental API for
prerendering React Server Components on the server <a
href="https://redirect.github.com/facebook/react/pull/31724">#31724</a></li>
<li>Fixed an issue where streams would hang when receiving new chunks
after a global error <a
href="https://redirect.github.com/facebook/react/pull/31840">#31840</a>,
<a
href="https://redirect.github.com/facebook/react/pull/31851">#31851</a></li>
<li>Fixed an issue where pending chunks were counted twice. <a
href="https://redirect.github.com/facebook/react/pull/31833">#31833</a></li>
<li>Added support for streaming in edge environments <a
href="https://redirect.github.com/facebook/react/pull/31852">#31852</a></li>
<li>Added support for sending custom error names from a server so that
they are available in the client for console replaying. <a
href="https://redirect.github.com/facebook/react/pull/32116">#32116</a></li>
<li>Updated the server component wire format to remove IDs for hints and
console.log because they have no return value <a
href="https://redirect.github.com/facebook/react/pull/31671">#31671</a></li>
<li>Exposed <code>registerServerReference</code> in client builds to
handle server references in different environments. <a
href="https://redirect.github.com/facebook/react/pull/32534">#32534</a></li>
<li>Added react-server-dom-parcel package which integrates Server
Components with the <a href="https://parceljs.org/">Parcel bundler</a>
<a
href="https://redirect.github.com/facebook/react/pull/31725">#31725</a>,
<a
href="https://redirect.github.com/facebook/react/pull/32132">#32132</a>,
<a
href="https://redirect.github.com/facebook/react/pull/31799">#31799</a>,
<a
href="https://redirect.github.com/facebook/react/pull/32294">#32294</a>,
<a
href="https://redirect.github.com/facebook/react/pull/31741">#31741</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/facebook/react/commit/4a9df08157f001c01b078d259748512211233dcf"><code>4a9df08</code></a>
Stop creating Owner Stacks if many have been created recently (<a
href="https://github.com/facebook/react/tree/HEAD/packages/react/issues/32529">#32529</a>)</li>
<li><a
href="https://github.com/facebook/react/commit/b630219b1377f3117036b1c6118676c16fdb21b7"><code>b630219</code></a>
[refactor] move isValidElementType to react-is (<a
href="https://github.com/facebook/react/tree/HEAD/packages/react/issues/32518">#32518</a>)</li>
<li><a
href="https://github.com/facebook/react/commit/1a191701fe5000098d23328b2ea9d70457fea1f8"><code>1a19170</code></a>
[refactor] Add element type for Activity (<a
href="https://github.com/facebook/react/tree/HEAD/packages/react/issues/32499">#32499</a>)</li>
<li><a
href="https://github.com/facebook/react/commit/6aa8254bb7353fe3096289edc669cf168e9fd190"><code>6aa8254</code></a>
Add ref to Fragment (<a
href="https://github.com/facebook/react/tree/HEAD/packages/react/issues/32465">#32465</a>)</li>
<li><a
href="https://github.com/facebook/react/commit/e0fe3479671555e01531dbc3d2fd85d5bd4c5a56"><code>e0fe347</code></a>
[flags] remove enableOwnerStacks (<a
href="https://github.com/facebook/react/tree/HEAD/packages/react/issues/32426">#32426</a>)</li>
<li><a
href="https://github.com/facebook/react/commit/70f1d766e8ae7ca3701193abb8c8a9f2fdbdaa9d"><code>70f1d76</code></a>
[flow] Eliminate usage of global React types in ReactNativeTypes.js (<a
href="https://github.com/facebook/react/tree/HEAD/packages/react/issues/32330">#32330</a>)</li>
<li><a
href="https://github.com/facebook/react/commit/0d9834caeb3b334eaa1be45f136499f51303e7d3"><code>0d9834c</code></a>
build: add support to the rollup build for building typescript packages
(<a
href="https://github.com/facebook/react/tree/HEAD/packages/react/issues/32393">#32393</a>)</li>
<li><a
href="https://github.com/facebook/react/commit/a53da6abe1593483098df2baf927fe07d80153a5"><code>a53da6a</code></a>
Add useSwipeTransition Hook Behind Experimental Flag (<a
href="https://github.com/facebook/react/tree/HEAD/packages/react/issues/32373">#32373</a>)</li>
<li><a
href="https://github.com/facebook/react/commit/32b0cad8f74da3d6e8b07f4ffbad26dfe8d8a71a"><code>32b0cad</code></a>
Enable owner stacks in Canary builds (<a
href="https://github.com/facebook/react/tree/HEAD/packages/react/issues/32053">#32053</a>)</li>
<li><a
href="https://github.com/facebook/react/commit/ed8b68dd178af17a2dd36c8678f81f8b454559a9"><code>ed8b68d</code></a>
Stop exporting dev-only methods in OSS production builds (<a
href="https://github.com/facebook/react/tree/HEAD/packages/react/issues/32200">#32200</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/facebook/react/commits/v19.1.0/packages/react">compare
view</a></li>
</ul>
</details>
<br />

Updates `react-dom` from 19.0.0 to 19.1.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/facebook/react/releases">react-dom's
releases</a>.</em></p>
<blockquote>
<h2>19.1.0 (March 28, 2025)</h2>
<h3>Owner Stack</h3>
<p>An Owner Stack is a string representing the components that are
directly responsible for rendering a particular component. You can log
Owner Stacks when debugging or use Owner Stacks to enhance error
overlays or other development tools. Owner Stacks are only available in
development builds. Component Stacks in production are unchanged.</p>
<ul>
<li>An Owner Stack is a development-only stack trace that helps identify
which components are responsible for rendering a particular component.
An Owner Stack is distinct from a Component Stacks, which shows the
hierarchy of components leading to an error.</li>
<li>The <a
href="https://react.dev/reference/react/captureOwnerStack">captureOwnerStack
API</a> is only available in development mode and returns a Owner Stack,
if available. The API can be used to enhance error overlays or log
component relationships when debugging. <a
href="https://redirect.github.com/facebook/react/pull/29923">#29923</a>,
<a
href="https://redirect.github.com/facebook/react/pull/32353">#32353</a>,
<a
href="https://redirect.github.com/facebook/react/pull/30306">#30306</a>,
<a
href="https://redirect.github.com/facebook/react/pull/32538">#32538</a>,
<a
href="https://redirect.github.com/facebook/react/pull/32529">#32529</a>,
<a
href="https://redirect.github.com/facebook/react/pull/32538">#32538</a></li>
</ul>
<h3>React</h3>
<ul>
<li>Enhanced support for Suspense boundaries to be used anywhere,
including the client, server, and during hydration. <a
href="https://redirect.github.com/facebook/react/pull/32069">#32069</a>,
<a
href="https://redirect.github.com/facebook/react/pull/32163">#32163</a>,
<a
href="https://redirect.github.com/facebook/react/pull/32224">#32224</a>,
<a
href="https://redirect.github.com/facebook/react/pull/32252">#32252</a></li>
<li>Reduced unnecessary client rendering through improved hydration
scheduling <a
href="https://redirect.github.com/facebook/react/pull/31751">#31751</a></li>
<li>Increased priority of client rendered Suspense boundaries <a
href="https://redirect.github.com/facebook/react/pull/31776">#31776</a></li>
<li>Fixed frozen fallback states by rendering unfinished Suspense
boundaries on the client. <a
href="https://redirect.github.com/facebook/react/pull/31620">#31620</a></li>
<li>Reduced garbage collection pressure by improving Suspense boundary
retries. <a
href="https://redirect.github.com/facebook/react/pull/31667">#31667</a></li>
<li>Fixed erroneous “Waiting for Paint” log when the passive effect
phase was not delayed <a
href="https://redirect.github.com/facebook/react/pull/31526">#31526</a></li>
<li>Fixed a regression causing key warnings for flattened positional
children in development mode. <a
href="https://redirect.github.com/facebook/react/pull/32117">#32117</a></li>
<li>Updated <code>useId</code> to use valid CSS selectors, changing
format from <code>:r123:</code> to <code>«r123»</code>. <a
href="https://redirect.github.com/facebook/react/pull/32001">#32001</a></li>
<li>Added a dev-only warning for null/undefined created in useEffect,
useInsertionEffect, and useLayoutEffect. <a
href="https://redirect.github.com/facebook/react/pull/32355">#32355</a></li>
<li>Fixed a bug where dev-only methods were exported in production
builds. React.act is no longer available in production builds. <a
href="https://redirect.github.com/facebook/react/pull/32200">#32200</a></li>
<li>Improved consistency across prod and dev to improve compatibility
with Google Closure Complier and bindings <a
href="https://redirect.github.com/facebook/react/pull/31808">#31808</a></li>
<li>Improve passive effect scheduling for consistent task yielding. <a
href="https://redirect.github.com/facebook/react/pull/31785">#31785</a></li>
<li>Fixed asserts in React Native when
passChildrenWhenCloningPersistedNodes is enabled for OffscreenComponent
rendering. <a
href="https://redirect.github.com/facebook/react/pull/32528">#32528</a></li>
<li>Fixed component name resolution for Portal <a
href="https://redirect.github.com/facebook/react/pull/32640">#32640</a></li>
<li>Added support for beforetoggle and toggle events on the dialog
element. <a
href="https://github.com/facebook/react/tree/HEAD/packages/react-dom/issues/32479">#32479</a>
<a
href="https://redirect.github.com/facebook/react/pull/32479">#32479</a></li>
</ul>
<h3>React DOM</h3>
<ul>
<li>Fixed double warning when the <code>href</code> attribute is an
empty string <a
href="https://redirect.github.com/facebook/react/pull/31783">#31783</a></li>
<li>Fixed an edge case where <code>getHoistableRoot()</code> didn’t work
properly when the container was a Document <a
href="https://redirect.github.com/facebook/react/pull/32321">#32321</a></li>
<li>Removed support for using HTML comments (e.g. <code>&lt;!--
--&gt;</code>) as a DOM container. <a
href="https://redirect.github.com/facebook/react/pull/32250">#32250</a></li>
<li>Added support for <code>&lt;script&gt;</code> and
<code>\&lt;template&gt;</code> tags to be nested within
<code>&lt;select&gt;</code> tags. <a
href="https://redirect.github.com/facebook/react/pull/31837">#31837</a></li>
<li>Fixed responsive images to be preloaded as HTML instead of headers
<a
href="https://redirect.github.com/facebook/react/pull/32445">#32445</a></li>
</ul>
<h3>use-sync-external-store</h3>
<ul>
<li>Added <code>exports</code> field to <code>package.json</code> for
<code>use-sync-external-store</code> to support various entrypoints. <a
href="https://redirect.github.com/facebook/react/pull/25231">#25231</a></li>
</ul>
<h3>React Server Components</h3>
<ul>
<li>Added <code>unstable_prerender</code>, a new experimental API for
prerendering React Server Components on the server <a
href="https://redirect.github.com/facebook/react/pull/31724">#31724</a></li>
<li>Fixed an issue where streams would hang when receiving new chunks
after a global error <a
href="https://redirect.github.com/facebook/react/pull/31840">#31840</a>,
<a
href="https://redirect.github.com/facebook/react/pull/31851">#31851</a></li>
<li>Fixed an issue where pending chunks were counted twice. <a
href="https://redirect.github.com/facebook/react/pull/31833">#31833</a></li>
<li>Added support for streaming in edge environments <a
href="https://redirect.github.com/facebook/react/pull/31852">#31852</a></li>
<li>Added support for sending custom error names from a server so that
they are available in the client for console replaying. <a
href="https://redirect.github.com/facebook/react/pull/32116">#32116</a></li>
<li>Updated the server component wire format to remove IDs for hints and
console.log because they have no return value <a
href="https://redirect.github.com/facebook/react/pull/31671">#31671</a></li>
<li>Exposed <code>registerServerReference</code> in client builds to
handle server references in different environments. <a
href="https://redirect.github.com/facebook/react/pull/32534">#32534</a></li>
<li>Added react-server-dom-parcel package which integrates Server
Components with the <a href="https://parceljs.org/">Parcel bundler</a>
<a
href="https://redirect.github.com/facebook/react/pull/31725">#31725</a>,
<a
href="https://redirect.github.com/facebook/react/pull/32132">#32132</a>,
<a
href="https://redirect.github.com/facebook/react/pull/31799">#31799</a>,
<a
href="https://redirect.github.com/facebook/react/pull/32294">#32294</a>,
<a
href="https://redirect.github.com/facebook/react/pull/31741">#31741</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/facebook/react/blob/main/CHANGELOG.md">react-dom's
changelog</a>.</em></p>
<blockquote>
<h2>19.1.0 (March 28, 2025)</h2>
<h3>Owner Stack</h3>
<p>An Owner Stack is a string representing the components that are
directly responsible for rendering a particular component. You can log
Owner Stacks when debugging or use Owner Stacks to enhance error
overlays or other development tools. Owner Stacks are only available in
development builds. Component Stacks in production are unchanged.</p>
<ul>
<li>An Owner Stack is a development-only stack trace that helps identify
which components are responsible for rendering a particular component.
An Owner Stack is distinct from a Component Stacks, which shows the
hierarchy of components leading to an error.</li>
<li>The <a
href="https://react.dev/reference/react/captureOwnerStack">captureOwnerStack
API</a> is only available in development mode and returns a Owner Stack,
if available. The API can be used to enhance error overlays or log
component relationships when debugging. <a
href="https://redirect.github.com/facebook/react/pull/29923">#29923</a>,
<a
href="https://redirect.github.com/facebook/react/pull/32353">#32353</a>,
<a
href="https://redirect.github.com/facebook/react/pull/30306">#30306</a>,
<a
href="https://redirect.github.com/facebook/react/pull/32538">#32538</a>,
<a
href="https://redirect.github.com/facebook/react/pull/32529">#32529</a>,
<a
href="https://redirect.github.com/facebook/react/pull/32538">#32538</a></li>
</ul>
<h3>React</h3>
<ul>
<li>Enhanced support for Suspense boundaries to be used anywhere,
including the client, server, and during hydration. <a
href="https://redirect.github.com/facebook/react/pull/32069">#32069</a>,
<a
href="https://redirect.github.com/facebook/react/pull/32163">#32163</a>,
<a
href="https://redirect.github.com/facebook/react/pull/32224">#32224</a>,
<a
href="https://redirect.github.com/facebook/react/pull/32252">#32252</a></li>
<li>Reduced unnecessary client rendering through improved hydration
scheduling <a
href="https://redirect.github.com/facebook/react/pull/31751">#31751</a></li>
<li>Increased priority of client rendered Suspense boundaries <a
href="https://redirect.github.com/facebook/react/pull/31776">#31776</a></li>
<li>Fixed frozen fallback states by rendering unfinished Suspense
boundaries on the client. <a
href="https://redirect.github.com/facebook/react/pull/31620">#31620</a></li>
<li>Reduced garbage collection pressure by improving Suspense boundary
retries. <a
href="https://redirect.github.com/facebook/react/pull/31667">#31667</a></li>
<li>Fixed erroneous “Waiting for Paint” log when the passive effect
phase was not delayed <a
href="https://redirect.github.com/facebook/react/pull/31526">#31526</a></li>
<li>Fixed a regression causing key warnings for flattened positional
children in development mode. <a
href="https://redirect.github.com/facebook/react/pull/32117">#32117</a></li>
<li>Updated <code>useId</code> to use valid CSS selectors, changing
format from <code>:r123:</code> to <code>«r123»</code>. <a
href="https://redirect.github.com/facebook/react/pull/32001">#32001</a></li>
<li>Added a dev-only warning for null/undefined created in useEffect,
useInsertionEffect, and useLayoutEffect. <a
href="https://redirect.github.com/facebook/react/pull/32355">#32355</a></li>
<li>Fixed a bug where dev-only methods were exported in production
builds. React.act is no longer available in production builds. <a
href="https://redirect.github.com/facebook/react/pull/32200">#32200</a></li>
<li>Improved consistency across prod and dev to improve compatibility
with Google Closure Complier and bindings <a
href="https://redirect.github.com/facebook/react/pull/31808">#31808</a></li>
<li>Improve passive effect scheduling for consistent task yielding. <a
href="https://redirect.github.com/facebook/react/pull/31785">#31785</a></li>
<li>Fixed asserts in React Native when
passChildrenWhenCloningPersistedNodes is enabled for OffscreenComponent
rendering. <a
href="https://redirect.github.com/facebook/react/pull/32528">#32528</a></li>
<li>Fixed component name resolution for Portal <a
href="https://redirect.github.com/facebook/react/pull/32640">#32640</a></li>
<li>Added support for beforetoggle and toggle events on the dialog
element. <a
href="https://github.com/facebook/react/tree/HEAD/packages/react-dom/issues/32479">#32479</a>
<a
href="https://redirect.github.com/facebook/react/pull/32479">#32479</a></li>
</ul>
<h3>React DOM</h3>
<ul>
<li>Fixed double warning when the <code>href</code> attribute is an
empty string <a
href="https://redirect.github.com/facebook/react/pull/31783">#31783</a></li>
<li>Fixed an edge case where <code>getHoistableRoot()</code> didn’t work
properly when the container was a Document <a
href="https://redirect.github.com/facebook/react/pull/32321">#32321</a></li>
<li>Removed support for using HTML comments (e.g. <code>&lt;!--
--&gt;</code>) as a DOM container. <a
href="https://redirect.github.com/facebook/react/pull/32250">#32250</a></li>
<li>Added support for <code>&lt;script&gt;</code> and
<code>\&lt;template&gt;</code> tags to be nested within
<code>&lt;select&gt;</code> tags. <a
href="https://redirect.github.com/facebook/react/pull/31837">#31837</a></li>
<li>Fixed responsive images to be preloaded as HTML instead of headers
<a
href="https://redirect.github.com/facebook/react/pull/32445">#32445</a></li>
</ul>
<h3>use-sync-external-store</h3>
<ul>
<li>Added <code>exports</code> field to <code>package.json</code> for
<code>use-sync-external-store</code> to support various entrypoints. <a
href="https://redirect.github.com/facebook/react/pull/25231">#25231</a></li>
</ul>
<h3>React Server Components</h3>
<ul>
<li>Added <code>unstable_prerender</code>, a new experimental API for
prerendering React Server Components on the server <a
href="https://redirect.github.com/facebook/react/pull/31724">#31724</a></li>
<li>Fixed an issue where streams would hang when receiving new chunks
after a global error <a
href="https://redirect.github.com/facebook/react/pull/31840">#31840</a>,
<a
href="https://redirect.github.com/facebook/react/pull/31851">#31851</a></li>
<li>Fixed an issue where pending chunks were counted twice. <a
href="https://redirect.github.com/facebook/react/pull/31833">#31833</a></li>
<li>Added support for streaming in edge environments <a
href="https://redirect.github.com/facebook/react/pull/31852">#31852</a></li>
<li>Added support for sending custom error names from a server so that
they are available in the client for console replaying. <a
href="https://redirect.github.com/facebook/react/pull/32116">#32116</a></li>
<li>Updated the server component wire format to remove IDs for hints and
console.log because they have no return value <a
href="https://redirect.github.com/facebook/react/pull/31671">#31671</a></li>
<li>Exposed <code>registerServerReference</code> in client builds to
handle server references in different environments. <a
href="https://redirect.github.com/facebook/react/pull/32534">#32534</a></li>
<li>Added react-server-dom-parcel package which integrates Server
Components with the <a href="https://parceljs.org/">Parcel bundler</a>
<a
href="https://redirect.github.com/facebook/react/pull/31725">#31725</a>,
<a
href="https://redirect.github.com/facebook/react/pull/32132">#32132</a>,
<a
href="https://redirect.github.com/facebook/react/pull/31799">#31799</a>,
<a
href="https://redirect.github.com/facebook/react/pull/32294">#32294</a>,
<a
href="https://redirect.github.com/facebook/react/pull/31741">#31741</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/facebook/react/commit/7943da1e81bb8730db78db99af5f967bdf213a75"><code>7943da1</code></a>
Set accurate value for alwaysThrottleRetries on www (<a
href="https://github.com/facebook/react/tree/HEAD/packages/react-dom/issues/32684">#32684</a>)</li>
<li><a
href="https://github.com/facebook/react/commit/476f53879e80d4ee976ed036a0e8986126fa3117"><code>476f538</code></a>
Add getClientRects to fragment instances (<a
href="https://github.com/facebook/react/tree/HEAD/packages/react-dom/issues/32660">#32660</a>)</li>
<li><a
href="https://github.com/facebook/react/commit/c69a5fc53a5135136668ca878f99b634d2374837"><code>c69a5fc</code></a>
Add blur() and focusLast() to fragment instances (<a
href="https://github.com/facebook/react/tree/HEAD/packages/react-dom/issues/32654">#32654</a>)</li>
<li><a
href="https://github.com/facebook/react/commit/cd28a946d57695a025581c0ff851bde08ea6ca27"><code>cd28a94</code></a>
Add observer methods to fragment instances (<a
href="https://github.com/facebook/react/tree/HEAD/packages/react-dom/issues/32619">#32619</a>)</li>
<li><a
href="https://github.com/facebook/react/commit/6aa8254bb7353fe3096289edc669cf168e9fd190"><code>6aa8254</code></a>
Add ref to Fragment (<a
href="https://github.com/facebook/react/tree/HEAD/packages/react-dom/issues/32465">#32465</a>)</li>
<li><a
href="https://github.com/facebook/react/commit/029e8bd618af23fbdd9efdac565ad81f7d4640d8"><code>029e8bd</code></a>
Add Owner Stack to attribute hydration mismatches (<a
href="https://github.com/facebook/react/tree/HEAD/packages/react-dom/issues/32538">#32538</a>)</li>
<li><a
href="https://github.com/facebook/react/commit/aac177c48439ab294f72e8b5a85059daa3f8a5ee"><code>aac177c</code></a>
Support beforetoggle/toggle events for dialog (<a
href="https://github.com/facebook/react/tree/HEAD/packages/react-dom/issues/32479">#32479</a>)</li>
<li><a
href="https://github.com/facebook/react/commit/e0fe3479671555e01531dbc3d2fd85d5bd4c5a56"><code>e0fe347</code></a>
[flags] remove enableOwnerStacks (<a
href="https://github.com/facebook/react/tree/HEAD/packages/react-dom/issues/32426">#32426</a>)</li>
<li><a
href="https://github.com/facebook/react/commit/2e4db3344f030fe622152ecc231a7c99a81a9c9d"><code>2e4db33</code></a>
Use valid CSS selectors in useId format (<a
href="https://github.com/facebook/react/tree/HEAD/packages/react-dom/issues/32001">#32001</a>)</li>
<li><a
href="https://github.com/facebook/react/commit/9b042f9d593f965d8c7a42f8f5fce322f403381b"><code>9b042f9</code></a>
[Fizz] Responsive images should not be preloaded with link headers (<a
href="https://github.com/facebook/react/tree/HEAD/packages/react-dom/issues/32445">#32445</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/facebook/react/commits/v19.1.0/packages/react-dom">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>
…dates (josxha#250)

Bumps the dependencies group with 2 updates in the /android directory:
com.android.tools.build:gradle and
[org.jetbrains.kotlin:kotlin-gradle-plugin](https://github.com/JetBrains/kotlin).

Updates `com.android.tools.build:gradle` from 8.9.0 to 8.9.1

Updates `org.jetbrains.kotlin:kotlin-gradle-plugin` from 2.1.10 to
2.1.20
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/JetBrains/kotlin/releases">org.jetbrains.kotlin:kotlin-gradle-plugin's
releases</a>.</em></p>
<blockquote>
<h2>Kotlin 2.1.20</h2>
<h2>Changelog</h2>
<h3>Analysis API</h3>
<h4>Fixes</h4>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-68198"><code>KT-68198</code></a>
Analysis API: Support application service registration in plugin
XMLs</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-57733"><code>KT-57733</code></a>
Analysis API: Use optimized <code>ModuleWithDependenciesScope</code>s in
combined symbol providers</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73156"><code>KT-73156</code></a>
AA: type retrieval for erroneous typealias crashes</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-71907"><code>KT-71907</code></a>
K2 debugger evaluator failed when cannot resolve unrelated
annotation</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-69128"><code>KT-69128</code></a>
K2 IDE: &quot;Unresolved reference in KDoc&quot; reports existing Java
class in reference to its own nested class</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-71613"><code>KT-71613</code></a>
KaFirPsiJavaTypeParameterSymbol cannot be cast to
KaFirTypeParameterSymbol</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-71741"><code>KT-71741</code></a>
K2 IDE. Classifier was found in KtFile but was not found in FirFile in
<code>libraries/tools/kotlin-gradle-plugin-integration-tests/build.gradle.kts</code>
in <code>kotlin.git</code> and broken analysis</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-71942"><code>KT-71942</code></a>
Need to rethrow Intellij Platform exceptions, like
ProcessCanceledException</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-70949"><code>KT-70949</code></a>
Analysis API: &quot;containingDeclaration&quot; does not work on nested
Java classes in K2 implementation</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-69736"><code>KT-69736</code></a>
K2 IDE: False positive resolution from KDoc for <code>value</code></li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-69047"><code>KT-69047</code></a>
Analysis API: Unresolved KDoc reference to extensions with the same
name</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-70815"><code>KT-70815</code></a>
Analysis API: Implement stop-the-world session invalidation</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-69630"><code>KT-69630</code></a>
KAPT User project builds with KAPT4 enabled fail with Metaspace
overflow</li>
</ul>
<h3>Analysis API. Code Compilation</h3>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-71263"><code>KT-71263</code></a>
K2 evaluator: Error in evaluating self property with extension
receiver</li>
</ul>
<h3>Analysis API. FIR</h3>
<h4>Performance Improvements</h4>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-72025"><code>KT-72025</code></a>
FileStructureElement: reduce redundant resolve</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-74012"><code>KT-74012</code></a>
Redundant
<code>FirAbstractBodyResolveTransformerDispatcher.&lt;init&gt;</code>
CPU consumption</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73900"><code>KT-73900</code></a>
ContextCollectorVisitor#computeContext may spend significant time on
<code>createSnapshot</code></li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73665"><code>KT-73665</code></a>
FirElementFinder is inefficient in large files</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73330"><code>KT-73330</code></a>
Remove bodies from functions without contracts after the CONTRACTS
phase</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73017"><code>KT-73017</code></a>
Analysis API:
<code>FirReferenceResolveHelper.getSymbolsByResolvedImport</code>
searches for classes even when the selected <code>FqName</code> is a
known package</li>
</ul>
<h4>Fixes</h4>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-72308"><code>KT-72308</code></a>
getOrBuildFir returns null for this expression for plusAssign
operator</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-72660"><code>KT-72660</code></a>
ISE: Recursive update at
org.jetbrains.kotlin.analysis.low.level.api.fir.caches.FirCaffeineCache.getValue</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-74097"><code>KT-74097</code></a>
ISE: Recursive update at
org.jetbrains.kotlin.analysis.low.level.api.fir.caches.FirCaffeineCache.getValue</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-74098"><code>KT-74098</code></a>
ISE: Recursive update at
org.jetbrains.kotlin.analysis.low.level.api.fir.caches.FirCaffeineCache.getValue</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-72148"><code>KT-72148</code></a>
K2: KISEWA: Expected FirResolvedArgumentList for FirAnnotationCallImpl
of FirValueParameterImpl(DataClassMember) but FirArgumentListImpl
found</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73079"><code>KT-73079</code></a>
K2: Internal compiler error when conflicting type aliases are
present</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73456"><code>KT-73456</code></a>
Expected FirResolvedContractDescription but
FirRawContractDescriptionImpl found for FirSimpleFunctionImpl</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73259"><code>KT-73259</code></a>
Expected FirResolvedContractDescription but
FirLegacyRawContractDescriptionImpl found for FirSimpleFunctionImpl</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-72740"><code>KT-72740</code></a>
FirDanglingModifierList: <code>lazyResolveToPhase(STATUS)</code> cannot
be called from a transformer with a phase STATUS</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-66132"><code>KT-66132</code></a>
K2: FirRegularClass expected, but FirFileImpl found | Containing
declaration is not found</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-72196"><code>KT-72196</code></a>
K2. KMP. IllegalStateException: expect-actual matching is only possible
for code with sources</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-72652"><code>KT-72652</code></a>
<code>FirProvider#getContainingClass</code> should support
<code>FirDanglingModifierSymbol</code></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md">org.jetbrains.kotlin:kotlin-gradle-plugin's
changelog</a>.</em></p>
<blockquote>
<h2>2.1.20</h2>
<h3>Analysis API</h3>
<h4>Fixes</h4>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-68198"><code>KT-68198</code></a>
Analysis API: Support application service registration in plugin
XMLs</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-57733"><code>KT-57733</code></a>
Analysis API: Use optimized <code>ModuleWithDependenciesScope</code>s in
combined symbol providers</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73156"><code>KT-73156</code></a>
AA: type retrieval for erroneous typealias crashes</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-71907"><code>KT-71907</code></a>
K2 debugger evaluator failed when cannot resolve unrelated
annotation</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-69128"><code>KT-69128</code></a>
K2 IDE: &quot;Unresolved reference in KDoc&quot; reports existing Java
class in reference to its own nested class</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-71613"><code>KT-71613</code></a>
KaFirPsiJavaTypeParameterSymbol cannot be cast to
KaFirTypeParameterSymbol</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-71741"><code>KT-71741</code></a>
K2 IDE. Classifier was found in KtFile but was not found in FirFile in
<code>libraries/tools/kotlin-gradle-plugin-integration-tests/build.gradle.kts</code>
in <code>kotlin.git</code> and broken analysis</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-71942"><code>KT-71942</code></a>
Need to rethrow Intellij Platform exceptions, like
ProcessCanceledException</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-70949"><code>KT-70949</code></a>
Analysis API: &quot;containingDeclaration&quot; does not work on nested
Java classes in K2 implementation</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-69736"><code>KT-69736</code></a>
K2 IDE: False positive resolution from KDoc for <code>value</code></li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-69047"><code>KT-69047</code></a>
Analysis API: Unresolved KDoc reference to extensions with the same
name</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-70815"><code>KT-70815</code></a>
Analysis API: Implement stop-the-world session invalidation</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-69630"><code>KT-69630</code></a>
KAPT User project builds with KAPT4 enabled fail with Metaspace
overflow</li>
</ul>
<h3>Analysis API. Code Compilation</h3>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-71263"><code>KT-71263</code></a>
K2 evaluator: Error in evaluating self property with extension
receiver</li>
</ul>
<h3>Analysis API. FIR</h3>
<h4>Performance Improvements</h4>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-72025"><code>KT-72025</code></a>
FileStructureElement: reduce redundant resolve</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-74012"><code>KT-74012</code></a>
Redundant
<code>FirAbstractBodyResolveTransformerDispatcher.&lt;init&gt;</code>
CPU consumption</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73900"><code>KT-73900</code></a>
ContextCollectorVisitor#computeContext may spend significant time on
<code>createSnapshot</code></li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73665"><code>KT-73665</code></a>
FirElementFinder is inefficient in large files</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73330"><code>KT-73330</code></a>
Remove bodies from functions without contracts after the CONTRACTS
phase</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73017"><code>KT-73017</code></a>
Analysis API:
<code>FirReferenceResolveHelper.getSymbolsByResolvedImport</code>
searches for classes even when the selected <code>FqName</code> is a
known package</li>
</ul>
<h4>Fixes</h4>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-72308"><code>KT-72308</code></a>
getOrBuildFir returns null for this expression for plusAssign
operator</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-72660"><code>KT-72660</code></a>
ISE: Recursive update at
org.jetbrains.kotlin.analysis.low.level.api.fir.caches.FirCaffeineCache.getValue</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-74097"><code>KT-74097</code></a>
ISE: Recursive update at
org.jetbrains.kotlin.analysis.low.level.api.fir.caches.FirCaffeineCache.getValue</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-74098"><code>KT-74098</code></a>
ISE: Recursive update at
org.jetbrains.kotlin.analysis.low.level.api.fir.caches.FirCaffeineCache.getValue</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-72148"><code>KT-72148</code></a>
K2: KISEWA: Expected FirResolvedArgumentList for FirAnnotationCallImpl
of FirValueParameterImpl(DataClassMember) but FirArgumentListImpl
found</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73079"><code>KT-73079</code></a>
K2: Internal compiler error when conflicting type aliases are
present</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73456"><code>KT-73456</code></a>
Expected FirResolvedContractDescription but
FirRawContractDescriptionImpl found for FirSimpleFunctionImpl</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73259"><code>KT-73259</code></a>
Expected FirResolvedContractDescription but
FirLegacyRawContractDescriptionImpl found for FirSimpleFunctionImpl</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-72740"><code>KT-72740</code></a>
FirDanglingModifierList: <code>lazyResolveToPhase(STATUS)</code> cannot
be called from a transformer with a phase STATUS</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-66132"><code>KT-66132</code></a>
K2: FirRegularClass expected, but FirFileImpl found | Containing
declaration is not found</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-72196"><code>KT-72196</code></a>
K2. KMP. IllegalStateException: expect-actual matching is only possible
for code with sources</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-72652"><code>KT-72652</code></a>
<code>FirProvider#getContainingClass</code> should support
<code>FirDanglingModifierSymbol</code></li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73105"><code>KT-73105</code></a>
Lazy resolve contract violation (BODY_RESOLVE from BODY_RESOLVE)</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/JetBrains/kotlin/commit/658a2010b15a22583f9841e1a2d4bddf1baac612"><code>658a201</code></a>
Add ChangeLog for 2.1.20-RC3</li>
<li><a
href="https://github.com/JetBrains/kotlin/commit/b2dfd946fae7d632ae8f4b59dcb8f59a69c1f874"><code>b2dfd94</code></a>
[FIR] Fix a false negative
<code>SUPER_CALL_WITH_DEFAULT_PARAMETERS</code></li>
<li><a
href="https://github.com/JetBrains/kotlin/commit/982a4ef0cdb9aa7ddb7d715575f2bb3f6010128a"><code>982a4ef</code></a>
[FIR] Reproduce ^KT-75578</li>
<li><a
href="https://github.com/JetBrains/kotlin/commit/173e94a33a27164bb0890a965db21be0ecc6b031"><code>173e94a</code></a>
Fix CMP-7747</li>
<li><a
href="https://github.com/JetBrains/kotlin/commit/dbed51216ac390a2f4eecbd70a7134b3d77e52e1"><code>dbed512</code></a>
CMP-7571: keep the calls to public $stable fields (in K1 klibs) as
is</li>
<li><a
href="https://github.com/JetBrains/kotlin/commit/e7e183f4df71c8a702b71b36fc664ff158064dbc"><code>e7e183f</code></a>
CMP-7571: merge two findDeclaration calls into one</li>
<li><a
href="https://github.com/JetBrains/kotlin/commit/0c8b50dff5fb52364c85fa9d9f1b744fa895ef8c"><code>0c8b50d</code></a>
CMP-7571: improve signature generation for an artificial stability
getter</li>
<li><a
href="https://github.com/JetBrains/kotlin/commit/cb387d50e56946d168151d4bf515dee86a2e8165"><code>cb387d5</code></a>
CMP-7571: add signatures to artifical stability getters</li>
<li><a
href="https://github.com/JetBrains/kotlin/commit/f17e609df3014162f17e55bc19bf33a158df6682"><code>f17e609</code></a>
Avoid multiple finalizations of generalConfigurationMetrics</li>
<li><a
href="https://github.com/JetBrains/kotlin/commit/45e81bb7f13fe8a3d2dbd5eeee2649edb7a88e74"><code>45e81bb</code></a>
Edit ChangeLog for 2.1.20-RC2</li>
<li>Additional commits viewable in <a
href="https://github.com/JetBrains/kotlin/compare/v2.1.10...v2.1.20">compare
view</a></li>
</ul>
</details>
<br />

<details>
<summary>Most Recent Ignore Conditions Applied to This Pull
Request</summary>

| Dependency Name | Ignore Conditions |
| --- | --- |
| com.android.tools.build:gradle | [>= 8.7.a, < 8.8] |
</details>


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>
Co-authored-by: Joscha Eckert <[email protected]>
Bumps [pigeon](https://github.com/flutter/packages/tree/main/packages)
from 24.2.2 to 25.2.0.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/flutter/packages/commit/1977932ab4a69bc545788fb6e0cc8bf51bd42f56"><code>1977932</code></a>
[pigeon] kotlin equality methods (<a
href="https://github.com/flutter/packages/tree/main/packages/issues/8887">#8887</a>)</li>
<li><a
href="https://github.com/flutter/packages/commit/125c117a432f2179b25c5dbfad4b0045918eb4cd"><code>125c117</code></a>
[google_maps_flutter] Add ability to animate camera with duration (<a
href="https://github.com/flutter/packages/tree/main/packages/issues/7648">#7648</a>)</li>
<li><a
href="https://github.com/flutter/packages/commit/527d8faae2dd6d3da90b76b498c71b013699ef32"><code>527d8fa</code></a>
[webview_flutter] Fix macOS test issues and skip some legacy iOS tests
(<a
href="https://github.com/flutter/packages/tree/main/packages/issues/8895">#8895</a>)</li>
<li><a
href="https://github.com/flutter/packages/commit/c27d2fea2c598b70beebe7706bb0915d22174177"><code>c27d2fe</code></a>
[google_maps_flutter] Add ability to animate camera with duration -
platform ...</li>
<li><a
href="https://github.com/flutter/packages/commit/2df1c3a524131e35d6e385eb9465c47d530e341b"><code>2df1c3a</code></a>
[dependabot]: Bump com.android.tools.build:gradle from 8.0.0 to 8.9.0 in
/pac...</li>
<li><a
href="https://github.com/flutter/packages/commit/69816394d25acd312ae60fd66c87765846a6194e"><code>6981639</code></a>
[dependabot]: Bump com.android.tools.build:gradle from 8.0.0 to 8.9.0 in
/pac...</li>
<li><a
href="https://github.com/flutter/packages/commit/cf9b0f25a06d8e20cac853e5b5a0631dd1a4656c"><code>cf9b0f2</code></a>
[pigeon] Dart Class Equality (<a
href="https://github.com/flutter/packages/tree/main/packages/issues/8788">#8788</a>)</li>
<li><a
href="https://github.com/flutter/packages/commit/dd781d4bcb7fa1104c00b7bf28c2a743af41307a"><code>dd781d4</code></a>
[camera_avfoundation] Tests backfilling - part 4 (<a
href="https://github.com/flutter/packages/tree/main/packages/issues/8854">#8854</a>)</li>
<li><a
href="https://github.com/flutter/packages/commit/a675ca6510753f4b7e0cb2edfe9f6e7b057d57fb"><code>a675ca6</code></a>
[camera_avfoundation] Tests backfilling - part 5 (<a
href="https://github.com/flutter/packages/tree/main/packages/issues/8873">#8873</a>)</li>
<li><a
href="https://github.com/flutter/packages/commit/a1c36894016285b0e229ef0f905e5b306a1acd68"><code>a1c3689</code></a>
[video_player]: reduce video player position update interval from 500ms
to 10...</li>
<li>Additional commits viewable in <a
href="https://github.com/flutter/packages/commits/pigeon-v25.2.0/packages">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=pigeon&package-manager=pub&previous-version=24.2.2&new-version=25.2.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Joscha Eckert <[email protected]>
…and_yarn group (josxha#253)

Bumps the npm_and_yarn group in /docs with 1 update:
[image-size](https://github.com/image-size/image-size).

Updates `image-size` from 1.1.1 to 1.2.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/image-size/image-size/releases">image-size's
releases</a>.</em></p>
<blockquote>
<h2>v1.2.1</h2>
<h2>Fixes</h2>
<ul>
<li>fix potential Denial of Service via specially crafted payloads in <a
href="https://github.com/image-size/image-size/commit/640a67d9e821baee4cb596def8db00627f649dfc">https://github.com/image-size/image-size/commit/640a67d9e821baee4cb596def8db00627f649dfc</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/image-size/image-size/compare/v1.2.0...v1.2.1">https://github.com/image-size/image-size/compare/v1.2.0...v1.2.1</a></p>
<h2>v1.2.0</h2>
<p>This release adds support for JPEG-XL ( <a
href="https://redirect.github.com/image-size/image-size/issues/409">#409</a>
)</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/image-size/image-size/commit/a4178fbb334ddb22d94cb4228ed597c24fd02e10"><code>a4178fb</code></a>
1.2.1</li>
<li><a
href="https://github.com/image-size/image-size/commit/640a67d9e821baee4cb596def8db00627f649dfc"><code>640a67d</code></a>
fix potential Denial of Service via specially crafted payloads</li>
<li><a
href="https://github.com/image-size/image-size/commit/9d41448d7843405d1ff2c59352ec17a9bca3f358"><code>9d41448</code></a>
1.2.0</li>
<li><a
href="https://github.com/image-size/image-size/commit/405a244dae9d8576528869b89229cae539f7e901"><code>405a244</code></a>
fixups</li>
<li><a
href="https://github.com/image-size/image-size/commit/76c5c9a8aa9b38e8c703136e5a4f8c5cadc74dff"><code>76c5c9a</code></a>
mention jpeg-xl in the readme</li>
<li><a
href="https://github.com/image-size/image-size/commit/a10262c7c32e40ac269e3434afa07895c11a1274"><code>a10262c</code></a>
Add support for JPEG XL (<a
href="https://redirect.github.com/image-size/image-size/issues/409">#409</a>)</li>
<li><a
href="https://github.com/image-size/image-size/commit/a7a24a3fc4ce750cec253618d33967b3b9d331d7"><code>a7a24a3</code></a>
(app): Fix typo in comments (<a
href="https://redirect.github.com/image-size/image-size/issues/411">#411</a>)</li>
<li><a
href="https://github.com/image-size/image-size/commit/9f482134b358dd83f58501ccc3b18df2305c9793"><code>9f48213</code></a>
update dependencies, and reformat code with eslint 9</li>
<li><a
href="https://github.com/image-size/image-size/commit/64dda84cca1551e219a47b1ab1e3c51adc8db0e4"><code>64dda84</code></a>
refactor formats that use a ISO-BMFF container</li>
<li><a
href="https://github.com/image-size/image-size/commit/e3ea53801dc3ca9d7548c063bfc39c2d8e159419"><code>e3ea538</code></a>
no need to create hex strings in j2c</li>
<li>Additional commits viewable in <a
href="https://github.com/image-size/image-size/compare/v1.1.1...v1.2.1">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=image-size&package-manager=npm_and_yarn&previous-version=1.1.1&new-version=1.2.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (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
You can disable automated security fix PRs for this repo from the
[Security Alerts
page](https://github.com/josxha/flutter-maplibre/network/alerts).

</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…android in the dependencies group across 1 directory (josxha#255)

Bumps the dependencies group with 1 update in the /android directory:
[org.mockito:mockito-core](https://github.com/mockito/mockito).

Updates `org.mockito:mockito-core` from 5.16.1 to 5.17.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/mockito/mockito/releases">org.mockito:mockito-core's
releases</a>.</em></p>
<blockquote>
<h2>v5.17.0</h2>
<p><!-- raw HTML omitted --><!-- raw HTML omitted --><em>Changelog
generated by <a
href="https://github.com/shipkit/shipkit-changelog">Shipkit Changelog
Gradle Plugin</a></em><!-- raw HTML omitted --><!-- raw HTML omitted
--></p>
<h4>5.17.0</h4>
<ul>
<li>2025-04-04 - <a
href="https://github.com/mockito/mockito/compare/v5.16.1...v5.17.0">7
commit(s)</a> by Adrian Roos, Andre Kurait, Jan Ouwens, Rafael
Winterhalter, Taeik Lim, Thach Le, Tim van der Lippe</li>
<li>Fixes <a
href="https://redirect.github.com/mockito/mockito/issues/3631">#3631</a>:
Fix broken banner image link [(<a
href="https://redirect.github.com/mockito/mockito/issues/3632">#3632</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3632">mockito/mockito#3632</a>)</li>
<li>Banner image is broken [(<a
href="https://redirect.github.com/mockito/mockito/issues/3631">#3631</a>)](<a
href="https://redirect.github.com/mockito/mockito/issues/3631">mockito/mockito#3631</a>)</li>
<li>Update exception message with mockito-inline [(<a
href="https://redirect.github.com/mockito/mockito/issues/3628">#3628</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3628">mockito/mockito#3628</a>)</li>
<li>Clarify structure of commit messages [(<a
href="https://redirect.github.com/mockito/mockito/issues/3626">#3626</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3626">mockito/mockito#3626</a>)</li>
<li>Fixes <a
href="https://redirect.github.com/mockito/mockito/issues/3622">#3622</a>:
MockitoExtension fails cleanup when aborted before setup [(<a
href="https://redirect.github.com/mockito/mockito/issues/3623">#3623</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3623">mockito/mockito#3623</a>)</li>
<li>MockitoExtension fails cleanup when aborted before setup [(<a
href="https://redirect.github.com/mockito/mockito/issues/3622">#3622</a>)](<a
href="https://redirect.github.com/mockito/mockito/issues/3622">mockito/mockito#3622</a>)</li>
<li>Since mockito-inline has been removed, the exception messages with
<code>mockito-inline</code> should be modified. [(<a
href="https://redirect.github.com/mockito/mockito/issues/3621">#3621</a>)](<a
href="https://redirect.github.com/mockito/mockito/issues/3621">mockito/mockito#3621</a>)</li>
<li>Fixes <a
href="https://redirect.github.com/mockito/mockito/issues/3171">#3171</a>:
Fall back to Throwable Location strategy on Android [(<a
href="https://redirect.github.com/mockito/mockito/issues/3619">#3619</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3619">mockito/mockito#3619</a>)</li>
<li>Fixes <a
href="https://redirect.github.com/mockito/mockito/issues/3615">#3615</a>
: broken links to javadoc.io [(<a
href="https://redirect.github.com/mockito/mockito/issues/3616">#3616</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3616">mockito/mockito#3616</a>)</li>
<li>Broken links to javadoc.io [(<a
href="https://redirect.github.com/mockito/mockito/issues/3615">#3615</a>)](<a
href="https://redirect.github.com/mockito/mockito/issues/3615">mockito/mockito#3615</a>)</li>
<li>Mocks are not working on particular devices after update Android SDK
from 33 to 34 [(<a
href="https://redirect.github.com/mockito/mockito/issues/3171">#3171</a>)](<a
href="https://redirect.github.com/mockito/mockito/issues/3171">mockito/mockito#3171</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/mockito/mockito/commit/7764992d1250f4e7f6ffd10f650dc89516139c8d"><code>7764992</code></a>
Remove mention of <code>mockito-inline</code> from mockmaker exception
(<a
href="https://redirect.github.com/mockito/mockito/issues/3628">#3628</a>)</li>
<li><a
href="https://github.com/mockito/mockito/commit/ee92ad4916d9f3f6ae6836bdba5c30f8404d3d50"><code>ee92ad4</code></a>
Fix broken banner image link (<a
href="https://redirect.github.com/mockito/mockito/issues/3632">#3632</a>)</li>
<li><a
href="https://github.com/mockito/mockito/commit/3edab5283552c3c6c393d8c818c8d6a8fa1f94a5"><code>3edab52</code></a>
Clarify structure of commit messages (<a
href="https://redirect.github.com/mockito/mockito/issues/3626">#3626</a>)</li>
<li><a
href="https://github.com/mockito/mockito/commit/bfab74365e91135b2f88ccb0228372a8799d9279"><code>bfab743</code></a>
Fall back to Throwable Location strategy on Android (<a
href="https://redirect.github.com/mockito/mockito/issues/3619">#3619</a>)</li>
<li><a
href="https://github.com/mockito/mockito/commit/4f469c830b2f6ab0e1f061e9383aff2e6f9f8376"><code>4f469c8</code></a>
MockitoExtension fails cleanup when aborted before setup (<a
href="https://redirect.github.com/mockito/mockito/issues/3623">#3623</a>)</li>
<li><a
href="https://github.com/mockito/mockito/commit/1764e62102f525ff9a82b8166b8596edd25f5b7f"><code>1764e62</code></a>
Update links to javadoc.io (<a
href="https://redirect.github.com/mockito/mockito/issues/3616">#3616</a>)</li>
<li><a
href="https://github.com/mockito/mockito/commit/1e029d767b33ee8de42e58459a2c3e63ab3f7c41"><code>1e029d7</code></a>
Add missing requirement to objenesis.</li>
<li>See full diff in <a
href="https://github.com/mockito/mockito/compare/v5.16.1...v5.17.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.mockito:mockito-core&package-manager=gradle&previous-version=5.16.1&new-version=5.17.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>
- regenerate most platform specific project files for the package and
example project
- use kotlin gradle DSL for package
- fix josxha#257
…/docs in the npm_and_yarn group (josxha#256)

Bumps the npm_and_yarn group in /docs with 1 update:
[estree-util-value-to-estree](https://github.com/remcohaszing/estree-util-value-to-estree).

Updates `estree-util-value-to-estree` from 3.1.2 to 3.3.3
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/remcohaszing/estree-util-value-to-estree/releases">estree-util-value-to-estree's
releases</a>.</em></p>
<blockquote>
<h2>v3.3.3</h2>
<ul>
<li>652e019 Use singular <code>Object.defineProperty</code> if
possible</li>
<li>d0c394f Fix <code>__proto__</code> property emit</li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/remcohaszing/estree-util-value-to-estree/compare/v3.3.2...v3.3.3">https://github.com/remcohaszing/estree-util-value-to-estree/compare/v3.3.2...v3.3.3</a></p>
<h2>v3.3.2</h2>
<ul>
<li>6ecf349 Move <code>@js-temporal/polyfill</code> to
<code>devDependencies</code></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/remcohaszing/estree-util-value-to-estree/compare/v3.3.1...v3.3.2">https://github.com/remcohaszing/estree-util-value-to-estree/compare/v3.3.1...v3.3.2</a></p>
<h2>v3.3.1</h2>
<ul>
<li>1c1eb66 Don’t crash if Temporal is undefined</li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/remcohaszing/estree-util-value-to-estree/compare/v3.3.0...v3.3.1">https://github.com/remcohaszing/estree-util-value-to-estree/compare/v3.3.0...v3.3.1</a></p>
<h2>v3.3.0</h2>
<ul>
<li>014536b Add support for Temporal types</li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/remcohaszing/estree-util-value-to-estree/compare/v3.2.1...v3.3.0">https://github.com/remcohaszing/estree-util-value-to-estree/compare/v3.2.1...v3.3.0</a></p>
<h2>v3.2.1</h2>
<p>Fix publishing</p>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/remcohaszing/estree-util-value-to-estree/compare/v3.2.0...v3.2.1">https://github.com/remcohaszing/estree-util-value-to-estree/compare/v3.2.0...v3.2.1</a></p>
<h2>v3.2.0</h2>
<ul>
<li>33d7a80 Preserve property descriptors.</li>
<li>e3fb668 Add support for <a
href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol#well-known_symbols">well-known
symbols</a>.</li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/remcohaszing/estree-util-value-to-estree/compare/v3.1.2...v3.2.0">https://github.com/remcohaszing/estree-util-value-to-estree/compare/v3.1.2...v3.2.0</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/remcohaszing/estree-util-value-to-estree/commit/cb5305c99309c596875b2b9f771d0332503c953d"><code>cb5305c</code></a>
3.3.3</li>
<li><a
href="https://github.com/remcohaszing/estree-util-value-to-estree/commit/1854f862bbb13e8c0f912812237dda23042a03b9"><code>1854f86</code></a>
Add remark job as a dependency of release</li>
<li><a
href="https://github.com/remcohaszing/estree-util-value-to-estree/commit/559fce28acc5f0bd7d55d95c6354e34356a980c0"><code>559fce2</code></a>
Run tests against Node.js 22</li>
<li><a
href="https://github.com/remcohaszing/estree-util-value-to-estree/commit/652e01901eed3e40b9eff44c56f84f47f97352fb"><code>652e019</code></a>
Use singular Object.defineProperty if possible</li>
<li><a
href="https://github.com/remcohaszing/estree-util-value-to-estree/commit/d0c394fbc64bc55937ffe4e162b81f15ba506e55"><code>d0c394f</code></a>
Fix <strong>proto</strong> property emit</li>
<li><a
href="https://github.com/remcohaszing/estree-util-value-to-estree/commit/392a5349bc606d3d05849ec9973230c745cdefdb"><code>392a534</code></a>
3.3.2</li>
<li><a
href="https://github.com/remcohaszing/estree-util-value-to-estree/commit/6ecf34945e39fdf198397df92a27d99cb5ed40cf"><code>6ecf349</code></a>
Move <code>@​js-temporal/polyfill</code> to devDependencies</li>
<li><a
href="https://github.com/remcohaszing/estree-util-value-to-estree/commit/98643eb11c40e772fe324610a0161a93c3d4ea3f"><code>98643eb</code></a>
3.3.1</li>
<li><a
href="https://github.com/remcohaszing/estree-util-value-to-estree/commit/1c1eb66c6c161940e543860e0da7d96dd6821295"><code>1c1eb66</code></a>
Don’t crash if Temporal is undefined</li>
<li><a
href="https://github.com/remcohaszing/estree-util-value-to-estree/commit/f0332fea43c2354726d3ef64f89d61b44fbc0ca7"><code>f0332fe</code></a>
3.3.0</li>
<li>Additional commits viewable in <a
href="https://github.com/remcohaszing/estree-util-value-to-estree/compare/v3.1.2...v3.3.3">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=estree-util-value-to-estree&package-manager=npm_and_yarn&previous-version=3.1.2&new-version=3.3.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (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
You can disable automated security fix PRs for this repo from the
[Security Alerts
page](https://github.com/josxha/flutter-maplibre/network/alerts).

</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Add LngLatBounds.fromPoints method for additional feature parity with
flutter_map.
- Add test for LngLatBounds.fromPoints.
…re native 11.9.0 (josxha#276)

- [x] node dependencies
- [x] very_good_analysis 9
- [x] min flutter and dart version 
- [x] update dart format
- [x] maplibre 11.10.0
…dates (josxha#277)

Bumps the dependencies group with 4 updates in the /android directory:
com.android.tools.build:gradle,
[org.jetbrains.kotlin:kotlin-gradle-plugin](https://github.com/JetBrains/kotlin),
org.jlleitschuh.gradle:ktlint-gradle and
[org.mockito:mockito-core](https://github.com/mockito/mockito).

Updates `com.android.tools.build:gradle` from 8.9.1 to 8.10.1

Updates `org.jetbrains.kotlin:kotlin-gradle-plugin` from 2.1.20 to
2.1.21
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/JetBrains/kotlin/releases">org.jetbrains.kotlin:kotlin-gradle-plugin's
releases</a>.</em></p>
<blockquote>
<h2>Kotlin 2.1.21</h2>
<h2>Changelog</h2>
<h3>Backend. Native. Debug</h3>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-75991"><code>KT-75991</code></a>
Xcode 16.3: Fix lldb stepping test over an inline function</li>
</ul>
<h3>Compiler</h3>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-75992"><code>KT-75992</code></a>
Xcode 16.3: stacktraces on simulators are not symbolicated</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-76663"><code>KT-76663</code></a>
KJS: KotlinNothingValueException caused by expression return since
2.1.20</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-75756"><code>KT-75756</code></a>
Backend Internal error: Exception during IR lowering when trying to
access variable from providedProperties in class within kotlin custom
script</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-76209"><code>KT-76209</code></a>
CONFLICTING_UPPER_BOUNDS on <code>Nothing</code> bound</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-70352"><code>KT-70352</code></a>
K2: False-negative CONFLICTING_UPPER_BOUNDS on <code>Nothing</code>
bound</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-74739"><code>KT-74739</code></a>
Native: &quot;IllegalArgumentException: All constructors should've been
lowered: FUNCTION_REFERENCE&quot;</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-75483"><code>KT-75483</code></a>
Native: redundant unboxing generated with smart cast</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-71425"><code>KT-71425</code></a>
IR Inliner: investigate return type of an inlined block</li>
</ul>
<h3>Native</h3>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-76252"><code>KT-76252</code></a>
Native: executable crash with generic value classes with 2.1.20</li>
</ul>
<h3>Native. C and ObjC Import</h3>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-75781"><code>KT-75781</code></a>
Xcode 16.3: Fix cinterop tests failing with fatal error: could not build
module '_stdint'</li>
</ul>
<h3>Native. Runtime. Memory</h3>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-74280"><code>KT-74280</code></a>
Native: GC.collect crashes with -Xallocator=std</li>
</ul>
<h3>Tools. CLI</h3>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-75588"><code>KT-75588</code></a>
[2.1.20-RC] &quot;was compiled by a pre-release version of Kotlin and
cannot be loaded by this version of the compiler&quot; warnings despite
using the same compiler version</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-74663"><code>KT-74663</code></a>
kotlinc-js CLI: not providing -ir-output-dir results in
NullPointerException</li>
</ul>
<h3>Tools. Compiler Plugins</h3>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-76162"><code>KT-76162</code></a>
&quot;IllegalStateException: No mapping for symbol: VALUE_PARAMETER
INSTANCE_RECEIVER&quot; after updating to 2.1.20</li>
</ul>
<h3>Tools. Gradle</h3>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73682"><code>KT-73682</code></a>
Compatibility with Gradle 8.12 release</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73142"><code>KT-73142</code></a>
Kotlin Gradle plugin: Remove usage of Gradle's internal
ExecHandleBuilder</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-36004"><code>KT-36004</code></a>
Update 'org.gradle.usage' attribute rules to support the 'JAVA_API' and
'JAVA_RUNTIME' value</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73968"><code>KT-73968</code></a>
KotlinDependencyManagement tries to mutate configuration after it was
resolved</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73684"><code>KT-73684</code></a>
Run integration tests against Gradle 8.12</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-72694"><code>KT-72694</code></a>
Accessing Task.project during execution is being deprecated in Gradle
8.12</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73683"><code>KT-73683</code></a>
Compile against Gradle API 8.12</li>
</ul>
<h3>Tools. Gradle. JS</h3>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md">org.jetbrains.kotlin:kotlin-gradle-plugin's
changelog</a>.</em></p>
<blockquote>
<h2>2.1.21</h2>
<h3>Backend. Native. Debug</h3>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-75991"><code>KT-75991</code></a>
Xcode 16.3: Fix lldb stepping test over an inline function</li>
</ul>
<h3>Compiler</h3>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-75992"><code>KT-75992</code></a>
Xcode 16.3: stacktraces on simulators are not symbolicated</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-76663"><code>KT-76663</code></a>
KJS: KotlinNothingValueException caused by expression return since
2.1.20</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-75756"><code>KT-75756</code></a>
Backend Internal error: Exception during IR lowering when trying to
access variable from providedProperties in class within kotlin custom
script</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-76209"><code>KT-76209</code></a>
CONFLICTING_UPPER_BOUNDS on <code>Nothing</code> bound</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-70352"><code>KT-70352</code></a>
K2: False-negative CONFLICTING_UPPER_BOUNDS on <code>Nothing</code>
bound</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-74739"><code>KT-74739</code></a>
Native: &quot;IllegalArgumentException: All constructors should've been
lowered: FUNCTION_REFERENCE&quot;</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-75483"><code>KT-75483</code></a>
Native: redundant unboxing generated with smart cast</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-71425"><code>KT-71425</code></a>
IR Inliner: investigate return type of an inlined block</li>
</ul>
<h3>Native</h3>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-76252"><code>KT-76252</code></a>
Native: executable crash with generic value classes with 2.1.20</li>
</ul>
<h3>Native. C and ObjC Import</h3>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-75781"><code>KT-75781</code></a>
Xcode 16.3: Fix cinterop tests failing with fatal error: could not build
module '_stdint'</li>
</ul>
<h3>Native. Runtime. Memory</h3>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-74280"><code>KT-74280</code></a>
Native: GC.collect crashes with -Xallocator=std</li>
</ul>
<h3>Tools. CLI</h3>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-75588"><code>KT-75588</code></a>
[2.1.20-RC] &quot;was compiled by a pre-release version of Kotlin and
cannot be loaded by this version of the compiler&quot; warnings despite
using the same compiler version</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-74663"><code>KT-74663</code></a>
kotlinc-js CLI: not providing -ir-output-dir results in
NullPointerException</li>
</ul>
<h3>Tools. Compiler Plugins</h3>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-76162"><code>KT-76162</code></a>
&quot;IllegalStateException: No mapping for symbol: VALUE_PARAMETER
INSTANCE_RECEIVER&quot; after updating to 2.1.20</li>
</ul>
<h3>Tools. Gradle</h3>
<ul>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73682"><code>KT-73682</code></a>
Compatibility with Gradle 8.12 release</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73142"><code>KT-73142</code></a>
Kotlin Gradle plugin: Remove usage of Gradle's internal
ExecHandleBuilder</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-36004"><code>KT-36004</code></a>
Update 'org.gradle.usage' attribute rules to support the 'JAVA_API' and
'JAVA_RUNTIME' value</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73968"><code>KT-73968</code></a>
KotlinDependencyManagement tries to mutate configuration after it was
resolved</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73684"><code>KT-73684</code></a>
Run integration tests against Gradle 8.12</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-72694"><code>KT-72694</code></a>
Accessing Task.project during execution is being deprecated in Gradle
8.12</li>
<li><a
href="https://youtrack.jetbrains.com/issue/KT-73683"><code>KT-73683</code></a>
Compile against Gradle API 8.12</li>
</ul>
<h3>Tools. Gradle. JS</h3>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/JetBrains/kotlin/commit/f59375aebc65b867f1d9f50038fc8878f3f686d3"><code>f59375a</code></a>
Add ChangeLog for 2.1.21-RC2</li>
<li><a
href="https://github.com/JetBrains/kotlin/commit/301186fc43d1fb5187c42a83fa42727a7e9d60f4"><code>301186f</code></a>
[Gradle] Fix passing process environment when launching KotlinKarma
tests</li>
<li><a
href="https://github.com/JetBrains/kotlin/commit/12b40213f2d6c8cdc374f40274fcd8c5dece4c22"><code>12b4021</code></a>
Add changelog for 2.1.21-RC</li>
<li><a
href="https://github.com/JetBrains/kotlin/commit/e16f5a86068b38ec024fbb874354bac1fe3fd285"><code>e16f5a8</code></a>
[IC] Update inline function snapshotting</li>
<li><a
href="https://github.com/JetBrains/kotlin/commit/5f12d8b8278e352bb9fd350833318ae8da009cd0"><code>5f12d8b</code></a>
[Cherry-picks] Update BTA specific parts for the release branch</li>
<li><a
href="https://github.com/JetBrains/kotlin/commit/f025799b7c0575857d90c58a06042ad95f55a44a"><code>f025799</code></a>
[IC] Additional test cases for inline function snapshotting</li>
<li><a
href="https://github.com/JetBrains/kotlin/commit/58df05e4d8fd0f1ce545243e9fdc4be73f37e19f"><code>58df05e</code></a>
[Tests] More tests for inline fun abi snapshotting</li>
<li><a
href="https://github.com/JetBrains/kotlin/commit/951289372dc9ecef40a58c67e0021bf1fbd119ba"><code>9512893</code></a>
[KGP] Experimental: support incremental changes in inlined local
classes</li>
<li><a
href="https://github.com/JetBrains/kotlin/commit/950cee52a411f8e23952680de062c39d6f64ef45"><code>950cee5</code></a>
[IC] Additional test cases for inlined lambda snapshotting</li>
<li><a
href="https://github.com/JetBrains/kotlin/commit/a0a8ca0c5143fa15d2e1b4cf19a12c8c552eae10"><code>a0a8ca0</code></a>
[BTA Tests] Fix changedSources tracking when compilation fail is
expected</li>
<li>Additional commits viewable in <a
href="https://github.com/JetBrains/kotlin/compare/v2.1.20...v2.1.21">compare
view</a></li>
</ul>
</details>
<br />

Updates `org.jlleitschuh.gradle:ktlint-gradle` from 12.2.+ to 12.3.0

Updates `org.mockito:mockito-core` from 5.17.0 to 5.18.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/mockito/mockito/releases">org.mockito:mockito-core's
releases</a>.</em></p>
<blockquote>
<h2>v5.18.0</h2>
<p><!-- raw HTML omitted --><!-- raw HTML omitted --><em>Changelog
generated by <a
href="https://github.com/shipkit/shipkit-changelog">Shipkit Changelog
Gradle Plugin</a></em><!-- raw HTML omitted --><!-- raw HTML omitted
--></p>
<h4>5.18.0</h4>
<ul>
<li>2025-05-20 - <a
href="https://github.com/mockito/mockito/compare/v5.17.0...v5.18.0">5
commit(s)</a> by Eugene Platonov, Patrick Doyle, Tim van der Lippe,
dependabot[bot]</li>
<li>Make vararg checks Scala friendly (for mockito-scala) [(<a
href="https://redirect.github.com/mockito/mockito/issues/3651">#3651</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3651">mockito/mockito#3651</a>)</li>
<li>For UnfinishedStubbingException, suggest the possibility of another
thread [(<a
href="https://redirect.github.com/mockito/mockito/issues/3636">#3636</a>)](<a
href="https://redirect.github.com/mockito/mockito/pull/3636">mockito/mockito#3636</a>)</li>
<li>UnfinishedStubbingException ought to suggest the possibility of
another thread [(<a
href="https://redirect.github.com/mockito/mockito/issues/3635">#3635</a>)](<a
href="https://redirect.github.com/mockito/mockito/issues/3635">mockito/mockito#3635</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/mockito/mockito/commit/06737471ea19ca023581351eeac778ffbce8da74"><code>0673747</code></a>
Force Jacoco version for Android</li>
<li><a
href="https://github.com/mockito/mockito/commit/65388f01eb8a555c4df5dec692ba9abf8a2591b8"><code>65388f0</code></a>
Update Jacoco version to 0.8.13</li>
<li><a
href="https://github.com/mockito/mockito/commit/60179ca10dbd29ff959d7eae670ce95b3f19f5fd"><code>60179ca</code></a>
Bump bytebuddy from 1.15.11 to 1.16.1</li>
<li><a
href="https://github.com/mockito/mockito/commit/8f15169774cb639b5757f121f27d6c0d8ca18c97"><code>8f15169</code></a>
Make vararg checks Scala friendly (<a
href="https://redirect.github.com/mockito/mockito/issues/3651">#3651</a>)</li>
<li><a
href="https://github.com/mockito/mockito/commit/3a631cb87082fff212bc00c00970508b4ce63072"><code>3a631cb</code></a>
Add hint for multithreading in <code>UnfinishedStubbingException</code>
(<a
href="https://redirect.github.com/mockito/mockito/issues/3636">#3636</a>)</li>
<li>See full diff in <a
href="https://github.com/mockito/mockito/compare/v5.17.0...v5.18.0">compare
view</a></li>
</ul>
</details>
<br />

<details>
<summary>Most Recent Ignore Conditions Applied to This Pull
Request</summary>

| Dependency Name | Ignore Conditions |
| --- | --- |
| com.android.tools.build:gradle | [>= 8.7.a, < 8.8] |
</details>


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>
…in the npm_and_yarn group (josxha#264)

Bumps the npm_and_yarn group in /docs with 1 update:
[http-proxy-middleware](https://github.com/chimurai/http-proxy-middleware).

Updates `http-proxy-middleware` from 2.0.7 to 2.0.9
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/chimurai/http-proxy-middleware/releases">http-proxy-middleware's
releases</a>.</em></p>
<blockquote>
<h2>v2.0.9</h2>
<h2>What's Changed</h2>
<ul>
<li>fix(fixRequestBody): check readableLength by <a
href="https://github.com/chimurai"><code>@​chimurai</code></a> in <a
href="https://redirect.github.com/chimurai/http-proxy-middleware/pull/1097">chimurai/http-proxy-middleware#1097</a></li>
<li>chore(package): v2.0.9 by <a
href="https://github.com/chimurai"><code>@​chimurai</code></a> in <a
href="https://redirect.github.com/chimurai/http-proxy-middleware/pull/1099">chimurai/http-proxy-middleware#1099</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/chimurai/http-proxy-middleware/compare/v2.0.8...v2.0.9">https://github.com/chimurai/http-proxy-middleware/compare/v2.0.8...v2.0.9</a></p>
<h2>v2.0.8</h2>
<h2>What's Changed</h2>
<ul>
<li>fix(fixRequestBody): prevent multiple .write() calls by <a
href="https://github.com/chimurai"><code>@​chimurai</code></a> in <a
href="https://redirect.github.com/chimurai/http-proxy-middleware/pull/1090">chimurai/http-proxy-middleware#1090</a></li>
<li>fix(fixRequestBody): handle invalid request by <a
href="https://github.com/chimurai"><code>@​chimurai</code></a> in <a
href="https://redirect.github.com/chimurai/http-proxy-middleware/pull/1091">chimurai/http-proxy-middleware#1091</a></li>
<li>chore(package): v2.0.8 by <a
href="https://github.com/chimurai"><code>@​chimurai</code></a> in <a
href="https://redirect.github.com/chimurai/http-proxy-middleware/pull/1094">chimurai/http-proxy-middleware#1094</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/chimurai/http-proxy-middleware/compare/v2.0.7...v2.0.8">https://github.com/chimurai/http-proxy-middleware/compare/v2.0.7...v2.0.8</a></p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/chimurai/http-proxy-middleware/blob/v2.0.9/CHANGELOG.md">http-proxy-middleware's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/chimurai/http-proxy-middleware/releases/tag/v2.0.9">v2.0.9</a></h2>
<ul>
<li>fix(fixRequestBody): check readableLength</li>
</ul>
<h2><a
href="https://github.com/chimurai/http-proxy-middleware/releases/tag/v2.0.8">v2.0.8</a></h2>
<ul>
<li>fix(fixRequestBody): prevent multiple .write() calls</li>
<li>fix(fixRequestBody): handle invalid request</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/chimurai/http-proxy-middleware/commit/617a7c9da9cc90ecc00b0c8b1c2f6a385c879cb1"><code>617a7c9</code></a>
chore(package): v2.0.9 (<a
href="https://redirect.github.com/chimurai/http-proxy-middleware/issues/1099">#1099</a>)</li>
<li><a
href="https://github.com/chimurai/http-proxy-middleware/commit/d22d58764832fea429d60109a19e1a23136d4425"><code>d22d587</code></a>
fix(fixRequestBody): check readableLength (<a
href="https://redirect.github.com/chimurai/http-proxy-middleware/issues/1097">#1097</a>)</li>
<li><a
href="https://github.com/chimurai/http-proxy-middleware/commit/d03d51b54ac8d40db8438a8b216cf1ea92bb7849"><code>d03d51b</code></a>
chore(package): v2.0.8 (<a
href="https://redirect.github.com/chimurai/http-proxy-middleware/issues/1094">#1094</a>)</li>
<li><a
href="https://github.com/chimurai/http-proxy-middleware/commit/c50dd06d9102fbb81dd4cbad7a295dddee5f6e1e"><code>c50dd06</code></a>
fix(fixRequestBody): handle invalid request (<a
href="https://redirect.github.com/chimurai/http-proxy-middleware/issues/1091">#1091</a>)</li>
<li><a
href="https://github.com/chimurai/http-proxy-middleware/commit/76a9d8d6dc2b971f63df19d805c7ab656540525b"><code>76a9d8d</code></a>
fix(fixRequestBody): prevent multiple .write() calls (<a
href="https://redirect.github.com/chimurai/http-proxy-middleware/issues/1090">#1090</a>)</li>
<li>See full diff in <a
href="https://github.com/chimurai/http-proxy-middleware/compare/v2.0.7...v2.0.9">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=http-proxy-middleware&package-manager=npm_and_yarn&previous-version=2.0.7&new-version=2.0.9)](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 <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
You can disable automated security fix PRs for this repo from the
[Security Alerts
page](https://github.com/josxha/flutter-maplibre/network/alerts).

</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>
…#268)

Bumps
[go_router](https://github.com/flutter/packages/tree/main/packages) from
14.8.1 to 15.1.2.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/flutter/packages/commit/7814fabbfb7a5c69f45fdc5d3c8cb0fb510a675c"><code>7814fab</code></a>
[go_router] Fix requestFocus propagation to Navigator (<a
href="https://github.com/flutter/packages/tree/main/packages/issues/9177">#9177</a>)</li>
<li><a
href="https://github.com/flutter/packages/commit/1578d701b7c4918de2f4b2b4bf9b5965e85b2ec6"><code>1578d70</code></a>
[go_router_builder] Fixes an deprecated warning for using
withNullability (<a
href="https://github.com/flutter/packages/tree/main/packages/issues/9">#9</a>...</li>
<li><a
href="https://github.com/flutter/packages/commit/cfdb2ecc4adede525cb718e135a409ca102f5f07"><code>cfdb2ec</code></a>
[camera_android_camerax] Fix camera preview rotation for landscape
oriented d...</li>
<li><a
href="https://github.com/flutter/packages/commit/ab44c26de09834d0c2fc0716271f48c86ce1e560"><code>ab44c26</code></a>
[google_maps_flutter] Fix for memory leak impacting all platforms due to
subs...</li>
<li><a
href="https://github.com/flutter/packages/commit/1392e8cdac5069d184566528c0acc44b3a1337f6"><code>1392e8c</code></a>
Roll Flutter from cfb887cd5f41 to b0f5c8ce03e2 (281 revisions) (<a
href="https://github.com/flutter/packages/tree/main/packages/issues/9223">#9223</a>)</li>
<li><a
href="https://github.com/flutter/packages/commit/dea9b0b71f84fc5c21955c8c433b51cbaffc4f64"><code>dea9b0b</code></a>
[interactive_media_ads] Fixes support for ad tag URLs that do not
contain a q...</li>
<li><a
href="https://github.com/flutter/packages/commit/b2ce3b02a27b6e055fb9e2c11fdc30fd2c962669"><code>b2ce3b0</code></a>
[camera_android] Wait for creating capture session when initializing (<a
href="https://github.com/flutter/packages/tree/main/packages/issues/8894">#8894</a>)</li>
<li><a
href="https://github.com/flutter/packages/commit/4e4cddd1dcc06f03aaf9af23e7d46816ca8800c8"><code>4e4cddd</code></a>
[various] Delete discontinued packages (<a
href="https://github.com/flutter/packages/tree/main/packages/issues/9215">#9215</a>)</li>
<li><a
href="https://github.com/flutter/packages/commit/860ecdea6c8d7ee36021cf79e7c332982b050060"><code>860ecde</code></a>
[camera_avfoundation] Implementation swift migration - part 3 (<a
href="https://github.com/flutter/packages/tree/main/packages/issues/9182">#9182</a>)</li>
<li><a
href="https://github.com/flutter/packages/commit/e800da7bccd954fb2f21814cb97635869bc61cb4"><code>e800da7</code></a>
[video_player_android] Modify to use <code>handlesCropAndRotation</code>
to detect the `...</li>
<li>Additional commits viewable in <a
href="https://github.com/flutter/packages/commits/go_router-v15.1.2/packages">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=go_router&package-manager=pub&previous-version=14.8.1&new-version=15.1.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot 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>
…osxha#278)

Bumps
[very_good_analysis](https://github.com/VeryGoodOpenSource/very_good_analysis)
from 8.0.0 to 9.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>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>
</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>9.0.0</h1>
<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>
<h1>9.0.0-rc.1</h1>
<ul>
<li>feat: support Dart 3.8.0 <a
href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/pull/152">152</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/VeryGoodOpenSource/very_good_analysis/commit/efa405e5bc35647a82e85ccbf6b75671fa5bee4f"><code>efa405e</code></a>
chore: release v9.0.0 (<a
href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/issues/155">#155</a>)</li>
<li><a
href="https://github.com/VeryGoodOpenSource/very_good_analysis/commit/7274f10a5a23a190d3cb7dbfe7b4678d1a3cd5e3"><code>7274f10</code></a>
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/issues/139">#139</a>)</li>
<li><a
href="https://github.com/VeryGoodOpenSource/very_good_analysis/commit/48a481b9f1934652794c5dac95433960b49c1709"><code>48a481b</code></a>
chore: release 9.0.0-rc.1 (<a
href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/issues/154">#154</a>)</li>
<li><a
href="https://github.com/VeryGoodOpenSource/very_good_analysis/commit/93f714942087e712f492e759ee8d9089878db6b7"><code>93f7149</code></a>
feat: support Dart 3.8.0 (<a
href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/issues/152">#152</a>)</li>
<li>See full diff in <a
href="https://github.com/VeryGoodOpenSource/very_good_analysis/compare/v8.0.0...v9.0.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=very_good_analysis&package-manager=pub&previous-version=8.0.0&new-version=9.0.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (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>
… in /example/android in the dependencies group across 1 directory (josxha#279)

Bumps the dependencies group with 1 update in the /example/android
directory: org.jlleitschuh.gradle.ktlint.

Updates `org.jlleitschuh.gradle.ktlint` from 12.2.+ to 12.3.0


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.jlleitschuh.gradle.ktlint&package-manager=gradle&previous-version=12.2.+&new-version=12.3.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>
Co-authored-by: Joscha Eckert <[email protected]>
Bumps
[very_good_analysis](https://github.com/VeryGoodOpenSource/very_good_analysis)
from 8.0.0 to 9.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>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>
</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>9.0.0</h1>
<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>
<h1>9.0.0-rc.1</h1>
<ul>
<li>feat: support Dart 3.8.0 <a
href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/pull/152">152</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/VeryGoodOpenSource/very_good_analysis/commit/efa405e5bc35647a82e85ccbf6b75671fa5bee4f"><code>efa405e</code></a>
chore: release v9.0.0 (<a
href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/issues/155">#155</a>)</li>
<li><a
href="https://github.com/VeryGoodOpenSource/very_good_analysis/commit/7274f10a5a23a190d3cb7dbfe7b4678d1a3cd5e3"><code>7274f10</code></a>
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/issues/139">#139</a>)</li>
<li><a
href="https://github.com/VeryGoodOpenSource/very_good_analysis/commit/48a481b9f1934652794c5dac95433960b49c1709"><code>48a481b</code></a>
chore: release 9.0.0-rc.1 (<a
href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/issues/154">#154</a>)</li>
<li><a
href="https://github.com/VeryGoodOpenSource/very_good_analysis/commit/93f714942087e712f492e759ee8d9089878db6b7"><code>93f7149</code></a>
feat: support Dart 3.8.0 (<a
href="https://redirect.github.com/VeryGoodOpenSource/very_good_analysis/issues/152">#152</a>)</li>
<li>See full diff in <a
href="https://github.com/VeryGoodOpenSource/very_good_analysis/compare/v8.0.0...v9.0.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=very_good_analysis&package-manager=pub&previous-version=8.0.0&new-version=9.0.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (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: Joscha Eckert <[email protected]>
…he npm_and_yarn group (josxha#283)

Bumps the npm_and_yarn group in /docs with 1 update:
[brace-expansion](https://github.com/juliangruber/brace-expansion).

Updates `brace-expansion` from 1.1.11 to 1.1.12
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/juliangruber/brace-expansion/releases">brace-expansion's
releases</a>.</em></p>
<blockquote>
<h2>v1.1.12</h2>
<ul>
<li>pkg: publish on tag 1.x  c460dbd</li>
<li>fmt  ccb8ac6</li>
<li>Fix potential ReDoS Vulnerability or Inefficient Regular Expression
(<a
href="https://redirect.github.com/juliangruber/brace-expansion/issues/65">#65</a>)
c3c73c8</li>
</ul>
<hr />
<p><a
href="https://github.com/juliangruber/brace-expansion/compare/v1.1.11...v1.1.12">https://github.com/juliangruber/brace-expansion/compare/v1.1.11...v1.1.12</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/juliangruber/brace-expansion/commit/c85b8ad3f53d1eb65f4996a495cae61949855f7c"><code>c85b8ad</code></a>
4.0.1</li>
<li><a
href="https://github.com/juliangruber/brace-expansion/commit/5a5cc176c080b2fde292a9815dc6ecd97c870d17"><code>5a5cc17</code></a>
fmt</li>
<li><a
href="https://github.com/juliangruber/brace-expansion/commit/0b6a9781e18e9d2769bb2931f4856d1360243ed2"><code>0b6a978</code></a>
Fix potential ReDoS Vulnerability or Inefficient Regular Expression (<a
href="https://redirect.github.com/juliangruber/brace-expansion/issues/65">#65</a>)</li>
<li><a
href="https://github.com/juliangruber/brace-expansion/commit/6a39bdddcf944374b475d99b0e8292d3727c7ebe"><code>6a39bdd</code></a>
4.0.0</li>
<li><a
href="https://github.com/juliangruber/brace-expansion/commit/dd72a59047e30ea265c4a58695a00ea82e90a437"><code>dd72a59</code></a>
fmt</li>
<li><a
href="https://github.com/juliangruber/brace-expansion/commit/278132b187d4418fe8163da5e81710222f47e3f6"><code>278132b</code></a>
feat: use string replaces instead of splits (<a
href="https://redirect.github.com/juliangruber/brace-expansion/issues/64">#64</a>)</li>
<li><a
href="https://github.com/juliangruber/brace-expansion/commit/70e4c1baf9b91c77b1fa303a0c07d35389e9c0a0"><code>70e4c1b</code></a>
add <code>tea.yaml</code></li>
<li><a
href="https://github.com/juliangruber/brace-expansion/commit/b01a637b0578a7c59acc7d8386f11f8d0710b512"><code>b01a637</code></a>
3.0.0</li>
<li><a
href="https://github.com/juliangruber/brace-expansion/commit/9e781e913fe323e69248d36acebe29008666ba72"><code>9e781e9</code></a>
node 16 is EOL</li>
<li><a
href="https://github.com/juliangruber/brace-expansion/commit/6dad2093f84eac403fb3715a624fede524967cec"><code>6dad209</code></a>
docs</li>
<li>Additional commits viewable in <a
href="https://github.com/juliangruber/brace-expansion/compare/1.1.11...v1.1.12">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=brace-expansion&package-manager=npm_and_yarn&previous-version=1.1.11&new-version=1.1.12)](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
You can disable automated security fix PRs for this repo from the
[Security Alerts
page](https://github.com/josxha/flutter-maplibre/network/alerts).

</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…xha#286)

Bumps the dependencies group in /docs with 6 updates:

| Package | From | To |
| --- | --- | --- |
|
[@docusaurus/core](https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus)
| `3.8.0` | `3.8.1` |
|
[@docusaurus/preset-classic](https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-preset-classic)
| `3.8.0` | `3.8.1` |
|
[@docusaurus/theme-mermaid](https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-theme-mermaid)
| `3.8.0` | `3.8.1` |
|
[@docusaurus/module-type-aliases](https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-module-type-aliases)
| `3.8.0` | `3.8.1` |
|
[@docusaurus/tsconfig](https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-tsconfig)
| `3.8.0` | `3.8.1` |
|
[@docusaurus/types](https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-types)
| `3.8.0` | `3.8.1` |

Updates `@docusaurus/core` from 3.8.0 to 3.8.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/facebook/docusaurus/releases"><code>@​docusaurus/core</code>'s
releases</a>.</em></p>
<blockquote>
<h2>3.8.1</h2>
<h4>:bug: Bug Fix</h4>
<ul>
<li><code>docusaurus-theme-classic</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11242">#11242</a>
fix(theme): fix unability to navigate to category's page when browsing
its children items (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-plugin-css-cascade-layers</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11241">#11241</a>
fix(css-cascade-layers): fix windows css cascade layers bug (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11222">#11222</a>
fix(bundler): fix <code>docusaurus start</code> using
<code>concatenateModules: true</code> (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11217">#11217</a>
fix: include Arc to supported Chromium Browsers (<a
href="https://github.com/wellwelwel"><code>@​wellwelwel</code></a>)</li>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11205">#11205</a>
fix(core): fix <code>docusaurus start</code> error for macOS users with
no Chromium-based browser (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-types</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11221">#11221</a>
fix(types): fix future flags public types (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>:running_woman: Performance</h4>
<ul>
<li><code>docusaurus-plugin-content-blog</code>,
<code>docusaurus-plugin-sitemap</code>,
<code>docusaurus-theme-classic</code>, <code>docusaurus-types</code>,
<code>docusaurus-utils</code>, <code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11211">#11211</a>
perf: avoid duplicated <code>git log</code> calls in
<code>loadContent()</code> and <code>postBuild()</code> for untracked
Git files (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>:wrench: Maintenance</h4>
<ul>
<li><code>docusaurus-faster</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11248">#11248</a>
chore(faster): upgrade Rspack (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-plugin-content-docs</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11230">#11230</a>
refactor(docs): extract <code>loadVersion()</code> without changing the
behavior (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li>Other
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11212">#11212</a>
chore: upgrade to Node 22 by default (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>Committers: 7</h4>
<ul>
<li>Ben McCann (<a
href="https://github.com/benmccann"><code>@​benmccann</code></a>)</li>
<li>Dave Meyer (<a
href="https://github.com/dave-meyer"><code>@​dave-meyer</code></a>)</li>
<li>Léo Vincent (<a
href="https://github.com/leovct"><code>@​leovct</code></a>)</li>
<li>Noritaka Kobayashi (<a
href="https://github.com/noritaka1166"><code>@​noritaka1166</code></a>)</li>
<li>Phil Parsons (<a
href="https://github.com/p-m-p"><code>@​p-m-p</code></a>)</li>
<li>Sébastien Lorber (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
<li>Weslley Araújo (<a
href="https://github.com/wellwelwel"><code>@​wellwelwel</code></a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/facebook/docusaurus/blob/main/CHANGELOG.md"><code>@​docusaurus/core</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>3.8.1 (2025-06-06)</h2>
<h4>:bug: Bug Fix</h4>
<ul>
<li><code>docusaurus-theme-classic</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11242">#11242</a>
fix(theme): fix unability to navigate to category's page when browsing
its children items (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-plugin-css-cascade-layers</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11241">#11241</a>
fix(css-cascade-layers): fix windows css cascade layers bug (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11222">#11222</a>
fix(bundler): fix <code>docusaurus start</code> using
<code>concatenateModules: true</code> (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11217">#11217</a>
fix: include Arc to supported Chromium Browsers (<a
href="https://github.com/wellwelwel"><code>@​wellwelwel</code></a>)</li>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11205">#11205</a>
fix(core): fix <code>docusaurus start</code> error for macOS users with
no Chromium-based browser (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-types</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11221">#11221</a>
fix(types): fix future flags public types (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>:running_woman: Performance</h4>
<ul>
<li><code>docusaurus-plugin-content-blog</code>,
<code>docusaurus-plugin-sitemap</code>,
<code>docusaurus-theme-classic</code>, <code>docusaurus-types</code>,
<code>docusaurus-utils</code>, <code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11211">#11211</a>
perf: avoid duplicated <code>git log</code> calls in
<code>loadContent()</code> and <code>postBuild()</code> for untracked
Git files (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>:wrench: Maintenance</h4>
<ul>
<li><code>docusaurus-faster</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11248">#11248</a>
chore(faster): upgrade Rspack (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-plugin-content-docs</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11230">#11230</a>
refactor(docs): extract <code>loadVersion()</code> without changing the
behavior (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li>Other
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11212">#11212</a>
chore: upgrade to Node 22 by default (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>Committers: 7</h4>
<ul>
<li>Ben McCann (<a
href="https://github.com/benmccann"><code>@​benmccann</code></a>)</li>
<li>Dave Meyer (<a
href="https://github.com/dave-meyer"><code>@​dave-meyer</code></a>)</li>
<li>Léo Vincent (<a
href="https://github.com/leovct"><code>@​leovct</code></a>)</li>
<li>Noritaka Kobayashi (<a
href="https://github.com/noritaka1166"><code>@​noritaka1166</code></a>)</li>
<li>Phil Parsons (<a
href="https://github.com/p-m-p"><code>@​p-m-p</code></a>)</li>
<li>Sébastien Lorber (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
<li>Weslley Araújo (<a
href="https://github.com/wellwelwel"><code>@​wellwelwel</code></a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/facebook/docusaurus/commit/fa8ae13e668fcbc0481ce10c0a734e2a5b397293"><code>fa8ae13</code></a>
v3.8.1</li>
<li><a
href="https://github.com/facebook/docusaurus/commit/ffa7525ff94a8a54adf8191694ad4a051566bb13"><code>ffa7525</code></a>
fix(bundler): fix <code>docusaurus start</code> using
<code>concatenateModules: true</code> (<a
href="https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus/issues/11222">#11222</a>)</li>
<li><a
href="https://github.com/facebook/docusaurus/commit/dd6396dd39a50de3eb99dcf9d1f30057b583deaa"><code>dd6396d</code></a>
fix: include Arc to supported Chromium Browsers (<a
href="https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus/issues/11217">#11217</a>)</li>
<li><a
href="https://github.com/facebook/docusaurus/commit/264774a550a1a748cab88cfeec4d7e5b19737041"><code>264774a</code></a>
perf: avoid duplicated <code>git log</code> calls in
<code>loadContent()</code> and <code>postBuild()</code> f...</li>
<li><a
href="https://github.com/facebook/docusaurus/commit/68aa3c876ba60fda6ab45b3dbda4a3ad595ed787"><code>68aa3c8</code></a>
fix(core): fix <code>docusaurus start</code> error for macOS users with
no Chromium-base...</li>
<li><a
href="https://github.com/facebook/docusaurus/commit/b126e643d19095f6a1525a4ac5ef0fa6be181c38"><code>b126e64</code></a>
chore: release Docusaurus 3.8 (<a
href="https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus/issues/11200">#11200</a>)</li>
<li><a
href="https://github.com/facebook/docusaurus/commit/8958c11c58eeda5123392759ff6c7bb47adac891"><code>8958c11</code></a>
chore: fix typos in comment-out (<a
href="https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus/issues/11197">#11197</a>)</li>
<li><a
href="https://github.com/facebook/docusaurus/commit/ba18a8b8b9bd396cbc3b1b78ff0164c15f9faa5b"><code>ba18a8b</code></a>
chore: simplify construction of test paths (<a
href="https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus/issues/11196">#11196</a>)</li>
<li>See full diff in <a
href="https://github.com/facebook/docusaurus/commits/v3.8.1/packages/docusaurus">compare
view</a></li>
</ul>
</details>
<br />

Updates `@docusaurus/preset-classic` from 3.8.0 to 3.8.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/facebook/docusaurus/releases"><code>@​docusaurus/preset-classic</code>'s
releases</a>.</em></p>
<blockquote>
<h2>3.8.1</h2>
<h4>:bug: Bug Fix</h4>
<ul>
<li><code>docusaurus-theme-classic</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11242">#11242</a>
fix(theme): fix unability to navigate to category's page when browsing
its children items (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-plugin-css-cascade-layers</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11241">#11241</a>
fix(css-cascade-layers): fix windows css cascade layers bug (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11222">#11222</a>
fix(bundler): fix <code>docusaurus start</code> using
<code>concatenateModules: true</code> (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11217">#11217</a>
fix: include Arc to supported Chromium Browsers (<a
href="https://github.com/wellwelwel"><code>@​wellwelwel</code></a>)</li>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11205">#11205</a>
fix(core): fix <code>docusaurus start</code> error for macOS users with
no Chromium-based browser (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-types</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11221">#11221</a>
fix(types): fix future flags public types (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>:running_woman: Performance</h4>
<ul>
<li><code>docusaurus-plugin-content-blog</code>,
<code>docusaurus-plugin-sitemap</code>,
<code>docusaurus-theme-classic</code>, <code>docusaurus-types</code>,
<code>docusaurus-utils</code>, <code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11211">#11211</a>
perf: avoid duplicated <code>git log</code> calls in
<code>loadContent()</code> and <code>postBuild()</code> for untracked
Git files (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>:wrench: Maintenance</h4>
<ul>
<li><code>docusaurus-faster</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11248">#11248</a>
chore(faster): upgrade Rspack (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-plugin-content-docs</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11230">#11230</a>
refactor(docs): extract <code>loadVersion()</code> without changing the
behavior (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li>Other
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11212">#11212</a>
chore: upgrade to Node 22 by default (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>Committers: 7</h4>
<ul>
<li>Ben McCann (<a
href="https://github.com/benmccann"><code>@​benmccann</code></a>)</li>
<li>Dave Meyer (<a
href="https://github.com/dave-meyer"><code>@​dave-meyer</code></a>)</li>
<li>Léo Vincent (<a
href="https://github.com/leovct"><code>@​leovct</code></a>)</li>
<li>Noritaka Kobayashi (<a
href="https://github.com/noritaka1166"><code>@​noritaka1166</code></a>)</li>
<li>Phil Parsons (<a
href="https://github.com/p-m-p"><code>@​p-m-p</code></a>)</li>
<li>Sébastien Lorber (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
<li>Weslley Araújo (<a
href="https://github.com/wellwelwel"><code>@​wellwelwel</code></a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/facebook/docusaurus/blob/main/CHANGELOG.md"><code>@​docusaurus/preset-classic</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>3.8.1 (2025-06-06)</h2>
<h4>:bug: Bug Fix</h4>
<ul>
<li><code>docusaurus-theme-classic</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11242">#11242</a>
fix(theme): fix unability to navigate to category's page when browsing
its children items (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-plugin-css-cascade-layers</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11241">#11241</a>
fix(css-cascade-layers): fix windows css cascade layers bug (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11222">#11222</a>
fix(bundler): fix <code>docusaurus start</code> using
<code>concatenateModules: true</code> (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11217">#11217</a>
fix: include Arc to supported Chromium Browsers (<a
href="https://github.com/wellwelwel"><code>@​wellwelwel</code></a>)</li>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11205">#11205</a>
fix(core): fix <code>docusaurus start</code> error for macOS users with
no Chromium-based browser (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-types</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11221">#11221</a>
fix(types): fix future flags public types (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>:running_woman: Performance</h4>
<ul>
<li><code>docusaurus-plugin-content-blog</code>,
<code>docusaurus-plugin-sitemap</code>,
<code>docusaurus-theme-classic</code>, <code>docusaurus-types</code>,
<code>docusaurus-utils</code>, <code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11211">#11211</a>
perf: avoid duplicated <code>git log</code> calls in
<code>loadContent()</code> and <code>postBuild()</code> for untracked
Git files (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>:wrench: Maintenance</h4>
<ul>
<li><code>docusaurus-faster</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11248">#11248</a>
chore(faster): upgrade Rspack (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-plugin-content-docs</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11230">#11230</a>
refactor(docs): extract <code>loadVersion()</code> without changing the
behavior (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li>Other
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11212">#11212</a>
chore: upgrade to Node 22 by default (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>Committers: 7</h4>
<ul>
<li>Ben McCann (<a
href="https://github.com/benmccann"><code>@​benmccann</code></a>)</li>
<li>Dave Meyer (<a
href="https://github.com/dave-meyer"><code>@​dave-meyer</code></a>)</li>
<li>Léo Vincent (<a
href="https://github.com/leovct"><code>@​leovct</code></a>)</li>
<li>Noritaka Kobayashi (<a
href="https://github.com/noritaka1166"><code>@​noritaka1166</code></a>)</li>
<li>Phil Parsons (<a
href="https://github.com/p-m-p"><code>@​p-m-p</code></a>)</li>
<li>Sébastien Lorber (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
<li>Weslley Araújo (<a
href="https://github.com/wellwelwel"><code>@​wellwelwel</code></a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/facebook/docusaurus/commit/fa8ae13e668fcbc0481ce10c0a734e2a5b397293"><code>fa8ae13</code></a>
v3.8.1</li>
<li><a
href="https://github.com/facebook/docusaurus/commit/b126e643d19095f6a1525a4ac5ef0fa6be181c38"><code>b126e64</code></a>
chore: release Docusaurus 3.8 (<a
href="https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-preset-classic/issues/11200">#11200</a>)</li>
<li>See full diff in <a
href="https://github.com/facebook/docusaurus/commits/v3.8.1/packages/docusaurus-preset-classic">compare
view</a></li>
</ul>
</details>
<br />

Updates `@docusaurus/theme-mermaid` from 3.8.0 to 3.8.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/facebook/docusaurus/releases"><code>@​docusaurus/theme-mermaid</code>'s
releases</a>.</em></p>
<blockquote>
<h2>3.8.1</h2>
<h4>:bug: Bug Fix</h4>
<ul>
<li><code>docusaurus-theme-classic</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11242">#11242</a>
fix(theme): fix unability to navigate to category's page when browsing
its children items (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-plugin-css-cascade-layers</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11241">#11241</a>
fix(css-cascade-layers): fix windows css cascade layers bug (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11222">#11222</a>
fix(bundler): fix <code>docusaurus start</code> using
<code>concatenateModules: true</code> (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11217">#11217</a>
fix: include Arc to supported Chromium Browsers (<a
href="https://github.com/wellwelwel"><code>@​wellwelwel</code></a>)</li>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11205">#11205</a>
fix(core): fix <code>docusaurus start</code> error for macOS users with
no Chromium-based browser (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-types</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11221">#11221</a>
fix(types): fix future flags public types (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>:running_woman: Performance</h4>
<ul>
<li><code>docusaurus-plugin-content-blog</code>,
<code>docusaurus-plugin-sitemap</code>,
<code>docusaurus-theme-classic</code>, <code>docusaurus-types</code>,
<code>docusaurus-utils</code>, <code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11211">#11211</a>
perf: avoid duplicated <code>git log</code> calls in
<code>loadContent()</code> and <code>postBuild()</code> for untracked
Git files (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>:wrench: Maintenance</h4>
<ul>
<li><code>docusaurus-faster</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11248">#11248</a>
chore(faster): upgrade Rspack (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-plugin-content-docs</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11230">#11230</a>
refactor(docs): extract <code>loadVersion()</code> without changing the
behavior (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li>Other
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11212">#11212</a>
chore: upgrade to Node 22 by default (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>Committers: 7</h4>
<ul>
<li>Ben McCann (<a
href="https://github.com/benmccann"><code>@​benmccann</code></a>)</li>
<li>Dave Meyer (<a
href="https://github.com/dave-meyer"><code>@​dave-meyer</code></a>)</li>
<li>Léo Vincent (<a
href="https://github.com/leovct"><code>@​leovct</code></a>)</li>
<li>Noritaka Kobayashi (<a
href="https://github.com/noritaka1166"><code>@​noritaka1166</code></a>)</li>
<li>Phil Parsons (<a
href="https://github.com/p-m-p"><code>@​p-m-p</code></a>)</li>
<li>Sébastien Lorber (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
<li>Weslley Araújo (<a
href="https://github.com/wellwelwel"><code>@​wellwelwel</code></a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/facebook/docusaurus/blob/main/CHANGELOG.md"><code>@​docusaurus/theme-mermaid</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>3.8.1 (2025-06-06)</h2>
<h4>:bug: Bug Fix</h4>
<ul>
<li><code>docusaurus-theme-classic</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11242">#11242</a>
fix(theme): fix unability to navigate to category's page when browsing
its children items (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-plugin-css-cascade-layers</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11241">#11241</a>
fix(css-cascade-layers): fix windows css cascade layers bug (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11222">#11222</a>
fix(bundler): fix <code>docusaurus start</code> using
<code>concatenateModules: true</code> (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11217">#11217</a>
fix: include Arc to supported Chromium Browsers (<a
href="https://github.com/wellwelwel"><code>@​wellwelwel</code></a>)</li>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11205">#11205</a>
fix(core): fix <code>docusaurus start</code> error for macOS users with
no Chromium-based browser (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-types</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11221">#11221</a>
fix(types): fix future flags public types (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>:running_woman: Performance</h4>
<ul>
<li><code>docusaurus-plugin-content-blog</code>,
<code>docusaurus-plugin-sitemap</code>,
<code>docusaurus-theme-classic</code>, <code>docusaurus-types</code>,
<code>docusaurus-utils</code>, <code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11211">#11211</a>
perf: avoid duplicated <code>git log</code> calls in
<code>loadContent()</code> and <code>postBuild()</code> for untracked
Git files (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>:wrench: Maintenance</h4>
<ul>
<li><code>docusaurus-faster</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11248">#11248</a>
chore(faster): upgrade Rspack (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-plugin-content-docs</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11230">#11230</a>
refactor(docs): extract <code>loadVersion()</code> without changing the
behavior (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li>Other
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11212">#11212</a>
chore: upgrade to Node 22 by default (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>Committers: 7</h4>
<ul>
<li>Ben McCann (<a
href="https://github.com/benmccann"><code>@​benmccann</code></a>)</li>
<li>Dave Meyer (<a
href="https://github.com/dave-meyer"><code>@​dave-meyer</code></a>)</li>
<li>Léo Vincent (<a
href="https://github.com/leovct"><code>@​leovct</code></a>)</li>
<li>Noritaka Kobayashi (<a
href="https://github.com/noritaka1166"><code>@​noritaka1166</code></a>)</li>
<li>Phil Parsons (<a
href="https://github.com/p-m-p"><code>@​p-m-p</code></a>)</li>
<li>Sébastien Lorber (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
<li>Weslley Araújo (<a
href="https://github.com/wellwelwel"><code>@​wellwelwel</code></a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/facebook/docusaurus/commit/fa8ae13e668fcbc0481ce10c0a734e2a5b397293"><code>fa8ae13</code></a>
v3.8.1</li>
<li><a
href="https://github.com/facebook/docusaurus/commit/b126e643d19095f6a1525a4ac5ef0fa6be181c38"><code>b126e64</code></a>
chore: release Docusaurus 3.8 (<a
href="https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-theme-mermaid/issues/11200">#11200</a>)</li>
<li>See full diff in <a
href="https://github.com/facebook/docusaurus/commits/v3.8.1/packages/docusaurus-theme-mermaid">compare
view</a></li>
</ul>
</details>
<br />

Updates `@docusaurus/module-type-aliases` from 3.8.0 to 3.8.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/facebook/docusaurus/releases"><code>@​docusaurus/module-type-aliases</code>'s
releases</a>.</em></p>
<blockquote>
<h2>3.8.1</h2>
<h4>:bug: Bug Fix</h4>
<ul>
<li><code>docusaurus-theme-classic</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11242">#11242</a>
fix(theme): fix unability to navigate to category's page when browsing
its children items (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-plugin-css-cascade-layers</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11241">#11241</a>
fix(css-cascade-layers): fix windows css cascade layers bug (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11222">#11222</a>
fix(bundler): fix <code>docusaurus start</code> using
<code>concatenateModules: true</code> (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11217">#11217</a>
fix: include Arc to supported Chromium Browsers (<a
href="https://github.com/wellwelwel"><code>@​wellwelwel</code></a>)</li>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11205">#11205</a>
fix(core): fix <code>docusaurus start</code> error for macOS users with
no Chromium-based browser (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-types</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11221">#11221</a>
fix(types): fix future flags public types (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>:running_woman: Performance</h4>
<ul>
<li><code>docusaurus-plugin-content-blog</code>,
<code>docusaurus-plugin-sitemap</code>,
<code>docusaurus-theme-classic</code>, <code>docusaurus-types</code>,
<code>docusaurus-utils</code>, <code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11211">#11211</a>
perf: avoid duplicated <code>git log</code> calls in
<code>loadContent()</code> and <code>postBuild()</code> for untracked
Git files (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>:wrench: Maintenance</h4>
<ul>
<li><code>docusaurus-faster</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11248">#11248</a>
chore(faster): upgrade Rspack (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-plugin-content-docs</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11230">#11230</a>
refactor(docs): extract <code>loadVersion()</code> without changing the
behavior (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li>Other
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11212">#11212</a>
chore: upgrade to Node 22 by default (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>Committers: 7</h4>
<ul>
<li>Ben McCann (<a
href="https://github.com/benmccann"><code>@​benmccann</code></a>)</li>
<li>Dave Meyer (<a
href="https://github.com/dave-meyer"><code>@​dave-meyer</code></a>)</li>
<li>Léo Vincent (<a
href="https://github.com/leovct"><code>@​leovct</code></a>)</li>
<li>Noritaka Kobayashi (<a
href="https://github.com/noritaka1166"><code>@​noritaka1166</code></a>)</li>
<li>Phil Parsons (<a
href="https://github.com/p-m-p"><code>@​p-m-p</code></a>)</li>
<li>Sébastien Lorber (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
<li>Weslley Araújo (<a
href="https://github.com/wellwelwel"><code>@​wellwelwel</code></a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/facebook/docusaurus/blob/main/CHANGELOG.md"><code>@​docusaurus/module-type-aliases</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>3.8.1 (2025-06-06)</h2>
<h4>:bug: Bug Fix</h4>
<ul>
<li><code>docusaurus-theme-classic</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11242">#11242</a>
fix(theme): fix unability to navigate to category's page when browsing
its children items (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-plugin-css-cascade-layers</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11241">#11241</a>
fix(css-cascade-layers): fix windows css cascade layers bug (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11222">#11222</a>
fix(bundler): fix <code>docusaurus start</code> using
<code>concatenateModules: true</code> (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11217">#11217</a>
fix: include Arc to supported Chromium Browsers (<a
href="https://github.com/wellwelwel"><code>@​wellwelwel</code></a>)</li>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11205">#11205</a>
fix(core): fix <code>docusaurus start</code> error for macOS users with
no Chromium-based browser (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-types</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11221">#11221</a>
fix(types): fix future flags public types (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>:running_woman: Performance</h4>
<ul>
<li><code>docusaurus-plugin-content-blog</code>,
<code>docusaurus-plugin-sitemap</code>,
<code>docusaurus-theme-classic</code>, <code>docusaurus-types</code>,
<code>docusaurus-utils</code>, <code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11211">#11211</a>
perf: avoid duplicated <code>git log</code> calls in
<code>loadContent()</code> and <code>postBuild()</code> for untracked
Git files (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>:wrench: Maintenance</h4>
<ul>
<li><code>docusaurus-faster</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11248">#11248</a>
chore(faster): upgrade Rspack (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-plugin-content-docs</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11230">#11230</a>
refactor(docs): extract <code>loadVersion()</code> without changing the
behavior (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li>Other
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11212">#11212</a>
chore: upgrade to Node 22 by default (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>Committers: 7</h4>
<ul>
<li>Ben McCann (<a
href="https://github.com/benmccann"><code>@​benmccann</code></a>)</li>
<li>Dave Meyer (<a
href="https://github.com/dave-meyer"><code>@​dave-meyer</code></a>)</li>
<li>Léo Vincent (<a
href="https://github.com/leovct"><code>@​leovct</code></a>)</li>
<li>Noritaka Kobayashi (<a
href="https://github.com/noritaka1166"><code>@​noritaka1166</code></a>)</li>
<li>Phil Parsons (<a
href="https://github.com/p-m-p"><code>@​p-m-p</code></a>)</li>
<li>Sébastien Lorber (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
<li>Weslley Araújo (<a
href="https://github.com/wellwelwel"><code>@​wellwelwel</code></a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/facebook/docusaurus/commit/fa8ae13e668fcbc0481ce10c0a734e2a5b397293"><code>fa8ae13</code></a>
v3.8.1</li>
<li><a
href="https://github.com/facebook/docusaurus/commit/b126e643d19095f6a1525a4ac5ef0fa6be181c38"><code>b126e64</code></a>
chore: release Docusaurus 3.8 (<a
href="https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-module-type-aliases/issues/11200">#11200</a>)</li>
<li>See full diff in <a
href="https://github.com/facebook/docusaurus/commits/v3.8.1/packages/docusaurus-module-type-aliases">compare
view</a></li>
</ul>
</details>
<br />

Updates `@docusaurus/tsconfig` from 3.8.0 to 3.8.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/facebook/docusaurus/releases"><code>@​docusaurus/tsconfig</code>'s
releases</a>.</em></p>
<blockquote>
<h2>3.8.1</h2>
<h4>:bug: Bug Fix</h4>
<ul>
<li><code>docusaurus-theme-classic</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11242">#11242</a>
fix(theme): fix unability to navigate to category's page when browsing
its children items (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-plugin-css-cascade-layers</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11241">#11241</a>
fix(css-cascade-layers): fix windows css cascade layers bug (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11222">#11222</a>
fix(bundler): fix <code>docusaurus start</code> using
<code>concatenateModules: true</code> (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11217">#11217</a>
fix: include Arc to supported Chromium Browsers (<a
href="https://github.com/wellwelwel"><code>@​wellwelwel</code></a>)</li>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11205">#11205</a>
fix(core): fix <code>docusaurus start</code> error for macOS users with
no Chromium-based browser (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-types</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11221">#11221</a>
fix(types): fix future flags public types (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>:running_woman: Performance</h4>
<ul>
<li><code>docusaurus-plugin-content-blog</code>,
<code>docusaurus-plugin-sitemap</code>,
<code>docusaurus-theme-classic</code>, <code>docusaurus-types</code>,
<code>docusaurus-utils</code>, <code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11211">#11211</a>
perf: avoid duplicated <code>git log</code> calls in
<code>loadContent()</code> and <code>postBuild()</code> for untracked
Git files (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>:wrench: Maintenance</h4>
<ul>
<li><code>docusaurus-faster</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11248">#11248</a>
chore(faster): upgrade Rspack (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-plugin-content-docs</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11230">#11230</a>
refactor(docs): extract <code>loadVersion()</code> without changing the
behavior (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li>Other
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11212">#11212</a>
chore: upgrade to Node 22 by default (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>Committers: 7</h4>
<ul>
<li>Ben McCann (<a
href="https://github.com/benmccann"><code>@​benmccann</code></a>)</li>
<li>Dave Meyer (<a
href="https://github.com/dave-meyer"><code>@​dave-meyer</code></a>)</li>
<li>Léo Vincent (<a
href="https://github.com/leovct"><code>@​leovct</code></a>)</li>
<li>Noritaka Kobayashi (<a
href="https://github.com/noritaka1166"><code>@​noritaka1166</code></a>)</li>
<li>Phil Parsons (<a
href="https://github.com/p-m-p"><code>@​p-m-p</code></a>)</li>
<li>Sébastien Lorber (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
<li>Weslley Araújo (<a
href="https://github.com/wellwelwel"><code>@​wellwelwel</code></a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/facebook/docusaurus/blob/main/CHANGELOG.md"><code>@​docusaurus/tsconfig</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>3.8.1 (2025-06-06)</h2>
<h4>:bug: Bug Fix</h4>
<ul>
<li><code>docusaurus-theme-classic</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11242">#11242</a>
fix(theme): fix unability to navigate to category's page when browsing
its children items (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-plugin-css-cascade-layers</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11241">#11241</a>
fix(css-cascade-layers): fix windows css cascade layers bug (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11222">#11222</a>
fix(bundler): fix <code>docusaurus start</code> using
<code>concatenateModules: true</code> (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11217">#11217</a>
fix: include Arc to supported Chromium Browsers (<a
href="https://github.com/wellwelwel"><code>@​wellwelwel</code></a>)</li>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11205">#11205</a>
fix(core): fix <code>docusaurus start</code> error for macOS users with
no Chromium-based browser (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-types</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11221">#11221</a>
fix(types): fix future flags public types (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>:running_woman: Performance</h4>
<ul>
<li><code>docusaurus-plugin-content-blog</code>,
<code>docusaurus-plugin-sitemap</code>,
<code>docusaurus-theme-classic</code>, <code>docusaurus-types</code>,
<code>docusaurus-utils</code>, <code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11211">#11211</a>
perf: avoid duplicated <code>git log</code> calls in
<code>loadContent()</code> and <code>postBuild()</code> for untracked
Git files (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>:wrench: Maintenance</h4>
<ul>
<li><code>docusaurus-faster</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11248">#11248</a>
chore(faster): upgrade Rspack (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-plugin-content-docs</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11230">#11230</a>
refactor(docs): extract <code>loadVersion()</code> without changing the
behavior (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li>Other
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11212">#11212</a>
chore: upgrade to Node 22 by default (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>Committers: 7</h4>
<ul>
<li>Ben McCann (<a
href="https://github.com/benmccann"><code>@​benmccann</code></a>)</li>
<li>Dave Meyer (<a
href="https://github.com/dave-meyer"><code>@​dave-meyer</code></a>)</li>
<li>Léo Vincent (<a
href="https://github.com/leovct"><code>@​leovct</code></a>)</li>
<li>Noritaka Kobayashi (<a
href="https://github.com/noritaka1166"><code>@​noritaka1166</code></a>)</li>
<li>Phil Parsons (<a
href="https://github.com/p-m-p"><code>@​p-m-p</code></a>)</li>
<li>Sébastien Lorber (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
<li>Weslley Araújo (<a
href="https://github.com/wellwelwel"><code>@​wellwelwel</code></a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/facebook/docusaurus/commit/fa8ae13e668fcbc0481ce10c0a734e2a5b397293"><code>fa8ae13</code></a>
v3.8.1</li>
<li><a
href="https://github.com/facebook/docusaurus/commit/b126e643d19095f6a1525a4ac5ef0fa6be181c38"><code>b126e64</code></a>
chore: release Docusaurus 3.8 (<a
href="https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-tsconfig/issues/11200">#11200</a>)</li>
<li>See full diff in <a
href="https://github.com/facebook/docusaurus/commits/v3.8.1/packages/docusaurus-tsconfig">compare
view</a></li>
</ul>
</details>
<br />

Updates `@docusaurus/types` from 3.8.0 to 3.8.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/facebook/docusaurus/releases"><code>@​docusaurus/types</code>'s
releases</a>.</em></p>
<blockquote>
<h2>3.8.1</h2>
<h4>:bug: Bug Fix</h4>
<ul>
<li><code>docusaurus-theme-classic</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11242">#11242</a>
fix(theme): fix unability to navigate to category's page when browsing
its children items (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-plugin-css-cascade-layers</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11241">#11241</a>
fix(css-cascade-layers): fix windows css cascade layers bug (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11222">#11222</a>
fix(bundler): fix <code>docusaurus start</code> using
<code>concatenateModules: true</code> (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11217">#11217</a>
fix: include Arc to supported Chromium Browsers (<a
href="https://github.com/wellwelwel"><code>@​wellwelwel</code></a>)</li>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11205">#11205</a>
fix(core): fix <code>docusaurus start</code> error for macOS users with
no Chromium-based browser (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-types</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11221">#11221</a>
fix(types): fix future flags public types (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>:running_woman: Performance</h4>
<ul>
<li><code>docusaurus-plugin-content-blog</code>,
<code>docusaurus-plugin-sitemap</code>,
<code>docusaurus-theme-classic</code>, <code>docusaurus-types</code>,
<code>docusaurus-utils</code>, <code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11211">#11211</a>
perf: avoid duplicated <code>git log</code> calls in
<code>loadContent()</code> and <code>postBuild()</code> for untracked
Git files (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>:wrench: Maintenance</h4>
<ul>
<li><code>docusaurus-faster</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11248">#11248</a>
chore(faster): upgrade Rspack (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-plugin-content-docs</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11230">#11230</a>
refactor(docs): extract <code>loadVersion()</code> without changing the
behavior (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li>Other
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11212">#11212</a>
chore: upgrade to Node 22 by default (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>Committers: 7</h4>
<ul>
<li>Ben McCann (<a
href="https://github.com/benmccann"><code>@​benmccann</code></a>)</li>
<li>Dave Meyer (<a
href="https://github.com/dave-meyer"><code>@​dave-meyer</code></a>)</li>
<li>Léo Vincent (<a
href="https://github.com/leovct"><code>@​leovct</code></a>)</li>
<li>Noritaka Kobayashi (<a
href="https://github.com/noritaka1166"><code>@​noritaka1166</code></a>)</li>
<li>Phil Parsons (<a
href="https://github.com/p-m-p"><code>@​p-m-p</code></a>)</li>
<li>Sébastien Lorber (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
<li>Weslley Araújo (<a
href="https://github.com/wellwelwel"><code>@​wellwelwel</code></a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/facebook/docusaurus/blob/main/CHANGELOG.md"><code>@​docusaurus/types</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>3.8.1 (2025-06-06)</h2>
<h4>:bug: Bug Fix</h4>
<ul>
<li><code>docusaurus-theme-classic</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11242">#11242</a>
fix(theme): fix unability to navigate to category's page when browsing
its children items (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-plugin-css-cascade-layers</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11241">#11241</a>
fix(css-cascade-layers): fix windows css cascade layers bug (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11222">#11222</a>
fix(bundler): fix <code>docusaurus start</code> using
<code>concatenateModules: true</code> (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11217">#11217</a>
fix: include Arc to supported Chromium Browsers (<a
href="https://github.com/wellwelwel"><code>@​wellwelwel</code></a>)</li>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11205">#11205</a>
fix(core): fix <code>docusaurus start</code> error for macOS users with
no Chromium-based browser (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-types</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11221">#11221</a>
fix(types): fix future flags public types (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>:running_woman: Performance</h4>
<ul>
<li><code>docusaurus-plugin-content-blog</code>,
<code>docusaurus-plugin-sitemap</code>,
<code>docusaurus-theme-classic</code>, <code>docusaurus-types</code>,
<code>docusaurus-utils</code>, <code>docusaurus</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11211">#11211</a>
perf: avoid duplicated <code>git log</code> calls in
<code>loadContent()</code> and <code>postBuild()</code> for untracked
Git files (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>:wrench: Maintenance</h4>
<ul>
<li><code>docusaurus-faster</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11248">#11248</a>
chore(faster): upgrade Rspack (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li><code>docusaurus-plugin-content-docs</code>
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11230">#11230</a>
refactor(docs): extract <code>loadVersion()</code> without changing the
behavior (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
<li>Other
<ul>
<li><a
href="https://redirect.github.com/facebook/docusaurus/pull/11212">#11212</a>
chore: upgrade to Node 22 by default (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
</ul>
</li>
</ul>
<h4>Committers: 7</h4>
<ul>
<li>Ben McCann (<a
href="https://github.com/benmccann"><code>@​benmccann</code></a>)</li>
<li>Dave Meyer (<a
href="https://github.com/dave-meyer"><code>@​dave-meyer</code></a>)</li>
<li>Léo Vincent (<a
href="https://github.com/leovct"><code>@​leovct</code></a>)</li>
<li>Noritaka Kobayashi (<a
href="https://github.com/noritaka1166"><code>@​noritaka1166</code></a>)</li>
<li>Phil Parsons (<a
href="https://github.com/p-m-p"><code>@​p-m-p</code></a>)</li>
<li>Sébastien Lorber (<a
href="https://github.com/slorber"><code>@​slorber</code></a>)</li>
<li>Weslley Araújo (<a
href="https://github.com/wellwelwel"><code>@​wellwelwel</code></a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/facebook/docusaurus/commit/fa8ae13e668fcbc0481ce10c0a734e2a5b397293"><code>fa8ae13</code></a>
v3.8.1</li>
<li><a
href="https://github.com/facebook/docusaurus/commit/1c454a94306cc02af05f8ed44801f359a26608b6"><code>1c454a9</code></a>
fix(types): fix future flags public types (<a
href="https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-types/issues/11221">#11221</a>)</li>
<li><a
href="https://github.com/facebook/docusaurus/commit/264774a550a1a748cab88cfeec4d7e5b19737041"><code>264774a</code></a>
perf: avoid duplicated <code>git log</code> calls in
<code>loadContent()</code> and <code>postBuild()</code> f...</li>
<li><a
href="https://github.com/facebook/docusaurus/commit/b126e643d19095f6a1525a4ac5ef0fa6be181c38"><code>b126e64</code></a>
chore: release Docusaurus 3.8 (<a
href="https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-types/issues/11200">#11200</a>)</li>
<li>See full diff in <a
href="https://github.com/facebook/docusaurus/commits/v3.8.1/packages/docusaurus-types">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>
# Conflicts:
#	ios/Classes/Pigeon.g.swift
#	ios/maplibre.podspec
@ErwanJes ErwanJes self-assigned this Jul 4, 2025
@ErwanJes ErwanJes changed the title V0.2.0 no ios upstream Sync v0.2.0-no-ios branch with upstream Jul 4, 2025
@ErwanJes ErwanJes requested a review from Tiska July 4, 2025 16:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

6 participants