Skip to content

chore(deps): bump the prod-dependencies group with 15 updates - #629

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/prod-dependencies-5bda02b7f6
Closed

chore(deps): bump the prod-dependencies group with 15 updates#629
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/prod-dependencies-5bda02b7f6

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 1, 2026

Copy link
Copy Markdown
Contributor

Bumps the prod-dependencies group with 15 updates:

Package From To
proj4 2.20.9 2.21.0
wkt-parser 1.5.5 1.5.6
lerc 4.1.2 4.2.0
@chakra-ui/react 3.36.0 3.36.1
@deck.gl/mapbox 9.3.6 9.3.7
react 19.2.7 19.2.8
@deck.gl/core 9.3.6 9.3.7
@deck.gl/geo-layers 9.3.6 9.3.7
@deck.gl/layers 9.3.6 9.3.7
@deck.gl/mesh-layers 9.3.6 9.3.7
react-dom 19.2.7 19.2.8
@deck.gl/extensions 9.3.6 9.3.7
@docusaurus/core 3.10.1 3.10.2
@docusaurus/faster 3.10.1 3.10.2
@docusaurus/preset-classic 3.10.1 3.10.2

Updates proj4 from 2.20.9 to 2.21.0

Release notes

Sourced from proj4's releases.

v2.21.0

What's Changed

New Contributors

Full Changelog: proj4js/proj4js@v2.20.9...v2.21.0

Changelog

Sourced from proj4's changelog.

  • 2.21.0: Add support for +lon_wrap
Commits
  • 65fcfd4 2.21.0
  • 18c3f45 Fix package.json and tsconfig.json
  • b98d31a Merge pull request #594 from proj4js/dependabot/npm_and_yarn/vitest/browser-4...
  • 2c553e7 Merge pull request #593 from proj4js/dependabot/npm_and_yarn/brace-expansion-...
  • b76527e Bump @​vitest/browser from 4.1.8 to 4.1.10
  • f4dd8e5 Bump brace-expansion from 1.1.15 to 1.1.16
  • 888ce3a Merge pull request #592 from proj4js/k0-default
  • 71b4ffc Set k0 default after projections had a chance to do so
  • 5bcd2c7 Merge pull request #584 from spokodev/fix/vandg-axis-nan
  • 7e58cf1 Fix Van der Grinten forward returning NaN on the equator and central meridian
  • Additional commits viewable in compare view

Updates wkt-parser from 1.5.5 to 1.5.6

Commits
  • 0933b02 v1.5.6
  • 78eca7a Merge pull request #51 from aloktomarr/fix/geodcrs-cartesian-geocent
  • f515d3c Simplify, getting rid of the unnecessary 2015/2019 split
  • b7abacf fix: classify WKT2-2015 GEODCRS with CS[Cartesian] as geocentric
  • See full diff in compare view

Updates lerc from 4.1.2 to 4.2.0

Release notes

Sourced from lerc's releases.

LERC 4.2.0

Added explicit size checks for the input data volume and the output compressed binary Lerc blob. The maximum data volume to encode is 2 GB per band. The maximum size of a compressed binary Lerc blob is set also to 2 GB per band, and 4 GB over all bands. The data volume over all bands is not limited as long as it can be compressed into 4 GB or less.

Changelog

Sourced from lerc's changelog.

4.2.0 - 2026-07-23

  • Added explicit size checks for the input data volume and the output compressed binary Lerc blob. The maximum data volume to encode is 2 GB per band. The maximum size of a compressed binary Lerc blob is set also to 2 GB per band, and 4 GB over all bands. The data volume over all bands is not limited as long as it can be compressed into 4 GB or less.

  • Coverity fixes and overflow checks.

4.1.1 - 2026-07-02

Fixed

  • Fixed two security issues and some minor bugs.

4.1.0 - 2026-03-09

Fixed

  • Renamed Lerc python package to pylerc.

  • Cleaned up the treatment of line endings (CRLF vs LF) across platforms.

  • Cleaned up the code to avoid pointer casts from unaligned byte pointers to integer or float pointers. Such pointer casts may cause problems on some platforms (e.g., embedded).

4.0.0 - 2022-07-15

Milestones reached

  • Incremented Lerc version to 4.0 as the new, wasm based JavaScript decoder may not work on older browsers such as IE.
  • Incremented Lerc version to 3.1. All existing 3.0 functions work same as before.
  • Incremented Lerc codec version to v2.6.
  • This LERC API and all language decoders (C++, C, C#, Python, JavaScript) and encoders (C++, C, Python) are now in sync with ESRI ArcGIS Pro 3.0.

Added

  • New, additional LERC API functions *_4D(). Main reason for this upgrade is to support special cases of void or invalid data not supported yet. For 3D or 4D data with an array of values per pixel, and some of such values valid and others invalid, the new functions allow to pass one noData value per band to represent such "mixed cases". There is no change to the valid / invalid byte masks that mark each pixel as valid or invalid. There can be one mask per band, one mask for all bands, or no mask. For more details see the Readme.md, Lerc_c_api.h, and Lerc_ByteStream_Specification.pdf, in increasing level of detail. Main.cpp has some sample calls.

  • New lossless compression for data types float and double.

  • Support for large integers > 32 bit up to 53 bit. Pass them as double.

  • Renamed nDim to nDepth, the size of the array per pixel.

  • New #define ENCODE_VERIFY in Defines.h. If enabled, Lerc, as an added last step in encode, will decode the compressed blob again and compare it against the input data.

  • Using Emscripten, we compiled the Lerc C++ code into web assembly, resulting in a new JS Lerc decoder. From now on, updates to the Lerc C++ code will be converted to JS automatically.

  • Added a new function to the LERC API called 'lerc_getDataRanges(...)'. It allows fast access to the data ranges in a compressed Lerc blob without having to decode it. It returns 2 double arrays with the minimum and maximum values per band and depth.

Fixed

  • The older Lerc codec v2.2 (used around 2016) required 3 extra padding bytes at the end of the Lerc blob. If those padding bytes are missing, Lerc decode could fail. With this fix, decode works on such v2.2 Lerc blobs with missing padding bytes.

... (truncated)

Commits
  • e534980 Merge pull request #319 from Esri/tmaurer3/update_changelog
  • a69489b update changelog
  • 75873b9 Merge pull request #318 from ppoply/ci/macos-universal-binary
  • 0b2d734 fix shell for native CI step
  • 8c0dee9 Build macOS universal binary (x86_64 + arm64) in CI
  • 7074bf8 Merge pull request #316 from ppoply/pylerc_release_v4.2.0_and_ci_updates
  • 8c3a5b6 Merge pull request #317 from Esri/lerc-js-4.2
  • 70d9683 update js to v4.2.0
  • 7addba6 Add brief Lerc 4.2 limits note to Python README
  • 5ff8268 release: bump pylerc to v4.2.0 and automate secure conda/pypi workflows
  • Additional commits viewable in compare view

Updates @chakra-ui/react from 3.36.0 to 3.36.1

Release notes

Sourced from @​chakra-ui/react's releases.

@​chakra-ui/react@​3.36.1

Patch Changes

  • #10868 f32a160 Thanks @​WahabKhan7528! - OverlayManager: add has() method to createOverlay return

  • #10885 e503f8d Thanks @​dfedoryshchev! - - Bleed: Fix incorrect css prop application

  • 129c50f Thanks @​segunadebayo! - Fix issue where the checked ring of RadioCard and CheckboxCard (outline variant) gets clipped when a parent has overflow: hidden|auto|scroll. The ring is now drawn with an inset shadow instead of an outer shadow.

  • #10859 6f10270 Thanks @​dfedoryshchev! - - Checkmark: Fix incorrect css prop application

  • #10884 e7431f1 Thanks @​sanjibani! - - Docs: fix Stack.Separator references in the v3 migration guide. The standalone Separator component is now used in both the StackDivider and Stack Props examples.

  • 0fe3055 Thanks @​segunadebayo! - Fix error when merging recipes (e.g. composing a recipe-based component through the chakra factory). Recipe merging now normalizes compiled and raw configs before combining them, and no longer throws or mutates the source configs.

  • #10879 e882dc0 Thanks @​dfedoryshchev! - - Float: Fix incorrect css prop application

  • 2ed9026 Thanks @​segunadebayo! - Add a default minSize of { width: 240, height: 100 } to FloatingPanel.Root to prevent the panel from being resized to zero. Pass your own minSize to override it.

  • #10863 b5de5e2 Thanks @​dfedoryshchev! - - Image: Fix

... (truncated)

Changelog

Sourced from @​chakra-ui/react's changelog.

3.36.1

Patch Changes

  • #10868 f32a160 Thanks @​WahabKhan7528! - OverlayManager: add has() method to createOverlay return

  • #10885 e503f8d Thanks @​dfedoryshchev! - - Bleed: Fix incorrect css prop application

  • 129c50f Thanks @​segunadebayo! - Fix issue where the checked ring of RadioCard and CheckboxCard (outline variant) gets clipped when a parent has overflow: hidden|auto|scroll. The ring is now drawn with an inset shadow instead of an outer shadow.

  • #10859 6f10270 Thanks @​dfedoryshchev! - - Checkmark: Fix incorrect css prop application

  • #10884 e7431f1 Thanks @​sanjibani! - - Docs: fix Stack.Separator references in the v3 migration guide. The standalone Separator component is now used in both the StackDivider and Stack Props examples.

  • 0fe3055 Thanks @​segunadebayo! - Fix error when merging recipes (e.g. composing a recipe-based component through the chakra factory). Recipe merging now normalizes compiled and raw configs before combining them, and no longer throws or mutates the source configs.

  • #10879 e882dc0 Thanks @​dfedoryshchev! - - Float: Fix incorrect css prop application

  • 2ed9026 Thanks @​segunadebayo! - Add a default minSize of { width: 240, height: 100 } to FloatingPanel.Root to prevent the panel from being resized to zero. Pass your own minSize to override it.

  • #10863 b5de5e2

... (truncated)

Commits
  • f813394 Version Packages (#10857)
  • e503f8d fix: correct css prop usage in Bleed component (#10885)
  • 0fe3055 perf(react): cache compiled recipes and memoize variant resolution
  • e882dc0 fix: correct css prop usage in Float component (#10879)
  • ff2067e fix(deps): update non-major dependencies
  • c4e79c1 fix: forward the rel attribute on LinkOverlay (#10873)
  • f32a160 feat(overlay): add has() method to createOverlay return (#10868)
  • a1548ba fix: correct misspelled "permuations" variable in breakpoints (#10864)
  • b5de5e2 fix: correct className usage in Image component (#10863)
  • 6f10270 fix: correct css prop usage in Checkmark component (#10859)
  • Additional commits viewable in compare view

Updates @deck.gl/mapbox from 9.3.6 to 9.3.7

Release notes

Sourced from @​deck.gl/mapbox's releases.

v9.3.7

  • fix(core): do not write View clearColor into the picking buffer (#10431)
  • fix(mapbox): avoid crash when MapboxOverlay beforeId layer is removed (#10425)
  • fix(widgets): InfoWidget not rendering on hover/click (#10421)
Changelog

Sourced from @​deck.gl/mapbox's changelog.

deck.gl [v9.3.7] - Jul 16 2026

  • fix(core): do not write View clearColor into the picking buffer (#10431)
  • fix(mapbox): avoid crash when MapboxOverlay beforeId layer is removed (#10425)
  • fix(widgets): InfoWidget not rendering on hover/click (#10421)
Commits
  • ac8cd3d v9.3.7
  • 4ff1353 docs: remove v9.4 section from whats-new on 9.3-release branch
  • 7ecce1f chore(deps): bump astral-sh/setup-uv from 5.4.2 to 8.3.2 (#10444)
  • bb3db23 chore(deps): bump actions/checkout from 6.0.2 to 7.0.0 (#10443)
  • b950c20 chore(deps): bump the non-major group with 2 updates (#10442)
  • 91eadcc chore(deps): bump postcss from 8.5.8 to 8.5.15 (#10330)
  • 339ae42 chore(deps): bump websocket-driver from 0.7.4 to 0.7.5 in /website (#10446)
  • e0bb7e8 chore(deps): bump mistune from 3.2.0 to 3.3.0 in /bindings/pydeck (#10437)
  • 1fa9f5d chore(deps): bump @​luma.gl/engine from 9.3.3 to 9.3.6 (#10441)
  • 4f46044 fix(widgets): InfoWidget not rendering on hover/click (#10421)
  • Additional commits viewable in compare view

Updates react from 19.2.7 to 19.2.8

Release notes

Sourced from react's releases.

19.2.8 (July 21st, 2026)

React Server Components

Commits

Updates @deck.gl/core from 9.3.6 to 9.3.7

Release notes

Sourced from @​deck.gl/core's releases.

v9.3.7

  • fix(core): do not write View clearColor into the picking buffer (#10431)
  • fix(mapbox): avoid crash when MapboxOverlay beforeId layer is removed (#10425)
  • fix(widgets): InfoWidget not rendering on hover/click (#10421)
Changelog

Sourced from @​deck.gl/core's changelog.

deck.gl [v9.3.7] - Jul 16 2026

  • fix(core): do not write View clearColor into the picking buffer (#10431)
  • fix(mapbox): avoid crash when MapboxOverlay beforeId layer is removed (#10425)
  • fix(widgets): InfoWidget not rendering on hover/click (#10421)
Commits
  • ac8cd3d v9.3.7
  • 4ff1353 docs: remove v9.4 section from whats-new on 9.3-release branch
  • 7ecce1f chore(deps): bump astral-sh/setup-uv from 5.4.2 to 8.3.2 (#10444)
  • bb3db23 chore(deps): bump actions/checkout from 6.0.2 to 7.0.0 (#10443)
  • b950c20 chore(deps): bump the non-major group with 2 updates (#10442)
  • 91eadcc chore(deps): bump postcss from 8.5.8 to 8.5.15 (#10330)
  • 339ae42 chore(deps): bump websocket-driver from 0.7.4 to 0.7.5 in /website (#10446)
  • e0bb7e8 chore(deps): bump mistune from 3.2.0 to 3.3.0 in /bindings/pydeck (#10437)
  • 1fa9f5d chore(deps): bump @​luma.gl/engine from 9.3.3 to 9.3.6 (#10441)
  • 4f46044 fix(widgets): InfoWidget not rendering on hover/click (#10421)
  • Additional commits viewable in compare view

Updates @deck.gl/geo-layers from 9.3.6 to 9.3.7

Release notes

Sourced from @​deck.gl/geo-layers's releases.

v9.3.7

  • fix(core): do not write View clearColor into the picking buffer (#10431)
  • fix(mapbox): avoid crash when MapboxOverlay beforeId layer is removed (#10425)
  • fix(widgets): InfoWidget not rendering on hover/click (#10421)
Changelog

Sourced from @​deck.gl/geo-layers's changelog.

deck.gl [v9.3.7] - Jul 16 2026

  • fix(core): do not write View clearColor into the picking buffer (#10431)
  • fix(mapbox): avoid crash when MapboxOverlay beforeId layer is removed (#10425)
  • fix(widgets): InfoWidget not rendering on hover/click (#10421)
Commits
  • ac8cd3d v9.3.7
  • 4ff1353 docs: remove v9.4 section from whats-new on 9.3-release branch
  • 7ecce1f chore(deps): bump astral-sh/setup-uv from 5.4.2 to 8.3.2 (#10444)
  • bb3db23 chore(deps): bump actions/checkout from 6.0.2 to 7.0.0 (#10443)
  • b950c20 chore(deps): bump the non-major group with 2 updates (#10442)
  • 91eadcc chore(deps): bump postcss from 8.5.8 to 8.5.15 (#10330)
  • 339ae42 chore(deps): bump websocket-driver from 0.7.4 to 0.7.5 in /website (#10446)
  • e0bb7e8 chore(deps): bump mistune from 3.2.0 to 3.3.0 in /bindings/pydeck (#10437)
  • 1fa9f5d chore(deps): bump @​luma.gl/engine from 9.3.3 to 9.3.6 (#10441)
  • 4f46044 fix(widgets): InfoWidget not rendering on hover/click (#10421)
  • Additional commits viewable in compare view

Updates @deck.gl/layers from 9.3.6 to 9.3.7

Release notes

Sourced from @​deck.gl/layers's releases.

v9.3.7

  • fix(core): do not write View clearColor into the picking buffer (#10431)
  • fix(mapbox): avoid crash when MapboxOverlay beforeId layer is removed (#10425)
  • fix(widgets): InfoWidget not rendering on hover/click (#10421)
Changelog

Sourced from @​deck.gl/layers's changelog.

deck.gl [v9.3.7] - Jul 16 2026

  • fix(core): do not write View clearColor into the picking buffer (#10431)
  • fix(mapbox): avoid crash when MapboxOverlay beforeId layer is removed (#10425)
  • fix(widgets): InfoWidget not rendering on hover/click (#10421)
Commits
  • ac8cd3d v9.3.7
  • 4ff1353 docs: remove v9.4 section from whats-new on 9.3-release branch
  • 7ecce1f chore(deps): bump astral-sh/setup-uv from 5.4.2 to 8.3.2 (#10444)
  • bb3db23 chore(deps): bump actions/checkout from 6.0.2 to 7.0.0 (#10443)
  • b950c20 chore(deps): bump the non-major group with 2 updates (#10442)
  • 91eadcc chore(deps): bump postcss from 8.5.8 to 8.5.15 (#10330)
  • 339ae42 chore(deps): bump websocket-driver from 0.7.4 to 0.7.5 in /website (#10446)
  • e0bb7e8 chore(deps): bump mistune from 3.2.0 to 3.3.0 in /bindings/pydeck (#10437)
  • 1fa9f5d chore(deps): bump @​luma.gl/engine from 9.3.3 to 9.3.6 (#10441)
  • 4f46044 fix(widgets): InfoWidget not rendering on hover/click (#10421)
  • Additional commits viewable in compare view

Updates @deck.gl/mesh-layers from 9.3.6 to 9.3.7

Release notes

Sourced from @​deck.gl/mesh-layers's releases.

v9.3.7

  • fix(core): do not write View clearColor into the picking buffer (#10431)
  • fix(mapbox): avoid crash when MapboxOverlay beforeId layer is removed (#10425)
  • fix(widgets): InfoWidget not rendering on hover/click (#10421)
Changelog

Sourced from @​deck.gl/mesh-layers's changelog.

deck.gl [v9.3.7] - Jul 16 2026

  • fix(core): do not write View clearColor into the picking buffer (#10431)
  • fix(mapbox): avoid crash when MapboxOverlay beforeId layer is removed (#10425)
  • fix(widgets): InfoWidget not rendering on hover/click (#10421)
Commits
  • ac8cd3d v9.3.7
  • 4ff1353 docs: remove v9.4 section from whats-new on 9.3-release branch
  • 7ecce1f chore(deps): bump astral-sh/setup-uv from 5.4.2 to 8.3.2 (#10444)
  • bb3db23 chore(deps): bump actions/checkout from 6.0.2 to 7.0.0 (#10443)
  • b950c20 chore(deps): bump the non-major group with 2 updates (#10442)
  • 91eadcc chore(deps): bump postcss from 8.5.8 to 8.5.15 (#10330)
  • 339ae42 chore(deps): bump websocket-driver from 0.7.4 to 0.7.5 in /website (#10446)
  • e0bb7e8 chore(deps): bump mistune from 3.2.0 to 3.3.0 in /bindings/pydeck (#10437)
  • 1fa9f5d chore(deps): bump @​luma.gl/engine from 9.3.3 to 9.3.6 (#10441)
  • 4f46044 fix(widgets): InfoWidget not rendering on hover/click (#10421)
  • Additional commits viewable in compare view

Updates react-dom from 19.2.7 to 19.2.8

Release notes

Sourced from react-dom's releases.

19.2.8 (July 21st, 2026)

React Server Components

Commits

Updates @deck.gl/extensions from 9.3.6 to 9.3.7

Release notes

Sourced from @​deck.gl/extensions's releases.

v9.3.7

  • fix(core): do not write View clearColor into the picking buffer (#10431)
  • fix(mapbox): avoid crash when MapboxOverlay beforeId layer is removed (#10425)
  • fix(widgets): InfoWidget not rendering on hover/click (#10421)
Changelog

Sourced from @​deck.gl/extensions's changelog.

deck.gl [v9.3.7] - Jul 16 2026

  • fix(core): do not write View clearColor into the picking buffer (#10431)
  • fix(mapbox): avoid crash when MapboxOverlay beforeId layer is removed (#10425)
  • fix(widgets): InfoWidget not rendering on hover/click (#10421)
Commits
  • ac8cd3d v9.3.7
  • 4ff1353 docs: remove v9.4 section from whats-new on 9.3-release branch
  • 7ecce1f chore(deps): bump astral-sh/setup-uv from 5.4.2 to 8.3.2 (#10444)
  • bb3db23 chore(deps): bump actions/checkout from 6.0.2 to 7.0.0 (#10443)
  • b950c20 chore(deps): bump the non-major group with 2 updates (#10442)
  • 91eadcc chore(deps): bump postcss from 8.5.8 to 8.5.15 (#10330)
  • 339ae42 chore(deps): bump websocket-driver from 0.7.4 to 0.7.5 in /website (#10446)
  • e0bb7e8 chore(deps): bump mistune from 3.2.0 to 3.3.0 in /bindings/pydeck (#10437)
  • 1fa9f5d chore(deps): bump @​luma.gl/engine from 9.3.3 to 9.3.6 (#10441)
  • 4f46044 fix(widgets): InfoWidget not rendering on hover/click (#10421)
  • Additional commits viewable in compare view

Updates @docusaurus/core from 3.10.1 to 3.10.2

Release notes

Sourced from @​docusaurus/core's releases.

3.10.2 (2026-07-10)

Backport and cherry-pick commits from main for v3.10.2 patch release:

Changelog

Sourced from @​docusaurus/core's changelog.

3.10.2 (2026-07-10)

Backport and cherry-pick commits from main for v3.10.2 patch release:

Commits

Updates @docusaurus/faster from 3.10.1 to 3.10.2

Release notes

Sourced from @​docusaurus/faster's releases.

3.10.2 (2026-07-10)

Backport and cherry-pick commits from main for v3.10.2 patch release:

Bumps the prod-dependencies group with 15 updates:

| Package | From | To |
| --- | --- | --- |
| [proj4](https://github.com/proj4js/proj4js) | `2.20.9` | `2.21.0` |
| [wkt-parser](https://github.com/proj4js/wkt-parser) | `1.5.5` | `1.5.6` |
| [lerc](https://github.com/Esri/lerc) | `4.1.2` | `4.2.0` |
| [@chakra-ui/react](https://github.com/chakra-ui/chakra-ui/tree/HEAD/packages/react) | `3.36.0` | `3.36.1` |
| [@deck.gl/mapbox](https://github.com/visgl/deck.gl) | `9.3.6` | `9.3.7` |
| [react](https://github.com/react/react/tree/HEAD/packages/react) | `19.2.7` | `19.2.8` |
| [@deck.gl/core](https://github.com/visgl/deck.gl) | `9.3.6` | `9.3.7` |
| [@deck.gl/geo-layers](https://github.com/visgl/deck.gl) | `9.3.6` | `9.3.7` |
| [@deck.gl/layers](https://github.com/visgl/deck.gl) | `9.3.6` | `9.3.7` |
| [@deck.gl/mesh-layers](https://github.com/visgl/deck.gl) | `9.3.6` | `9.3.7` |
| [react-dom](https://github.com/react/react/tree/HEAD/packages/react-dom) | `19.2.7` | `19.2.8` |
| [@deck.gl/extensions](https://github.com/visgl/deck.gl) | `9.3.6` | `9.3.7` |
| [@docusaurus/core](https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus) | `3.10.1` | `3.10.2` |
| [@docusaurus/faster](https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-faster) | `3.10.1` | `3.10.2` |
| [@docusaurus/preset-classic](https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-preset-classic) | `3.10.1` | `3.10.2` |


Updates `proj4` from 2.20.9 to 2.21.0
- [Release notes](https://github.com/proj4js/proj4js/releases)
- [Changelog](https://github.com/proj4js/proj4js/blob/main/changelog.md)
- [Commits](proj4js/proj4js@v2.20.9...v2.21.0)

Updates `wkt-parser` from 1.5.5 to 1.5.6
- [Commits](proj4js/wkt-parser@v1.5.5...v1.5.6)

Updates `lerc` from 4.1.2 to 4.2.0
- [Release notes](https://github.com/Esri/lerc/releases)
- [Changelog](https://github.com/Esri/lerc/blob/master/CHANGELOG.md)
- [Commits](Esri/lerc@js_v4.1.2...v4.2.0)

Updates `@chakra-ui/react` from 3.36.0 to 3.36.1
- [Release notes](https://github.com/chakra-ui/chakra-ui/releases)
- [Changelog](https://github.com/chakra-ui/chakra-ui/blob/main/packages/react/CHANGELOG.md)
- [Commits](https://github.com/chakra-ui/chakra-ui/commits/@chakra-ui/react@3.36.1/packages/react)

Updates `@deck.gl/mapbox` from 9.3.6 to 9.3.7
- [Release notes](https://github.com/visgl/deck.gl/releases)
- [Changelog](https://github.com/visgl/deck.gl/blob/v9.3.7/CHANGELOG.md)
- [Commits](visgl/deck.gl@v9.3.6...v9.3.7)

Updates `react` from 19.2.7 to 19.2.8
- [Release notes](https://github.com/react/react/releases)
- [Changelog](https://github.com/react/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/react/react/commits/v19.2.8/packages/react)

Updates `@deck.gl/core` from 9.3.6 to 9.3.7
- [Release notes](https://github.com/visgl/deck.gl/releases)
- [Changelog](https://github.com/visgl/deck.gl/blob/v9.3.7/CHANGELOG.md)
- [Commits](visgl/deck.gl@v9.3.6...v9.3.7)

Updates `@deck.gl/geo-layers` from 9.3.6 to 9.3.7
- [Release notes](https://github.com/visgl/deck.gl/releases)
- [Changelog](https://github.com/visgl/deck.gl/blob/v9.3.7/CHANGELOG.md)
- [Commits](visgl/deck.gl@v9.3.6...v9.3.7)

Updates `@deck.gl/layers` from 9.3.6 to 9.3.7
- [Release notes](https://github.com/visgl/deck.gl/releases)
- [Changelog](https://github.com/visgl/deck.gl/blob/v9.3.7/CHANGELOG.md)
- [Commits](visgl/deck.gl@v9.3.6...v9.3.7)

Updates `@deck.gl/mesh-layers` from 9.3.6 to 9.3.7
- [Release notes](https://github.com/visgl/deck.gl/releases)
- [Changelog](https://github.com/visgl/deck.gl/blob/v9.3.7/CHANGELOG.md)
- [Commits](visgl/deck.gl@v9.3.6...v9.3.7)

Updates `react-dom` from 19.2.7 to 19.2.8
- [Release notes](https://github.com/react/react/releases)
- [Changelog](https://github.com/react/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/react/react/commits/v19.2.8/packages/react-dom)

Updates `@deck.gl/extensions` from 9.3.6 to 9.3.7
- [Release notes](https://github.com/visgl/deck.gl/releases)
- [Changelog](https://github.com/visgl/deck.gl/blob/v9.3.7/CHANGELOG.md)
- [Commits](visgl/deck.gl@v9.3.6...v9.3.7)

Updates `@docusaurus/core` from 3.10.1 to 3.10.2
- [Release notes](https://github.com/facebook/docusaurus/releases)
- [Changelog](https://github.com/facebook/docusaurus/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/docusaurus/commits/v3.10.2/packages/docusaurus)

Updates `@docusaurus/faster` from 3.10.1 to 3.10.2
- [Release notes](https://github.com/facebook/docusaurus/releases)
- [Changelog](https://github.com/facebook/docusaurus/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/docusaurus/commits/v3.10.2/packages/docusaurus-faster)

Updates `@docusaurus/preset-classic` from 3.10.1 to 3.10.2
- [Release notes](https://github.com/facebook/docusaurus/releases)
- [Changelog](https://github.com/facebook/docusaurus/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/docusaurus/commits/v3.10.2/packages/docusaurus-preset-classic)

---
updated-dependencies:
- dependency-name: proj4
  dependency-version: 2.21.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-dependencies
- dependency-name: wkt-parser
  dependency-version: 1.5.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-dependencies
- dependency-name: lerc
  dependency-version: 4.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-dependencies
- dependency-name: "@chakra-ui/react"
  dependency-version: 3.36.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-dependencies
- dependency-name: "@deck.gl/mapbox"
  dependency-version: 9.3.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-dependencies
- dependency-name: react
  dependency-version: 19.2.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-dependencies
- dependency-name: "@deck.gl/core"
  dependency-version: 9.3.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-dependencies
- dependency-name: "@deck.gl/geo-layers"
  dependency-version: 9.3.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-dependencies
- dependency-name: "@deck.gl/layers"
  dependency-version: 9.3.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-dependencies
- dependency-name: "@deck.gl/mesh-layers"
  dependency-version: 9.3.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-dependencies
- dependency-name: react-dom
  dependency-version: 19.2.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-dependencies
- dependency-name: "@deck.gl/extensions"
  dependency-version: 9.3.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-dependencies
- dependency-name: "@docusaurus/core"
  dependency-version: 3.10.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-dependencies
- dependency-name: "@docusaurus/faster"
  dependency-version: 3.10.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-dependencies
- dependency-name: "@docusaurus/preset-classic"
  dependency-version: 3.10.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 1, 2026
@github-actions github-actions Bot added the chore label Aug 1, 2026
@dependabot @github

dependabot Bot commented on behalf of github Aug 3, 2026

Copy link
Copy Markdown
Contributor Author

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this Aug 3, 2026
@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/prod-dependencies-5bda02b7f6 branch August 3, 2026 14:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

chore dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants