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

Bump the npm-deps group with 25 updates #138

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 18, 2024

Bumps the npm-deps group with 25 updates:

Package From To
@types/gtag.js 0.0.18 0.0.19
rollbar 2.26.2 2.26.3
vue 3.4.15 3.4.21
@playwright/test 1.41.1 1.42.1
@primer/css 21.1.1 21.2.1
@storybook/addon-essentials 7.6.10 8.0.0
@storybook/cli 7.6.10 8.0.0
@storybook/vue3 7.6.10 8.0.0
@storybook/vue3-webpack5 7.6.10 8.0.0
@types/css-font-loading-module 0.0.12 0.0.13
@types/google.analytics 0.0.45 0.0.46
@typescript-eslint/eslint-plugin 6.19.1 7.2.0
@typescript-eslint/parser 6.19.1 7.2.0
chromatic 10.6.0 11.0.8
css-loader 6.9.1 6.10.0
eslint 8.56.0 8.57.0
eslint-plugin-storybook 0.6.15 0.8.0
eslint-plugin-vue 9.20.1 9.23.0
postcss 8.4.33 8.4.36
prettier 3.2.4 3.2.5
storybook 7.6.10 8.0.0
stylelint 16.2.0 16.2.1
typescript 5.3.3 5.4.2
webpack 5.90.0 5.90.3
webpack-dev-server 4.15.1 5.0.3

Updates @types/gtag.js from 0.0.18 to 0.0.19

Commits

Updates rollbar from 2.26.2 to 2.26.3

Release notes

Sourced from rollbar's releases.

v2.26.3

Commits
  • f4cbd01 Release 2.26.3 (#1130)
  • a983381 Merge pull request #1119 from rollbar/matt/sc-127975/remove-node-8-support
  • b31c1b8 Merge remote-tracking branch 'origin/master' into matt/sc-127975/remove-node-...
  • ca540c9 fix: remove is_js dependency (#1121)
  • 7561d2e chore(deps): bump grunt-contrib-jshint, remove vulnerability
  • a9d7ca9 chore(deps): remove unused deps from browserstack
  • 1a3e342 chore(tests): remove unused browserstack config
  • e56f09b chore(config): remove sourceMap option to terser, has been removed
  • c94b60b chore(deps): remove old babel-core (renamed to @​babel/core)
  • 9c062e3 chore(deps): bump karma version
  • Additional commits viewable in compare view

Updates vue from 3.4.15 to 3.4.21

Release notes

Sourced from vue's releases.

v3.4.21

Please refer to CHANGELOG.md for details.

v3.4.20

Please refer to CHANGELOG.md for details.

v3.4.19

Please refer to CHANGELOG.md for details.

v3.4.18

Please refer to CHANGELOG.md for details.

v3.4.17

Please refer to CHANGELOG.md for details.

v3.4.16

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vue's changelog.

3.4.21 (2024-02-28)

Bug Fixes

3.4.20 (2024-02-26)

Bug Fixes

  • parser: should not treat uppercase components as special tags (e0e0253), closes #10395
  • runtime-dom: avoid always resetting nullish option value (ff130c4), closes #10396
  • runtime-dom: fix nested v-show priority regression (364f890), closes #10338
  • runtime-dom: v-bind style should clear previous css string value (#10373) (e2d3235), closes #10352
  • suspense: handle suspense switching with nested suspense (#10184) (0f3da05), closes #10098
  • types: better typing for direct setup signature of defineComponent (#10357) (eadce5b), closes #8604 #8855

3.4.19 (2024-02-13)

Bug Fixes

  • deps: pin lru-cache to avoid hashing error (b8be990), closes #10300
  • hydration: fix css vars hydration mismatch false positive on non-root nodes (995d2fd), closes #10317 #10325
  • runtime-dom: should not trigger transition when v-show value is falsy (#10311) (e509639)

Features

Note: this warning is categorized as a feature but released in a patch because it does not affect public APIs.

  • dx: warn users when computed is self-triggering (#10299) (f7ba97f)

Performance Improvements

3.4.18 (2024-02-09)

... (truncated)

Commits

Updates @playwright/test from 1.41.1 to 1.42.1

Release notes

Sourced from @​playwright/test's releases.

v1.42.1

Highlights

microsoft/playwright#29732 - [Regression]: HEAD requests to webServer.url since v1.42.0 microsoft/playwright#29746 - [Regression]: Playwright CT CLI scripts fail due to broken initializePlugin import microsoft/playwright#29739 - [Bug]: Component tests fails when imported a module with a dot in a name microsoft/playwright#29731 - [Regression]: 1.42.0 breaks some import statements microsoft/playwright#29760 - [Bug]: Possible regression with chained locators in v1.42

Browser Versions

  • Chromium 123.0.6312.4
  • Mozilla Firefox 123.0
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 122
  • Microsoft Edge 123

v1.42.0

New APIs

  • Test tags

    New tag syntax for adding tags to the tests (@-tokens in the test title are still supported).

    test('test customer login', { tag: ['@fast', '@login'] }, async ({ page }) => {
      // ...
    });

    Use --grep command line option to run only tests with certain tags.

    npx playwright test --grep @fast
  • Annotating skipped tests

    New annotation syntax for test annotations allows annotating the tests that do not run.

    test('test full report', {
      annotation: [
        { type: 'issue', description: 'https://github.com/microsoft/playwright/issues/23180' },
        { type: 'docs', description: 'https://playwright.dev/docs/test-annotations#tag-tests' },
      ],
    }, async ({ page }) => {
      // ...
    });

... (truncated)

Commits

Updates @primer/css from 21.1.1 to 21.2.1

Release notes

Sourced from @​primer/css's releases.

v21.2.1

Patch Changes

v21.2.0

Minor Changes

Patch Changes

Changelog

Sourced from @​primer/css's changelog.

21.2.1

Patch Changes

21.2.0

Minor Changes

Patch Changes

Commits

Updates @storybook/addon-essentials from 7.6.10 to 8.0.0

Release notes

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

v8.0.0

8.0.0

Storybook 8.0 is here

It brings major improvements to Storybook's feature set for testing and documentation, with strengthened framework support across React, Vue, Angular, web-components, Svelte, and more.

  • 🩻 Built-in visual testing
  • ⚛️ React Server Component support
  • 🎛️ Improved controls for React and Vue projects
  • ⚡️ Improved Vite architecture, Vitest testing, and Vite 5 support
  • 🧪 2-4x faster Storybooks for testing
  • ✨ Refreshed desktop UI
  • 📲 Rebuilt mobile UX
  • 🙅‍♀️ No more React requirement in non-React projects

Please checkout our Migration Guide to upgrade from earlier versions of Storybook. To see a comprehensive list of changes that went into 8.0, you can refer to the 8.0 prerelease changelogs.

v8.0.0-rc.5

8.0.0-rc.5

  • CLI: Automigration fix version detection of upgrading related packages - #26410, thanks @​ndelangen!

v8.0.0-rc.4

8.0.0-rc.4

v8.0.0-rc.3

8.0.0-rc.3

... (truncated)

Changelog

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

8.0.0

Storybook 8.0 is here

It brings major improvements to Storybook's feature set for testing and documentation, with strengthened framework support across React, Vue, Angular, web-components, Svelte, and more.

  • 🩻 Built-in visual testing
  • ⚛️ React Server Component support
  • 🎛️ Improved controls for React and Vue projects
  • ⚡️ Improved Vite architecture, Vitest testing, and Vite 5 support
  • 🧪 2-4x faster Storybooks for testing
  • ✨ Refreshed desktop UI
  • 📲 Rebuilt mobile UX
  • 🙅‍♀️ No more React requirement in non-React projects

Please checkout our Migration Guide to upgrade from earlier versions of Storybook. To see a comprehensive list of changes that went into 8.0, you can refer to the 8.0 prerelease changelogs.

7.6.17

7.6.16

  • Addon Themes: Make type generic less strict - #26042, thanks @​yannbf!
  • Interaction: Make sure that adding spies doesn't cause infinite loops with self referencing args #26019, thanks @​kasperpeulen!

7.6.15

This release accidentally didn't contain anything.

7.6.14

7.6.13

7.6.12

  • CLI: Fix upgrade detecting the wrong version of existing Storybooks - #25752, thanks @​JReinhold!

7.6.11

Commits
  • 49f18e8 Bump version from "8.0.0-rc.5" to "8.0.0" [skip ci]
  • 9050c69 Bump version from "8.0.0-rc.4" to "8.0.0-rc.5" [skip ci]
  • bfa0570 Bump version from "8.0.0-rc.3" to "8.0.0-rc.4" [skip ci]
  • d6f8526 Bump version from "8.0.0-rc.2" to "8.0.0-rc.3" [skip ci]
  • ebec658 Bump version from "8.0.0-rc.1" to "8.0.0-rc.2" [skip ci]
  • 68f1b28 Bump version from "8.0.0-rc.0" to "8.0.0-rc.1" [skip ci]
  • a47fc43 Bump version from "8.0.0-beta.6" to "8.0.0-rc.0" [skip ci]
  • 8ba6b46 Bump version from "8.0.0-beta.5" to "8.0.0-beta.6" [skip ci]
  • a7529d6 Bump version from "8.0.0-beta.4" to "8.0.0-beta.5" [skip ci]
  • 5ce7f27 Bump version from "8.0.0-beta.3" to "8.0.0-beta.4" [skip ci]
  • Additional commits viewable in compare view

Updates @storybook/cli from 7.6.10 to 8.0.0

Release notes

Sourced from @​storybook/cli's releases.

v8.0.0

8.0.0

Storybook 8.0 is here

It brings major improvements to Storybook's feature set for testing and documentation, with strengthened framework support across React, Vue, Angular, web-components, Svelte, and more.

  • 🩻 Built-in visual testing
  • ⚛️ React Server Component support
  • 🎛️ Improved controls for React and Vue projects
  • ⚡️ Improved Vite architecture, Vitest testing, and Vite 5 support
  • 🧪 2-4x faster Storybooks for testing
  • ✨ Refreshed desktop UI
  • 📲 Rebuilt mobile UX
  • 🙅‍♀️ No more React requirement in non-React projects

Please checkout our Migration Guide to upgrade from earlier versions of Storybook. To see a comprehensive list of changes that went into 8.0, you can refer to the 8.0 prerelease changelogs.

v8.0.0-rc.5

8.0.0-rc.5

  • CLI: Automigration fix version detection of upgrading related packages - #26410, thanks @​ndelangen!

v8.0.0-rc.4

8.0.0-rc.4

v8.0.0-rc.3

8.0.0-rc.3

... (truncated)

Changelog

Sourced from @​storybook/cli's changelog.

8.0.0

Storybook 8.0 is here

It brings major improvements to Storybook's feature set for testing and documentation, with strengthened framework support across React, Vue, Angular, web-components, Svelte, and more.

  • 🩻 Built-in visual testing
  • ⚛️ React Server Component support
  • 🎛️ Improved controls for React and Vue projects
  • ⚡️ Improved Vite architecture, Vitest testing, and Vite 5 support
  • 🧪 2-4x faster Storybooks for testing
  • ✨ Refreshed desktop UI
  • 📲 Rebuilt mobile UX
  • 🙅‍♀️ No more React requirement in non-React projects

Please checkout our Migration Guide to upgrade from earlier versions of Storybook. To see a comprehensive list of changes that went into 8.0, you can refer to the 8.0 prerelease changelogs.

7.6.17

7.6.16

  • Addon Themes: Make type generic less strict - #26042, thanks @​yannbf!
  • Interaction: Make sure that adding spies doesn't cause infinite loops with self referencing args #26019, thanks @​kasperpeulen!

7.6.15

This release accidentally didn't contain anything.

7.6.14

7.6.13

7.6.12

  • CLI: Fix upgrade detecting the wrong version of existing Storybooks - #25752, thanks @​JReinhold!

7.6.11

Commits
  • 49f18e8 Bump version from "8.0.0-rc.5" to "8.0.0" [skip ci]
  • 9050c69 Bump version from "8.0.0-rc.4" to "8.0.0-rc.5" [skip ci]
  • d978771 add a flag for detecting is the latest version we got from npm matches the ve...
  • bfa0570 Bump version from "8.0.0-rc.3" to "8.0.0-rc.4" [skip ci]
  • 0cfd141 Merge pull request #26377 from storybookjs/norbert/automigration-upgrading-st...
  • b74ca12 add tests
  • b197874 Revert "remove hard-coded login in inner command"
  • 909cb23 remove hard-coded login in inner command
  • b4e944d ship it
  • d0663d6 Merge branch 'next' into norbert/automigration-upgrading-storybook-related-deps
  • Additional commits viewable in compare view

Updates @storybook/vue3 from 7.6.10 to 8.0.0

Release notes

Sourced from @​storybook/vue3's releases.

v8.0.0

8.0.0

Storybook 8.0 is here

It brings major improvements to Storybook's feature set for testing and documentation, with strengthened framework support across React, Vue, Angular, web-components, Svelte, and more.

  • 🩻 Built-in visual testing
  • ⚛️ React Server Component support
  • 🎛️ Improved controls for React and Vue projects
  • ⚡️ Improved Vite architecture, Vitest testing, and Vite 5 support
  • 🧪 2-4x faster Storybooks for testing
  • ✨ Refreshed desktop UI
  • 📲 Rebuilt mobile UX
  • 🙅‍♀️ No more React requirement in non-React projects

Please checkout our Migration Guide to upgrade from earlier versions of Storybook. To see a comprehensive list of changes that went into 8.0, you can refer to the 8.0 prerelease changelogs.

v8.0.0-rc.5

8.0.0-rc.5

  • CLI: Automigration fix version detection of upgrading related packages - #26410, thanks @​ndelangen!

v8.0.0-rc.4

8.0.0-rc.4

v8.0.0-rc.3

8.0.0-rc.3

... (truncated)

Changelog

Sourced from @​storybook/vue3's changelog.

8.0.0

Storybook 8.0 is here

It brings major improvements to Storybook's feature set for testing and documentation, with strengthened framework support across React, Vue, Angular, web-components, Svelte, and more.

  • 🩻 Built-in visual testing
  • ⚛️ React Server Component support
  • 🎛️ Improved controls for React and Vue projects
  • ⚡️ Improved Vite architecture, Vitest testing, and Vite 5 support
  • 🧪 2-4x faster Storybooks for testing
  • ✨ Refreshed desktop UI
  • 📲 Rebuilt mobile UX
  • 🙅‍♀️ No more React requirement in non-React projects

Please checkout our Migration Guide to upgrade from earlier versions of Storybook. To see a comprehensive list of changes that went into 8.0, you can refer to the 8.0 prerelease changelogs.

7.6.17

7.6.16

  • Addon Themes: Make type generic less strict - #26042, thanks @​yannbf!
  • Interaction: Make sure that adding spies doesn't cause infinite loops with self referencing args #26019, thanks @​kasperpeulen!

7.6.15

This release accidentally didn't contain anything.

7.6.14

7.6.13

7.6.12

  • CLI: Fix upgrade detecting the wrong version of existing Storybooks - #25752, thanks @​JReinhold!

7.6.11

Commits
  • 49f18e8 Bump version from "8.0.0-rc.5" to "8.0.0" [skip ci]
  • 9050c69 Bump version from "8.0.0-rc.4" to "8.0.0-rc.5" [skip ci]
  • bfa0570 Bump version from "8.0.0-rc.3" to "8.0.0-rc.4" [skip ci]
  • 93b7ed4 use document.body as default canvasElement instead of injecting a root element
  • 3fc8363 Merge pull request #26351 from storybookjs/norbert/remove-testing-lib
  • 5af40cd Merge pull request #26352 from storybookjs/kasper/cli-story-update
  • d6f8526 Bump version from "8.0.0-rc.2" to "8.0.0-rc.3" [skip ci]
  • dbef8b5 Add explicit actions to CLI header story
  • e4a47f5 replace testing-library with test in monorepo
  • ebec658 Bump version from "8.0.0-rc.1" to "8.0.0-rc.2" [skip ci]
  • Additional commits viewable in compare view

Updates @storybook/vue3-webpack5 from 7.6.10 to 8.0.0

Release notes

Sourced from @​storybook/vue3-webpack5's releases.

v8.0.0

8.0.0

Storybook 8.0 is here

It brings major improvements to Storybook's feature set for testing and documentation, with strengthened framework support across React, Vue, Angular, web-components, Svelte, and more.

  • 🩻 Built-in visual testing
  • ⚛️ React Server Component support
  • 🎛️ Improved controls for React and Vue projects
  • ⚡️ Improved Vite architecture, Vitest testing, and Vite 5 support
  • 🧪 2-4x faster Storybooks for testing
  • ✨ Refreshed desktop UI
  • 📲 Rebuilt mobile UX
  • 🙅‍♀️ No more React requirement in non-React projects

Please checkout our Migration Guide to upgrade from earlier versions of Storybook. To see a comprehensive list of changes that went into 8.0, you can refer to the 8.0 prerelease changelogs.

v8.0.0-rc.5

8.0.0-rc.5

  • CLI: Automigration fix version detection of upgrading related packages - #26410, thanks @​ndelangen!

v8.0.0-rc.4

8.0.0-rc.4

v8.0.0-rc.3

8.0.0-rc.3

... (truncated)

Changelog

Sourced from @​storybook/vue3-webpack5's changelog.

8.0.0

Storybook 8.0 is here

It brings major improvements to Storybook's feature set for testing and documentation, with strengthened framework support across React, Vue, Angular, web-components, Svelte, and more.

  • 🩻 Built-in visual testing
  • ⚛️ React Server Component support
  • 🎛️ Improved controls for React and Vue projects
  • ⚡️ Improved Vite architecture, Vitest testing, and Vite 5 support
  • 🧪 2-4x faster Storybooks for testing
  • ✨ Refreshed desktop UI
  • 📲 Rebuilt mobile UX
  • 🙅‍♀️ No more React requirement in non-React projects

Please checkout our Migration Guide to upgrade from earlier versions of Storybook. To see a comprehensive list of changes that went into 8.0, you can refer to the 8.0 prerelease changelogs.

7.6.17

  • Addon-docs: Fix...

    Description has been truncated

Bumps the npm-deps group with 25 updates:

| Package | From | To |
| --- | --- | --- |
| [@types/gtag.js](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/gtag.js) | `0.0.18` | `0.0.19` |
| [rollbar](https://github.com/rollbar/rollbar.js) | `2.26.2` | `2.26.3` |
| [vue](https://github.com/vuejs/core) | `3.4.15` | `3.4.21` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.41.1` | `1.42.1` |
| [@primer/css](https://github.com/primer/css) | `21.1.1` | `21.2.1` |
| [@storybook/addon-essentials](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/essentials) | `7.6.10` | `8.0.0` |
| [@storybook/cli](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/cli) | `7.6.10` | `8.0.0` |
| [@storybook/vue3](https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/vue3) | `7.6.10` | `8.0.0` |
| [@storybook/vue3-webpack5](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/vue3-webpack5) | `7.6.10` | `8.0.0` |
| [@types/css-font-loading-module](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/css-font-loading-module) | `0.0.12` | `0.0.13` |
| [@types/google.analytics](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/google.analytics) | `0.0.45` | `0.0.46` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `6.19.1` | `7.2.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `6.19.1` | `7.2.0` |
| [chromatic](https://github.com/chromaui/chromatic-cli) | `10.6.0` | `11.0.8` |
| [css-loader](https://github.com/webpack-contrib/css-loader) | `6.9.1` | `6.10.0` |
| [eslint](https://github.com/eslint/eslint) | `8.56.0` | `8.57.0` |
| [eslint-plugin-storybook](https://github.com/storybookjs/eslint-plugin-storybook) | `0.6.15` | `0.8.0` |
| [eslint-plugin-vue](https://github.com/vuejs/eslint-plugin-vue) | `9.20.1` | `9.23.0` |
| [postcss](https://github.com/postcss/postcss) | `8.4.33` | `8.4.36` |
| [prettier](https://github.com/prettier/prettier) | `3.2.4` | `3.2.5` |
| [storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/cli) | `7.6.10` | `8.0.0` |
| [stylelint](https://github.com/stylelint/stylelint) | `16.2.0` | `16.2.1` |
| [typescript](https://github.com/Microsoft/TypeScript) | `5.3.3` | `5.4.2` |
| [webpack](https://github.com/webpack/webpack) | `5.90.0` | `5.90.3` |
| [webpack-dev-server](https://github.com/webpack/webpack-dev-server) | `4.15.1` | `5.0.3` |


Updates `@types/gtag.js` from 0.0.18 to 0.0.19
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/gtag.js)

Updates `rollbar` from 2.26.2 to 2.26.3
- [Release notes](https://github.com/rollbar/rollbar.js/releases)
- [Changelog](https://github.com/rollbar/rollbar.js/blob/master/CHANGELOG.md)
- [Commits](rollbar/rollbar.js@v2.26.2...v2.26.3)

Updates `vue` from 3.4.15 to 3.4.21
- [Release notes](https://github.com/vuejs/core/releases)
- [Changelog](https://github.com/vuejs/core/blob/main/CHANGELOG.md)
- [Commits](vuejs/core@v3.4.15...v3.4.21)

Updates `@playwright/test` from 1.41.1 to 1.42.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.41.1...v1.42.1)

Updates `@primer/css` from 21.1.1 to 21.2.1
- [Release notes](https://github.com/primer/css/releases)
- [Changelog](https://github.com/primer/css/blob/main/CHANGELOG.md)
- [Commits](primer/css@v21.1.1...v21.2.1)

Updates `@storybook/addon-essentials` from 7.6.10 to 8.0.0
- [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.0.0/code/addons/essentials)

Updates `@storybook/cli` from 7.6.10 to 8.0.0
- [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.0.0/code/lib/cli)

Updates `@storybook/vue3` from 7.6.10 to 8.0.0
- [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.0.0/code/renderers/vue3)

Updates `@storybook/vue3-webpack5` from 7.6.10 to 8.0.0
- [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.0.0/code/frameworks/vue3-webpack5)

Updates `@types/css-font-loading-module` from 0.0.12 to 0.0.13
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/css-font-loading-module)

Updates `@types/google.analytics` from 0.0.45 to 0.0.46
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/google.analytics)

Updates `@typescript-eslint/eslint-plugin` from 6.19.1 to 7.2.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/v7.2.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 6.19.1 to 7.2.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v7.2.0/packages/parser)

Updates `chromatic` from 10.6.0 to 11.0.8
- [Release notes](https://github.com/chromaui/chromatic-cli/releases)
- [Changelog](https://github.com/chromaui/chromatic-cli/blob/main/CHANGELOG.md)
- [Commits](chromaui/chromatic-cli@v10.6.0...v11.0.8)

Updates `css-loader` from 6.9.1 to 6.10.0
- [Release notes](https://github.com/webpack-contrib/css-loader/releases)
- [Changelog](https://github.com/webpack-contrib/css-loader/blob/master/CHANGELOG.md)
- [Commits](webpack-contrib/css-loader@v6.9.1...v6.10.0)

Updates `eslint` from 8.56.0 to 8.57.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v8.56.0...v8.57.0)

Updates `eslint-plugin-storybook` from 0.6.15 to 0.8.0
- [Release notes](https://github.com/storybookjs/eslint-plugin-storybook/releases)
- [Changelog](https://github.com/storybookjs/eslint-plugin-storybook/blob/main/CHANGELOG.md)
- [Commits](storybookjs/eslint-plugin-storybook@v0.6.15...v0.8.0)

Updates `eslint-plugin-vue` from 9.20.1 to 9.23.0
- [Release notes](https://github.com/vuejs/eslint-plugin-vue/releases)
- [Commits](vuejs/eslint-plugin-vue@v9.20.1...v9.23.0)

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

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

Updates `storybook` from 7.6.10 to 8.0.0
- [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.0.0/code/lib/cli)

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

Updates `typescript` from 5.3.3 to 5.4.2
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.3.3...v5.4.2)

Updates `webpack` from 5.90.0 to 5.90.3
- [Release notes](https://github.com/webpack/webpack/releases)
- [Commits](webpack/webpack@v5.90.0...v5.90.3)

Updates `webpack-dev-server` from 4.15.1 to 5.0.3
- [Release notes](https://github.com/webpack/webpack-dev-server/releases)
- [Changelog](https://github.com/webpack/webpack-dev-server/blob/master/CHANGELOG.md)
- [Commits](webpack/webpack-dev-server@v4.15.1...v5.0.3)

---
updated-dependencies:
- dependency-name: "@types/gtag.js"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-deps
- dependency-name: rollbar
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-deps
- dependency-name: vue
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-deps
- dependency-name: "@playwright/test"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-deps
- dependency-name: "@primer/css"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-deps
- dependency-name: "@storybook/addon-essentials"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-deps
- dependency-name: "@storybook/cli"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-deps
- dependency-name: "@storybook/vue3"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-deps
- dependency-name: "@storybook/vue3-webpack5"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-deps
- dependency-name: "@types/css-font-loading-module"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-deps
- dependency-name: "@types/google.analytics"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-deps
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-deps
- dependency-name: "@typescript-eslint/parser"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-deps
- dependency-name: chromatic
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-deps
- dependency-name: css-loader
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-deps
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-deps
- dependency-name: eslint-plugin-storybook
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-deps
- dependency-name: eslint-plugin-vue
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-deps
- dependency-name: postcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-deps
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-deps
- dependency-name: storybook
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-deps
- dependency-name: stylelint
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-deps
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-deps
- dependency-name: webpack
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-deps
- dependency-name: webpack-dev-server
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-deps
...

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 Mar 18, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Mar 19, 2024

Superseded by #139.

@dependabot dependabot bot closed this Mar 19, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/npm-deps-0214f25b0a branch March 19, 2024 06:38
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