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 16 updates #108

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link

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

Bumps the minor group with 16 updates:

Package From To
@zip.js/zip.js 2.7.34 2.7.36
dexie 3.2.4 3.2.5
dexie-export-import 4.1.0 4.1.1
@playwright/test 1.41.2 1.42.0
@stylistic/eslint-plugin 1.6.0 1.6.3
@stylistic/stylelint-plugin 2.0.0 2.1.0
@types/chrome 0.0.260 0.0.262
@types/firefox-webext-browser 120.0.0 120.0.1
dotenv 16.4.1 16.4.5
esbuild 0.20.0 0.20.1
eslint 8.56.0 8.57.0
eslint-plugin-jsdoc 48.0.6 48.2.0
eslint-plugin-sonarjs 0.23.0 0.24.0
eslint-plugin-unused-imports 3.0.0 3.1.0
html-validate 8.9.1 8.11.1
husky 9.0.10 9.0.11

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

Release notes

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

v2.7.36

Fixed missing exported interfaces in the index.d.ts file.

v2.7.35

What's Changed

New Contributors

Full Changelog: gildas-lormeau/zip.js@v2.7.34...v2.7.35

Commits

Updates dexie from 3.2.4 to 3.2.5

Release notes

Sourced from dexie's releases.

Dexie v3.2.5

Bugfix

  • Fix issue with BigInt64Array (#1890) (and BigUint64Array) - cherry picked from 4.0.1-beta.8
Commits
  • 07454f5 Build output
  • 54f042d Merge remote-tracking branch 'origin/releases-3' into master-3
  • 0e4ef3e Releasing v3.2.5
  • 88b9e61 Replace 1n with BigInt(1) for tests on old browsers to run in release script
  • 820530e npm audit fix
  • d7f8d85 Removing a 4.0 test that happened to slip through to 3.x in a cherry-pick ope...
  • 7c2f083 Support BigUint64Array (not just BigInt64Array)
  • 188fbba Fix issue with BigInt64Array (#1892)
  • 5966dfd Added gh-actions for 3x (#1751)
  • 74891ca Workaround for UnknownError in Chrome (#543)
  • Additional commits viewable in compare view

Updates dexie-export-import from 4.1.0 to 4.1.1

Commits

Updates @playwright/test from 1.41.2 to 1.42.0

Release notes

Sourced from @​playwright/test's releases.

v1.42.0

New APIs

  • Test tags

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

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

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

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

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

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

    New method page.addLocatorHandler() registers a callback that will be invoked when specified element becomes visible and may block Playwright actions. The callback can get rid of the overlay. Here is an example that closes a cookie dialog when it appears.

    // Setup the handler.
    await page.addLocatorHandler(
        page.getByRole('heading', { name: 'Hej! You are in control of your cookies.' }),
        async () => {
          await page.getByRole('button', { name: 'Accept all' }).click();
        });
    // Write the test as usual.
    await page.goto('https://www.ikea.com/');
    await page.getByRole('link', { name: 'Collection of blue and white' }).click();
    await expect(page.getByRole('heading', { name: 'Light and easy' })).toBeVisible();

... (truncated)

Commits

Updates @stylistic/eslint-plugin from 1.6.0 to 1.6.3

Release notes

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

v1.6.3

   🐞 Bug Fixes

    View changes on GitHub

v1.6.2

   🐞 Bug Fixes

    View changes on GitHub

v1.6.1

   🐞 Bug Fixes

    View changes on GitHub
Commits

Updates @stylistic/stylelint-plugin from 2.0.0 to 2.1.0

Release notes

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

Release v2.1.0

Added

Changelog

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

[2.1.0] — 2024–02–18

Added

Commits

Updates @types/chrome from 0.0.260 to 0.0.262

Commits

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

Commits

Updates dotenv from 16.4.1 to 16.4.5

Changelog

Sourced from dotenv's changelog.

16.4.5 (2024-02-19)

Changed

  • 🐞 fix recent regression when using path option. return to historical behavior: do not attempt to auto find .env if path set. (regression was introduced in 16.4.3) #814

16.4.4 (2024-02-13)

Changed

  • 🐞 Replaced chaining operator ?. with old school && (fixing node 12 failures) #812

16.4.3 (2024-02-12)

Changed

  • Fixed processing of multiple files in options.path #805

16.4.2 (2024-02-10)

Changed

Commits

Updates esbuild from 0.20.0 to 0.20.1

Release notes

Sourced from esbuild's releases.

v0.20.1

  • Fix a bug with the CSS nesting transform (#3648)

    This release fixes a bug with the CSS nesting transform for older browsers where the generated CSS could be incorrect if a selector list contained a pseudo element followed by another selector. The bug was caused by incorrectly mutating the parent rule's selector list when filtering out pseudo elements for the child rules:

    /* Original code */
    .foo {
      &:after,
      & .bar {
        color: red;
      }
    }
    /* Old output (with --supported:nesting=false) */
    .foo .bar,
    .foo .bar {
    color: red;
    }
    /* New output (with --supported:nesting=false) */
    .foo:after,
    .foo .bar {
    color: red;
    }

  • Constant folding for JavaScript inequality operators (#3645)

    This release introduces constant folding for the < > <= >= operators. The minifier will now replace these operators with true or false when both sides are compile-time numeric or string constants:

    // Original code
    console.log(1 < 2, '🍕' > '🧀')
    // Old output (with --minify)
    console.log(1<2,"🍕">"🧀");
    // New output (with --minify)
    console.log(!0,!1);

  • Better handling of __proto__ edge cases (#3651)

    JavaScript object literal syntax contains a special case where a non-computed property with a key of __proto__ sets the prototype of the object. This does not apply to computed properties or to properties that use the shorthand property syntax introduced in ES6. Previously esbuild didn't correctly preserve the "sets the prototype" status of properties inside an object literal, meaning a property that sets the prototype could accidentally be transformed into one that doesn't and vice versa. This has now been fixed:

    // Original code
    function foo(__proto__) {
      return { __proto__: __proto__ } // Note: sets the prototype

... (truncated)

Changelog

Sourced from esbuild's changelog.

0.20.1

  • Fix a bug with the CSS nesting transform (#3648)

    This release fixes a bug with the CSS nesting transform for older browsers where the generated CSS could be incorrect if a selector list contained a pseudo element followed by another selector. The bug was caused by incorrectly mutating the parent rule's selector list when filtering out pseudo elements for the child rules:

    /* Original code */
    .foo {
      &:after,
      & .bar {
        color: red;
      }
    }
    /* Old output (with --supported:nesting=false) */
    .foo .bar,
    .foo .bar {
    color: red;
    }
    /* New output (with --supported:nesting=false) */
    .foo:after,
    .foo .bar {
    color: red;
    }

  • Constant folding for JavaScript inequality operators (#3645)

    This release introduces constant folding for the < > <= >= operators. The minifier will now replace these operators with true or false when both sides are compile-time numeric or string constants:

    // Original code
    console.log(1 < 2, '🍕' > '🧀')
    // Old output (with --minify)
    console.log(1<2,"🍕">"🧀");
    // New output (with --minify)
    console.log(!0,!1);

  • Better handling of __proto__ edge cases (#3651)

    JavaScript object literal syntax contains a special case where a non-computed property with a key of __proto__ sets the prototype of the object. This does not apply to computed properties or to properties that use the shorthand property syntax introduced in ES6. Previously esbuild didn't correctly preserve the "sets the prototype" status of properties inside an object literal, meaning a property that sets the prototype could accidentally be transformed into one that doesn't and vice versa. This has now been fixed:

    // Original code
    function foo(__proto__) {

... (truncated)

Commits

Updates eslint from 8.56.0 to 8.57.0

Release notes

Sourced from eslint's releases.

v8.57.0

Features

  • 1120b9b feat: Add loadESLint() API method for v8 (#18098) (Nicholas C. Zakas)
  • dca7d0f feat: Enable eslint.config.mjs and eslint.config.cjs (#18066) (Nitin Kumar)

Bug Fixes

  • 2196d97 fix: handle absolute file paths in FlatRuleTester (#18064) (Nitin Kumar)
  • 69dd1d1 fix: Ensure config keys are printed for config errors (#18067) (Nitin Kumar)
  • 9852a31 fix: deep merge behavior in flat config (#18065) (Nitin Kumar)
  • 4c7e9b0 fix: allow circular references in config (#18056) (Milos Djermanovic)

Documentation

  • 84922d0 docs: Show prerelease version in dropdown (#18139) (Nicholas C. Zakas)
  • 5b8c363 docs: Switch to Ethical Ads (#18117) (Milos Djermanovic)
  • 77dbfd9 docs: show NEXT in version selectors (#18052) (Milos Djermanovic)

Chores

  • 1813aec chore: upgrade @​eslint/js@​8.57.0 (#18143) (Milos Djermanovic)
  • 5c356bb chore: package.json update for @​eslint/js release (Jenkins)
  • f4a1fe2 test: add more tests for ignoring files and directories (#18068) (Nitin Kumar)
  • 42c0aef ci: Enable CI for v8.x branch (#18047) (Milos Djermanovic)
Changelog

Sourced from eslint's changelog.

v8.57.0 - February 23, 2024

  • 1813aec chore: upgrade @​eslint/js@​8.57.0 (#18143) (Milos Djermanovic)
  • 5c356bb chore: package.json update for @​eslint/js release (Jenkins)
  • 84922d0 docs: Show prerelease version in dropdown (#18139) (Nicholas C. Zakas)
  • 1120b9b feat: Add loadESLint() API method for v8 (#18098) (Nicholas C. Zakas)
  • 5b8c363 docs: Switch to Ethical Ads (#18117) (Milos Djermanovic)
  • 2196d97 fix: handle absolute file paths in FlatRuleTester (#18064) (Nitin Kumar)
  • f4a1fe2 test: add more tests for ignoring files and directories (#18068) (Nitin Kumar)
  • 69dd1d1 fix: Ensure config keys are printed for config errors (#18067) (Nitin Kumar)
  • 9852a31 fix: deep merge behavior in flat config (#18065) (Nitin Kumar)
  • dca7d0f feat: Enable eslint.config.mjs and eslint.config.cjs (#18066) (Nitin Kumar)
  • 4c7e9b0 fix: allow circular references in config (#18056) (Milos Djermanovic)
  • 77dbfd9 docs: show NEXT in version selectors (#18052) (Milos Djermanovic)
  • 42c0aef ci: Enable CI for v8.x branch (#18047) (Milos Djermanovic)

v9.0.0-beta.0 - February 9, 2024

  • e40d1d7 chore: upgrade @​eslint/js@​9.0.0-beta.0 (#18108) (Milos Djermanovic)
  • 9870f93 chore: package.json update for @​eslint/js release (Jenkins)
  • 2c62e79 chore: upgrade @​eslint/eslintrc@​3.0.1 (#18107) (Milos Djermanovic)
  • 81f0294 chore: upgrade espree@10.0.1 (#18106) (Milos Djermanovic)
  • 5e2b292 chore: upgrade eslint-visitor-keys@4.0.0 (#18105) (Milos Djermanovic)
  • 9163646 feat!: Rule Tester checks for missing placeholder data in the message (#18073) (fnx)
  • 53f0f47 feat: Add loadESLint() API method for v9 (#18097) (Nicholas C. Zakas)
  • f1c7e6f docs: Switch to Ethical Ads (#18090) (Strek)
  • 15c143f docs: JS Foundation -> OpenJS Foundation in PR template (#18092) (Nicholas C. Zakas)
  • c4d26fd fix: use-isnan doesn't report on SequenceExpressions (#18059) (StyleShit)
  • 6ea339e docs: add stricter rule test validations to v9 migration guide (#18085) (Milos Djermanovic)
  • ce838ad chore: replace dependency npm-run-all with npm-run-all2 ^5.0.0 (#18045) (renovate[bot])
  • 3c816f1 docs: use relative link from CLI to core concepts (#18083) (Milos Djermanovic)
  • 54df731 chore: update dependency markdownlint-cli to ^0.39.0 (#18084) (renovate[bot])
  • 9458735 docs: fix malformed eslint config comments in rule examples (#18078) (Francesco Trotta)
  • 07a1ada docs: link from --fix CLI doc to the relevant core concept (#18080) (Bryan Mishkin)
  • 8f06a60 chore: update dependency shelljs to ^0.8.5 (#18079) (Francesco Trotta)
  • b844324 docs: Update team responsibilities (#18048) (Nicholas C. Zakas)
  • aadfb60 docs: document languageOptions and other v9 changes for context (#18074) (fnx)
  • 3c4d51d feat!: default for enforceForClassMembers in no-useless-computed-key (#18054) (Francesco Trotta)
  • 47e60f8 feat!: Stricter rule test validations (#17654) (fnx)
  • 1a94589 feat!: no-unused-vars default caughtErrors to 'all' (#18043) (Josh Goldberg ✨)
  • 857e242 docs: tweak explanation for meta.docs rule properties (#18057) (Bryan Mishkin)
  • 10485e8 docs: recommend messageId over message for reporting rule violations (#18050) (Bryan Mishkin)
  • 98b5ab4 docs: Update README (GitHub Actions Bot)
  • 93ffe30 chore: update dependency file-entry-cache to v8 (#17903) (renovate[bot])
  • 505fbf4 docs: update no-restricted-imports rule (#18015) (Tanuj Kanti)
  • 2d11d46 feat: add suggestions to use-isnan in binary expressions (#17996) (StyleShit)
  • c25b4af docs: Update README (GitHub Actions Bot)

v9.0.0-alpha.2 - January 26, 2024

... (truncated)

Commits

Updates eslint-plugin-jsdoc from 48.0.6 to 48.2.0

Release notes

Sourced from eslint-plugin-jsdoc's releases.

v48.2.0

48.2.0 (2024-02-22)

Features

  • check-param-names: Add disableMissingParamChecks option (#1206) (ba642e4)

v48.1.0

48.1.0 (2024-02-14)

Features

  • check-line-alignment: add `disableWrapIndent`` option (37df54d)
Commits
  • ba642e4 feat(check-param-names): Add disableMissingParamChecks option (#1206)
  • ab893ba build(deps-dev): bump ip from 2.0.0 to 2.0.1
  • 37df54d feat(check-line-alignment): add `disableWrapIndent`` option
  • See full diff in compare view

Updates eslint-plugin-sonarjs from 0.23.0 to 0.24.0

Release notes

Sourced from eslint-plugin-sonarjs's releases.

0.24.0

What's Changed

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

Commits
  • da3c4f4 Fix FP S3776 (cognitive-complexity): Ignore nested functions and default va...
  • a668054 Drop Node.js 14 support and test against Node.js 20 on CI (#445)
  • e95d75d Update cognitive complexity link (#443)
  • b8bf961 Add prettier as pre-commit hook, clean up CI
  • 732e2ad Update README: Plugin now requires Node.js 14 or higher (#434)
  • 649f609 Prepare for next development iteration (#429)
  • See full diff in compare view

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

Commits

Updates html-validate from 8.9.1 to 8.11.1

Release notes

Sourced from html-validate's releases.

v8.11.1

8.11.1 (2024-2-26)

Bug Fixes

  • dom: fix regression error with selectors ending with characters a, d or 9 (a9a9ef9)

v8.11.0

8.11.0 (2024-2-26)

Features

  • html5: add new property aria.naming representing if the element can be named (4fca264)
  • html5: update role metadata from html-aria standard (b029a3f)
  • meta: move implicitRole to aria.implicitRole (bc8cacf)

Bug Fixes

  • handle selectors containing tabs and newlines (5e45d54), closes #238
  • rules: new option allowAnyNamable for aria-label-misuse (c08a3ba), closes #237

v8.10.0

8.10.0 (2024-2-21)

Features

  • rules: new rule no-implicit-input-type (6cc0c6d)

Bug Fixes

  • deps: update dependency ignore to v5.3.1 (4553b89)
  • html5: type for <input> no longer required (37284d0), closes #235
  • rules: change wording required to recommended in no-implicit-button-type (1926c06)
Commits
  • ae1fc6a chore(release): 8.11.1
  • ae621de Merge branch 'bugfix/selector' into 'master'
  • a9a9ef9 fix(dom): fix regression error with selectors ending with characters a, d...
  • 0aa187b chore(deps): update dependency @​microsoft/api-extractor to v7.41.0
  • c04e71c chore(deps): update dependency cssnano to v6.0.5
  • af76d3d chore(release): 8.11.0
  • cebbada Merge branch 'bugfix/newline-selectors' into 'master'
  • 5e45d54 fix: handle selectors containing tabs and newlines
  • adc196d chore(deps): update dependency @​types/semver to v7.5.8
  • db9beb5 Merge branch 'bugfix/aria-label-misuse-237' into 'master'
  • Additional commits viewable in compare view

Updates husky from 9.0.10 to 9.0.11

Release notes

Sourced from husky's releases.

v9.0.11

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the minor group with 16 updates:

| Package | From | To |
| --- | --- | --- |
| [@zip.js/zip.js](https://github.com/gildas-lormeau/zip.js) | `2.7.34` | `2.7.36` |
| [dexie](https://github.com/dfahlander/Dexie.js) | `3.2.4` | `3.2.5` |
| [dexie-export-import](https://github.com/dexie/Dexie.js) | `4.1.0` | `4.1.1` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.41.2` | `1.42.0` |
| [@stylistic/eslint-plugin](https://github.com/eslint-stylistic/eslint-stylistic/tree/HEAD/packages/eslint-plugin) | `1.6.0` | `1.6.3` |
| [@stylistic/stylelint-plugin](https://github.com/stylelint-stylistic/stylelint-stylistic) | `2.0.0` | `2.1.0` |
| [@types/chrome](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/chrome) | `0.0.260` | `0.0.262` |
| [@types/firefox-webext-browser](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/firefox-webext-browser) | `120.0.0` | `120.0.1` |
| [dotenv](https://github.com/motdotla/dotenv) | `16.4.1` | `16.4.5` |
| [esbuild](https://github.com/evanw/esbuild) | `0.20.0` | `0.20.1` |
| [eslint](https://github.com/eslint/eslint) | `8.56.0` | `8.57.0` |
| [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc) | `48.0.6` | `48.2.0` |
| [eslint-plugin-sonarjs](https://github.com/SonarSource/eslint-plugin-sonarjs) | `0.23.0` | `0.24.0` |
| [eslint-plugin-unused-imports](https://github.com/sweepline/eslint-plugin-unused-imports) | `3.0.0` | `3.1.0` |
| [html-validate](https://gitlab.com/html-validate/html-validate) | `8.9.1` | `8.11.1` |
| [husky](https://github.com/typicode/husky) | `9.0.10` | `9.0.11` |


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

Updates `dexie` from 3.2.4 to 3.2.5
- [Release notes](https://github.com/dfahlander/Dexie.js/releases)
- [Commits](dexie/Dexie.js@v3.2.4...v3.2.5)

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

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

Updates `@stylistic/eslint-plugin` from 1.6.0 to 1.6.3
- [Release notes](https://github.com/eslint-stylistic/eslint-stylistic/releases)
- [Commits](https://github.com/eslint-stylistic/eslint-stylistic/commits/v1.6.3/packages/eslint-plugin)

Updates `@stylistic/stylelint-plugin` from 2.0.0 to 2.1.0
- [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.0.0...v2.1.0)

Updates `@types/chrome` from 0.0.260 to 0.0.262
- [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.0 to 120.0.1
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/firefox-webext-browser)

Updates `dotenv` from 16.4.1 to 16.4.5
- [Changelog](https://github.com/motdotla/dotenv/blob/master/CHANGELOG.md)
- [Commits](motdotla/dotenv@v16.4.1...v16.4.5)

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

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

Updates `eslint-plugin-jsdoc` from 48.0.6 to 48.2.0
- [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.0.6...v48.2.0)

Updates `eslint-plugin-sonarjs` from 0.23.0 to 0.24.0
- [Release notes](https://github.com/SonarSource/eslint-plugin-sonarjs/releases)
- [Commits](SonarSource/eslint-plugin-sonarjs@0.23.0...0.24.0)

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

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

Updates `husky` from 9.0.10 to 9.0.11
- [Release notes](https://github.com/typicode/husky/releases)
- [Commits](typicode/husky@v9.0.10...v9.0.11)

---
updated-dependencies:
- dependency-name: "@zip.js/zip.js"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: dexie
  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-patch
  dependency-group: minor
- dependency-name: "@stylistic/stylelint-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  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: dotenv
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: esbuild
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: eslint
  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-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: html-validate
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: husky
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from a team as a code owner March 1, 2024 05:48
Copy link
Author

dependabot bot commented on behalf of github Mar 1, 2024

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

Copy link
Author

dependabot bot commented on behalf of github Mar 3, 2024

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

@dependabot dependabot bot closed this Mar 3, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/minor-935193a3cd branch March 3, 2024 22:49
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