Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 1, 2026

Bumps the safe-dependencies group with 23 updates in the / directory:

Package From To
@tanstack/react-query 5.90.11 5.90.20
@ugrc/utah-design-system 1.34.0 1.34.1
betterknown 1.1.1 1.2.0
firebase 12.6.0 12.8.0
firebase-functions 7.0.0 7.0.3
react 19.2.1 19.2.3
@types/react 19.2.7 19.2.9
react-aria 3.44.0 3.45.0
react-aria-components 1.13.0 1.14.0
react-content-loader 7.1.1 7.1.2
react-dom 19.2.1 19.2.3
react-error-boundary 6.0.0 6.1.0
react-stately 3.42.0 3.43.0
@typescript-eslint/eslint-plugin 8.48.1 8.53.0
@vitejs/plugin-react 5.1.1 5.1.2
autoprefixer 10.4.22 10.4.23
eslint 9.39.1 9.39.2
firebase-tools 14.26.0 14.27.0
lucide-react 0.544.0 0.562.0
prettier 3.7.4 3.8.0
prettier-plugin-packagejson 2.5.20 2.5.22
tailwindcss 3.4.18 3.4.19
vite 7.2.6 7.3.1

Bumps the safe-dependencies group with 7 updates in the /functions directory:

Package From To
eslint 9.39.1 9.39.2
firebase-tools 14.26.0 14.27.0
@esri/arcgis-rest-feature-service 4.4.1 4.8.0
@esri/arcgis-rest-request 4.7.3 4.8.0
@google-cloud/cloud-sql-connector 1.8.4 1.9.0
ky 1.14.1 1.14.3
better-sqlite3 12.5.0 12.6.2

Updates @tanstack/react-query from 5.90.11 to 5.90.20

Release notes

Sourced from @​tanstack/react-query's releases.

@​tanstack/react-query-persist-client@​5.90.20

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-persist-client-core@​5.91.17
    • @​tanstack/react-query@​5.90.18

@​tanstack/react-query@​5.90.20

Patch Changes

  • Updated dependencies [e7258c5]:
    • @​tanstack/query-core@​5.90.20

@​tanstack/react-query-persist-client@​5.90.19

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-persist-client-core@​5.91.16
    • @​tanstack/react-query@​5.90.17

@​tanstack/react-query@​5.90.19

Patch Changes

  • Updated dependencies [53fc74e]:
    • @​tanstack/query-core@​5.90.19

@​tanstack/react-query-persist-client@​5.90.18

Patch Changes

  • Updated dependencies [4be3ad7]:
    • @​tanstack/react-query@​5.90.16
    • @​tanstack/query-persist-client-core@​5.91.15

@​tanstack/react-query@​5.90.18

Patch Changes

  • Updated dependencies [dea1614]:
    • @​tanstack/query-core@​5.90.18

@​tanstack/react-query@​5.90.17

Patch Changes

  • Updated dependencies [269351b]:
    • @​tanstack/query-core@​5.90.17

@​tanstack/react-query@​5.90.16

Patch Changes

  • fix(react-query): allow retryOnMount when throwOnError is function (#9338)

... (truncated)

Changelog

Sourced from @​tanstack/react-query's changelog.

5.90.20

Patch Changes

  • Updated dependencies [e7258c5]:
    • @​tanstack/query-core@​5.90.20

5.90.19

Patch Changes

  • Updated dependencies [53fc74e]:
    • @​tanstack/query-core@​5.90.19

5.90.18

Patch Changes

  • Updated dependencies [dea1614]:
    • @​tanstack/query-core@​5.90.18

5.90.17

Patch Changes

  • Updated dependencies [269351b]:
    • @​tanstack/query-core@​5.90.17

5.90.16

Patch Changes

  • fix(react-query): allow retryOnMount when throwOnError is function (#9338)

  • Updated dependencies [7f47906]:

    • @​tanstack/query-core@​5.90.16

5.90.15

Patch Changes

  • Updated dependencies [fccef79]:
    • @​tanstack/query-core@​5.90.15

5.90.14

Patch Changes

  • Updated dependencies [d576092]:
    • @​tanstack/query-core@​5.90.14

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​tanstack/react-query since your current version.


Updates @ugrc/utah-design-system from 1.34.0 to 1.34.1

Release notes

Sourced from @​ugrc/utah-design-system's releases.

utah-design-system: v1.34.1

1.34.1 (2026-01-14)

Bug Fixes

  • social-media: replace link component with native anchor tag (1dcd020)
Commits
  • d4b6be7 chore: release main
  • cf8b81a chore(deps): bump the ci-dependencies group with 2 updates
  • 836421a fix(monorepo): finish removing layer selector
  • 1dcd020 fix(social-media): replace link component with native anchor tag
  • 96591b7 chore(layer-selector): deprecate
  • a768a51 docs: update readme
  • e53c067 chore(monorepo): remove unused file
  • See full diff in compare view

Updates betterknown from 1.1.1 to 1.2.0

Release notes

Sourced from betterknown's releases.

v1.2.0

Minor Changes

  • 3ca5284: Support for stringifying according to OGC SFA 1.2.0 standard. Specifically, this changes the MULTIPOINT syntax: in 1.2.0, a MULTIPOINT looks like MULTIPOINT ((1 2),(3 4)). In previous versions, it looks like MULTIPOINT (1 2,3 4).

    You can choose a specific version by supplying an options argument to geoJsonToWkt:

    geoJSONToWkt(
      {
        type: "MultiPoint",
        coordinates: [
          [1, 2],
          [3, 4],
        ],
      },
      { version: "1.2.0" }
    );

    There is no version option for parsing WKT at this point, because it cleanly parses 1.1.1 and 1.2.0 already.

Changelog

Sourced from betterknown's changelog.

1.2.0

Minor Changes

  • 3ca5284: Support for stringifying according to OGC SFA 1.2.0 standard. Specifically, this changes the MULTIPOINT syntax: in 1.2.0, a MULTIPOINT looks like MULTIPOINT ((1 2),(3 4)). In previous versions, it looks like MULTIPOINT (1 2,3 4).

    You can choose a specific version by supplying an options argument to geoJsonToWkt:

    geoJSONToWkt(
      {
        type: "MultiPoint",
        coordinates: [
          [1, 2],
          [3, 4],
        ],
      },
      { version: "1.2.0" }
    );

    There is no version option for parsing WKT at this point, because it cleanly parses 1.1.1 and 1.2.0 already.

Commits

Updates firebase from 12.6.0 to 12.8.0

Release notes

Sourced from firebase's releases.

firebase@12.8.0

For more detailed release notes, see Firebase JavaScript SDK Release Notes.

What's Changed

@​firebase/ai@​2.7.0

Minor Changes

  • 2ecf78b #8890 (fixes #8859) - Add support for AbortSignal, allowing requests to be aborted.

  • 5579b38 #9424 - Added ability to specify thinking levels in thinkingConfig.

  • f044045 #9440 - Update default hybrid-in-cloud model to gemini-2.5-flash-lite.

firebase@12.8.0

Minor Changes

  • 83e6864 #9356 - Release Firestore Pipelines for Enterprise edition in public preview.

  • 2ecf78b #8890 (fixes #8859) - Add support for AbortSignal, allowing requests to be aborted.

  • 5579b38 #9424 - Added ability to specify thinking levels in thinkingConfig.

  • f044045 #9440 - Update default hybrid-in-cloud model to gemini-2.5-flash-lite.

  • b282744 #9449 - Web support for ABT and Rollouts

Patch Changes

@​firebase/firestore@​4.10.0

Minor Changes

  • 83e6864 #9356 - Release Firestore Pipelines for Enterprise edition in public preview.

@​firebase/remote-config@​0.8.0

Minor Changes

... (truncated)

Commits

Updates firebase-functions from 7.0.0 to 7.0.3

Release notes

Sourced from firebase-functions's releases.

v7.0.3

  • Internal improvements.

v7.0.2

  • Export param types (SecretParam, StringParam, etc.) from firebase-functions/params for type annotations. (#1789)
  • Remove attemptDeadlineSeconds in v2 scheduled functions. (#1776)
  • Allow JsonSecretParam in function secrets option arrays. (#1788)

v7.0.1

  • Fix "Dual-Package Hazard" for parameterized configuration in ESM projects. (#1780)
Commits
  • b654b85 7.0.3
  • 8f65eaf Hide onGraphRequest API for now. (#1792)
  • e7cb2ef Initial FDC resolver support in functions SDK. (#1784)
  • cfba53d [firebase-release] Removed change log and reset repo after 7.0.2 release
  • e6d5c66 7.0.2
  • a35cc87 7.0.2-rc.0
  • bb407c6 fix: export param types from firebase-functions/params (#1789)
  • fd0e291 fix: allow JsonSecretParam in secrets array (#1788)
  • 3577d9b feat: remove attemptDeadlineSeconds in v2 scheduled functions (#1776)
  • b024089 [firebase-release] Removed change log and reset repo after 7.0.1 release
  • Additional commits viewable in compare view

Updates react from 19.2.1 to 19.2.3

Release notes

Sourced from react's releases.

19.2.3 (December 11th, 2025)

React Server Components

19.2.2 (December 11th, 2025)

React Server Components

Commits

Updates @types/react from 19.2.7 to 19.2.9

Commits

Updates react-aria from 3.44.0 to 3.45.0

Commits

Updates react-aria-components from 1.13.0 to 1.14.0

Release notes

Sourced from react-aria-components's releases.

December 16, 2025 Release

Wrapping up this year with a bang and our most exciting release yet! Meet our new website. We heard your feedback and have reimagined the docs to be more concise and make greater use of interactive examples using prop controls. Code examples have been refined to highlight what matters most, and real-world app examples show how all these pieces come together. The new search experience includes image previews and category and library filtering, helping you find what you need faster. There are more component examples, new guides, AI-friendly page markdown, and MCP servers, all wrapped up in a fresh new look. 🎁 Explore the updated experience of React Aria.

Along with our new look, we have released a stable version of Spectrum 2, a major update to Adobe’s Design System built on top of React Aria Components. Spectrum 2 delivers modern, refined components with better accessibility, performance, and styling flexibility using style macros. Use our updated search to browse the new components, or visit our migration guide to learn how to upgrade. Check it out!

As usual, we have included various new features and bug fixes, including support for animated Tab transitions in React Aria, and inline TableView editing in React Spectrum. Thank you to all our contributors in this release and from this past year. We hope you enjoy the updates, see you in 2026!

Commits

Updates react-content-loader from 7.1.1 to 7.1.2

Release notes

Sourced from react-content-loader's releases.

v7.1.2

7.1.2 (2026-01-22)

Bug Fixes

  • hydration: use useId for dom variant (#325) (c8a6b6c)
Commits

Updates react-dom from 19.2.1 to 19.2.3

Release notes

Sourced from react-dom's releases.

19.2.3 (December 11th, 2025)

React Server Components

19.2.2 (December 11th, 2025)

React Server Components

Commits

Updates react-error-boundary from 6.0.0 to 6.1.0

Release notes

Sourced from react-error-boundary's releases.

6.1.0

  • #235: Fix error type (Error -> unknown)
  • Export getErrorMessage helper method

6.0.3

  • Removed react-dom from peer dependencies list; it was accidentally added during a previous internal refactor

6.0.2

Updated README and generated TS docs

6.0.1

Updated README and generated docs

Commits

Updates react-stately from 3.42.0 to 3.43.0

Release notes

Sourced from react-stately's releases.

July 22, 2025 Release

Happy summer! This release adds support for async loading and infinite scrolling, improves form integration and drag and drop interactions, and adds support for additional DOM events and attributes.

The new LoadMoreItem components supported in ListBox, GridList, Table, and Tree enables infinite scrolling. These trigger the loading of additional pages of items and display a loading spinner. Multiple LoadMoreItems can be rendered within a collection too, enabling loading multiple levels of a tree or sections of data from different APIs.

We've also opened up the React Aria Components API to pass through more DOM events and attributes. This improves integration with other libraries, for example making it possible to use another library's menu with a React Aria button.

As always, thanks so much to everyone who contributed to this release!

Full release notes

June 5, 2025 Release

Drop everything! Drag and drop support in React Aria Tree has been released! 🫳🎤 This supports moving items within a tree or between collection components, with full keyboard and screen reader accessibility. It's interoperable with our existing drag and drop support in components like Table and GridList, and with third party apps via native HTML APIs. Check out our previous blog post on drag and drop to learn about the interactions, and our new Tree drag and drop documentation.

This release also includes some highly requested bug fixes, including scrollbar layout shifts when opening popovers and modals, date picker interaction improvements, and enhancements to our form components.

As always, thank you to our community for their support and contributions!

Full Release Notes

Commits

Updates @types/react from 19.2.7 to 19.2.9

Commits

Updates @typescript-eslint/eslint-plugin from 8.48.1 to 8.53.0

Release notes

Sourced from @​typescript-eslint/eslint-plugin's releases.

v8.53.0

8.53.0 (2026-01-12)

🚀 Features

  • eslint-plugin: [no-unused-vars] add a fixer to remove unused imports (#11922)
  • eslint-plugin: add rule [strict-void-return] (#9707)
  • project-service: allow passing Partial<ts.server.ServerHost> to project service (#11932)

🩹 Fixes

  • eslint-plugin: replace unclear "error typed" with more helpful description (#11704)
  • eslint-plugin: [no-useless-default-assignment] fix false positive for parameters corresponding to a rest parameter (#11916)
  • typescript-estree: forbid type-only import with both default and named specifiers (#11930)
  • typescript-estree: fix syntax check for using declaration (#11910)
  • typescript-estree: forbid invalid class implements (#11934)
  • typescript-estree: forbid invalid "import equals" declaration (#11936)
  • typescript-estree: forbid invalid extends and implements in interface declaration (#11935)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

v8.52.0

8.52.0 (2026-01-05)

🚀 Features

  • eslint-plugin-internal: [no-multiple-lines-of-errors] add rule (#11899)
  • typescript-estree: add tseslint.com redirects for CLI outputs (#11895)

🩹 Fixes

  • eslint-plugin: [no-useless-default-assignment] handle conditional initializer (#11908)
  • eslint-plugin: [no-base-to-string] detect @@​toPrimitive and valueOf (#11901)

❤️ Thank You

  • Josh Goldberg ✨

... (truncated)

Changelog

Sourced from @​typescript-eslint/eslint-plugin's changelog.

8.53.0 (2026-01-12)

🚀 Features

  • eslint-plugin: add rule [strict-void-return] (#9707)
  • eslint-plugin: [no-unused-vars] add a fixer to remove unused imports (#11922)

🩹 Fixes

  • eslint-plugin: [no-useless-default-assignment] fix false positive for parameters corresponding to a rest parameter (#11916)
  • eslint-plugin: replace unclear "error typed" with more helpful description (#11704)
  • typescript-estree: forbid invalid extends and implements in interface declaration (#11935)
  • typescript-estree: forbid invalid class implements (#11934)
  • typescript-estree: forbid type-only import with both default and named specifiers (#11930)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

8.52.0 (2026-01-05)

🚀 Features

  • eslint-plugin-internal: [no-multiple-lines-of-errors] add rule (#11899)

🩹 Fixes

  • eslint-plugin: [no-base-to-string] detect @@​toPrimitive and valueOf (#11901)
  • eslint-plugin: [no-useless-default-assignment] handle conditional initializer (#11908)

❤️ Thank You

  • Josh Goldberg ✨
  • Ulrich Stark

You can read about our versioning strategy and releases on our website.

8.51.0 (2025-12-29)

🚀 Features

... (truncated)

Commits
  • 3021ede chore(release): publish 8.53.0
  • 722ab62 fix(eslint-plugin): [no-useless-default-assignment] fix false positive for pa...
  • 92fcf3e feat(eslint-plugin): add rule [strict-void-return] (#9707)
  • 3fb0381 docs(eslint-plugin): [no-useless-default-assignment] fix misformatted link (#...
  • 62ee26e feat(eslint-plugin): [no-unused-vars] add a fixer to remove unused imports (#...
  • c4d5a56 fix(eslint-plugin): replace unclear "error typed" with more helpful descrip...
  • 3ac7735 fix(typescript-estree): forbid invalid extends and implements in interfac...
  • a8b924b fix(typescript-estree): forbid invalid class implements (#11934)
  • a98ec1f fix(typescript-estree): forbid type-only import with both default and named s...
  • 9ddd571 chore(release): publish 8.52.0
  • Additional commits viewable in compare view

Updates @vitejs/plugin-react from 5.1.1 to 5.1.2

Changelog

Sourced from @​vitejs/plugin-react's changelog.

5.1.2 (2025-12-08)

Commits

Updates autoprefixer from 10.4.22 to 10.4.23

Release notes

Sourced from autoprefixer's releases.

10.4.23

Changelog

Sourced from autoprefixer's changelog.

10.4.23

Commits

Updates eslint from 9.39.1 to 9.39.2

Release notes

Sourced from eslint's releases.

v9.39.2

Bug Fixes

  • 5705833 fix: warn when eslint-env configuration comments are found (#20381) (sethamus)

Build Related

  • 506f154 build: add .scss files entry to knip (#20391) (Milos Djermanovic)

Chores

  • 7ca0af7 chore: upgrade to @eslint/js@9.39.2 (#20394) (Francesco Trotta)
  • c43ce24 chore: package.json update for @​eslint/js release (Jenkins)
  • 4c9858e ci: add v9.x-dev branch (#20382) (Milos Djermanovic)
Commits

…pdates

Bumps the safe-dependencies group with 23 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query) | `5.90.11` | `5.90.20` |
| [@ugrc/utah-design-system](https://github.com/agrc/kitchen-sink) | `1.34.0` | `1.34.1` |
| [betterknown](https://github.com/placemark/betterknown) | `1.1.1` | `1.2.0` |
| [firebase](https://github.com/firebase/firebase-js-sdk) | `12.6.0` | `12.8.0` |
| [firebase-functions](https://github.com/firebase/firebase-functions) | `7.0.0` | `7.0.3` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.1` | `19.2.3` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.2.7` | `19.2.9` |
| [react-aria](https://github.com/adobe/react-spectrum) | `3.44.0` | `3.45.0` |
| [react-aria-components](https://github.com/adobe/react-spectrum) | `1.13.0` | `1.14.0` |
| [react-content-loader](https://github.com/danilowoz/react-content-loader) | `7.1.1` | `7.1.2` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.2.1` | `19.2.3` |
| [react-error-boundary](https://github.com/bvaughn/react-error-boundary) | `6.0.0` | `6.1.0` |
| [react-stately](https://github.com/adobe/react-spectrum) | `3.42.0` | `3.43.0` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.48.1` | `8.53.0` |
| [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react) | `5.1.1` | `5.1.2` |
| [autoprefixer](https://github.com/postcss/autoprefixer) | `10.4.22` | `10.4.23` |
| [eslint](https://github.com/eslint/eslint) | `9.39.1` | `9.39.2` |
| [firebase-tools](https://github.com/firebase/firebase-tools) | `14.26.0` | `14.27.0` |
| [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `0.544.0` | `0.562.0` |
| [prettier](https://github.com/prettier/prettier) | `3.7.4` | `3.8.0` |
| [prettier-plugin-packagejson](https://github.com/matzkoh/prettier-plugin-packagejson) | `2.5.20` | `2.5.22` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `3.4.18` | `3.4.19` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `7.2.6` | `7.3.1` |

Bumps the safe-dependencies group with 7 updates in the /functions directory:

| Package | From | To |
| --- | --- | --- |
| [eslint](https://github.com/eslint/eslint) | `9.39.1` | `9.39.2` |
| [firebase-tools](https://github.com/firebase/firebase-tools) | `14.26.0` | `14.27.0` |
| [@esri/arcgis-rest-feature-service](https://github.com/Esri/arcgis-rest-js/tree/HEAD/packages/arcgis-rest-feature-service) | `4.4.1` | `4.8.0` |
| [@esri/arcgis-rest-request](https://github.com/Esri/arcgis-rest-js/tree/HEAD/packages/arcgis-rest-request) | `4.7.3` | `4.8.0` |
| [@google-cloud/cloud-sql-connector](https://github.com/GoogleCloudPlatform/cloud-sql-nodejs-connector) | `1.8.4` | `1.9.0` |
| [ky](https://github.com/sindresorhus/ky) | `1.14.1` | `1.14.3` |
| [better-sqlite3](https://github.com/WiseLibs/better-sqlite3) | `12.5.0` | `12.6.2` |



Updates `@tanstack/react-query` from 5.90.11 to 5.90.20
- [Release notes](https://github.com/TanStack/query/releases)
- [Changelog](https://github.com/TanStack/query/blob/main/packages/react-query/CHANGELOG.md)
- [Commits](https://github.com/TanStack/query/commits/@tanstack/react-query@5.90.20/packages/react-query)

Updates `@ugrc/utah-design-system` from 1.34.0 to 1.34.1
- [Release notes](https://github.com/agrc/kitchen-sink/releases)
- [Changelog](https://github.com/agrc/kitchen-sink/blob/main/release-please-config.json)
- [Commits](agrc/kitchen-sink@utah-design-system-v1.34.0...utah-design-system-v1.34.1)

Updates `betterknown` from 1.1.1 to 1.2.0
- [Release notes](https://github.com/placemark/betterknown/releases)
- [Changelog](https://github.com/placemark/betterknown/blob/main/CHANGELOG.md)
- [Commits](placemark/betterknown@v1.1.1...v1.2.0)

Updates `firebase` from 12.6.0 to 12.8.0
- [Release notes](https://github.com/firebase/firebase-js-sdk/releases)
- [Changelog](https://github.com/firebase/firebase-js-sdk/blob/main/CHANGELOG.md)
- [Commits](https://github.com/firebase/firebase-js-sdk/compare/firebase@12.6.0...firebase@12.8.0)

Updates `firebase-functions` from 7.0.0 to 7.0.3
- [Release notes](https://github.com/firebase/firebase-functions/releases)
- [Commits](firebase/firebase-functions@v7.0.0...v7.0.3)

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

Updates `@types/react` from 19.2.7 to 19.2.9
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

Updates `react-aria` from 3.44.0 to 3.45.0
- [Release notes](https://github.com/adobe/react-spectrum/releases)
- [Commits](https://github.com/adobe/react-spectrum/compare/react-aria@3.44.0...react-aria@3.45.0)

Updates `react-aria-components` from 1.13.0 to 1.14.0
- [Release notes](https://github.com/adobe/react-spectrum/releases)
- [Commits](https://github.com/adobe/react-spectrum/compare/react-aria-components@1.13.0...react-aria-components@1.14.0)

Updates `react-content-loader` from 7.1.1 to 7.1.2
- [Release notes](https://github.com/danilowoz/react-content-loader/releases)
- [Commits](danilowoz/react-content-loader@v7.1.1...v7.1.2)

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

Updates `react-error-boundary` from 6.0.0 to 6.1.0
- [Release notes](https://github.com/bvaughn/react-error-boundary/releases)
- [Commits](bvaughn/react-error-boundary@6.0.0...6.1.0)

Updates `react-stately` from 3.42.0 to 3.43.0
- [Release notes](https://github.com/adobe/react-spectrum/releases)
- [Commits](https://github.com/adobe/react-spectrum/compare/react-stately@3.42.0...react-stately@3.43.0)

Updates `@types/react` from 19.2.7 to 19.2.9
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

Updates `@typescript-eslint/eslint-plugin` from 8.48.1 to 8.53.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.53.0/packages/eslint-plugin)

Updates `@vitejs/plugin-react` from 5.1.1 to 5.1.2
- [Release notes](https://github.com/vitejs/vite-plugin-react/releases)
- [Changelog](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite-plugin-react/commits/plugin-react@5.1.2/packages/plugin-react)

Updates `autoprefixer` from 10.4.22 to 10.4.23
- [Release notes](https://github.com/postcss/autoprefixer/releases)
- [Changelog](https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md)
- [Commits](postcss/autoprefixer@10.4.22...10.4.23)

Updates `eslint` from 9.39.1 to 9.39.2
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v9.39.1...v9.39.2)

Updates `firebase-tools` from 14.26.0 to 14.27.0
- [Release notes](https://github.com/firebase/firebase-tools/releases)
- [Commits](firebase/firebase-tools@v14.26.0...v14.27.0)

Updates `lucide-react` from 0.544.0 to 0.562.0
- [Release notes](https://github.com/lucide-icons/lucide/releases)
- [Commits](https://github.com/lucide-icons/lucide/commits/0.562.0/packages/lucide-react)

Updates `prettier` from 3.7.4 to 3.8.0
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.7.4...3.8.0)

Updates `prettier-plugin-packagejson` from 2.5.20 to 2.5.22
- [Release notes](https://github.com/matzkoh/prettier-plugin-packagejson/releases)
- [Commits](matzkoh/prettier-plugin-packagejson@v2.5.20...v2.5.22)

Updates `tailwindcss` from 3.4.18 to 3.4.19
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v3.4.19/packages/tailwindcss)

Updates `vite` from 7.2.6 to 7.3.1
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v7.3.1/packages/vite)

Updates `firebase-functions` from 7.0.0 to 7.0.3
- [Release notes](https://github.com/firebase/firebase-functions/releases)
- [Commits](firebase/firebase-functions@v7.0.0...v7.0.3)

Updates `eslint` from 9.39.1 to 9.39.2
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v9.39.1...v9.39.2)

Updates `firebase-tools` from 14.26.0 to 14.27.0
- [Release notes](https://github.com/firebase/firebase-tools/releases)
- [Commits](firebase/firebase-tools@v14.26.0...v14.27.0)

Updates `eslint` from 9.39.1 to 9.39.2
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v9.39.1...v9.39.2)

Updates `firebase-tools` from 14.26.0 to 14.27.0
- [Release notes](https://github.com/firebase/firebase-tools/releases)
- [Commits](firebase/firebase-tools@v14.26.0...v14.27.0)

Updates `@esri/arcgis-rest-feature-service` from 4.4.1 to 4.8.0
- [Release notes](https://github.com/Esri/arcgis-rest-js/releases)
- [Changelog](https://github.com/Esri/arcgis-rest-js/blob/main/packages/arcgis-rest-feature-service/CHANGELOG.md)
- [Commits](https://github.com/Esri/arcgis-rest-js/commits/@esri/arcgis-rest-feature-service@4.8.0/packages/arcgis-rest-feature-service)

Updates `@esri/arcgis-rest-request` from 4.7.3 to 4.8.0
- [Release notes](https://github.com/Esri/arcgis-rest-js/releases)
- [Changelog](https://github.com/Esri/arcgis-rest-js/blob/main/packages/arcgis-rest-request/CHANGELOG.md)
- [Commits](https://github.com/Esri/arcgis-rest-js/commits/@esri/arcgis-rest-request@4.8.0/packages/arcgis-rest-request)

Updates `@google-cloud/cloud-sql-connector` from 1.8.4 to 1.9.0
- [Release notes](https://github.com/GoogleCloudPlatform/cloud-sql-nodejs-connector/releases)
- [Changelog](https://github.com/GoogleCloudPlatform/cloud-sql-nodejs-connector/blob/main/CHANGELOG.md)
- [Commits](GoogleCloudPlatform/cloud-sql-nodejs-connector@v1.8.4...v1.9.0)

Updates `ky` from 1.14.1 to 1.14.3
- [Release notes](https://github.com/sindresorhus/ky/releases)
- [Commits](sindresorhus/ky@v1.14.1...v1.14.3)

Updates `eslint` from 9.39.1 to 9.39.2
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v9.39.1...v9.39.2)

Updates `firebase-tools` from 14.26.0 to 14.27.0
- [Release notes](https://github.com/firebase/firebase-tools/releases)
- [Commits](firebase/firebase-tools@v14.26.0...v14.27.0)

Updates `better-sqlite3` from 12.5.0 to 12.6.2
- [Release notes](https://github.com/WiseLibs/better-sqlite3/releases)
- [Commits](WiseLibs/better-sqlite3@v12.5.0...v12.6.2)

---
updated-dependencies:
- dependency-name: "@tanstack/react-query"
  dependency-version: 5.90.20
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: safe-dependencies
- dependency-name: "@ugrc/utah-design-system"
  dependency-version: 1.34.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: safe-dependencies
- dependency-name: betterknown
  dependency-version: 1.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe-dependencies
- dependency-name: firebase
  dependency-version: 12.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe-dependencies
- dependency-name: firebase-functions
  dependency-version: 7.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: safe-dependencies
- dependency-name: react
  dependency-version: 19.2.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: safe-dependencies
- dependency-name: "@types/react"
  dependency-version: 19.2.9
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: safe-dependencies
- dependency-name: react-aria
  dependency-version: 3.45.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe-dependencies
- dependency-name: react-aria-components
  dependency-version: 1.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe-dependencies
- dependency-name: react-content-loader
  dependency-version: 7.1.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: safe-dependencies
- dependency-name: react-dom
  dependency-version: 19.2.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: safe-dependencies
- dependency-name: react-error-boundary
  dependency-version: 6.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe-dependencies
- dependency-name: react-stately
  dependency-version: 3.43.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe-dependencies
- dependency-name: "@types/react"
  dependency-version: 19.2.9
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: safe-dependencies
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.53.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: safe-dependencies
- dependency-name: "@vitejs/plugin-react"
  dependency-version: 5.1.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: safe-dependencies
- dependency-name: autoprefixer
  dependency-version: 10.4.23
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: safe-dependencies
- dependency-name: eslint
  dependency-version: 9.39.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: safe-dependencies
- dependency-name: firebase-tools
  dependency-version: 14.27.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: safe-dependencies
- dependency-name: lucide-react
  dependency-version: 0.562.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: safe-dependencies
- dependency-name: prettier
  dependency-version: 3.8.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: safe-dependencies
- dependency-name: prettier-plugin-packagejson
  dependency-version: 2.5.22
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: safe-dependencies
- dependency-name: tailwindcss
  dependency-version: 3.4.19
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: safe-dependencies
- dependency-name: vite
  dependency-version: 7.3.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: safe-dependencies
- dependency-name: firebase-functions
  dependency-version: 7.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: safe-dependencies
- dependency-name: eslint
  dependency-version: 9.39.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: safe-dependencies
- dependency-name: firebase-tools
  dependency-version: 14.27.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: safe-dependencies
- dependency-name: eslint
  dependency-version: 9.39.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: safe-dependencies
- dependency-name: firebase-tools
  dependency-version: 14.27.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: safe-dependencies
- dependency-name: "@esri/arcgis-rest-feature-service"
  dependency-version: 4.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe-dependencies
- dependency-name: "@esri/arcgis-rest-request"
  dependency-version: 4.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe-dependencies
- dependency-name: "@google-cloud/cloud-sql-connector"
  dependency-version: 1.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe-dependencies
- dependency-name: ky
  dependency-version: 1.14.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: safe-dependencies
- dependency-name: eslint
  dependency-version: 9.39.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: safe-dependencies
- dependency-name: firebase-tools
  dependency-version: 14.27.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: safe-dependencies
- dependency-name: better-sqlite3
  dependency-version: 12.6.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe-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 Feb 1, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

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