Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Tech] Bump the non-major-dependencies group in /frontend with 11 upd…
…ates (#3993) Bumps the non-major-dependencies group in /frontend with 11 updates: | Package | From | To | | --- | --- | --- | | [@dnd-kit/core](https://github.com/clauderic/dnd-kit/tree/HEAD/packages/core) | `6.2.0` | `6.3.1` | | [@mtes-mct/monitor-ui](https://github.com/MTES-MCT/monitor-ui) | `24.10.1` | `24.11.3` | | [@reduxjs/toolkit](https://github.com/reduxjs/redux-toolkit) | `2.4.0` | `2.5.0` | | [@sentry/react](https://github.com/getsentry/sentry-javascript) | `8.41.0` | `8.47.0` | | [@sentry/vite-plugin](https://github.com/getsentry/sentry-javascript-bundler-plugins) | `2.22.6` | `2.22.7` | | [@tanstack/react-table](https://github.com/TanStack/table/tree/HEAD/packages/react-table) | `8.20.5` | `8.20.6` | | [ky](https://github.com/sindresorhus/ky) | `1.7.2` | `1.7.4` | | [ol-mapbox-style](https://github.com/openlayers/ol-mapbox-style) | `12.3.5` | `12.4.0` | | [react-redux](https://github.com/reduxjs/react-redux) | `9.1.2` | `9.2.0` | | [react-select](https://github.com/JedWatson/react-select) | `5.8.3` | `5.9.0` | | [yup](https://github.com/jquense/yup) | `1.4.0` | `1.6.1` | Updates `@dnd-kit/core` from 6.2.0 to 6.3.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/clauderic/dnd-kit/releases"><code>@dnd-kit/core</code>'s releases</a>.</em></p> <blockquote> <h2><code>@dnd-kit/core</code><a href="https://github.com/6"><code>@6</code></a>.3.1</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/clauderic/dnd-kit/pull/1555">#1555</a> <a href="https://github.com/clauderic/dnd-kit/commit/62f632a0c8f06ff020eb90d98770a374c705001d"><code>62f632a</code></a> Thanks <a href="https://github.com/clauderic"><code>@clauderic</code></a>! - Added <code>Tab</code> to the list of default key codes that end a drag and drop operation. Can be customized by passing in a custom list of <code>keyCodes</code> to the KeyboardSensor options.</li> </ul> <h2><code>@dnd-kit/core</code><a href="https://github.com/6"><code>@6</code></a>.3.0</h2> <h3>Minor Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/clauderic/dnd-kit/pull/1539">#1539</a> <a href="https://github.com/clauderic/dnd-kit/commit/0c6a28d1b32c72cfbc6e103c9f430a1e8ebe7301"><code>0c6a28d</code></a> Thanks <a href="https://github.com/irobot"><code>@irobot</code></a>! - Make it possible to add visual cues when using activation constraints.</p> <h3>Context</h3> <p>Activation constraints are used when we want to prevent accidental dragging or when pointer press can mean more than "start dragging".</p> <p>A typical use case is a button that needs to respond to both "click" and "drag" gestures. Clicks can be distinguished from drags based on how long the pointer was held pressed.</p> <h3>The problem</h3> <p>A control that responds differently to a pointer press based on duration or distance can be confusing to use -- the user has to guess how long to keep holding or how far to keep dragging until their intent is acknowledged.</p> <p>Implementing such cues is currently possible by attaching extra event listeners so that we know when a drag is pending. Furthermore, the listener needs to have access to the same constraints that were applied to the sensor initiating the drag. This can be made to work in simple cases, but it becomes error-prone and difficult to maintain in complex scenarios.</p> <h3>Solution</h3> <p>This changeset proposes the addition of two new events: <code>onDragPending</code> and <code>onDragAbort</code>.</p> <h4><code>onDragPending</code></h4> <p>A drag is considered to be pending when the pointer has been pressed and there are activation constraints that need to be satisfied before a drag can start.</p> <p>This event is initially fired on pointer press. At this time <code>offset</code> (see below) will be <code>undefined</code>.</p> <p>It will subsequently be fired every time the pointer is moved. This is to enable visual cues for distance-based activation.</p> <p>The event's payload contains all the information necessary for providing visual feedback:</p> <pre lang="typescript"><code>export interface DragPendingEvent { </code></pre> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/clauderic/dnd-kit/blob/master/packages/core/CHANGELOG.md"><code>@dnd-kit/core</code>'s changelog</a>.</em></p> <blockquote> <h2>6.3.1</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/clauderic/dnd-kit/pull/1555">#1555</a> <a href="https://github.com/clauderic/dnd-kit/commit/62f632a0c8f06ff020eb90d98770a374c705001d"><code>62f632a</code></a> Thanks <a href="https://github.com/clauderic"><code>@clauderic</code></a>! - Added <code>Tab</code> to the list of default key codes that end a drag and drop operation. Can be customized by passing in a custom list of <code>keyCodes</code> to the KeyboardSensor options.</li> </ul> <h2>6.3.0</h2> <h3>Minor Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/clauderic/dnd-kit/pull/1539">#1539</a> <a href="https://github.com/clauderic/dnd-kit/commit/0c6a28d1b32c72cfbc6e103c9f430a1e8ebe7301"><code>0c6a28d</code></a> Thanks <a href="https://github.com/irobot"><code>@irobot</code></a>! - Make it possible to add visual cues when using activation constraints.</p> <h3>Context</h3> <p>Activation constraints are used when we want to prevent accidental dragging or when pointer press can mean more than "start dragging".</p> <p>A typical use case is a button that needs to respond to both "click" and "drag" gestures. Clicks can be distinguished from drags based on how long the pointer was held pressed.</p> <h3>The problem</h3> <p>A control that responds differently to a pointer press based on duration or distance can be confusing to use -- the user has to guess how long to keep holding or how far to keep dragging until their intent is acknowledged.</p> <p>Implementing such cues is currently possible by attaching extra event listeners so that we know when a drag is pending. Furthermore, the listener needs to have access to the same constraints that were applied to the sensor initiating the drag. This can be made to work in simple cases, but it becomes error-prone and difficult to maintain in complex scenarios.</p> <h3>Solution</h3> <p>This changeset proposes the addition of two new events: <code>onDragPending</code> and <code>onDragAbort</code>.</p> <h4><code>onDragPending</code></h4> <p>A drag is considered to be pending when the pointer has been pressed and there are activation constraints that need to be satisfied before a drag can start.</p> <p>This event is initially fired on pointer press. At this time <code>offset</code> (see below) will be <code>undefined</code>.</p> <p>It will subsequently be fired every time the pointer is moved. This is to enable visual cues for distance-based activation.</p> <p>The event's payload contains all the information necessary for providing visual feedback:</p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clauderic/dnd-kit/commit/97c1609ca8247888f872b6aac35f8830cae93ce9"><code>97c1609</code></a> Version Packages</li> <li><a href="https://github.com/clauderic/dnd-kit/commit/62f632a0c8f06ff020eb90d98770a374c705001d"><code>62f632a</code></a> End keyboard drag operation when pressing tab</li> <li><a href="https://github.com/clauderic/dnd-kit/commit/060c9829eba795ff685df28b43e932029f2e165e"><code>060c982</code></a> Version Packages</li> <li><a href="https://github.com/clauderic/dnd-kit/commit/9175566442381c5e005510ee722a2e4d198986a1"><code>9175566</code></a> Merge branch 'master' into feature/constraint-cues</li> <li><a href="https://github.com/clauderic/dnd-kit/commit/0c6a28d1b32c72cfbc6e103c9f430a1e8ebe7301"><code>0c6a28d</code></a> Enable visual cues when using activation constraints.</li> <li>See full diff in <a href="https://github.com/clauderic/dnd-kit/commits/@dnd-kit/[email protected]/packages/core">compare view</a></li> </ul> </details> <br /> Updates `@mtes-mct/monitor-ui` from 24.10.1 to 24.11.3 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/MTES-MCT/monitor-ui/releases"><code>@mtes-mct/monitor-ui</code>'s releases</a>.</em></p> <blockquote> <h2>v24.11.3</h2> <h2><a href="https://github.com/MTES-MCT/monitor-ui/compare/v24.11.2...v24.11.3">24.11.3</a> (2024-12-20)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>tables:</strong> fix scroll in virtualize tables (<a href="https://github.com/MTES-MCT/monitor-ui/commit/1488e3d00a086fb992f0038949ef07ac7176c39a">1488e3d</a>)</li> </ul> <h2>v24.11.2</h2> <h2><a href="https://github.com/MTES-MCT/monitor-ui/compare/v24.11.1...v24.11.2">24.11.2</a> (2024-12-17)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>elements:</strong> fix prefixed props (<a href="https://github.com/MTES-MCT/monitor-ui/commit/76729c63cbbad8f0742a1e207028361f752b7358">76729c6</a>)</li> </ul> <h3>Buid System & Dependencies</h3> <ul> <li><strong>dev-deps:</strong> bump the non-major-dev-dependencies group across 1 directory with 31 updates (<a href="https://github.com/MTES-MCT/monitor-ui/commit/1731b69eff6658b5df49d649dfe2764985989120">1731b69</a>)</li> </ul> <h2>v24.11.1</h2> <h2><a href="https://github.com/MTES-MCT/monitor-ui/compare/v24.11.0...v24.11.1">24.11.1</a> (2024-12-17)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>types:</strong> create generic type for CheckPicker and MultiSelect (<a href="https://github.com/MTES-MCT/monitor-ui/commit/b09f859b7a56d056310c94c3e71d118611178cf0">b09f859</a>)</li> <li><strong>types:</strong> fix typing (<a href="https://github.com/MTES-MCT/monitor-ui/commit/75c5e6d8749d343a12901be22017d1d1ba450701">75c5e6d</a>)</li> </ul> <h3>Buid System & Dependencies</h3> <ul> <li><strong>deps:</strong> bump <code>@tanstack/react-table</code> (<a href="https://github.com/MTES-MCT/monitor-ui/commit/da380bc59e7dd806c29b0eb7fd84d31af9dd4976">da380bc</a>)</li> <li><strong>dev-deps:</strong> bump nanoid (<a href="https://github.com/MTES-MCT/monitor-ui/commit/32f4d5ec3ec1d39fbacd951d211fb2f6e4d3a220">32f4d5e</a>)</li> <li><strong>dev-deps:</strong> bump styled-components from 5.3.10 to 6.1.13 (<a href="https://github.com/MTES-MCT/monitor-ui/commit/c158abfd729c77c9a76cb1c738d9f6bb4484691a">c158abf</a>)</li> <li><strong>dev-deps:</strong> bump the all-non-major-dependencies group (<a href="https://github.com/MTES-MCT/monitor-ui/commit/6040bfb0ba87d63738f8212cad857086885ff8c9">6040bfb</a>)</li> </ul> <h2>v24.11.0</h2> <h2><a href="https://github.com/MTES-MCT/monitor-ui/compare/v24.10.2...v24.11.0">24.11.0</a> (2024-12-10)</h2> <h3>Features</h3> <ul> <li><strong>icons:</strong> add Stroke icon (<a href="https://github.com/MTES-MCT/monitor-ui/commit/ecdd45d549ca7c6d19c7e8b4491dcdb80c8cf4a9">ecdd45d</a>)</li> </ul> <h3>Buid System & Dependencies</h3> <ul> <li><strong>deps:</strong> bump nanoid from 3.3.7 to 3.3.8 in the npm_and_yarn group (<a href="https://github.com/MTES-MCT/monitor-ui/commit/e20cf817b5e262dcda5abcd3db4ab0e472d2778f">e20cf81</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/MTES-MCT/monitor-ui/blob/main/CHANGELOG.md"><code>@mtes-mct/monitor-ui</code>'s changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/MTES-MCT/monitor-ui/compare/v24.11.2...v24.11.3">24.11.3</a> (2024-12-20)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>tables:</strong> fix scroll in virtualize tables (<a href="https://github.com/MTES-MCT/monitor-ui/commit/1488e3d00a086fb992f0038949ef07ac7176c39a">1488e3d</a>)</li> </ul> <h2><a href="https://github.com/MTES-MCT/monitor-ui/compare/v24.11.1...v24.11.2">24.11.2</a> (2024-12-17)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>elements:</strong> fix prefixed props (<a href="https://github.com/MTES-MCT/monitor-ui/commit/76729c63cbbad8f0742a1e207028361f752b7358">76729c6</a>)</li> </ul> <h3>Buid System & Dependencies</h3> <ul> <li><strong>dev-deps:</strong> bump the non-major-dev-dependencies group across 1 directory with 31 updates (<a href="https://github.com/MTES-MCT/monitor-ui/commit/1731b69eff6658b5df49d649dfe2764985989120">1731b69</a>)</li> </ul> <h2><a href="https://github.com/MTES-MCT/monitor-ui/compare/v24.11.0...v24.11.1">24.11.1</a> (2024-12-17)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>types:</strong> create generic type for CheckPicker and MultiSelect (<a href="https://github.com/MTES-MCT/monitor-ui/commit/b09f859b7a56d056310c94c3e71d118611178cf0">b09f859</a>)</li> <li><strong>types:</strong> fix typing (<a href="https://github.com/MTES-MCT/monitor-ui/commit/75c5e6d8749d343a12901be22017d1d1ba450701">75c5e6d</a>)</li> </ul> <h3>Buid System & Dependencies</h3> <ul> <li><strong>deps:</strong> bump <code>@tanstack/react-table</code> (<a href="https://github.com/MTES-MCT/monitor-ui/commit/da380bc59e7dd806c29b0eb7fd84d31af9dd4976">da380bc</a>)</li> <li><strong>dev-deps:</strong> bump nanoid (<a href="https://github.com/MTES-MCT/monitor-ui/commit/32f4d5ec3ec1d39fbacd951d211fb2f6e4d3a220">32f4d5e</a>)</li> <li><strong>dev-deps:</strong> bump styled-components from 5.3.10 to 6.1.13 (<a href="https://github.com/MTES-MCT/monitor-ui/commit/c158abfd729c77c9a76cb1c738d9f6bb4484691a">c158abf</a>)</li> <li><strong>dev-deps:</strong> bump the all-non-major-dependencies group (<a href="https://github.com/MTES-MCT/monitor-ui/commit/6040bfb0ba87d63738f8212cad857086885ff8c9">6040bfb</a>)</li> </ul> <h2><a href="https://github.com/MTES-MCT/monitor-ui/compare/v24.10.2...v24.11.0">24.11.0</a> (2024-12-10)</h2> <h3>Features</h3> <ul> <li><strong>icons:</strong> add Stroke icon (<a href="https://github.com/MTES-MCT/monitor-ui/commit/ecdd45d549ca7c6d19c7e8b4491dcdb80c8cf4a9">ecdd45d</a>)</li> </ul> <h3>Buid System & Dependencies</h3> <ul> <li><strong>deps:</strong> bump nanoid from 3.3.7 to 3.3.8 in the npm_and_yarn group (<a href="https://github.com/MTES-MCT/monitor-ui/commit/e20cf817b5e262dcda5abcd3db4ab0e472d2778f">e20cf81</a>)</li> <li><strong>dev-deps:</strong> bump eslint-config-airbnb-typescript (<a href="https://github.com/MTES-MCT/monitor-ui/commit/03031be27c7730cd8acdf023971d20bc85651344">03031be</a>)</li> <li><strong>dev-deps:</strong> bump semantic-release from 23.0.8 to 24.1.2 (<a href="https://github.com/MTES-MCT/monitor-ui/commit/af79b95700562a84a3b5f1911fd7dd4e69fccb74">af79b95</a>)</li> <li><strong>dev-deps:</strong> bump the all-non-major-dependencies group across 1 directory with 8 updates (<a href="https://github.com/MTES-MCT/monitor-ui/commit/68eb3130310041d93b21be67b22d7e156938b821">68eb313</a>)</li> <li><strong>dev-deps:</strong> bump vite from 5.4.11 to 6.0.3 in /e2e/release/sample (<a href="https://github.com/MTES-MCT/monitor-ui/commit/5f5ccdaa46458dfca242955f410c3f73afe8b429">5f5ccda</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/MTES-MCT/monitor-ui/commit/1488e3d00a086fb992f0038949ef07ac7176c39a"><code>1488e3d</code></a> fix(tables): fix scroll in virtualize tables</li> <li><a href="https://github.com/MTES-MCT/monitor-ui/commit/73499c3649bdc0696cf8d245e7df0bbb63291dbb"><code>73499c3</code></a> ci(release): 24.11.2</li> <li><a href="https://github.com/MTES-MCT/monitor-ui/commit/1731b69eff6658b5df49d649dfe2764985989120"><code>1731b69</code></a> build(dev-deps): bump the non-major-dev-dependencies group across 1 directory...</li> <li><a href="https://github.com/MTES-MCT/monitor-ui/commit/76729c63cbbad8f0742a1e207028361f752b7358"><code>76729c6</code></a> fix(elements): fix prefixed props</li> <li><a href="https://github.com/MTES-MCT/monitor-ui/commit/126603558854111787afce2eda9d9cf3bc2de8b8"><code>1266035</code></a> ci(release): 24.11.1</li> <li><a href="https://github.com/MTES-MCT/monitor-ui/commit/da380bc59e7dd806c29b0eb7fd84d31af9dd4976"><code>da380bc</code></a> build(deps): bump <code>@tanstack/react-table</code></li> <li><a href="https://github.com/MTES-MCT/monitor-ui/commit/b09f859b7a56d056310c94c3e71d118611178cf0"><code>b09f859</code></a> fix(types): create generic type for CheckPicker and MultiSelect</li> <li><a href="https://github.com/MTES-MCT/monitor-ui/commit/75c5e6d8749d343a12901be22017d1d1ba450701"><code>75c5e6d</code></a> fix(types): fix typing</li> <li><a href="https://github.com/MTES-MCT/monitor-ui/commit/c158abfd729c77c9a76cb1c738d9f6bb4484691a"><code>c158abf</code></a> build(dev-deps): bump styled-components from 5.3.10 to 6.1.13</li> <li><a href="https://github.com/MTES-MCT/monitor-ui/commit/32f4d5ec3ec1d39fbacd951d211fb2f6e4d3a220"><code>32f4d5e</code></a> build(dev-deps): bump nanoid</li> <li>Additional commits viewable in <a href="https://github.com/MTES-MCT/monitor-ui/compare/v24.10.1...v24.11.3">compare view</a></li> </ul> </details> <br /> Updates `@reduxjs/toolkit` from 2.4.0 to 2.5.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/reduxjs/redux-toolkit/releases"><code>@reduxjs/toolkit</code>'s releases</a>.</em></p> <blockquote> <h2>v2.5.0</h2> <p>This <strong>feature release</strong> updates the React peer dependency to work with React 19, and fixes an additional skip token issue.</p> <h2>Changelog</h2> <h3>React 19 Compat</h3> <p><a href="https://react.dev/blog/2024/12/05/react-19">React 19 was just released</a>! We've updated our peer dep to accept React 19, and updated our runtime and type tests to check against both React 18 and 19.</p> <p>Also see <a href="https://github.com/reduxjs/react-redux/releases/tag/v9.2.0">React-Redux v9.2.0</a> for the same peer dep update.</p> <h3>Other Fixes</h3> <p>We previously fixed an issue with the RTKQ core where <code>serializeQueryArgs</code> callbacks could be called with <code>skipToken</code>, potentially leading to errors. We've fixed an additional location in the <code>useQuery</code> hooks where that could happen as well.</p> <h2>What's Changed</h2> <ul> <li>Migrate to React 19 by <a href="https://github.com/aryaemami59"><code>@aryaemami59</code></a> in <a href="https://redirect.github.com/reduxjs/redux-toolkit/pull/4409">reduxjs/redux-toolkit#4409</a></li> <li>Handle additional <code>serializeQueryArgs</code> + <code>skipToken</code> case by <a href="https://github.com/markerikson"><code>@markerikson</code></a> in <a href="https://redirect.github.com/reduxjs/redux-toolkit/pull/4762">reduxjs/redux-toolkit#4762</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/reduxjs/redux-toolkit/compare/v2.4.0...v2.5.0">https://github.com/reduxjs/redux-toolkit/compare/v2.4.0...v2.5.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/reduxjs/redux-toolkit/commit/6590cec1cee83fcab165eb340f6b78762c4ad5a2"><code>6590cec</code></a> Release 2.5.0</li> <li><a href="https://github.com/reduxjs/redux-toolkit/commit/2047f547358119e394f10b16629a66826a28f89a"><code>2047f54</code></a> Handle additional <code>serializeQueryArgs</code> + <code>skipToken</code> case (<a href="https://redirect.github.com/reduxjs/redux-toolkit/issues/4762">#4762</a>)</li> <li><a href="https://github.com/reduxjs/redux-toolkit/commit/40b8aedf8bf3306795814e6a868881ae7a025171"><code>40b8aed</code></a> Migrate to React 19 (<a href="https://redirect.github.com/reduxjs/redux-toolkit/issues/4409">#4409</a>)</li> <li><a href="https://github.com/reduxjs/redux-toolkit/commit/e848a552dec33c0c55951462c219ad00cb8d3978"><code>e848a55</code></a> Merge pull request <a href="https://redirect.github.com/reduxjs/redux-toolkit/issues/4686">#4686</a> from isqua/act</li> <li><a href="https://github.com/reduxjs/redux-toolkit/commit/23a1c3f406f97ed53d54693ec7e33a51286e6853"><code>23a1c3f</code></a> Harden optimisticUpserts test</li> <li><a href="https://github.com/reduxjs/redux-toolkit/commit/ef84607f49ed476049784449c3f2a940407cb81b"><code>ef84607</code></a> Tweak delay time</li> <li><a href="https://github.com/reduxjs/redux-toolkit/commit/0536468772be56cdd3a16ed2520e54a9c0949c7a"><code>0536468</code></a> Silence "unhandled error" in ApiProvider error test</li> <li><a href="https://github.com/reduxjs/redux-toolkit/commit/f8612448aca2fc62dfc54359ecb4443503f31aed"><code>f861244</code></a> Fix "unhandled request" warning</li> <li><a href="https://github.com/reduxjs/redux-toolkit/commit/5255770adbdab2983a6336ff2dad586fe67dc3cf"><code>5255770</code></a> Remove stray console log</li> <li><a href="https://github.com/reduxjs/redux-toolkit/commit/97f96adb1904a1b6d69044da81527e27485784e1"><code>97f96ad</code></a> Fix tests after upgrade <code>@testing-library/react</code></li> <li>Additional commits viewable in <a href="https://github.com/reduxjs/redux-toolkit/compare/v2.4.0...v2.5.0">compare view</a></li> </ul> </details> <br /> Updates `@sentry/react` from 8.41.0 to 8.47.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/getsentry/sentry-javascript/releases"><code>@sentry/react</code>'s releases</a>.</em></p> <blockquote> <h2>8.47.0</h2> <ul> <li>feat(v8/core): Add <code>updateSpanName</code> helper function (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/14736">#14736</a>)</li> <li>feat(v8/node): Do not overwrite prisma <code>db.system</code> in newer Prisma versions (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/14772">#14772</a>)</li> <li>feat(v8/node/deps): Bump <code>@prisma/instrumentation</code> from 5.19.1 to 5.22.0 (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/14755">#14755</a>)</li> <li>feat(v8/replay): Mask srcdoc iframe contents per default (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/14779">#14779</a>)</li> <li>ref(v8/nextjs): Fix typo in source maps deletion warning (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/14776">#14776</a>)</li> </ul> <p>Work in this release was contributed by <a href="https://github.com/aloisklink"><code>@aloisklink</code></a> and <a href="https://github.com/benjick"><code>@benjick</code></a>. Thank you for your contributions!</p> <h2>Bundle size 📦</h2> <table> <thead> <tr> <th>Path</th> <th>Size</th> </tr> </thead> <tbody> <tr> <td><code>@sentry/browser</code></td> <td>23.29 KB</td> </tr> <tr> <td><code>@sentry/browser</code> - with treeshaking flags</td> <td>21.96 KB</td> </tr> <tr> <td><code>@sentry/browser</code> (incl. Tracing)</td> <td>35.81 KB</td> </tr> <tr> <td><code>@sentry/browser</code> (incl. Tracing, Replay)</td> <td>73.06 KB</td> </tr> <tr> <td><code>@sentry/browser</code> (incl. Tracing, Replay) - with treeshaking flags</td> <td>63.45 KB</td> </tr> <tr> <td><code>@sentry/browser</code> (incl. Tracing, Replay with Canvas)</td> <td>77.37 KB</td> </tr> <tr> <td><code>@sentry/browser</code> (incl. Tracing, Replay, Feedback)</td> <td>89.85 KB</td> </tr> <tr> <td><code>@sentry/browser</code> (incl. Feedback)</td> <td>40.04 KB</td> </tr> <tr> <td><code>@sentry/browser</code> (incl. sendFeedback)</td> <td>27.89 KB</td> </tr> <tr> <td><code>@sentry/browser</code> (incl. FeedbackAsync)</td> <td>32.68 KB</td> </tr> <tr> <td><code>@sentry/react</code></td> <td>25.96 KB</td> </tr> <tr> <td><code>@sentry/react</code> (incl. Tracing)</td> <td>38.64 KB</td> </tr> <tr> <td><code>@sentry/vue</code></td> <td>27.52 KB</td> </tr> <tr> <td><code>@sentry/vue</code> (incl. Tracing)</td> <td>37.67 KB</td> </tr> <tr> <td><code>@sentry/svelte</code></td> <td>23.45 KB</td> </tr> <tr> <td>CDN Bundle</td> <td>24.47 KB</td> </tr> <tr> <td>CDN Bundle (incl. Tracing)</td> <td>37.51 KB</td> </tr> <tr> <td>CDN Bundle (incl. Tracing, Replay)</td> <td>72.71 KB</td> </tr> <tr> <td>CDN Bundle (incl. Tracing, Replay, Feedback)</td> <td>78.1 KB</td> </tr> <tr> <td>CDN Bundle - uncompressed</td> <td>71.85 KB</td> </tr> <tr> <td>CDN Bundle (incl. Tracing) - uncompressed</td> <td>111.23 KB</td> </tr> <tr> <td>CDN Bundle (incl. Tracing, Replay) - uncompressed</td> <td>225.3 KB</td> </tr> <tr> <td>CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed</td> <td>238.52 KB</td> </tr> <tr> <td><code>@sentry/nextjs</code> (client)</td> <td>38.9 KB</td> </tr> <tr> <td><code>@sentry/sveltekit</code> (client)</td> <td>36.32 KB</td> </tr> <tr> <td><code>@sentry/node</code></td> <td>162.7 KB</td> </tr> <tr> <td><code>@sentry/node</code> - without tracing</td> <td>98.87 KB</td> </tr> <tr> <td><code>@sentry/aws-serverless</code></td> <td>126.53 KB</td> </tr> </tbody> </table> <h2>8.46.0</h2> <ul> <li>feat: Allow capture of more than 1 ANR event [v8] (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14713">#14713</a>)</li> <li>feat(node): Detect Railway release name [v8] (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14714">#14714</a>)</li> <li>fix: Normalise ANR debug image file paths if appRoot was supplied [v8] (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14709">#14709</a>)</li> <li>fix(nuxt): Remove build config from tsconfig (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14737">#14737</a>)</li> </ul> <p>Work in this release was contributed by <a href="https://github.com/conor-ob"><code>@conor-ob</code></a>. Thank you for your contribution!</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/getsentry/sentry-javascript/blob/8.47.0/CHANGELOG.md"><code>@sentry/react</code>'s changelog</a>.</em></p> <blockquote> <h2>8.47.0</h2> <ul> <li>feat(v8/core): Add <code>updateSpanName</code> helper function (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/14736">#14736</a>)</li> <li>feat(v8/node): Do not overwrite prisma <code>db.system</code> in newer Prisma versions (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/14772">#14772</a>)</li> <li>feat(v8/node/deps): Bump <code>@prisma/instrumentation</code> from 5.19.1 to 5.22.0 (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/14755">#14755</a>)</li> <li>feat(v8/replay): Mask srcdoc iframe contents per default (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/14779">#14779</a>)</li> <li>ref(v8/nextjs): Fix typo in source maps deletion warning (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/14776">#14776</a>)</li> </ul> <p>Work in this release was contributed by <a href="https://github.com/aloisklink"><code>@aloisklink</code></a> and <a href="https://github.com/benjick"><code>@benjick</code></a>. Thank you for your contributions!</p> <h2>8.46.0</h2> <ul> <li>feat: Allow capture of more than 1 ANR event [v8] (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14713">#14713</a>)</li> <li>feat(node): Detect Railway release name [v8] (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14714">#14714</a>)</li> <li>fix: Normalise ANR debug image file paths if appRoot was supplied [v8] (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14709">#14709</a>)</li> <li>fix(nuxt): Remove build config from tsconfig (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14737">#14737</a>)</li> </ul> <p>Work in this release was contributed by <a href="https://github.com/conor-ob"><code>@conor-ob</code></a>. Thank you for your contribution!</p> <h2>8.45.1</h2> <ul> <li>fix(feedback): Return when the <code>sendFeedback</code> promise resolves (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14683">#14683</a>)</li> </ul> <p>Work in this release was contributed by <a href="https://github.com/antonis"><code>@antonis</code></a>. Thank you for your contribution!</p> <h2>8.45.0</h2> <ul> <li>feat(core): Add <code>handled</code> option to <code>captureConsoleIntegration</code> (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14664">#14664</a>)</li> <li>feat(browser): Attach virtual stack traces to <code>HttpClient</code> events (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14515">#14515</a>)</li> <li>feat(replay): Upgrade rrweb packages to 2.31.0 (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14689">#14689</a>)</li> <li>fix(aws-serverless): Remove v8 layer as it overwrites the current layer for docs (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14679">#14679</a>)</li> <li>fix(browser): Mark stack trace from <code>captureMessage</code> with <code>attachStacktrace: true</code> as synthetic (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14668">#14668</a>)</li> <li>fix(core): Mark stack trace from <code>captureMessage</code> with <code>attatchStackTrace: true</code> as synthetic (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14670">#14670</a>)</li> <li>fix(core): Set <code>level</code> in server runtime <code>captureException</code> (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/10587">#10587</a>)</li> <li>fix(profiling-node): Guard invocation of native profiling methods (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14676">#14676</a>)</li> <li>fix(nuxt): Inline nitro-utils function (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14680">#14680</a>)</li> <li>fix(profiling-node): Ensure profileId is added to transaction event (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14681">#14681</a>)</li> <li>fix(react): Add React Router Descendant Routes support (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14304">#14304</a>)</li> <li>fix: Disable ANR and Local Variables if debugger is enabled via CLI args (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14643">#14643</a>)</li> </ul> <p>Work in this release was contributed by <a href="https://github.com/anonrig"><code>@anonrig</code></a> and <a href="https://github.com/Zih0"><code>@Zih0</code></a>. Thank you for your contributions!</p> <h2>8.44.0</h2> <h3>Deprecations</h3> <ul> <li> <p><strong>feat: Deprecate <code>autoSessionTracking</code> (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/14640">#14640</a>)</strong></p> <p>Deprecates <code>autoSessionTracking</code>. To enable session tracking, it is recommended to unset <code>autoSessionTracking</code> and ensure that either, in browser environments</p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/getsentry/sentry-javascript/commit/eac1a8821988618eb12821011be901a12958978f"><code>eac1a88</code></a> release: 8.47.0</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/8a7b29e06815f7fcf4a1f37451422a12c336801a"><code>8a7b29e</code></a> meta: Update changelog for 8.47.0 (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/14777">#14777</a>)</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/810751201f043a8bdb851259f26a4b5c63d66fc7"><code>8107512</code></a> feat(v8/replay): Mask srcdoc iframe contents per default (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/14779">#14779</a>)</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/b1d393ed9a75ff5cb71c4f8b0840c728fa888ca4"><code>b1d393e</code></a> ref(v8/nextjs): Fix typo in source maps deletion warning (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/14776">#14776</a>)</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/37fbd75813d1ddf60e1b55a244354679f89c5089"><code>37fbd75</code></a> feat(v8/node): Do not overwrite prisma <code>db.system</code> in newer Prisma versions (...</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/8e0db866e3be8b3758b4597596b29468943d9854"><code>8e0db86</code></a> chore(docs): Add docs for how to publish a release for previous majors (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/14740">#14740</a>)</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/9c53d4869ebd95ae5ad4847f9454656377790833"><code>9c53d48</code></a> feat(v8/node/deps): Bump <code>@prisma/instrumentation</code> from 5.19.1 to 5.22.0 (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/14755">#14755</a>)</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/3a7743c0b881872048a8049a24a10905c25cba76"><code>3a7743c</code></a> feat(core): Add <code>updateSpanName</code> helper function [v8] (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/14736">#14736</a>)</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/e80eefea38a875feee79244afc9ecd8abe633cda"><code>e80eefe</code></a> Merge branch 'release/8.46.0' into v8</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/5387fdefe4181235d39baef0786fc1712d00d810"><code>5387fde</code></a> release: 8.46.0</li> <li>Additional commits viewable in <a href="https://github.com/getsentry/sentry-javascript/compare/8.41.0...8.47.0">compare view</a></li> </ul> </details> <br /> Updates `@sentry/vite-plugin` from 2.22.6 to 2.22.7 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/getsentry/sentry-javascript-bundler-plugins/releases"><code>@sentry/vite-plugin</code>'s releases</a>.</em></p> <blockquote> <h2>2.22.7</h2> <ul> <li>deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and require specific version (<a href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li> <li>feat(telemetry): Record if plugin is run in CI (<a href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/getsentry/sentry-javascript-bundler-plugins/blob/main/CHANGELOG.md"><code>@sentry/vite-plugin</code>'s changelog</a>.</em></p> <blockquote> <h2>2.22.7</h2> <ul> <li>deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and require specific version (<a href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li> <li>feat(telemetry): Record if plugin is run in CI (<a href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/31978d7a3fc278f42b5f1fbbc72d27dd34426f98"><code>31978d7</code></a> release: 2.22.7</li> <li><a href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/514055a1dbcf80cf4ca60967b233696e50e0b11d"><code>514055a</code></a> meta: Update changelog for 2.22.7</li> <li><a href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/7dfea7bad45c825090819bdca09017649a4a5e38"><code>7dfea7b</code></a> deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and require specific version (<a href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li> <li><a href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/040814d43e62f419ce9da4a055fde13bc3216f30"><code>040814d</code></a> feat(telemetry): Record if plugin is run in CI (<a href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li> <li><a href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/f7c468d9b85c95fe15ce66a124bbf83a6b4d3c15"><code>f7c468d</code></a> chore: Log only to stderr (<a href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/624">#624</a>)</li> <li><a href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/7f984482c73e4284e8b12a08dfedf23b5a82f0af"><code>7f98448</code></a> Merge branch 'release/2.22.6'</li> <li>See full diff in <a href="https://github.com/getsentry/sentry-javascript-bundler-plugins/compare/2.22.6...2.22.7">compare view</a></li> </ul> </details> <br /> Updates `@tanstack/react-table` from 8.20.5 to 8.20.6 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/TanStack/table/releases"><code>@tanstack/react-table</code>'s releases</a>.</em></p> <blockquote> <h2>v8.20.6</h2> <p>Version 8.20.6 - 12/13/24, 2:34 PM</p> <h2>Changes</h2> <h3>Fix</h3> <ul> <li>JSX namespace from React (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5830">#5830</a>) (cbcea6a) by Bill Collins</li> </ul> <h3>Chore</h3> <ul> <li>update <code>@tanstack/config</code> to v0.13.0 (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5731">#5731</a>) (2db4061) by Lachlan Collins</li> </ul> <h3>Docs</h3> <ul> <li>Updated some incomplete docs (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5741">#5741</a>) (6b4d616) by M Hamid</li> <li>Fix label typo in config.json (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5712">#5712</a>) (7fe650d) by Petter Juterud Barhaugen</li> </ul> <h2>Packages</h2> <ul> <li><code>@tanstack/react-table</code><a href="https://github.com/8"><code>@8</code></a>.20.6</li> <li><code>@tanstack/react-table-devtools</code><a href="https://github.com/8"><code>@8</code></a>.20.6</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/TanStack/table/commit/a92ce6a15b4aa490b5397e3ec30592a61a7f3602"><code>a92ce6a</code></a> release: v8.20.6</li> <li><a href="https://github.com/TanStack/table/commit/cbcea6aa50bae617e8257205b6b0ad01d61678e5"><code>cbcea6a</code></a> fix: JSX namespace from React (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5830">#5830</a>)</li> <li>See full diff in <a href="https://github.com/TanStack/table/commits/v8.20.6/packages/react-table">compare view</a></li> </ul> </details> <br /> Updates `ky` from 1.7.2 to 1.7.4 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/sindresorhus/ky/releases">ky's releases</a>.</em></p> <blockquote> <h2>v1.7.4</h2> <ul> <li>Fix handling of a signal that is already aborted before the request begins (<a href="https://redirect.github.com/sindresorhus/ky/issues/663">#663</a>) 6d06338</li> </ul> <p><a href="https://github.com/sindresorhus/ky/compare/v1.7.3...v1.7.4">https://github.com/sindresorhus/ky/compare/v1.7.3...v1.7.4</a></p> <h2>v1.7.3</h2> <ul> <li>Fix memory leak from cloned responses (<a href="https://redirect.github.com/sindresorhus/ky/issues/661">#661</a>) 30e7afd</li> </ul> <p><a href="https://github.com/sindresorhus/ky/compare/v1.7.2...v1.7.3">https://github.com/sindresorhus/ky/compare/v1.7.2...v1.7.3</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/sindresorhus/ky/commit/4a427011ad7b4ab98bb5f02ecaa5375fba5addca"><code>4a42701</code></a> 1.7.4</li> <li><a href="https://github.com/sindresorhus/ky/commit/6d063383a602ecb75b60bd4dda7ece60da66f462"><code>6d06338</code></a> Fix handling of a signal that is already aborted before the request begins (#...</li> <li><a href="https://github.com/sindresorhus/ky/commit/1d92c203f7f60df37c03d60360237d8cb9bcb30a"><code>1d92c20</code></a> 1.7.3</li> <li><a href="https://github.com/sindresorhus/ky/commit/30e7afda475cc3b7783f1eb23b148014731868e7"><code>30e7afd</code></a> Fix memory leak from cloned responses (<a href="https://redirect.github.com/sindresorhus/ky/issues/661">#661</a>)</li> <li>See full diff in <a href="https://github.com/sindresorhus/ky/compare/v1.7.2...v1.7.4">compare view</a></li> </ul> </details> <br /> Updates `ol-mapbox-style` from 12.3.5 to 12.4.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/openlayers/ol-mapbox-style/releases">ol-mapbox-style's releases</a>.</em></p> <blockquote> <h2>v12.4.0</h2> <h2>Summary</h2> <ul> <li>More precise angle computation for line labels</li> <li>Add support for <code>"text-keep-upright": false</code></li> <li>Fix <code>text-field</code> value issues</li> <li>Update examples and add references to MapLibre</li> <li>Fix issue with missing <code>expandUrl</code> from OpenLayers</li> </ul> <h2>What's Changed</h2> <ul> <li>Changes for v12.3.5 by <a href="https://github.com/ahocevar"><code>@ahocevar</code></a> in <a href="https://redirect.github.com/openlayers/ol-mapbox-style/pull/1186">openlayers/ol-mapbox-style#1186</a></li> <li>Bump puppeteer from 23.0.2 to 23.2.1 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/openlayers/ol-mapbox-style/pull/1195">openlayers/ol-mapbox-style#1195</a></li> <li>Add PMTiles example with pmtiles:// protocol by <a href="https://github.com/ahocevar"><code>@ahocevar</code></a> in <a href="https://redirect.github.com/openlayers/ol-mapbox-style/pull/1203">openlayers/ol-mapbox-style#1203</a></li> <li>more precise angle computation by <a href="https://github.com/leyan"><code>@leyan</code></a> in <a href="https://redirect.github.com/openlayers/ol-mapbox-style/pull/1205">openlayers/ol-mapbox-style#1205</a></li> <li>Use the pmtiles-protocol package for the pmtiles example by <a href="https://github.com/ahocevar"><code>@ahocevar</code></a> in <a href="https://redirect.github.com/openlayers/ol-mapbox-style/pull/1209">openlayers/ol-mapbox-style#1209</a></li> <li>Use the new keepUpright parameter in OpenLayers by <a href="https://github.com/leyan"><code>@leyan</code></a> in <a href="https://redirect.github.com/openlayers/ol-mapbox-style/pull/1208">openlayers/ol-mapbox-style#1208</a></li> <li>Update stylefunction.js to fix textField reduce function by <a href="https://github.com/mzmcgrat"><code>@mzmcgrat</code></a> in <a href="https://redirect.github.com/openlayers/ol-mapbox-style/pull/1220">openlayers/ol-mapbox-style#1220</a></li> <li>Bump karma from 6.4.3 to 6.4.4 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/openlayers/ol-mapbox-style/pull/1197">openlayers/ol-mapbox-style#1197</a></li> <li>Bump rollup from 2.79.1 to 2.79.2 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/openlayers/ol-mapbox-style/pull/1202">openlayers/ol-mapbox-style#1202</a></li> <li>Bump webpack from 5.91.0 to 5.96.1 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/openlayers/ol-mapbox-style/pull/1214">openlayers/ol-mapbox-style#1214</a></li> <li>Bump serve-static and express by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/openlayers/ol-mapbox-style/pull/1210">openlayers/ol-mapbox-style#1210</a></li> <li>Bump send and express by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/openlayers/ol-mapbox-style/pull/1211">openlayers/ol-mapbox-style#1211</a></li> <li>Bump body-parser and express by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/openlayers/ol-mapbox-style/pull/1212">openlayers/ol-mapbox-style#1212</a></li> <li>Bump cookie, socket.io and express by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/openlayers/ol-mapbox-style/pull/1213">openlayers/ol-mapbox-style#1213</a></li> <li>Bump typescript from 5.4.5 to 5.7.2 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/openlayers/ol-mapbox-style/pull/1219">openlayers/ol-mapbox-style#1219</a></li> <li>Get rid of expandUrl dependency by <a href="https://github.com/ahocevar"><code>@ahocevar</code></a> in <a href="https://redirect.github.com/openlayers/ol-mapbox-style/pull/1228">openlayers/ol-mapbox-style#1228</a></li> <li>Bump babel-loader from 9.1.3 to 9.2.1 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/openlayers/ol-mapbox-style/pull/1223">openlayers/ol-mapbox-style#1223</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/leyan"><code>@leyan</code></a> made their first contribution in <a href="https://redirect.github.com/openlayers/ol-mapbox-style/pull/1205">openlayers/ol-mapbox-style#1205</a></li> <li><a href="https://github.com/mzmcgrat"><code>@mzmcgrat</code></a> made their first contribution in <a href="https://redirect.github.com/openlayers/ol-mapbox-style/pull/1220">openlayers/ol-mapbox-style#1220</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/openlayers/ol-mapbox-style/compare/v12.3.5...v12.4.0">https://github.com/openlayers/ol-mapbox-style/compare/v12.3.5...v12.4.0</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/openlayers/ol-mapbox-style/blob/main/CHANGELOG.md">ol-mapbox-style's changelog</a>.</em></p> <blockquote> <h2>12.4.0</h2> <ul> <li>More precise angle computation for line labels</li> <li>Add support for <code>"text-keep-upright": false</code></li> <li>Fix <code>text-field</code> value issues</li> <li>Update examples and add references to MapLibre</li> <li>Fix issue with missing <code>expandUrl</code> from OpenLayers</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/openlayers/ol-mapbox-style/commit/48f76c6dc91fd9b375bd41ccca6762317977b336"><code>48f76c6</code></a> Add dist for v12.4.0</li> <li><a href="https://github.com/openlayers/ol-mapbox-style/commit/b364feb0afebdefd3b2e44d00d8b8985144b9e80"><code>b364feb</code></a> Changes for v12.4.0</li> <li><a href="https://github.com/openlayers/ol-mapbox-style/commit/87cff4a2a1b905bb8c082ffc4c7d97da5c4812c4"><code>87cff4a</code></a> Merge pull request <a href="https://redirect.github.com/openlayers/ol-mapbox-style/issues/1223">#1223</a> from openlayers/dependabot/npm_and_yarn/babel-loader...</li> <li><a href="https://github.com/openlayers/ol-mapbox-style/commit/4df02010903c2261dbfb2308c7fc0b43738faa30"><code>4df0201</code></a> Bump babel-loader from 9.1.3 to 9.2.1</li> <li><a href="https://github.com/openlayers/ol-mapbox-style/commit/3d0c0bd2fa901a2037fe454c8f55f74442f77861"><code>3d0c0bd</code></a> Merge pull request <a href="https://redirect.github.com/openlayers/ol-mapbox-style/issues/1228">#1228</a> from openlayers/expand-url</li> <li><a href="https://github.com/openlayers/ol-mapbox-style/commit/a82aba833d8b1adeee4931038c84a580599a092a"><code>a82aba8</code></a> Run Puppeteer without sandbox in CI</li> <li><a href="https://github.com/openlayers/ol-mapbox-style/commit/e9608f2c909129e5752c39860bf14c529290ecda"><code>e9608f2</code></a> Get rid of expandUrl dependency</li> <li><a href="https://github.com/openlayers/ol-mapbox-style/commit/d26e41df9d73449028b14e23fa50e82808569859"><code>d26e41d</code></a> Merge pull request <a href="https://redirect.github.com/openlayers/ol-mapbox-style/issues/1219">#1219</a> from openlayers/dependabot/npm_and_yarn/typescript-5...</li> <li><a href="https://github.com/openlayers/ol-mapbox-style/commit/9c599b96680fa97c7b538b2c7116704875b2f8a8"><code>9c599b9</code></a> Update lockfile</li> <li><a href="https://github.com/openlayers/ol-mapbox-style/commit/0b16c1aa8117a107786fcde1ba62d759b14ae6a9"><code>0b16c1a</code></a> Bump typescript from 5.4.5 to 5.7.2</li> <li>Additional commits viewable in <a href="https://github.com/openlayers/ol-mapbox-style/compare/v12.3.5...v12.4.0">compare view</a></li> </ul> </details> <br /> Updates `react-redux` from 9.1.2 to 9.2.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/reduxjs/react-redux/releases">react-redux's releases</a>.</em></p> <blockquote> <h2>v9.2.0</h2> <p>This <strong>feature release</strong> updates the React peer dependency to work with React 19, and improves treeshakeability of our build artifacts.</p> <h2>Changelog</h2> <h3>React 19 Compat</h3> <p><a href="https://react.dev/blog/2024/12/05/react-19">React 19 was just released</a>! We've updated our peer dep to accept React 19, and updated our runtime and type tests to check against both React 18 and 19.</p> <p>Also see <a href="https://github.com/reduxjs/redux-toolkit/releases/tag/v2.5.0">Redux Toolkit v2.5.0</a> for the same peer dep update.</p> <h3>Treeshaking</h3> <p>We've done some nitty-gritty optimization work to ensure bundlers correctly treeshake unused parts of the bundle.</p> <h2>What's Changed</h2> <ul> <li>Improve treeshakeability of build artifacts by <a href="https://github.com/aryaemami59"><code>@aryaemami59</code></a> in <a href="https://redirect.github.com/reduxjs/react-redux/pull/2176">reduxjs/react-redux#2176</a></li> <li>Migrate to React by <a href="https://github.com/aryaemami59"><code>@aryaemami59</code></a> in <a href="https://redirect.github.com/reduxjs/react-redux/pull/2172">reduxjs/react-redux#2172</a></li> <li>Migrate to React 19 (take 2) by <a href="https://github.com/markerikson"><code>@markerikson</code></a> in <a href="https://redirect.github.com/reduxjs/react-redux/pull/2216">reduxjs/react-redux#2216</a></li> <li>Clean up devdeps by <a href="https://github.com/markerikson"><code>@markerikson</code></a> in <a href="https://redirect.github.com/reduxjs/react-redux/pull/2217">reduxjs/react-redux#2217</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/reduxjs/react-redux/compare/v9.1.2...v9.2.0">https://github.com/reduxjs/react-redux/compare/v9.1.2...v9.2.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/reduxjs/react-redux/commit/7e2fdd4ee2021e4282e12ba9fc722f09124e30cd"><code>7e2fdd4</code></a> Release 9.2.0</li> <li><a href="https://github.com/reduxjs/react-redux/commit/8c573825bb71203dbf61039c92505acb3170acf6"><code>8c57382</code></a> Merge pull request <a href="https://redirect.github.com/reduxjs/react-redux/issues/2217">#2217</a> from reduxjs/feature/react-19-devdep-cleanup</li> <li><a href="https://github.com/reduxjs/react-redux/commit/d23509bc00aacf8eee67215d027927dbddf51941"><code>d23509b</code></a> Exclude stray dist folders and website from tsconfig</li> <li><a href="https://github.com/reduxjs/react-redux/commit/b275a321d39b9f1a285b87ee8555a0f3ca4045df"><code>b275a32</code></a> Eliminate other stray React import</li> <li><a href="https://github.com/reduxjs/react-redux/commit/3ba9838855a5c30173742274349e6afae8469791"><code>3ba9838</code></a> Drop unused Babel devdeps</li> <li><a href="https://github.com/reduxjs/react-redux/commit/1a81c410a4d1069368016803f855adc7461a59ee"><code>1a81c41</code></a> Merge pull request <a href="https://redirect.github.com/reduxjs/react-redux/issues/2216">#2216</a> from reduxjs/migrate-to-react-19</li> <li><a href="https://github.com/reduxjs/react-redux/commit/c58e397241579734da25199e63131809e95ccd81"><code>c58e397</code></a> Migrate to React 19</li> <li><a href="https://github.com/reduxjs/react-redux/commit/e08518ae110858ee47686059ddd6c6fefb9351a5"><code>e08518a</code></a> Fix <code>act</code> related issues in <code>test/hooks/useSelector.spec.tsx</code></li> <li><a href="https://github.com/reduxjs/react-redux/commit/1cd1385fc4d6845a209123ce68247ecb881daaf0"><code>1cd1385</code></a> Update <code>hoist-non-react-statics</code> implementation</li> <li><a href="https://github.com/reduxjs/react-redux/commit/a1fc886593262cee75b96a8c35bbbf00a1aa1e6c"><code>a1fc886</code></a> Fix type of <code>innerMapStateToProps</code> in <code>Provider.spec.tsx</code></li> <li>Additional commits viewable in <a href="https://github.com/reduxjs/react-redux/compare/v9.1.2...v9.2.0">compare view</a></li> </ul> </details> <br /> Updates `react-select` from 5.8.3 to 5.9.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/JedWatson/react-select/releases">react-select's releases</a>.</em></p> <blockquote> <h2>[email protected]</h2> <h3>Minor Changes</h3> <ul> <li><a href="https://github.com/JedWatson/react-select/commit/01206c333c481b511e36521e5b568aebd4534b26"><code>01206c33</code></a> <a href="https://redirect.github.com/JedWatson/react-select/pull/5984">#5984</a> Thanks <a href="https://github.com/Thris3n"><code>@Thris3n</code></a>! - Add React 19 to peer dependency range</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/JedWatson/react-select/commit/179b8166cafc6540ec7a3c6091320c18b8aff75a"><code>179b816</code></a> Version Packages (<a href="https://redirect.github.com/JedWatson/react-select/issues/5985">#5985</a>)</li> <li><a href="https://github.com/JedWatson/react-select/commit/01206c333c481b511e36521e5b568aebd4534b26"><code>01206c3</code></a> Add peer version to include 19 (<a href="https://redirect.github.com/JedWatson/react-select/issues/5984">#5984</a>)</li> <li>See full diff in <a href="https://github.com/JedWatson/react-select/compare/[email protected]@5.9.0">compare view</a></li> </ul> </details> <br /> Updates `yup` from 1.4.0 to 1.6.1 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/jquense/yup/blob/master/CHANGELOG.md">yup's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/jquense/yup/compare/v1.6.0...v1.6.1">1.6.1</a> (2024-12-17)</h2> <h3>Bug Fixes</h3> <ul> <li>lazy validation errors thrown in builders should resolve async like other validations (<a href="https://github.com/jquense/yup/commit/c7d7f977e02a7e578950dff192057e0b200999bd">c7d7f97</a>)</li> </ul> <h1><a href="https://github.com/jquense/yup/compare/v1.5.0...v1.6.0">1.6.0</a> (2024-12-16)</h1> <h3>Features</h3> <ul> <li>expose LazySchema (<a href="https://github.com/jquense/yup/commit/2b0f1264083fccb646f7f6bd43adfbff2caaf295">2b0f126</a>)</li> </ul> <h1><a href="https://github.com/jquense/yup/compare/v1.4.0...v1.5.0">1.5.0</a> (2024-12-03)</h1> <h3>Bug Fixes</h3> <ul> <li><strong>readme:</strong> some typos and update CustomizingErrors doc (<a href="https://redirect.github.com/jquense/yup/issues/2163">#2163</a>) (<a href="https://github.com/jquense/yup/commit/5c77e0d4f9373151bcf0cd558c95986b6e4800d7">5c77e0d</a>)</li> </ul> <h3>Features</h3> <ul> <li>Add exact and stripUnknown method to object() (<a href="https://github.com/jquense/yup/commit/adcdd8dd500c627b1efbe3595b6b37dec2847ad8">adcdd8d</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/jquense/yup/commit/d00abc331801388cb572a07094ba0cb803a50d5d"><code>d00abc3</code></a> Publish v1.6.1</li> <li><a href="https://github.com/jquense/yup/commit/c7d7f977e02a7e578950dff192057e0b200999bd"><code>c7d7f97</code></a> fix: lazy validation errors thrown in builders should resolve async like othe...</li> <li><a href="https://github.com/jquense/yup/commit/f27fa44a4509f84ee2274955de22581d6099ce0d"><code>f27fa44</code></a> Publish v1.6.0</li> <li><a href="https://github.com/jquense/yup/commit/0d7c3279bfbc3758691eb2f9b84a29e434d53dde"><code>0d7c327</code></a> build: modernize stuff</li> <li><a href="https://github.com/jquense/yup/commit/2b0f1264083fccb646f7f6bd43adfbff2caaf295"><code>2b0f126</code></a> feat: expose LazySchema</li> <li><a href="https://github.com/jquense/yup/commit/c26f9af2fcea1357a8a84dfa4085017762de11c1"><code>c26f9af</code></a> Update README.md</li> <li><a href="https://github.com/jquense/yup/commit/8ac18b6673ef5e7b9a0f253d2ac59a6d3e894962"><code>8ac18b6</code></a> Publish v1.5.0</li> <li><a href="https://github.com/jquense/yup/commit/adcdd8dd500c627b1efbe3595b6b37dec2847ad8"><code>adcdd8d</code></a> feat: Add exact and stripUnknown method to object()</li> <li><a href="https://github.com/jquense/yup/commit/87be1599351e36b724a64ffd2597ff80b22821f3"><code>87be159</code></a> Fix ValidationError.formatError() clobbering path param (<a href="https://redirect.github.com/jquense/yup/issues/2250">#2250</a>)</li> <li><a href="https://github.com/jquense/yup/commit/5a22c16dbba610050e85f123d389ddacaa92a0ad"><code>5a22c16</code></a> let/const consistency in README: let preference (<a href="https://redirect.github.com/jquense/yup/issues/2227">#2227</a>)</li> <li>Additional commits viewable in <a href="https://github.com/jquense/yup/compare/v1.4.0...v1.6.1">compare view</a></li> </ul> </details> <br /> Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details>
- Loading branch information