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 with 18 updates #117

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link

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

Bumps the minor group with 18 updates:

Package From To
@zip.js/zip.js 2.7.36 2.7.43
dexie-export-import 4.1.1 4.1.2
@playwright/test 1.42.0 1.43.1
@stylistic/eslint-plugin 1.6.3 1.8.0
@stylistic/stylelint-plugin 2.1.0 2.1.2
@types/chrome 0.0.262 0.0.267
@types/firefox-webext-browser 120.0.1 120.0.3
@typescript-eslint/eslint-plugin 7.0.0 7.8.0
ajv 8.12.0 8.13.0
esbuild 0.20.1 0.20.2
eslint-plugin-jsdoc 48.2.0 48.2.3
eslint-plugin-jsonc 2.13.0 2.15.1
eslint-plugin-sonarjs 0.24.0 0.25.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
stylelint 16.2.1 16.4.0
typescript 5.3.3 5.4.5

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

Release notes

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

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

Updates @stylistic/eslint-plugin from 1.6.3 to 1.8.0

Release notes

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

v1.8.0

1.8.0 (2024-04-30)

Features

  • jsx-function-call-newline: add jsx-function-call-newline rule (#376) (110aa4c)
  • jsx-one-expression-per-line: allow single line (#377) (f8825f2)
  • jsx-wrap-multilines: supports adding parentheses and line breaks for object properties (#372) (c72d043)

Bug Fixes

  • jsx-indent: conflict between indent and jsx-indent (#368) (7313184)

Documentation

v1.7.2

1.7.2 (2024-04-14)

Documentation

Build Related

  • try using a single package for release-please (b3bf006)

monorepo: v1.7.1

1.7.1 (2024-04-11)

Documentation

  • no-mixed-operators: clarify rule behavior for parameter 'groups' (#302) (cd02cea)
  • redirect curly to eslint page (#309) (4d0e78e)
  • update repo url (618eb66)
  • update repro link (83e35d1)

v1.7.0

   🚀 Features

... (truncated)

Changelog

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

1.8.0 (2024-04-30)

Features

  • jsx-function-call-newline: add jsx-function-call-newline rule (#376) (110aa4c)
  • jsx-one-expression-per-line: allow single line (#377) (f8825f2)
  • jsx-wrap-multilines: supports adding parentheses and line breaks for object properties (#372) (c72d043)

Bug Fixes

  • jsx-indent: conflict between indent and jsx-indent (#368) (7313184)

Documentation

1.7.2 (2024-04-14)

Documentation

Build Related

  • try using a single package for release-please (b3bf006)

1.7.1 (2024-04-11)

Documentation

  • no-mixed-operators: clarify rule behavior for parameter 'groups' (#302) (cd02cea)
  • redirect curly to eslint page (#309) (4d0e78e)
  • update repo url (618eb66)
  • update repro link (83e35d1)
Commits
Maintainer changes

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


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

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

Release notes

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

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

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)

... (truncated)

Changelog

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

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

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

... (truncated)

Commits
  • ee677f6 chore(release): publish 7.8.0
  • 8127873 fix(eslint-plugin): [no-unused-vars] clear error report range (#8640)
  • 216d1b0 fix(eslint-plugin): [no-unsafe-return] handle union types (#9001)
  • 51d2193 fix(eslint-plugin): [consistent-type-assertions] handle tagged templates (#8993)
  • 4bed24d fix(eslint-plugin): [prefer-optional-chain] suggests optional chaining during...
  • b0f7aa4 fix(eslint-plugin): [no-unsafe-argument] handle tagged templates (#8746)
  • 219b841 chore: resolve lint issues on main branch (#8966)
  • 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)
  • 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.20.2

Release notes

Sourced from esbuild's releases.

v0.20.2

  • Support TypeScript experimental decorators on abstract class fields (#3684)

    With this release, you can now use TypeScript experimental decorators on abstract class fields. This was silently compiled incorrectly in esbuild 0.19.7 and below, and was an error from esbuild 0.19.8 to esbuild 0.20.1. Code such as the following should now work correctly:

    // Original code
    const log = (x: any, y: string) => console.log(y)
    abstract class Foo { @log abstract foo: string }
    new class extends Foo { foo = '' }
    // Old output (with --loader=ts --tsconfig-raw={"compilerOptions":{"experimentalDecorators":true}})
    const log = (x, y) => console.log(y);
    class Foo {
    }
    new class extends Foo {
    foo = "";
    }();
    // New output (with --loader=ts --tsconfig-raw={"compilerOptions":{"experimentalDecorators":true}})
    const log = (x, y) => console.log(y);
    class Foo {
    }
    __decorateClass([
    log
    ], Foo.prototype, "foo", 2);
    new class extends Foo {
    foo = "";
    }();

  • JSON loader now preserves __proto__ properties (#3700)

    Copying JSON source code into a JavaScript file will change its meaning if a JSON object contains the __proto__ key. A literal __proto__ property in a JavaScript object literal sets the prototype of the object instead of adding a property named __proto__, while a literal __proto__ property in a JSON object literal just adds a property named __proto__. With this release, esbuild will now work around this problem by converting JSON to JavaScript with a computed property key in this case:

    // Original code
    import data from 'data:application/json,{"__proto__":{"fail":true}}'
    if (Object.getPrototypeOf(data)?.fail) throw 'fail'
    // Old output (with --bundle)
    (() => {
    // <data:application/json,{"proto":{"fail":true}}>
    var json_proto_fail_true_default = { proto: { fail: true } };
    // entry.js
    if (Object.getPrototypeOf(json_proto_fail_true_default)?.fail)
    throw "fail";
    })();

... (truncated)

Changelog

Sourced from esbuild's changelog.

0.20.2

  • Support TypeScript experimental decorators on abstract class fields (#3684)

    With this release, you can now use TypeScript experimental decorators on abstract class fields. This was silently compiled incorrectly in esbuild 0.19.7 and below, and was an error from esbuild 0.19.8 to esbuild 0.20.1. Code such as the following should now work correctly:

    // Original code
    const log = (x: any, y: string) => console.log(y)
    abstract class Foo { @log abstract foo: string }
    new class extends Foo { foo = '' }
    // Old output (with --loader=ts --tsconfig-raw={&quot;compilerOptions&quot;:{&quot;experimentalDecorators&quot;:true}})
    const log = (x, y) => console.log(y);
    class Foo {
    }
    new class extends Foo {
    foo = "";
    }();
    // New output (with --loader=ts --tsconfig-raw={&quot;compilerOptions&quot;:{&quot;experimentalDecorators&quot;:true}})
    const log = (x, y) => console.log(y);
    class Foo {
    }
    __decorateClass([
    log
    ], Foo.prototype, "foo", 2);
    new class extends Foo {
    foo = "";
    }();

  • JSON loader now preserves __proto__ properties (#3700)

    Copying JSON source code into a JavaScript file will change its meaning if a JSON object contains the __proto__ key. A literal __proto__ property in a JavaScript object literal sets the prototype of the object instead of adding a property named __proto__, while a literal __proto__ property in a JSON object literal just adds a property named __proto__. With this release, esbuild will now work around this problem by converting JSON to JavaScript with a computed property key in this case:

    // Original code
    import data from 'data:application/json,{"__proto__":{"fail":true}}'
    if (Object.getPrototypeOf(data)?.fail) throw 'fail'
    // Old output (with --bundle)
    (() => {
    // <data:application/json,{"proto":{"fail":true}}>
    var json_proto_fail_true_default = { proto: { fail: true } };
    // entry.js
    if (Object.getPrototypeOf(json_proto_fail_true_default)?.fail)
    throw "fail";
    })();

... (truncated)

Commits

Updates eslint-plugin-jsdoc from 48.2.0 to 48.2.3

Release notes

Sourced from eslint-plugin-jsdoc's releases.

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
  • 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-sonarjs from 0.24.0 to 0.25.1

Release notes

Sourced from eslint-plugin-sonarjs's releases.

0.25.1

What's Changed

New Contributors

Full Changelog: SonarSource/eslint-plugin-sonarjs@0.25.0...0.25.1

0.25.0

What's Changed

New Contributors

Full Changelog: SonarSource/eslint-plugin-sonarjs@0.24.0...0.25.0

Commits
  • 2d588d5 Bump the project manifest version to 0.25.1 (#458)
  • 4e4b5ea Resolve issue #456 - @​typescript-eslint/utils dependency is missing (#457)
  • abcd666 Replace devDependency @typescript-eslint/experimental-utils with `@typescri...
  • e8d2d08 Make no-unused-collection not trigger if writing to elements of said collecti...
  • 710b5f1 Fix FP 3699 (no-use-of-empty-return-values) to handle ambient functions (#451)
  • 252b02a Prepare for next development iteration (#446)
  • See full diff 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 🚨

Description has been truncated

Bumps the minor group with 18 updates:

| Package | From | To |
| --- | --- | --- |
| [@zip.js/zip.js](https://github.com/gildas-lormeau/zip.js) | `2.7.36` | `2.7.43` |
| [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.43.1` |
| [@stylistic/eslint-plugin](https://github.com/eslint-stylistic/eslint-stylistic/tree/HEAD/packages/eslint-plugin) | `1.6.3` | `1.8.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.267` |
| [@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.8.0` |
| [ajv](https://github.com/ajv-validator/ajv) | `8.12.0` | `8.13.0` |
| [esbuild](https://github.com/evanw/esbuild) | `0.20.1` | `0.20.2` |
| [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc) | `48.2.0` | `48.2.3` |
| [eslint-plugin-jsonc](https://github.com/ota-meshi/eslint-plugin-jsonc) | `2.13.0` | `2.15.1` |
| [eslint-plugin-sonarjs](https://github.com/SonarSource/eslint-plugin-sonarjs) | `0.24.0` | `0.25.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` |
| [stylelint](https://github.com/stylelint/stylelint) | `16.2.1` | `16.4.0` |
| [typescript](https://github.com/Microsoft/TypeScript) | `5.3.3` | `5.4.5` |


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

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.43.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.42.0...v1.43.1)

Updates `@stylistic/eslint-plugin` from 1.6.3 to 1.8.0
- [Release notes](https://github.com/eslint-stylistic/eslint-stylistic/releases)
- [Changelog](https://github.com/eslint-stylistic/eslint-stylistic/blob/main/CHANGELOG.md)
- [Commits](https://github.com/eslint-stylistic/eslint-stylistic/commits/v1.8.0/packages/eslint-plugin)

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.267
- [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.8.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.8.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.20.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.20.2)

Updates `eslint-plugin-jsdoc` from 48.2.0 to 48.2.3
- [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.3)

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-sonarjs` from 0.24.0 to 0.25.1
- [Release notes](https://github.com/SonarSource/eslint-plugin-sonarjs/releases)
- [Commits](SonarSource/eslint-plugin-sonarjs@0.24.0...0.25.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](vitest-dev/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.4.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.4.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/eslint-plugin"
  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-patch
  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-sonarjs
  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 1, 2024 05:31
Copy link
Author

dependabot bot commented on behalf of github May 1, 2024

The following labels could not be found: area/dependencies.

Copy link
Author

dependabot bot commented on behalf of github May 18, 2024

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

@dependabot dependabot bot closed this May 18, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/minor-c11a063854 branch May 18, 2024 21:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants