Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deps: bump the safe-app-dependencies group with 22 updates #447

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 1, 2024

Bumps the safe-app-dependencies group with 22 updates:

Package From To
esri-leaflet 3.0.12 3.0.13
proj4 2.12.1 2.15.0
pubsub-js 1.9.4 1.9.5
react-error-boundary 4.0.13 4.1.2
react-toastify 10.0.5 10.0.6
@playwright/test 1.47.2 1.49.0
@storybook/addon-actions 8.3.4 8.4.6
@storybook/addon-essentials 8.3.4 8.4.6
@storybook/addon-links 8.3.4 8.4.6
@storybook/react 8.3.4 8.4.6
@storybook/react-vite 8.3.4 8.4.6
@types/node 22.7.4 22.10.1
@vitejs/plugin-react 4.3.2 4.3.4
concurrently 9.0.1 9.1.0
dotenv-cli 7.4.2 7.4.4
eslint-plugin-import 2.30.0 2.31.0
eslint-plugin-react 7.37.1 7.37.2
firebase-tools 13.20.2 13.27.0
prettier 3.3.3 3.4.1
sass 1.79.4 1.81.0
storybook 8.3.4 8.4.6
vitest 2.1.2 2.1.6

Updates esri-leaflet from 3.0.12 to 3.0.13

Release notes

Sourced from esri-leaflet's releases.

v3.0.13

Fixed

  • Removed usage of toLatLngBounds to improve usage of Esri Leaflet with ESM CDNs. (#1394)

Changed

  • Updated dependencies (#1382)
Changelog

Sourced from esri-leaflet's changelog.

[3.0.13] - 2024-10-25

Fixed

  • Removed usage of toLatLngBounds to improve usage of Esri Leaflet with ESM CDNs. (#1394)

Changed

  • Updated dependencies (#1382)
Commits
Maintainer changes

This version was pushed to npm by gr_e, a new releaser for esri-leaflet since your current version.


Updates proj4 from 2.12.1 to 2.15.0

Release notes

Sourced from proj4's releases.

v2.15.0

What's Changed

Full Changelog: proj4js/proj4js@v2.14.0...v2.15.0

v2.14.0

What's Changed

Full Changelog: proj4js/proj4js@v2.13.2...v2.14.0

v2.13.2

What's Changed

Full Changelog: proj4js/proj4js@v2.13.1...v2.13.2

v2.13.1

What's Changed

Full Changelog: proj4js/proj4js@v2.13.0...v2.13.1

v2.13.0

What's Changed

New Contributors

Full Changelog: proj4js/proj4js@v2.12.1...v2.13.0

Commits
  • f6a8679 build 2.15.0
  • d653690 Merge pull request #487 from proj4js/utm-start-with-1
  • 8cfc51b Start UTM zone defs at 32601 and 32701 instead of 32600 and 32700
  • 9b7c25d Merge pull request #486 from proj4js/datum-codes-optimized
  • 6d05b2d Support more datum codes with smaller library size
  • c8497a0 Fix tag name
  • 9a2f154 Update version to v2.14.1-alpha
  • e75d39d Merge pull request #485 from proj4js/datums-fix-osgb1936
  • 7142abc Fix OSGB1936 datum, add datum lookup by datumName
  • 2c1c9f0 Update version to v2.13.3-alpha
  • Additional commits viewable in compare view

Updates pubsub-js from 1.9.4 to 1.9.5

Changelog

Sourced from pubsub-js's changelog.

1.9.5

  • ea4d477 Add support for server side rendering (Artur Kudeł)

Released on 2024-10-28.

Commits

Updates react-error-boundary from 4.0.13 to 4.1.2

Release notes

Sourced from react-error-boundary's releases.

4.1.2

  • Remove engines field from Package JSON entirely

4.1.1

  • Remove node constraint from engines

4.1.0

  • Relax fallback prop to support broader ReactNode type
Commits

Updates react-toastify from 10.0.5 to 10.0.6

Commits

Updates @playwright/test from 1.47.2 to 1.49.0

Release notes

Sourced from @​playwright/test's releases.

v1.49.0

Aria snapshots

New assertion expect(locator).toMatchAriaSnapshot() verifies page structure by comparing to an expected accessibility tree, represented as YAML.

await page.goto('https://playwright.dev');
await expect(page.locator('body')).toMatchAriaSnapshot(`
  - banner:
    - heading /Playwright enables reliable/ [level=1]
    - link "Get started"
    - link "Star microsoft/playwright on GitHub"
  - main:
    - img "Browsers (Chromium, Firefox, WebKit)"
    - heading "Any browser • Any platform • One API"
`);

You can generate this assertion with Test Generator and update the expected snapshot with --update-snapshots command line flag.

Learn more in the aria snapshots guide.

Test runner

Breaking: channels chrome, msedge and similar switch to new headless

This change affects you if you're using one of the following channels in your playwright.config.ts:

  • chrome, chrome-dev, chrome-beta, or chrome-canary
  • msedge, msedge-dev, msedge-beta, or msedge-canary

What do I need to do?

After updating to Playwright v1.49, run your test suite. If it still passes, you're good to go. If not, you will probably need to update your snapshots, and adapt some of your test code around PDF viewers and extensions. See [issue #33566](microsoft/playwright#33566) for more details.

Other breaking changes

  • There will be no more updates for WebKit on Ubuntu 20.04 and Debian 11. We recommend updating your OS to a later version.
  • Package @playwright/experimental-ct-vue2 will no longer be updated.
  • Package @playwright/experimental-ct-solid will no longer be updated.

Try new Chromium headless

You can opt into the new headless mode by using 'chromium' channel. As official Chrome documentation puts it:

New Headless on the other hand is the real Chrome browser, and is thus more authentic, reliable, and offers more features. This makes it more suitable for high-accuracy end-to-end web app testing or browser extension testing.

... (truncated)

Commits
  • a70a96a chore: mark v1.49.0 (#33649)
  • 53f51a8 cherry-pick(#33638): chore: clear highlight when performing action
  • 2a00ca8 cherry-pick(#33635): chore: add cm placeholder text
  • 0e64340 cherry-pick(#33632): chore: highlight edited locator while recording
  • cb0f456 cherry-pick(#33629): fix(rebase): do not apply multiple rebaselines to the sa...
  • 698823a cherry-pick(#33627): fix(codegen): document.documentElement is null on early ...
  • c0fa804 cherry-pick(#33619): fix(aria): normalize whitespace in toMatchAccessible{Nam...
  • 7a32228 cherry-pick(#33614): docs: add ariaSnapshot.timeout for language ports (#33615)
  • 0e31ace cherry-pick(#33575): fix(canvas snapshots): position mismatch in headless mode
  • b2a39ff cherry-pick(#33604): docs: update docs about headless shell
  • Additional commits viewable in compare view

Updates @storybook/addon-actions from 8.3.4 to 8.4.6

Release notes

Sourced from @​storybook/addon-actions's releases.

v8.4.6

8.4.6

v8.4.5

8.4.5

v8.4.4

8.4.4

  • Addon Test: Only optimize react deps if applicable in vitest-plugin - #29617, thanks @​yannbf!

v8.4.3

8.4.3

v8.4.2

8.4.2

v8.4.1

8.4.1

v8.4.0

8.4.0

Storybook 8.4 comes with a ton of exciting new features designed to give you the best experience developing, testing, and debugging tests in the browser!

  • ▶️ Unified UI for component testing
  • 5️⃣ Svelte 5 and Svelte CSF support

... (truncated)

Changelog

Sourced from @​storybook/addon-actions's changelog.

8.4.6

8.4.5

8.4.4

  • Addon Test: Only optimize react deps if applicable in vitest-plugin - #29617, thanks @​yannbf!

8.4.3

8.4.2

8.4.1

8.4.0

Storybook 8.4 comes with a ton of exciting new features designed to give you the best experience developing, testing, and debugging tests in the browser!

  • ▶️ Unified UI for component testing
  • 5️⃣ Svelte 5 and Svelte CSF support
  • ⚛️ React Native Storybook 8 release
  • 🏷️ Tags-based filtering to organize your Storybook
  • 🫧 Dependency cleanup to reduce install footprint
  • 💯 Hundreds more improvements

... (truncated)

Commits
  • b58b3ee Bump version from "8.4.5" to "8.4.6" [skip ci]
  • 60a5088 Bump version from "8.4.4" to "8.4.5" [skip ci]
  • ca016ae Bump version from "8.4.3" to "8.4.4" [skip ci]
  • 750930f Bump version from "8.4.2" to "8.4.3" [skip ci]
  • d5fa671 Bump version from "8.4.1" to "8.4.2" [skip ci]
  • 9983774 Bump version from "8.4.0" to "8.4.1" [skip ci]
  • 939651b Bump version from "8.4.0-beta.5" to "8.4.0" [skip ci]
  • e94dc92 Bump version from "8.4.0-beta.4" to "8.4.0-beta.5" [skip ci]
  • c6dc5f6 Bump version from "8.4.0-beta.3" to "8.4.0-beta.4" [skip ci]
  • 72b24f8 Bump version from "8.4.0-beta.2" to "8.4.0-beta.3" [skip ci]
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by storybook-bot, a new releaser for @​storybook/addon-actions since your current version.


Updates @storybook/addon-essentials from 8.3.4 to 8.4.6

Release notes

Sourced from @​storybook/addon-essentials's releases.

v8.4.6

8.4.6

v8.4.5

8.4.5

v8.4.4

8.4.4

  • Addon Test: Only optimize react deps if applicable in vitest-plugin - #29617, thanks @​yannbf!

v8.4.3

8.4.3

v8.4.2

8.4.2

v8.4.1

8.4.1

v8.4.0

8.4.0

Storybook 8.4 comes with a ton of exciting new features designed to give you the best experience developing, testing, and debugging tests in the browser!

  • ▶️ Unified UI for component testing
  • 5️⃣ Svelte 5 and Svelte CSF support

... (truncated)

Changelog

Sourced from @​storybook/addon-essentials's changelog.

8.4.6

8.4.5

8.4.4

  • Addon Test: Only optimize react deps if applicable in vitest-plugin - #29617, thanks @​yannbf!

8.4.3

8.4.2

8.4.1

8.4.0

Storybook 8.4 comes with a ton of exciting new features designed to give you the best experience developing, testing, and debugging tests in the browser!

  • ▶️ Unified UI for component testing
  • 5️⃣ Svelte 5 and Svelte CSF support
  • ⚛️ React Native Storybook 8 release
  • 🏷️ Tags-based filtering to organize your Storybook
  • 🫧 Dependency cleanup to reduce install footprint
  • 💯 Hundreds more improvements

... (truncated)

Commits
  • b58b3ee Bump version from "8.4.5" to "8.4.6" [skip ci]
  • 60a5088 Bump version from "8.4.4" to "8.4.5" [skip ci]
  • ca016ae Bump version from "8.4.3" to "8.4.4" [skip ci]
  • 750930f Bump version from "8.4.2" to "8.4.3" [skip ci]
  • d5fa671 Bump version from "8.4.1" to "8.4.2" [skip ci]
  • 9983774 Bump version from "8.4.0" to "8.4.1" [skip ci]
  • 939651b Bump version from "8.4.0-beta.5" to "8.4.0" [skip ci]
  • e94dc92 Bump version from "8.4.0-beta.4" to "8.4.0-beta.5" [skip ci]
  • c6dc5f6 Bump version from "8.4.0-beta.3" to "8.4.0-beta.4" [skip ci]
  • 72b24f8 Bump version from "8.4.0-beta.2" to "8.4.0-beta.3" [skip ci]
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by storybook-bot, a new releaser for @​storybook/addon-essentials since your current version.


Updates @storybook/addon-links from 8.3.4 to 8.4.6

Release notes

Sourced from @​storybook/addon-links's releases.

v8.4.6

8.4.6

v8.4.5

8.4.5

v8.4.4

8.4.4

  • Addon Test: Only optimize react deps if applicable in vitest-plugin - #29617, thanks @​yannbf!

v8.4.3

8.4.3

v8.4.2

8.4.2

v8.4.1

8.4.1

v8.4.0

8.4.0

Storybook 8.4 comes with a ton of exciting new features designed to give you the best experience developing, testing, and debugging tests in the browser!

  • ▶️ Unified UI for component testing
  • 5️⃣ Svelte 5 and Svelte CSF support

... (truncated)

Changelog

Sourced from @​storybook/addon-links's changelog.

8.4.6

8.4.5

8.4.4

  • Addon Test: Only optimize react deps if applicable in vitest-plugin - #29617, thanks @​yannbf!

8.4.3

8.4.2

8.4.1

8.4.0

Storybook 8.4 comes with a ton of exciting new features designed to give you the best experience developing, testing, and debugging tests in the browser!

  • ▶️ Unified UI for component testing
  • 5️⃣ Svelte 5 and Svelte CSF support
  • ⚛️ React Native Storybook 8 release
  • 🏷️ Tags-based filtering to organize your Storybook
  • 🫧 Dependency cleanup to reduce install footprint
  • 💯 Hundreds more improvements

... (truncated)

Commits
  • b58b3ee Bump version from "8.4.5" to "8.4.6" [skip ci]
  • 60a5088 Bump version from "8.4.4" to "8.4.5" [skip ci]
  • ca016ae Bump version from "8.4.3" to "8.4.4" [skip ci]
  • 750930f Bump version from "8.4.2" to "8.4.3" [skip ci]
  • d5fa671 Bump version from "8.4.1" to "8.4.2" [skip ci]
  • 9983774 Bump version from "8.4.0" to "8.4.1" [skip ci]
  • 939651b Bump version from "8.4.0-beta.5" to "8.4.0" [skip ci]
  • e94dc92 Bump version from "8.4.0-beta.4" to "8.4.0-beta.5" [skip ci]
  • c6dc5f6 Bump version from "8.4.0-beta.3" to "8.4.0-beta.4" [skip ci]
  • 72b24f8 Bump version from "8.4.0-beta.2" to "8.4.0-beta.3" [skip ci]
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by storybook-bot, a new releaser for @​storybook/addon-links since your current version.


Updates @storybook/react from 8.3.4 to 8.4.6

Release notes

Sourced from @​storybook/react's releases.

v8.4.6

8.4.6

v8.4.5

8.4.5

v8.4.4

8.4.4

  • Addon Test: Only optimize react deps if applicable in vitest-plugin - #29617, thanks @​yannbf!

v8.4.3

8.4.3

v8.4.2

8.4.2

  • Addon Test: Fix post-install logic for Next.js Vite framework support - #29524, thanks @​valentinpalkovic!
  • Addon Test: Only render the TestingModule component in development mode - #29501, thanks @​yannbf!
  • CLI: Fix Solid init by installing @storybook/test - #29514, thanks @​shilman!
  • Core: Shim CJS-only globals in ES...

    Description has been truncated

Bumps the safe-app-dependencies group with 22 updates:

| Package | From | To |
| --- | --- | --- |
| [esri-leaflet](https://github.com/Esri/esri-leaflet) | `3.0.12` | `3.0.13` |
| [proj4](https://github.com/proj4js/proj4js) | `2.12.1` | `2.15.0` |
| [pubsub-js](https://github.com/mroderick/PubSubJS) | `1.9.4` | `1.9.5` |
| [react-error-boundary](https://github.com/bvaughn/react-error-boundary) | `4.0.13` | `4.1.2` |
| [react-toastify](https://github.com/fkhadra/react-toastify) | `10.0.5` | `10.0.6` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.47.2` | `1.49.0` |
| [@storybook/addon-actions](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/actions) | `8.3.4` | `8.4.6` |
| [@storybook/addon-essentials](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/essentials) | `8.3.4` | `8.4.6` |
| [@storybook/addon-links](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/links) | `8.3.4` | `8.4.6` |
| [@storybook/react](https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/react) | `8.3.4` | `8.4.6` |
| [@storybook/react-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/react-vite) | `8.3.4` | `8.4.6` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.7.4` | `22.10.1` |
| [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react) | `4.3.2` | `4.3.4` |
| [concurrently](https://github.com/open-cli-tools/concurrently) | `9.0.1` | `9.1.0` |
| [dotenv-cli](https://github.com/entropitor/dotenv-cli) | `7.4.2` | `7.4.4` |
| [eslint-plugin-import](https://github.com/import-js/eslint-plugin-import) | `2.30.0` | `2.31.0` |
| [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) | `7.37.1` | `7.37.2` |
| [firebase-tools](https://github.com/firebase/firebase-tools) | `13.20.2` | `13.27.0` |
| [prettier](https://github.com/prettier/prettier) | `3.3.3` | `3.4.1` |
| [sass](https://github.com/sass/dart-sass) | `1.79.4` | `1.81.0` |
| [storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/cli) | `8.3.4` | `8.4.6` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `2.1.2` | `2.1.6` |


Updates `esri-leaflet` from 3.0.12 to 3.0.13
- [Release notes](https://github.com/Esri/esri-leaflet/releases)
- [Changelog](https://github.com/Esri/esri-leaflet/blob/master/CHANGELOG.md)
- [Commits](Esri/esri-leaflet@v3.0.12...v3.0.13)

Updates `proj4` from 2.12.1 to 2.15.0
- [Release notes](https://github.com/proj4js/proj4js/releases)
- [Changelog](https://github.com/proj4js/proj4js/blob/master/changelog.md)
- [Commits](proj4js/proj4js@v2.12.1...v2.15.0)

Updates `pubsub-js` from 1.9.4 to 1.9.5
- [Release notes](https://github.com/mroderick/PubSubJS/releases)
- [Changelog](https://github.com/mroderick/PubSubJS/blob/master/CHANGES.md)
- [Commits](mroderick/PubSubJS@v1.9.4...v1.9.5)

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

Updates `react-toastify` from 10.0.5 to 10.0.6
- [Release notes](https://github.com/fkhadra/react-toastify/releases)
- [Commits](fkhadra/react-toastify@v10.0.5...v10.0.6)

Updates `@playwright/test` from 1.47.2 to 1.49.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.47.2...v1.49.0)

Updates `@storybook/addon-actions` from 8.3.4 to 8.4.6
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.4.6/code/addons/actions)

Updates `@storybook/addon-essentials` from 8.3.4 to 8.4.6
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.4.6/code/addons/essentials)

Updates `@storybook/addon-links` from 8.3.4 to 8.4.6
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.4.6/code/addons/links)

Updates `@storybook/react` from 8.3.4 to 8.4.6
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.4.6/code/renderers/react)

Updates `@storybook/react-vite` from 8.3.4 to 8.4.6
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.4.6/code/frameworks/react-vite)

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

Updates `@vitejs/plugin-react` from 4.3.2 to 4.3.4
- [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/v4.3.4/packages/plugin-react)

Updates `concurrently` from 9.0.1 to 9.1.0
- [Release notes](https://github.com/open-cli-tools/concurrently/releases)
- [Commits](open-cli-tools/concurrently@v9.0.1...v9.1.0)

Updates `dotenv-cli` from 7.4.2 to 7.4.4
- [Release notes](https://github.com/entropitor/dotenv-cli/releases)
- [Commits](entropitor/dotenv-cli@v7.4.2...v7.4.4)

Updates `eslint-plugin-import` from 2.30.0 to 2.31.0
- [Release notes](https://github.com/import-js/eslint-plugin-import/releases)
- [Changelog](https://github.com/import-js/eslint-plugin-import/blob/main/CHANGELOG.md)
- [Commits](import-js/eslint-plugin-import@v2.30.0...v2.31.0)

Updates `eslint-plugin-react` from 7.37.1 to 7.37.2
- [Release notes](https://github.com/jsx-eslint/eslint-plugin-react/releases)
- [Changelog](https://github.com/jsx-eslint/eslint-plugin-react/blob/master/CHANGELOG.md)
- [Commits](jsx-eslint/eslint-plugin-react@v7.37.1...v7.37.2)

Updates `firebase-tools` from 13.20.2 to 13.27.0
- [Release notes](https://github.com/firebase/firebase-tools/releases)
- [Changelog](https://github.com/firebase/firebase-tools/blob/master/CHANGELOG.md)
- [Commits](firebase/firebase-tools@v13.20.2...v13.27.0)

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

Updates `sass` from 1.79.4 to 1.81.0
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
- [Commits](sass/dart-sass@1.79.4...1.81.0)

Updates `storybook` from 8.3.4 to 8.4.6
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.4.6/code/lib/cli)

Updates `vitest` from 2.1.2 to 2.1.6
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v2.1.6/packages/vitest)

---
updated-dependencies:
- dependency-name: esri-leaflet
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: safe-app-dependencies
- dependency-name: proj4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe-app-dependencies
- dependency-name: pubsub-js
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: safe-app-dependencies
- dependency-name: react-error-boundary
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe-app-dependencies
- dependency-name: react-toastify
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: safe-app-dependencies
- dependency-name: "@playwright/test"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: safe-app-dependencies
- dependency-name: "@storybook/addon-actions"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: safe-app-dependencies
- dependency-name: "@storybook/addon-essentials"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: safe-app-dependencies
- dependency-name: "@storybook/addon-links"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: safe-app-dependencies
- dependency-name: "@storybook/react"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: safe-app-dependencies
- dependency-name: "@storybook/react-vite"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: safe-app-dependencies
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: safe-app-dependencies
- dependency-name: "@vitejs/plugin-react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: safe-app-dependencies
- dependency-name: concurrently
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: safe-app-dependencies
- dependency-name: dotenv-cli
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: safe-app-dependencies
- dependency-name: eslint-plugin-import
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: safe-app-dependencies
- dependency-name: eslint-plugin-react
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: safe-app-dependencies
- dependency-name: firebase-tools
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: safe-app-dependencies
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: safe-app-dependencies
- dependency-name: sass
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: safe-app-dependencies
- dependency-name: storybook
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: safe-app-dependencies
- dependency-name: vitest
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: safe-app-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Dec 1, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 1, 2025

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

@dependabot dependabot bot closed this Jan 1, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/safe-app-dependencies-4b2d039ce8 branch January 1, 2025 22:54
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