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 minor group across 1 directory with 16 updates #941

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github May 14, 2024

Bumps the minor group with 15 updates in the / directory:

Package From To
@zip.js/zip.js 2.7.36 2.7.44
dexie-export-import 4.1.1 4.1.2
@playwright/test 1.42.0 1.44.0
@stylistic/stylelint-plugin 2.1.0 2.1.2
@types/chrome 0.0.262 0.0.268
@types/firefox-webext-browser 120.0.1 120.0.3
@typescript-eslint/eslint-plugin 7.0.0 7.9.0
ajv 8.12.0 8.13.0
esbuild 0.20.1 0.21.2
eslint-plugin-jsdoc 48.2.0 48.2.4
eslint-plugin-jsonc 2.13.0 2.15.1
eslint-plugin-unused-imports 3.1.0 3.2.0
eslint-plugin-vitest 0.3.22 0.5.4
html-validate 8.11.1 8.18.2
typescript 5.3.3 5.4.5

Updates @zip.js/zip.js from 2.7.36 to 2.7.44

Release notes

Sourced from @​zip.js/zip.js's releases.

v2.7.44

What's Changed

New Contributors

Full Changelog: gildas-lormeau/zip.js@v2.7.43...v2.7.44

v2.7.43

  • Fixed an issue with zip files incorrectly detected as using zip64 under particular circumstances (e.g. when they contain exactly 65536 entries) when trying to read them

v2.7.42

  • Added decodeText and encodeText options to handle text encoding of filenames and comments when reading and writing a zip file respectively (see #507).
  • Fixed issue where creating a zip file without Deflate implementation could lead to a corrupted zip file (see #508).

v2.7.41

Added combineSizeEocd option in HttpReader (see https://gildas-lormeau.github.io/zip.js/api/interfaces/HttpOptions.html)

What's Changed

Full Changelog: gildas-lormeau/zip.js@v2.7.40...v2.7.41

v2.7.40

Fix regression introduced in version v2.7.38 leading to some streams being not closes internally

v2.7.38

  • Fixed missing documentation
  • Fixed ignored exceptions when closing WritableStream instances used internally

v2.7.37

Fixed potential uncaught exception (see #493)

Commits

Updates dexie-export-import from 4.1.1 to 4.1.2

Commits

Updates @playwright/test from 1.42.0 to 1.44.0

Release notes

Sourced from @​playwright/test's releases.

v1.44.0

New APIs

Accessibility assertions

  • expect(locator).toHaveAccessibleName() checks if the element has the specified accessible name:

    const locator = page.getByRole('button');
    await expect(locator).toHaveAccessibleName('Submit');
  • expect(locator).toHaveAccessibleDescription() checks if the element has the specified accessible description:

    const locator = page.getByRole('button');
    await expect(locator).toHaveAccessibleDescription('Upload a photo');
  • expect(locator).toHaveRole() checks if the element has the specified ARIA role:

    const locator = page.getByTestId('save-button');
    await expect(locator).toHaveRole('button');

Locator handler

  • After executing the handler added with page.addLocatorHandler(), Playwright will now wait until the overlay that triggered the handler is not visible anymore. You can opt-out of this behavior with the new noWaitAfter option.
  • You can use new times option in page.addLocatorHandler() to specify maximum number of times the handler should be run.
  • The handler in page.addLocatorHandler() now accepts the locator as argument.
  • New page.removeLocatorHandler() method for removing previously added locator handlers.
const locator = page.getByText('This interstitial covers the button');
await page.addLocatorHandler(locator, async overlay => {
  await overlay.locator('#close').click();
}, { times: 3, noWaitAfter: true });
// Run your tests that can be interrupted by the overlay.
// ...
await page.removeLocatorHandler(locator);

Miscellaneous options

  • multipart option in apiRequestContext.fetch() now accepts FormData and supports repeating fields with the same name.

    const formData = new FormData();
    formData.append('file', new File(['let x = 2024;'], 'f1.js', { type: 'text/javascript' }));
    formData.append('file', new File(['hello'], 'f2.txt', { type: 'text/plain' }));
    context.request.post('https://example.com/uploadFiles', {
      multipart: formData

... (truncated)

Commits

Updates @stylistic/stylelint-plugin from 2.1.0 to 2.1.2

Release notes

Sourced from @​stylistic/stylelint-plugin's releases.

Release v2.1.1

Fixed

  • block-closing-brace-empty-line-before with except: ["after-closing-brace"] false negatives for CSS Nesting (#22) (@​firefoxic).
  • named-grid-areas-alignment for single-line input (#21) (@​MorevM).
Changelog

Sourced from @​stylistic/stylelint-plugin's changelog.

[2.1.2] — 2024–04–28

Fixed

[2.1.1] — 2024–03–31

Fixed

  • block-closing-brace-empty-line-before with except: ["after-closing-brace"] false negatives for CSS Nesting (#22) (@​firefoxic).
  • named-grid-areas-alignment for single-line input (#21) (@​MorevM).
Commits
  • c97681d 2.1.2
  • 82f8aa1 Update dependencies
  • 958a438 Bump eslint to 9.1.1
  • 4bdf3df Add version hook to update CHANGELOG.md automagicaly
  • 713eecf Edit license file
  • 3ae935e Fix autofixing of @charset name by string-quotes rule
  • 2e2f179 2.1.1
  • 691022b Prepare release
  • 06ebdf1 Add rule list link to README
  • c3edc3c Fix block-closing-brace-empty-line-before with `except: ["after-closing-bra...
  • Additional commits viewable in compare view

Updates @types/chrome from 0.0.262 to 0.0.268

Commits

Updates @types/firefox-webext-browser from 120.0.1 to 120.0.3

Commits

Updates @typescript-eslint/eslint-plugin from 7.0.0 to 7.9.0

Release notes

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

v7.9.0

7.9.0 (2024-05-13)

🚀 Features

  • rule-tester: check for missing placeholder data in the message (#9039)

🩹 Fixes

  • do not pass tsconfig canonical file name to typescript API to get program details for config file (#9042)
  • eslint-plugin: [explicit-function-return-types] fix false positive on default parameters (#9045)

❤️ Thank You

  • Kirk Waiblinger
  • Sheetal Nandi
  • Vinccool96

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

v7.8.0

7.8.0 (2024-04-29)

🚀 Features

  • rule-tester: assert suggestion messages are unique (#8995)
  • typescript-estree: add maximumDefaultProjectFileMatchCount and wide allowDefaultProjectForFiles glob restrictions (#8925)

🩹 Fixes

  • eslint-plugin: [no-unsafe-argument] handle tagged templates (#8746)
  • eslint-plugin: [prefer-optional-chain] suggests optional chaining during strict null equality check (#8717)
  • eslint-plugin: [consistent-type-assertions] handle tagged templates (#8993)
  • eslint-plugin: [no-unsafe-return] handle union types (#9001)
  • eslint-plugin: [no-unused-vars] clear error report range (#8640)
  • utils: export ESLint backwards-compat functions (#8976)

❤️ Thank You

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

v7.7.1

... (truncated)

Changelog

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

7.9.0 (2024-05-13)

🩹 Fixes

  • eslint-plugin: [explicit-function-return-types] fix false positive on default parameters

❤️ Thank You

  • Kirk Waiblinger
  • Sheetal Nandi
  • Vinccool96

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

7.8.0 (2024-04-29)

🩹 Fixes

  • eslint-plugin: [no-unsafe-argument] handle tagged templates

  • eslint-plugin: [prefer-optional-chain] suggests optional chaining during strict null equality check

  • eslint-plugin: [consistent-type-assertions] handle tagged templates

  • eslint-plugin: [no-unsafe-return] handle union types

  • eslint-plugin: [no-unused-vars] clear error report range

❤️ Thank You

  • auvred
  • Josh Goldberg ✨
  • jsfm01
  • Kim Sang Du
  • YeonJuan

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

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

... (truncated)

Commits
  • 77fc366 chore(release): publish 7.9.0
  • f53fece chore: add knip (#8192)
  • 8acb8d4 fix(eslint-plugin): [explicit-function-return-types] fix false positive on de...
  • d696ea2 docs(eslint-plugin): fix several 404 URLs (#9064)
  • 37a41d9 docs: fix broken link to import/no-duplicates on no-duplicate-imports pag...
  • ab92621 docs: correct its/it's spelling (#9048)
  • f248e68 docs: [no-floating-promises] remove ugly commas (#9034)
  • 6e1241b docs: fix no-unnecessary-boolean-literal-compare example (#8981)
  • ee677f6 chore(release): publish 7.8.0
  • 8127873 fix(eslint-plugin): [no-unused-vars] clear error report range (#8640)
  • Additional commits viewable in compare view

Updates ajv from 8.12.0 to 8.13.0

Release notes

Sourced from ajv's releases.

v8.13.0

  • add named exports
  • update dependencies
  • update node.js
Commits

Updates esbuild from 0.20.1 to 0.21.2

Release notes

Sourced from esbuild's releases.

v0.21.2

  • Correct this in field and accessor decorators (#3761)

    This release changes the value of this in initializers for class field and accessor decorators from the module-level this value to the appropriate this value for the decorated element (either the class or the instance). It was previously incorrect due to lack of test coverage. Here's an example of a decorator that doesn't work without this change:

    const dec = () => function() { this.bar = true }
    class Foo { @dec static foo }
    console.log(Foo.bar) // Should be "true"
  • Allow es2023 as a target environment (#3762)

    TypeScript recently added es2023 as a compilation target, so esbuild now supports this too. There is no difference between a target of es2022 and es2023 as far as esbuild is concerned since the 2023 edition of JavaScript doesn't introduce any new syntax features.

v0.21.1

  • Fix a regression with --keep-names (#3756)

    The previous release introduced a regression with the --keep-names setting and object literals with get/set accessor methods, in which case the generated code contained syntax errors. This release fixes the regression:

    // Original code
    x = { get y() {} }
    // Output from version 0.21.0 (with --keep-names)
    x = { get y: /* @PURE */ __name(function() {
    }, "y") };
    // Output from this version (with --keep-names)
    x = { get y() {
    } };

v0.21.0

This release doesn't contain any deliberately-breaking changes. However, it contains a very complex new feature and while all of esbuild's tests pass, I would not be surprised if an important edge case turns out to be broken. So I'm releasing this as a breaking change release to avoid causing any trouble. As usual, make sure to test your code when you upgrade.

  • Implement the JavaScript decorators proposal (#104)

    With this release, esbuild now contains an implementation of the upcoming JavaScript decorators proposal. This is the same feature that shipped in TypeScript 5.0 and has been highly-requested on esbuild's issue tracker. You can read more about them in that blog post and in this other (now slightly outdated) extensive blog post here: https://2ality.com/2022/10/javascript-decorators.html. Here's a quick example:

    const log = (fn, context) => function() {
      console.log(`before ${context.name}`)
      const it = fn.apply(this, arguments)
      console.log(`after ${context.name}`)
      return it
    }
    class Foo {
    @​log static foo() {

... (truncated)

Changelog

Sourced from esbuild's changelog.

0.21.2

  • Correct this in field and accessor decorators (#3761)

    This release changes the value of this in initializers for class field and accessor decorators from the module-level this value to the appropriate this value for the decorated element (either the class or the instance). It was previously incorrect due to lack of test coverage. Here's an example of a decorator that doesn't work without this change:

    const dec = () => function() { this.bar = true }
    class Foo { @dec static foo }
    console.log(Foo.bar) // Should be "true"
  • Allow es2023 as a target environment (#3762)

    TypeScript recently added es2023 as a compilation target, so esbuild now supports this too. There is no difference between a target of es2022 and es2023 as far as esbuild is concerned since the 2023 edition of JavaScript doesn't introduce any new syntax features.

0.21.1

  • Fix a regression with --keep-names (#3756)

    The previous release introduced a regression with the --keep-names setting and object literals with get/set accessor methods, in which case the generated code contained syntax errors. This release fixes the regression:

    // Original code
    x = { get y() {} }
    // Output from version 0.21.0 (with --keep-names)
    x = { get y: /* @PURE */ __name(function() {
    }, "y") };
    // Output from this version (with --keep-names)
    x = { get y() {
    } };

0.21.0

This release doesn't contain any deliberately-breaking changes. However, it contains a very complex new feature and while all of esbuild's tests pass, I would not be surprised if an important edge case turns out to be broken. So I'm releasing this as a breaking change release to avoid causing any trouble. As usual, make sure to test your code when you upgrade.

  • Implement the JavaScript decorators proposal (#104)

    With this release, esbuild now contains an implementation of the upcoming JavaScript decorators proposal. This is the same feature that shipped in TypeScript 5.0 and has been highly-requested on esbuild's issue tracker. You can read more about them in that blog post and in this other (now slightly outdated) extensive blog post here: https://2ality.com/2022/10/javascript-decorators.html. Here's a quick example:

    const log = (fn, context) => function() {
      console.log(`before ${context.name}`)
      const it = fn.apply(this, arguments)
      console.log(`after ${context.name}`)
      return it
    }

... (truncated)

Commits

Updates eslint-plugin-jsdoc from 48.2.0 to 48.2.4

Release notes

Sourced from eslint-plugin-jsdoc's releases.

v48.2.4

48.2.4 (2024-05-09)

Bug Fixes

  • valid-types: disable checking of types/names within import tags; fixes #1226 (4da4aeb)

v48.2.3

48.2.3 (2024-04-04)

Bug Fixes

  • valid-types: whitelist pratt parser keywords; fixes #1221 (ab5624b)

v48.2.2

48.2.2 (2024-03-28)

Bug Fixes

v48.2.1

48.2.1 (2024-03-07)

Bug Fixes

  • require-jsdoc: avoid erring on #-marked private methods; fixes #1212 (783b4e9)
Commits
  • 4da4aeb fix(valid-types): disable checking of types/names within import tags; fix...
  • e343ab5 chore: update jsdoccomment and devDeps.
  • ab5624b fix(valid-types): whitelist pratt parser keywords; fixes #1221
  • 9e9fed5 fix: add TS import tag; fixes #1218
  • 3e88f9a docs: mention excludedTags in informative-docs docs
  • 783b4e9 fix(require-jsdoc): avoid erring on #-marked private methods; fixes #1212
  • e948bee docs(check-param-names): update docs for disableMissingParamChecks
  • See full diff in compare view

Updates eslint-plugin-jsonc from 2.13.0 to 2.15.1

Release notes

Sourced from eslint-plugin-jsonc's releases.

v2.15.1

Patch Changes

v2.15.0

Minor Changes

v2.14.1

Patch Changes

v2.14.0

Minor Changes

Changelog

Sourced from eslint-plugin-jsonc's changelog.

2.15.1

Patch Changes

2.15.0

Minor Changes

2.14.1

Patch Changes

2.14.0

Minor Changes

Commits
  • 90ef83f chore: release eslint-plugin-jsonc (#333)
  • f2f9d75 fix: crash in jsonc/auto (#332)
  • f3ba02f chore(deps): update dependency eslint-plugin-node-dependencies to ^0.12.0
  • 966ac6e chore(deps): update dependency eslint-plugin-eslint-plugin to v6
  • ba22654 chore(deps): update dependency vite-plugin-eslint4b to ^0.3.0
  • 9ef4b46 chore(deps): update dependency eslint-plugin-n to v17
  • cf48e18 chore: release eslint-plugin-jsonc (#324)
  • 57489e7 chore: release eslint-plugin-jsonc (#323)
  • 778138d chore(deps): update actions/configure-pages action to v5 (#321)
  • 0dfdc50 Refine flat config types (#322)
  • Additional commits viewable in compare view

Updates eslint-plugin-unused-imports from 3.1.0 to 3.2.0

Commits

Updates eslint-plugin-vitest from 0.3.22 to 0.5.4

Release notes

Sourced from eslint-plugin-vitest's releases.

v0.5.4

Features

  • support old Eslint configuration
  • update dependencies

v0.5.3

Bug Fixes

v0.5.2

Features

v0.5.1

Bug Fixes

  • no-focused-tests: support .each template strings (#420) (36e5b9a)

v0.5.0

‼️ Breaking Change 🚨

This version only supports new eslint flat config!

If you run into issues, consider downgrading and opening an issue. Remember to include a minimum repro example to help me fix issues quickly!

Full Changelog: veritem/eslint-plugin-vitest@v0.5.0...v0.5.0

v0.4.2-beta.5

No release notes provided.

v0.4.2-beta.4

Bug Fixes

v0.4.2-beta.3

Features

... (truncated)

Commits

Updates html-validate from 8.11.1 to 8.18.2

Release notes

Sourced from html-validate's releases.

v8.18.2

8.18.2 (2024-04-20)

Bug Fixes

  • html5: allow textarea to have autocomplete values other than on and off (c1dfbb1), closes #249

v8.18.1

8.18.1 (2024-03-30)

Bug Fixes

  • rules: form-dup-name handles \<template> element (9c77444), closes #247
  • rules: no-dup-id handles \<template> element (04f3e0d), closes #247

v8.18.0

8.18.0 (2024-03-23)

Features

  • rules: new pattern bem for pattern rules (c1ead1b)
  • rules: new pattern snakecase for pattern rules (4b95ccb), closes #245

Bug Fixes

  • rules: disallow consecutive hyphens and underscors for kebab-case and snake_case (a4338a7), closes #246
  • rules: require initial character for all patterns to be letter (646ff16)

v8.17.1

8.17.1 (2024-03-21)

Bug Fixes

  • rules: properly handle inert on ancestor elements (2990669), closes #243

v8.17.0

8.17.0 (2024-03-19)

Features

  • rules: new rule name-pattern (f2209c0), closes #216
  • rules: support multiple patterns in id-pattern, class-pattern and name-pattern rules (15dd007)

... (truncated)

Commits
  • c25632d chore(release): 8.18.2
  • 71a1e40 Merge branch 'bugfix/autocomplete-issue-249' into 'master'
  • c1dfbb1 fix(html5): allow textarea to have autocomplete values other than on and off
  • ef3b5f2 chore(deps): update dependency marked to v12.0.2
  • 072609a chore(deps): update dependency rollup to v4.14.3
  • 6d56a6b chore(deps): update dependency memfs to v4.8.2
  • 43362f6 Merge branch 'renovate/html-validate-eslint' into 'master'
  • ba412cf chore(deps): update @​html-validate/eslint monorepo to v5.18.0
  • 4fdd8a0 docs: bump node version requirement for building docs
  • fcc531a chore(deps): update dependency rollup to v4.14.2
  • Additional commits viewable in compare view

Updates stylelint from 16.2.1 to 16.5.0

Release notes

Sourced from stylelint's releases.

16.5.0

16.4.0

  • Added: no-unknown-custom-media (#7594) (@​fpetrakov).
  • Added: ignoreLonghands: [] to declaration-block-no-redundant-longhand-properties (#7611) (@​Mouvedia).
  • Added: ignore: ["keyframe-selectors"] to rule-selector-property-disallowed-list (#7572) (@​emmacharp).
  • Added: experimental support for post processors (#7568) (@​YuanboXue-Amber).
  • Fixed: declaration-block-no-redundant-longhand-properties autofix conflicts (#7626) (@​Mouvedia).
  • Fixed: declaration-block-no-redundant-longhand-properties autofix for text-decoration (#7611) (@​Mouvedia).
  • Fixed: declaration-block-no-shorthand-property-overrides false negatives for border (#7585) (@​fpetrakov).
  • Fixed: declaration-block-no-shorthand-pro...

    Description has been truncated

Bumps the minor group with 15 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@zip.js/zip.js](https://github.com/gildas-lormeau/zip.js) | `2.7.36` | `2.7.44` |
| [dexie-export-import](https://github.com/dexie/Dexie.js) | `4.1.1` | `4.1.2` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.42.0` | `1.44.0` |
| [@stylistic/stylelint-plugin](https://github.com/stylelint-stylistic/stylelint-stylistic) | `2.1.0` | `2.1.2` |
| [@types/chrome](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/chrome) | `0.0.262` | `0.0.268` |
| [@types/firefox-webext-browser](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/firefox-webext-browser) | `120.0.1` | `120.0.3` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `7.0.0` | `7.9.0` |
| [ajv](https://github.com/ajv-validator/ajv) | `8.12.0` | `8.13.0` |
| [esbuild](https://github.com/evanw/esbuild) | `0.20.1` | `0.21.2` |
| [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc) | `48.2.0` | `48.2.4` |
| [eslint-plugin-jsonc](https://github.com/ota-meshi/eslint-plugin-jsonc) | `2.13.0` | `2.15.1` |
| [eslint-plugin-unused-imports](https://github.com/sweepline/eslint-plugin-unused-imports) | `3.1.0` | `3.2.0` |
| [eslint-plugin-vitest](https://github.com/veritem/eslint-plugin-vitest) | `0.3.22` | `0.5.4` |
| [html-validate](https://gitlab.com/html-validate/html-validate) | `8.11.1` | `8.18.2` |
| [typescript](https://github.com/Microsoft/TypeScript) | `5.3.3` | `5.4.5` |



Updates `@zip.js/zip.js` from 2.7.36 to 2.7.44
- [Release notes](https://github.com/gildas-lormeau/zip.js/releases)
- [Commits](gildas-lormeau/zip.js@v2.7.36...v2.7.44)

Updates `dexie-export-import` from 4.1.1 to 4.1.2
- [Release notes](https://github.com/dexie/Dexie.js/releases)
- [Commits](https://github.com/dexie/Dexie.js/commits)

Updates `@playwright/test` from 1.42.0 to 1.44.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.42.0...v1.44.0)

Updates `@stylistic/stylelint-plugin` from 2.1.0 to 2.1.2
- [Release notes](https://github.com/stylelint-stylistic/stylelint-stylistic/releases)
- [Changelog](https://github.com/stylelint-stylistic/stylelint-stylistic/blob/main/CHANGELOG.md)
- [Commits](stylelint-stylistic/stylelint-stylistic@v2.1.0...v2.1.2)

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

Updates `@types/firefox-webext-browser` from 120.0.1 to 120.0.3
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/firefox-webext-browser)

Updates `@typescript-eslint/eslint-plugin` from 7.0.0 to 7.9.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.9.0/packages/eslint-plugin)

Updates `ajv` from 8.12.0 to 8.13.0
- [Release notes](https://github.com/ajv-validator/ajv/releases)
- [Commits](ajv-validator/ajv@v8.12.0...v8.13.0)

Updates `esbuild` from 0.20.1 to 0.21.2
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.20.1...v0.21.2)

Updates `eslint-plugin-jsdoc` from 48.2.0 to 48.2.4
- [Release notes](https://github.com/gajus/eslint-plugin-jsdoc/releases)
- [Changelog](https://github.com/gajus/eslint-plugin-jsdoc/blob/main/.releaserc)
- [Commits](gajus/eslint-plugin-jsdoc@v48.2.0...v48.2.4)

Updates `eslint-plugin-jsonc` from 2.13.0 to 2.15.1
- [Release notes](https://github.com/ota-meshi/eslint-plugin-jsonc/releases)
- [Changelog](https://github.com/ota-meshi/eslint-plugin-jsonc/blob/master/CHANGELOG.md)
- [Commits](ota-meshi/eslint-plugin-jsonc@v2.13.0...v2.15.1)

Updates `eslint-plugin-unused-imports` from 3.1.0 to 3.2.0
- [Commits](https://github.com/sweepline/eslint-plugin-unused-imports/commits)

Updates `eslint-plugin-vitest` from 0.3.22 to 0.5.4
- [Release notes](https://github.com/veritem/eslint-plugin-vitest/releases)
- [Commits](veritem/eslint-plugin-vitest@v0.3.22...v0.5.4)

Updates `html-validate` from 8.11.1 to 8.18.2
- [Release notes](https://gitlab.com/html-validate/html-validate/tags)
- [Commits](https://gitlab.com/html-validate/html-validate/compare/v8.11.1...v8.18.2)

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

Updates `typescript` from 5.3.3 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.3.3...v5.4.5)

---
updated-dependencies:
- dependency-name: "@zip.js/zip.js"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: dexie-export-import
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@playwright/test"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@stylistic/stylelint-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@types/chrome"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@types/firefox-webext-browser"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: ajv
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: esbuild
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: eslint-plugin-jsdoc
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: eslint-plugin-jsonc
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: eslint-plugin-unused-imports
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: eslint-plugin-vitest
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: html-validate
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: stylelint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from a team as a code owner May 14, 2024 19:31
@dependabot dependabot bot added the area/dependencies The issue or PR is related to dependencies label May 14, 2024
Copy link
Author

dependabot bot commented on behalf of github Jun 1, 2024

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

@dependabot dependabot bot closed this Jun 1, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/minor-1185fb7663 branch June 1, 2024 03:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/dependencies The issue or PR is related to dependencies
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants