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 #62

Closed

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the dev-dependencies group with 36 updates:

Package From To
@antfu/eslint-config 0.39.8 2.15.0
@ffflorian/jszip-cli 3.4.1 3.6.2
@iconify/json 2.2.96 2.2.203
@playwright/test 1.36.2 1.43.1
@types/node 20.4.5 20.12.7
@typescript-eslint/eslint-plugin 6.2.1 7.7.1
@unocss/reset 0.54.1 0.59.4
@vitejs/plugin-vue 4.2.3 5.0.4
@vue/compiler-sfc 3.3.4 3.4.24
@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.3
eslint 8.46.0 9.1.1
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.38.3
rimraf 5.0.1 5.0.5
simple-git-hooks 2.9.0 2.11.1
typescript 5.1.6 5.4.5
unocss 0.54.1 0.59.4
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.10
vitest 0.33.0 1.5.0
vue 3.3.4 3.4.24
vue-demi 0.14.5 0.14.7
web-ext 7.6.2 7.11.0
webextension-polyfill 0.10.0 0.11.0

Updates @antfu/eslint-config from 0.39.8 to 2.15.0

Release notes

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

v2.15.0

   🚨 Breaking Changes

    View changes on GitHub

v2.14.0

   🚀 Features

    View changes on GitHub

v2.13.4

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v2.13.3

   🐞 Bug Fixes

    View changes on GitHub

v2.13.2

   🐞 Bug Fixes

    View changes on GitHub

v2.13.1

   🚀 Features

    View changes on GitHub

v2.13.0

   🚀 Features

... (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.203

Commits
  • 22774eb Update 11 icon sets
  • ab0be46 Update 5 icon sets
  • f71c2d8 Update 5 icon sets
  • cb10e3a Update 8 icon sets
  • 897ecaf Update 4 icon sets: Ant Design Icons, FormKit Icons, Token Icons Branded, Tok...
  • 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
  • Additional commits viewable in compare view

Updates @playwright/test from 1.36.2 to 1.43.1

Release notes

Sourced from @​playwright/test's releases.

v1.43.1

Highlights

microsoft/playwright#30300 - [REGRESSION]: UI mode restarts if keep storage state microsoft/playwright#30339 - [REGRESSION]: Brand new install of playwright, unable to run chromium with show browser using vscode

Browser Versions

  • Chromium 124.0.6367.29
  • Mozilla Firefox 124.0
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 123
  • Microsoft Edge 123

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.

... (truncated)

Commits
  • a051ceb chore: mark 1.43.1 (#30354)
  • 3ab466e cherry-pick(#30312): fix(ui-mode): do not loose run information after writing...
  • 35468cf cherry-pick(#30342): Revert "fix(reuse): reset Origin Private File System API...
  • 5332639 cherry-pick(#30263): docs: add v1.43 release notes for language ports
  • c729a7b cherry-pick(#30232): docs: fix C# and python snippets
  • 7748e21 cherry-pick(#30210): docs: update context.backgroundPage event examples
  • acb6ff1 cherry-pick(#30200): docs(java,csharp): add BrowserContext.backgroundPage(s)
  • 7c7f8ac cherry-pick(#30227): chore(deps): bump vite from 5.0.12 to 5.0.13 (#30254)
  • 62d4dc9 cherry-pick(#30235): feat(chromium): roll to r1112
  • 79d4776 cherry-pick(#30226): chore: migrate to the testserver.initialize
  • Additional commits viewable in compare view
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.7

Commits

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

Release notes

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

v7.7.1

7.7.1 (2024-04-22)

🩹 Fixes

  • eslint-plugin: [no-unsafe-assignment] handle shorthand property assignment (#8800)
  • eslint-plugin: [explicit-function-return-type] fix checking wrong ancestor's return type (#8809)
  • eslint-plugin: [prefer-optional-chain] only look at left operand for requireNullish (#8559)
  • eslint-plugin: [no-for-in-array] refine report location (#8874)
  • eslint-plugin: [no-unnecessary-type-assertion] allow non-null assertion for void type (#8912)

❤️ Thank You

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

v7.7.0

7.7.0 (2024-04-15)

🚀 Features

  • eslint-plugin: replace no-new-symbol with no-new-native-nonconstructor (#8895)
  • typescript-estree: add defaultProject for project service (#8815)

❤️ Thank You

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

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)

... (truncated)

Changelog

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

7.7.1 (2024-04-22)

🩹 Fixes

  • eslint-plugin: [no-unsafe-assignment] handle shorthand property assignment

  • eslint-plugin: [explicit-function-return-type] fix checking wrong ancestor's return type

  • eslint-plugin: [prefer-optional-chain] only look at left operand for requireNullish

  • eslint-plugin: [no-for-in-array] refine report location

  • eslint-plugin: [no-unnecessary-type-assertion] allow non-null assertion for void type

❤️ Thank You

  • Abraham Guo
  • Kirk Waiblinger
  • YeonJuan

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

7.7.0 (2024-04-15)

🚀 Features

  • eslint-plugin: replace no-new-symbol with no-new-native-nonconstructor

❤️ Thank You

  • Dave
  • Josh Goldberg ✨

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

7.6.0 (2024-04-08)

🚀 Features

  • bump npm dependency ranges

❤️ Thank You

  • Abraham Guo

... (truncated)

Commits
  • 3e19436 chore(release): publish 7.7.1
  • b2552ca fix(eslint-plugin): [no-unnecessary-type-assertion] allow non-null assertion ...
  • fdeba42 fix(eslint-plugin): [no-for-in-array] refine report location (#8874)
  • eef257b fix(eslint-plugin): [prefer-optional-chain] only look at left operand for `re...
  • 9e0d9f5 fix(eslint-plugin): [explicit-function-return-type] fix checking wrong ancest...
  • d07eb9e fix(eslint-plugin): [no-unsafe-assignment] handle shorthand property assignme...
  • e44a1a2 chore(release): publish 7.7.0
  • fda5704 feat(eslint-plugin): replace no-new-symbol with `no-new-native-nonconstruct...
  • e1db872 chore(release): publish 7.6.0
  • a6ab2cb feat: bump npm dependency ranges (#8860)
  • Additional commits viewable in compare view

Updates @unocss/reset from 0.54.1 to 0.59.4

Release notes

Sourced from @​unocss/reset's releases.

v0.59.4

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v0.59.3

   🐞 Bug Fixes

    View changes on GitHub

v0.59.2

   🐞 Bug Fixes

    View changes on GitHub

v0.59.1

   🐞 Bug Fixes

    View changes on GitHub

... (truncated)

Commits
Maintainer changes

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


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.24

Release notes

Sourced from @​vue/compiler-sfc's releases.

v3.4.24

Please refer to CHANGELOG.md for details.

v3.4.23

Please refer to CHANGELOG.md for details.

v3.4.22

Please refer to CHANGELOG.md for details.

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.

... (truncated)

Changelog

Sourced from @​vue/compiler-sfc's changelog.

3.4.24 (2024-04-22)

Bug Fixes

  • compiler-core: handle template ref bound via v-bind object on v-for (#10706) (da7adef), closes #10696
  • compiler-core: properly parse await expressions in edge cases (b92c25f), closes #10754
  • compiler-sfc: handle readonly operator and ReadonlyArray/Map/Set types (5cef52a), closes #10726
  • compiler-ssr: fix hydration mismatch for conditional slot in transition (f12c81e), closes #10743
  • compiler-ssr: fix v-html SSR for nullish values (1ff4076), closes #10725
  • deps: update compiler (#10760) (15df5c1)
  • runtime-core: fix edge case of KeepAlive inside Transition with slot children (#10719) (e51ca61), closes #10708
  • runtime-core: further fix slots _ctx check (cde7f05), closes #10724
  • runtime-core: props should be readonly via direct template access (b93f264), closes #8216 #10736
  • transition: transition is breaking/flickering when enter is canceled (#10688) (65109a7)

3.4.23 (2024-04-16)

Bug Fixes

  • runtime-core: fix regression for $attrs tracking in slots (6930e60), closes #10710
  • runtime-core: use same internal object mechanism for slots (6df53d8), closes #10709

3.4.22 (2024-04-15)

Bug Fixes

  • compat: fix $options mutation + adjust private API initialization (d58d133), closes #10626 #10636
  • compile-sfc: analyze v-bind shorthand usage in template (#10518) (e5919d4), closes #10515
  • compiler-core: fix loc.source for end tags with whitespace before > (16174da), closes #10694 #10695
  • compiler-core: fix v-bind shorthand for component :is (04af950), closes #10469 #10471
  • compiler-sfc: :is() and :where() in compound selectors (#10522) (660cadc), closes #10511
  • compiler-sfc: also search for .tsx when type import's extension is omitted (#10637) (34106bc), closes #10635
  • compiler-sfc: fix defineModel coercion for boolean + string union types (#9603) (0cef65c), closes #9587 #10676
  • compiler-sfc: fix universal selector scope (#10551) (54a6afa), closes #10548
  • compiler-sfc: use options module name if options provide runtimeModuleName options (#10457) (e76d743), closes #10454
  • custom-element: avoid setting attr to null if it is removed (#9012) (b49306a), closes #9006 #10324
  • hydration: properly handle optimized mode during hydrate node (#10638) (2ec06fd), closes #10607
  • reactivity: computed should not be detected as true by isProxy (#10401) (9da34d7)
  • reactivity: fix hasOwnProperty key coercion edge cases (969c5fb)
  • reactivity: fix tracking when hasOwnProperty is called with non-string value (c3c5dc9), closes #10455 #10464
  • runtime-core: fix errorHandler causes an infinite loop during execution (#9575) (ab59bed)
  • runtime-core: handle invalid values in callWithAsyncErrorHandling (53d15d3)
  • runtime-core: show hydration mismatch details for non-rectified mismatches too when PROD_HYDRATION_MISMATCH_DETAILS is set (#10599) (0dea7f9)

... (truncated)

Commits
  • 958286e release: v3.4.24
  • 5cef52a fix(compiler-sfc): handle readonly operator and ReadonlyArray/Map/Set types
  • 15df5c1 fix(deps): update compiler (#10760)
  • b0d0095 chore(deps): update all non-major dependencies (#10758)
  • 46c2b63 release: v3.4.23
  • b4b856b release: v3.4.22
  • 0cef65c fix(compiler-sfc): fix defineModel coercion for boolean + string union types ...
  • 54a6afa fix(compiler-sfc): fix universal selector scope (#10551)
  • e5919d4 fix(compile-sfc): analyze v-bind shorthand usage in template (#10518)
  • 2ae908d chore(types): perform strict es2016 lib check when building dts
  • Additional commits viewable in compare view

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

Bumps the dev-dependencies group with 36 updates:

| Package | From | To |
| --- | --- | --- |
| [@antfu/eslint-config](https://github.com/antfu/eslint-config) | `0.39.8` | `2.15.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.203` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.36.2` | `1.43.1` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.4.5` | `20.12.7` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `6.2.1` | `7.7.1` |
| [@unocss/reset](https://github.com/unocss/unocss) | `0.54.1` | `0.59.4` |
| [@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.24` |
| [@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.3` |
| [eslint](https://github.com/eslint/eslint) | `8.46.0` | `9.1.1` |
| [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.38.3` |
| [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.5` |
| [unocss](https://github.com/unocss/unocss) | `0.54.1` | `0.59.4` |
| [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.10` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `0.33.0` | `1.5.0` |
| [vue](https://github.com/vuejs/core) | `3.3.4` | `3.4.24` |
| [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` |
| [webextension-polyfill](https://github.com/mozilla/webextension-polyfill) | `0.10.0` | `0.11.0` |


Updates `@antfu/eslint-config` from 0.39.8 to 2.15.0
- [Release notes](https://github.com/antfu/eslint-config/releases)
- [Commits](antfu/eslint-config@v0.39.8...v2.15.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.203
- [Commits](iconify/icon-sets@2.2.96...2.2.203)

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

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

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

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

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.24
- [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.24/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.3
- [Release notes](https://github.com/Rettend/eemoji/releases)
- [Commits](Rettend/eemoji@v1.0.3...v2.0.3)

Updates `eslint` from 8.46.0 to 9.1.1
- [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.1.1)

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.38.3
- [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.38.3)

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.5
- [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.5)

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

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.10
- [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.10/packages/vite)

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

Updates `vue` from 3.3.4 to 3.4.24
- [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.24)

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)

Updates `webextension-polyfill` from 0.10.0 to 0.11.0
- [Release notes](https://github.com/mozilla/webextension-polyfill/releases)
- [Commits](mozilla/webextension-polyfill@0.10.0...0.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: "@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
- dependency-name: webextension-polyfill
  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 22, 2024 20:48
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Apr 22, 2024
@github-actions github-actions bot enabled auto-merge April 22, 2024 20:49
Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 29, 2024

Superseded by #63.

@dependabot dependabot bot closed this Apr 29, 2024
auto-merge was automatically disabled April 29, 2024 20:29

Pull request was closed

@dependabot dependabot bot deleted the dependabot/npm_and_yarn/dev-dependencies-72d92d12ae branch April 29, 2024 20:29
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