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

build(deps-dev): bump the dev-dependencies group with 36 updates #60

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 8, 2024

Bumps the dev-dependencies group with 36 updates:

Package From To
@antfu/eslint-config 0.39.8 2.13.0
@ffflorian/jszip-cli 3.4.1 3.6.2
@iconify/json 2.2.96 2.2.198
@playwright/test 1.36.2 1.43.0
@types/node 20.4.5 20.12.5
@types/webextension-polyfill 0.10.1 0.10.7
@typescript-eslint/eslint-plugin 6.2.1 7.6.0
@unocss/reset 0.54.1 0.59.0
@vitejs/plugin-vue 4.2.3 5.0.4
@vue/compiler-sfc 3.3.4 3.4.21
@vue/test-utils 2.4.1 2.4.5
@vueform/multiselect 2.6.2 2.6.7
@vueuse/core 10.3.0 10.9.0
bumpp 9.1.1 9.4.0
chokidar 3.5.3 3.6.0
eemoji 1.0.3 2.0.2
eslint 8.46.0 9.0.0
esno 0.17.0 4.7.0
fs-extra 11.1.1 11.2.0
@types/fs-extra 11.0.1 11.0.4
htmlparser2 9.0.0 9.1.0
jsdom 22.1.0 24.0.0
lint-staged 13.2.3 15.2.2
openai 4.28.0 4.33.0
rimraf 5.0.1 5.0.5
simple-git-hooks 2.9.0 2.11.1
typescript 5.1.6 5.4.4
unocss 0.54.1 0.59.0
unplugin-auto-import 0.16.6 0.17.5
unplugin-icons 0.16.5 0.18.5
unplugin-vue-components 0.25.1 0.26.0
vite 4.4.7 5.2.8
vitest 0.33.0 1.4.0
vue 3.3.4 3.4.21
vue-demi 0.14.5 0.14.7
web-ext 7.6.2 7.11.0

Updates @antfu/eslint-config from 0.39.8 to 2.13.0

Release notes

Sourced from @​antfu/eslint-config's releases.

v2.13.0

   🚀 Features

    View changes on GitHub

v2.12.2

   🚀 Features

    View changes on GitHub

v2.12.1

   🐞 Bug Fixes

    View changes on GitHub

v2.12.0

   🚀 Features

    View changes on GitHub

v2.11.6

   🚀 Features

    View changes on GitHub

v2.11.5

   🐞 Bug Fixes

    View changes on GitHub

v2.11.4

   🐞 Bug Fixes

    View changes on GitHub

... (truncated)

Commits

Updates @ffflorian/jszip-cli from 3.4.1 to 3.6.2

Commits
  • c73786d chore: Publish [ci skip]
  • bf124da fix(mastodon-bot-yearprogress): Toot on new year's morning
  • 160a1f9 chore: Publish [ci skip]
  • c975b51 fix(my-timezone): Add axios as prod dependency
  • c98f968 chore: Publish [ci skip]
  • 98ff218 feat(ntfy): Add default config including authorization (#374)
  • bcbf5a8 chore(deps): Update semver to 5.7.2
  • eb1cb3a chore(deps): Update megalodon to 9.1.2
  • f763737 chore: Publish [ci skip]
  • f0a7bdc chore: Lefthook command wording
  • Additional commits viewable in compare view

Updates @iconify/json from 2.2.96 to 2.2.198

Commits
  • e0d50e4 Update 16 icon sets
  • ffea5a0 Update 21 icon sets
  • 8839984 Update 7 icon sets
  • 09360d7 Update 10 icon sets
  • a746dcf Update 3 icon sets: Lucide, Octicons, UnJS Logos
  • 416c131 Update 4 icon sets: Arcticons, Lucide, Simple Icons, Tabler Icons
  • 7fa19e8 Update 10 icon sets
  • 0481002 Update 7 icon sets
  • 60fa4c7 Update 4 icon sets: Flag Icons, Fluent UI System Icons, Lucide, Gitlab SVGs
  • 72c6fe2 Update 8 icon sets
  • Additional commits viewable in compare view

Updates @playwright/test from 1.36.2 to 1.43.0

Release notes

Sourced from @​playwright/test's releases.

v1.43.0

New APIs

  • Method browserContext.clearCookies() now supports filters to remove only some cookies.

    // Clear all cookies.
    await context.clearCookies();
    // New: clear cookies with a particular name.
    await context.clearCookies({ name: 'session-id' });
    // New: clear cookies for a particular domain.
    await context.clearCookies({ domain: 'my-origin.com' });
  • New mode retain-on-first-failure for testOptions.trace. In this mode, trace is recorded for the first run of each test, but not for retires. When test run fails, the trace file is retained, otherwise it is removed.

    import { defineConfig } from '@playwright/test';
    export default defineConfig({
    use: {
    trace: 'retain-on-first-failure',
    },
    });

  • New property testInfo.tags exposes test tags during test execution.

    test('example', async ({ page }) => {
      console.log(test.info().tags);
    });
  • New method locator.contentFrame() converts a Locator object to a FrameLocator. This can be useful when you have a Locator object obtained somewhere, and later on would like to interact with the content inside the frame.

    const locator = page.locator('iframe[name="embedded"]');
    // ...
    const frameLocator = locator.contentFrame();
    await frameLocator.getByRole('button').click();
  • New method frameLocator.owner() converts a FrameLocator object to a Locator. This can be useful when you have a FrameLocator object obtained somewhere, and later on would like to interact with the iframe element.

    const frameLocator = page.frameLocator('iframe[name="embedded"]');
    // ...
    const locator = frameLocator.owner();
    await expect(locator).toBeVisible();

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by yurys, a new releaser for @​playwright/test since your current version.


Updates @types/node from 20.4.5 to 20.12.5

Commits

Updates @types/webextension-polyfill from 0.10.1 to 0.10.7

Commits

Updates @typescript-eslint/eslint-plugin from 6.2.1 to 7.6.0

Release notes

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

v7.6.0

7.6.0 (2024-04-08)

🚀 Features

  • add name field to shared configs and flat config types (#8863)
  • bump npm dependency ranges (#8860)
  • utils: add types for both flat and legacy eslint classes (#8861)

🩹 Fixes

  • typescript-eslint: fix type errors when using exactOptionalPropertyTypes (#8786)

❤️ Thank You

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

v7.5.0

7.5.0 (2024-04-01)

🩹 Fixes

  • eslint-plugin: [no-floating-promises] handle TaggedTemplateExpression (#8758)
  • eslint-plugin: [no-unnecessary-type-assertion] handle exactOptionalPropertyTypes compiler option (#8770)
  • parser: disallow errorOnTypeScriptSyntacticAndSemanticIssues (#8784)
  • typescript-eslint: improve support for legacy configs (#8812)

❤️ Thank You

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

v7.4.0

7.4.0 (2024-03-25)

🚀 Features

... (truncated)

Changelog

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

7.6.0 (2024-04-08)

🚀 Features

  • bump npm dependency ranges

❤️ Thank You

  • Abraham Guo
  • auvred
  • Brad Zacher

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

7.5.0 (2024-04-01)

🩹 Fixes

  • eslint-plugin: [no-floating-promises] handle TaggedTemplateExpression

  • eslint-plugin: [no-unnecessary-type-assertion] handle exactOptionalPropertyTypes compiler option

❤️ Thank You

  • Brad Zacher
  • Kim Sang Du
  • Mark de Dios
  • Naru
  • YeonJuan

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

7.4.0 (2024-03-25)

🚀 Features

  • eslint-plugin: [consistent-type-imports] ignore files with decorators, experimentalDecorators, and emitDecoratorMetadata

  • eslint-plugin: [no-unnecessary-type-arguments] handle tagged templates

  • eslint-plugin: deprecate no-throw-literal and add a renamed only-throw-error

🩹 Fixes

... (truncated)

Commits
  • e1db872 chore(release): publish 7.6.0
  • a6ab2cb feat: bump npm dependency ranges (#8860)
  • 4bac40c docs: fix incorrect tab item values in prefer-optional-chain (#8867)
  • a7bdd1c test(eslint-plugin): render snapshots of ESLint output for each code example ...
  • 41d893f docs(eslint-plugin): [consistent-return] add warning section use noImplicitRe...
  • d063275 docs: feature-freeze member-ordering, naming-convention, sort-type-constituen...
  • a14ba9d chore(release): publish 7.5.0
  • ecb6b55 docs: add homepage (#8742)
  • f0b1c4f fix(eslint-plugin): [no-unnecessary-type-assertion] handle exactOptionalPrope...
  • 5707268 fix(eslint-plugin): [no-floating-promises] handle TaggedTemplateExpression (#...
  • Additional commits viewable in compare view

Updates @unocss/reset from 0.54.1 to 0.59.0

Release notes

Sourced from @​unocss/reset's releases.

v0.59.0

   🚨 Breaking Changes

   🐞 Bug Fixes

    View changes on GitHub

v0.59.0-beta.1

   🚨 Breaking Changes

    View changes on GitHub

v0.58.9

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v0.58.8

   🐞 Bug Fixes

    View changes on GitHub

v0.58.7

   🚀 Features

... (truncated)

Commits
  • ea4fc4e chore: release v0.59.0
  • db51707 chore: lint
  • c2a2c0b chore: update deps
  • 4dfc319 fix(autocomplete): disable autocomplete for attributify props when not using ...
  • c37ce86 doc: add @​yeungkc/unocss-preset-safe-area to community presets (#3645)
  • 4e11d62 fix(nuxt): Custom option priority in cssnano (#3679)
  • a03c25c fix(webpack): correctly output CSS string (#3686)
  • b8c3a34 test: typo (#3688)
  • 623c21c fix(vscode): The information displayed by hover and autocomplete is inconsist...
  • ae44ad2 fix(scope): fix export types & main entry (#3676)
  • Additional commits viewable in compare view

Updates @vitejs/plugin-vue from 4.2.3 to 5.0.4

Release notes

Sourced from @​vitejs/plugin-vue's releases.

plugin-vue@5.0.4

Please refer to CHANGELOG.md for details.

plugin-vue@5.0.3

Please refer to CHANGELOG.md for details.

plugin-vue@5.0.2

Please refer to CHANGELOG.md for details.

plugin-vue@5.0.1

Please refer to CHANGELOG.md for details.

plugin-vue@5.0.0

Please refer to CHANGELOG.md for details.

plugin-vue@5.0.0-beta.1

Please refer to CHANGELOG.md for details.

plugin-vue@5.0.0-beta.0

Please refer to CHANGELOG.md for details.

plugin-vue@5.0.0-alpha.0

Please refer to CHANGELOG.md for details.

plugin-vue@4.6.2

Please refer to CHANGELOG.md for details.

plugin-vue@4.6.1

Please refer to CHANGELOG.md for details.

plugin-vue@4.6.0

Please refer to CHANGELOG.md for details.

plugin-vue@4.5.2

Please refer to CHANGELOG.md for details.

plugin-vue@4.5.1

Please refer to CHANGELOG.md for details.

plugin-vue@4.5.0

Please refer to CHANGELOG.md for details.

plugin-vue@4.4.1

Please refer to CHANGELOG.md for details.

plugin-vue@4.4.0

Please refer to CHANGELOG.md for details.

plugin-vue@4.3.4

Please refer to CHANGELOG.md for details.

... (truncated)

Changelog

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

5.0.4 (2024-02-09)

  • chore(deps-dev): bump vite from 5.0.10 to 5.0.12 (#354) (0294b9d), closes #354
  • chore(deps): update dependency prettier to v3.2.4 (#347) (e957179), closes #347
  • chore(deps): update dependency prettier to v3.2.5 (#352) (a9f5b11), closes #352
  • chore(deps): update upstream (#333) (573420d), closes #333
  • types: omit overridden options (0c7432b)
  • fix(deps): update all non-major dependencies (#332) (70e5df9), closes #332
  • fix(plugin-vue): allow disabling transformAssetUrls (#326) (0ff6fb7), closes #326

5.0.3 (2024-01-10)

  • fix(deps): update all non-major dependencies (#309) (8c694f6), closes #309
  • fix(plugin-vue): handle circular references in HMR check (#334) (eddcfa8), closes #334 #325
  • fix(plugin-vue): handle custom element when hot update (6ffee6d)
  • chore: fix typo (0a3b9a5)
  • chore(deps): update upstream (#310) (90eb484), closes #310

5.0.2 (2023-12-30)

  • fix: ensure consistent user template options when reusing AST (bc0ad64), closes #322
  • fix: only enable ast reuse for vue 3.4.3+ (4a53b6f)
  • chore: bump vue to 3.4.2 (97002e1)

5.0.1 (2023-12-29)

5.0.0 (2023-12-25)

  • Breaking: drop reactivityTransform support
  • Breaking: drop Node 14/16 support
  • Breaking: drop Vite 4.x support
  • Vue 3.4 template AST reuse support
  • Vue 3.4 compile-time flag __VUE_PROD_HYDRATION_MISMATCH_DETAILS__ support
  • Added customElement option
  • Deprecated defineModel option

5.0.0-beta.1 (2023-12-14)

  • chore: deprecate defineModel option (0d52a27)

... (truncated)

Commits
  • 1fe0d97 release: plugin-vue@5.0.4
  • 0294b9d chore(deps-dev): bump vite from 5.0.10 to 5.0.12 (#354)
  • 0c7432b types: omit overridden options
  • 0ff6fb7 fix(plugin-vue): allow disabling transformAssetUrls (#326)
  • a9f5b11 chore(deps): update dependency prettier to v3.2.5 (#352)
  • 70e5df9 fix(deps): update all non-major dependencies (#332)
  • e957179 chore(deps): update dependency prettier to v3.2.4 (#347)
  • 573420d chore(deps): update upstream (#333)
  • 1963dcf release: plugin-vue@5.0.3
  • eddcfa8 fix(plugin-vue): handle circular references in HMR check (#334)
  • Additional commits viewable in compare view

Updates @vue/compiler-sfc from 3.3.4 to 3.4.21

Release notes

Sourced from @​vue/compiler-sfc'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.

v3.4.15

Please refer to CHANGELOG.md for details.

v3.4.14

Please refer to CHANGELOG.md for details.

v3.4.13

Please refer to CHANGELOG.md for details.

v3.4.12

Please refer to CHANGELOG.md for details.

v3.4.11

Please refer to CHANGELOG.md for details.

v3.4.10

Please refer to CHANGELOG.md for details.

v3.4.9

Please refer to CHANGELOG.md for details.

v3.4.8

Please refer to CHANGELOG.md for details.

v3.4.7

Please refer to CHANGELOG.md for details.

v3.4.6

Please refer to CHANGELOG.md for details.

v3.4.5

Please refer to CHANGELOG.md for details.

... (truncated)

Changelog

Sourced from @​vue/compiler-sfc'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 @vue/test-utils from 2.4.1 to 2.4.5

Release notes

Sourced from @​vue/test-utils's releases.

v2.4.5

What's Changed

New Contributors

Full Changelog: vuejs/test-utils@v2.4.4...v2.4.5

v2.4.4

What's Changed

New Contributors

Full Changelog: vuejs/test-utils@v2.4.3...v2.4.4

v2.4.3

What's Changed

Full Changelog: vuejs/test-utils@v2.4.2...v2.4.3

v2.4.2

What's Changed

Note: A fix for the text() method...

Description has been truncated

Bumps the dev-dependencies group with 36 updates:

| Package | From | To |
| --- | --- | --- |
| [@antfu/eslint-config](https://github.com/antfu/eslint-config) | `0.39.8` | `2.13.0` |
| [@ffflorian/jszip-cli](https://github.com/ffflorian/node-packages) | `3.4.1` | `3.6.2` |
| [@iconify/json](https://github.com/iconify/icon-sets) | `2.2.96` | `2.2.198` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.36.2` | `1.43.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.4.5` | `20.12.5` |
| [@types/webextension-polyfill](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/webextension-polyfill) | `0.10.1` | `0.10.7` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `6.2.1` | `7.6.0` |
| [@unocss/reset](https://github.com/unocss/unocss) | `0.54.1` | `0.59.0` |
| [@vitejs/plugin-vue](https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue) | `4.2.3` | `5.0.4` |
| [@vue/compiler-sfc](https://github.com/vuejs/core/tree/HEAD/packages/compiler-sfc) | `3.3.4` | `3.4.21` |
| [@vue/test-utils](https://github.com/vuejs/test-utils) | `2.4.1` | `2.4.5` |
| [@vueform/multiselect](https://github.com/vueform/multiselect) | `2.6.2` | `2.6.7` |
| [@vueuse/core](https://github.com/vueuse/vueuse/tree/HEAD/packages/core) | `10.3.0` | `10.9.0` |
| [bumpp](https://github.com/antfu/bumpp) | `9.1.1` | `9.4.0` |
| [chokidar](https://github.com/paulmillr/chokidar) | `3.5.3` | `3.6.0` |
| [eemoji](https://github.com/Rettend/eemoji) | `1.0.3` | `2.0.2` |
| [eslint](https://github.com/eslint/eslint) | `8.46.0` | `9.0.0` |
| [esno](https://github.com/esbuild-kit/esno) | `0.17.0` | `4.7.0` |
| [fs-extra](https://github.com/jprichardson/node-fs-extra) | `11.1.1` | `11.2.0` |
| [@types/fs-extra](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/fs-extra) | `11.0.1` | `11.0.4` |
| [htmlparser2](https://github.com/fb55/htmlparser2) | `9.0.0` | `9.1.0` |
| [jsdom](https://github.com/jsdom/jsdom) | `22.1.0` | `24.0.0` |
| [lint-staged](https://github.com/okonet/lint-staged) | `13.2.3` | `15.2.2` |
| [openai](https://github.com/openai/openai-node) | `4.28.0` | `4.33.0` |
| [rimraf](https://github.com/isaacs/rimraf) | `5.0.1` | `5.0.5` |
| [simple-git-hooks](https://github.com/toplenboren/simple-git-hooks) | `2.9.0` | `2.11.1` |
| [typescript](https://github.com/Microsoft/TypeScript) | `5.1.6` | `5.4.4` |
| [unocss](https://github.com/unocss/unocss) | `0.54.1` | `0.59.0` |
| [unplugin-auto-import](https://github.com/unplugin/unplugin-auto-import) | `0.16.6` | `0.17.5` |
| [unplugin-icons](https://github.com/unplugin/unplugin-icons) | `0.16.5` | `0.18.5` |
| [unplugin-vue-components](https://github.com/unplugin/unplugin-vue-components) | `0.25.1` | `0.26.0` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `4.4.7` | `5.2.8` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `0.33.0` | `1.4.0` |
| [vue](https://github.com/vuejs/core) | `3.3.4` | `3.4.21` |
| [vue-demi](https://github.com/antfu/vue-demi) | `0.14.5` | `0.14.7` |
| [web-ext](https://github.com/mozilla/web-ext) | `7.6.2` | `7.11.0` |


Updates `@antfu/eslint-config` from 0.39.8 to 2.13.0
- [Release notes](https://github.com/antfu/eslint-config/releases)
- [Commits](antfu/eslint-config@v0.39.8...v2.13.0)

Updates `@ffflorian/jszip-cli` from 3.4.1 to 3.6.2
- [Commits](https://github.com/ffflorian/node-packages/compare/@ffflorian/jszip-cli@3.4.1...@ffflorian/jszip-cli@3.6.2)

Updates `@iconify/json` from 2.2.96 to 2.2.198
- [Commits](iconify/icon-sets@2.2.96...2.2.198)

Updates `@playwright/test` from 1.36.2 to 1.43.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.36.2...v1.43.0)

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

Updates `@types/webextension-polyfill` from 0.10.1 to 0.10.7
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/webextension-polyfill)

Updates `@typescript-eslint/eslint-plugin` from 6.2.1 to 7.6.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.6.0/packages/eslint-plugin)

Updates `@unocss/reset` from 0.54.1 to 0.59.0
- [Release notes](https://github.com/unocss/unocss/releases)
- [Commits](unocss/unocss@v0.54.1...v0.59.0)

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

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

Updates `@vue/test-utils` from 2.4.1 to 2.4.5
- [Release notes](https://github.com/vuejs/test-utils/releases)
- [Commits](vuejs/test-utils@v2.4.1...v2.4.5)

Updates `@vueform/multiselect` from 2.6.2 to 2.6.7
- [Release notes](https://github.com/vueform/multiselect/releases)
- [Changelog](https://github.com/vueform/multiselect/blob/main/CHANGELOG.md)
- [Commits](vueform/multiselect@2.6.2...2.6.7)

Updates `@vueuse/core` from 10.3.0 to 10.9.0
- [Release notes](https://github.com/vueuse/vueuse/releases)
- [Commits](https://github.com/vueuse/vueuse/commits/v10.9.0/packages/core)

Updates `bumpp` from 9.1.1 to 9.4.0
- [Release notes](https://github.com/antfu/bumpp/releases)
- [Commits](antfu-collective/bumpp@v9.1.1...v9.4.0)

Updates `chokidar` from 3.5.3 to 3.6.0
- [Release notes](https://github.com/paulmillr/chokidar/releases)
- [Commits](paulmillr/chokidar@3.5.3...3.6.0)

Updates `eemoji` from 1.0.3 to 2.0.2
- [Release notes](https://github.com/Rettend/eemoji/releases)
- [Commits](Rettend/eemoji@v1.0.3...v2.0.2)

Updates `eslint` from 8.46.0 to 9.0.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v8.46.0...v9.0.0)

Updates `esno` from 0.17.0 to 4.7.0
- [Commits](antfu/esno@v0.17.0...v4.7.0)

Updates `fs-extra` from 11.1.1 to 11.2.0
- [Changelog](https://github.com/jprichardson/node-fs-extra/blob/master/CHANGELOG.md)
- [Commits](jprichardson/node-fs-extra@11.1.1...11.2.0)

Updates `@types/fs-extra` from 11.0.1 to 11.0.4
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/fs-extra)

Updates `htmlparser2` from 9.0.0 to 9.1.0
- [Release notes](https://github.com/fb55/htmlparser2/releases)
- [Commits](fb55/htmlparser2@v9.0.0...v9.1.0)

Updates `jsdom` from 22.1.0 to 24.0.0
- [Release notes](https://github.com/jsdom/jsdom/releases)
- [Changelog](https://github.com/jsdom/jsdom/blob/main/Changelog.md)
- [Commits](jsdom/jsdom@22.1.0...24.0.0)

Updates `lint-staged` from 13.2.3 to 15.2.2
- [Release notes](https://github.com/okonet/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/master/CHANGELOG.md)
- [Commits](lint-staged/lint-staged@v13.2.3...v15.2.2)

Updates `openai` from 4.28.0 to 4.33.0
- [Release notes](https://github.com/openai/openai-node/releases)
- [Changelog](https://github.com/openai/openai-node/blob/master/CHANGELOG.md)
- [Commits](openai/openai-node@v4.28.0...v4.33.0)

Updates `rimraf` from 5.0.1 to 5.0.5
- [Changelog](https://github.com/isaacs/rimraf/blob/main/CHANGELOG.md)
- [Commits](isaacs/rimraf@v5.0.1...v5.0.5)

Updates `simple-git-hooks` from 2.9.0 to 2.11.1
- [Release notes](https://github.com/toplenboren/simple-git-hooks/releases)
- [Changelog](https://github.com/toplenboren/simple-git-hooks/blob/master/Changelog.md)
- [Commits](toplenboren/simple-git-hooks@2.9.0...2.11.1)

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

Updates `unocss` from 0.54.1 to 0.59.0
- [Release notes](https://github.com/unocss/unocss/releases)
- [Commits](unocss/unocss@v0.54.1...v0.59.0)

Updates `unplugin-auto-import` from 0.16.6 to 0.17.5
- [Release notes](https://github.com/unplugin/unplugin-auto-import/releases)
- [Commits](unplugin/unplugin-auto-import@v0.16.6...v0.17.5)

Updates `unplugin-icons` from 0.16.5 to 0.18.5
- [Release notes](https://github.com/unplugin/unplugin-icons/releases)
- [Commits](unplugin/unplugin-icons@v0.16.5...v0.18.5)

Updates `unplugin-vue-components` from 0.25.1 to 0.26.0
- [Release notes](https://github.com/unplugin/unplugin-vue-components/releases)
- [Commits](unplugin/unplugin-vue-components@v0.25.1...v0.26.0)

Updates `vite` from 4.4.7 to 5.2.8
- [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/v5.2.8/packages/vite)

Updates `vitest` from 0.33.0 to 1.4.0
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v1.4.0/packages/vitest)

Updates `vue` from 3.3.4 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.3.4...v3.4.21)

Updates `vue-demi` from 0.14.5 to 0.14.7
- [Release notes](https://github.com/antfu/vue-demi/releases)
- [Commits](vueuse/vue-demi@v0.14.5...v0.14.7)

Updates `web-ext` from 7.6.2 to 7.11.0
- [Release notes](https://github.com/mozilla/web-ext/releases)
- [Commits](mozilla/web-ext@7.6.2...7.11.0)

---
updated-dependencies:
- dependency-name: "@antfu/eslint-config"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: "@ffflorian/jszip-cli"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@iconify/json"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: "@playwright/test"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@types/webextension-polyfill"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: "@unocss/reset"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@vitejs/plugin-vue"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: "@vue/compiler-sfc"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@vue/test-utils"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: "@vueform/multiselect"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: "@vueuse/core"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: bumpp
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: chokidar
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: eemoji
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: esno
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: fs-extra
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@types/fs-extra"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: htmlparser2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: jsdom
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: lint-staged
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: openai
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: rimraf
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: simple-git-hooks
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: unocss
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: unplugin-auto-import
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: unplugin-icons
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: unplugin-vue-components
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: vite
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: vitest
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: vue
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: vue-demi
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: web-ext
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from Rettend as a code owner April 8, 2024 20:26
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Apr 8, 2024
@github-actions github-actions bot enabled auto-merge April 8, 2024 20:26
@Rettend Rettend disabled auto-merge April 14, 2024 15:08
Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 15, 2024

Superseded by #61.

@dependabot dependabot bot closed this Apr 15, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/dev-dependencies-5d52f78028 branch April 15, 2024 20:20
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants