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 external-dependencies group across 1 directory with 14 updates #2561

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 17, 2024

Bumps the external-dependencies group with 14 updates in the / directory:

Package From To
dexie 4.0.4 4.0.7
i18next 23.11.2 23.11.5
tldts 6.1.16 6.1.27
web-ext 8.0.0 8.1.0
zod 3.22.4 3.23.8
@fingerprintjs/fingerprintjs 4.2.2 4.4.1
@playwright/test 1.43.1 1.44.1
@types/chrome 0.0.266 0.0.268
@types/node 20.12.7 20.14.2
esbuild 0.20.2 0.21.5
fake-indexeddb 5.0.2 6.0.0
jsdom 24.0.0 24.1.0
sass 1.75.0 1.77.5
webextension-polyfill 0.10.0 0.12.0

Updates dexie from 4.0.4 to 4.0.7

Release notes

Sourced from dexie's releases.

Dexie v4.0.7

  • Tighten non-idempotent operations (PR #2000 - mathematical addition or subtraction)
  • Align dexie and dexie-cloud-addon versions: 4.0.7

Dexie v4.0.5

Features

New CRDT operations: add() and remove() (#1936)

New operations that works consistently across sync: Mathematical addition/subtraction as well as adding or removing string or numbers from array properties.

Add to set

It is now possible to add items to an array property using a sync consistent operation "add":

import { add } from "dexie";
db.friends.update(friend.id, {
hobbies: add([
"skating",
"football"
])
});

Remove from set

import { remove } from "dexie";
db.friends.update(friend.id, {
hobbies: remove([
"curling"
])
});

Mathematical addition and subtraction (number)

import { add, remove } from "dexie";
await db.transaction('rw', db.accounts, () => {
db.accounts.update(accountId1, { balance: remove(100) });
db.accounts.update(accountId2, { balance: add(100) });
});

Mathematical addition and subtraction (bigint)

... (truncated)

Commits
  • b38b1bf Build output
  • 239d787 Merge remote-tracking branch 'origin/releases'
  • 49de2e1 Releasing v4.0.7
  • d96ddcd Bump version: 4.0.7. Align dexie and dexie-cloud-addon version numbers.
  • c2d4d9d Fixed identation
  • 076dc15 When consistent modify/delete operations get chunked, the additional chunks w...
  • d4508e6 Releasing dexie-cloud-addon@4.0.6
  • af1578e Build output
  • fa41b3a Releasing v4.0.5
  • 6ba015c Merge remote-tracking branch 'origin/releases'
  • Additional commits viewable in compare view

Updates i18next from 23.11.2 to 23.11.5

Release notes

Sourced from i18next's releases.

v23.11.5

  • perf: use Array.isArray() 2193
  • perf: trim keys once 2194

v23.11.4

  • perf(interpolator): use object deconstruction 2181

v23.11.3

  • fix: Unsupported language is automatically added to preload option 2178
Changelog

Sourced from i18next's changelog.

23.11.5

  • perf: use Array.isArray() 2193
  • perf: trim keys once 2194

23.11.4

  • perf(interpolator): use object deconstruction 2181

23.11.3

  • fix: Unsupported language is automatically added to preload option 2178
Commits

Updates tldts from 6.1.16 to 6.1.27

Release notes

Sourced from tldts's releases.

v6.1.27

📜 Update Public Suffix List

  • tldts-experimental, tldts-icann, tldts

Authors: 1

v6.1.26

📜 Update Public Suffix List

  • tldts-experimental, tldts

🔩 Dependencies

Authors: 2

v6.1.25

📜 Update Public Suffix List

  • tldts-experimental, tldts-icann, tldts

🔩 Dependencies

Authors: 2

v6.1.24

... (truncated)

Changelog

Sourced from tldts's changelog.

v6.1.27 (Mon Jun 17 2024)

📜 Update Public Suffix List

  • tldts-experimental, tldts-icann, tldts

Authors: 1


v6.1.26 (Fri Jun 14 2024)

📜 Update Public Suffix List

  • tldts-experimental, tldts

🔩 Dependencies

Authors: 2


v6.1.25 (Thu Jun 06 2024)

📜 Update Public Suffix List

  • tldts-experimental, tldts-icann, tldts

🔩 Dependencies

... (truncated)

Commits

Updates web-ext from 8.0.0 to 8.1.0

Release notes

Sourced from web-ext's releases.

8.1.0

features

  • web-ext lint: updated to use addons-linter v6.29.0

bug fixes, etc.

dependencies

  • Updated: dependency @babel/runtime to 7.24.7 (#3160)
  • Updated: dependency jose to 5.4.0 (#3157)

dev dependencies

  • Updated: dependency @babel/cli to 7.24.7 (#3161)
  • Updated: dependency @babel/core to 7.24.7 (#3162)
  • Updated: dependency @babel/eslint-parser to 7.24.7 (#3158)
  • Updated: dependency @babel/preset-env to 7.24.7 (#3159)
  • Updated: dependency chai-as-promised to 8.0.0 (#3165)
  • Updated: dependency nyc to 17.0.0 (#3166)
  • Updated: dependency prettier to 3.3.2 (#3168)

See all changes: mozilla/web-ext@8.0.0...8.1.0

Commits
  • 1046823 8.1.0
  • fd29811 chore(deps): bump addons-linter from 6.28.0 to 6.29.0 (#3167)
  • 4c5bdce chore(deps-dev): bump prettier from 3.3.1 to 3.3.2 (#3168)
  • e21cbc0 chore(deps-dev): bump chai-as-promised from 7.1.2 to 8.0.0 (#3165)
  • 2b5b2cc fix(deps): Bump braces version (#3169)
  • dc5cbfe chore(deps-dev): bump nyc from 15.1.0 to 17.0.0 (#3166)
  • 52e6092 chore(deps-dev): bump @​babel/eslint-parser from 7.24.6 to 7.24.7 (#3158)
  • 2d80992 chore(deps-dev): bump @​babel/cli from 7.24.6 to 7.24.7 (#3161)
  • 54f4fd2 chore(deps): bump @​babel/runtime from 7.24.6 to 7.24.7 (#3160)
  • 12d2326 chore(deps-dev): bump @​babel/preset-env from 7.24.6 to 7.24.7 (#3159)
  • Additional commits viewable in compare view

Updates zod from 3.22.4 to 3.23.8

Release notes

Sourced from zod's releases.

v3.23.8

Commits:

  • 0f4d403558ae0490c711e4c2bfcf6c200bd14e11 Add Bronze logos (#3470)
  • 19687315b5b24bbd1ff6c346bfc2975700221748 Tweak tiers (#3471)
  • eda7df314399929f7ed737423868a5a0780cd944 Change RefinementCtx to interface
  • ca42965df46b2f7e2747db29c40a26bcb32a51d5 v3.23.8

v3.23.7

Commits:

  • 29d2ea2a15f0b1ac4b89138041f786a3dafc490b Add copper
  • d969423266fccee56ef769da6744cc8bacb04550 Fix #3437: extendShape erases JSDoc property documentation (#3463)
  • 2239ff3ccc9af4d28bee27bd6fb2a5632844480b Add social crow
  • f985b5b922cb357dbf4b25bb43814d19f838e046 3.23.7

v3.23.6

Commits:

  • bc0095aab9e7254deb18701adc63de128ca2c742 Test on latest node
  • 6e5699a30373cc22879f2bcb6902fc138518c980 Lint on latest node
  • 1f466d9d00f446d7bed1962990e7a1ce813ab0d4 describe how one can protect from cyclical objects starting an infini… (#3447)
  • 3fed6f21e0ea7adc91aa0cc44f75bcf4e526d98e Add zod playground link (#3454)
  • 04e1f379f6989d23dd45660fcabc78f76d7834f8 Fixed freezing async ZodReadonly results (#3457)
  • b87e59d0e4bbb4403bf27243afdcda9fcdeec258 Update sponsor tiers (#3453)
  • 143886151bba3930bdcc10d34a1cff4bf9103ba8 Add copper tier (#3460)
  • ce3711e1384952d255769b9495f9bfadfb327291 add VSCode dev container support and documenation
  • 93b480b12ec3466cbd3b4182f7ce292e5c61528c v3.23.6

v3.23.5

Commits:

  • 110b8211f991b3e060ab2da4fec7b63d600439ad Update README_ZH.md (#3433)
  • c1910bdfc98709b8f14231e2cefc5a3be401e3ee Made ZodEnum take readonly string array (#3444)
  • 541a862e978f96eb391849a6bf16be84231aa1b3 3.23.5

v3.23.4

Commits:

  • 157b18d742c86d85b26a8421af46ad6d6d6b6ea7 Add 3.23 announcement
  • aedf93f1435a29463d915c3be45b4dcbeefa8cc1 Revert change to default Input
  • 45107f7a7230fe48ee24dc37e621422c9dc64ec4 v3.23.4

v3.23.3

Commits:

  • 103d2436f85872ca0e0e6247652989cc93d46a39 3.23.3

v3.23.2

Commits:

... (truncated)

Commits

Updates @fingerprintjs/fingerprintjs from 4.2.2 to 4.4.1

Release notes

Sourced from @​fingerprintjs/fingerprintjs's releases.

v4.4.1

  • fix: A console warning regarding AudioContext (#1009)

This release will change fingerprints for some visitors.

v4.4.0

  • Add a new "AudioContext baseLatency" entropy source (#1004)
  • Revert audio fingerprint to the version from v4.1.0 (#1007)
  • handleApplePayError is no longer exported from the Node package (#1005). It was used for internal purposes.

v4.3.0

  • fix: A minus sign missing in the "timezone" entropy source fallback (#986)
  • fix: The geometry and text images in the "canvas" entropy source are swapped (#990). They were swapped mistakenly in v4.1.0.
Commits

Updates @playwright/test from 1.43.1 to 1.44.1

Release notes

Sourced from @​playwright/test's releases.

v1.44.1

Highlights

microsoft/playwright#30779 - [REGRESSION]: When using video: 'on' with VSCode extension the browser got closed microsoft/playwright#30755 - [REGRESSION]: Electron launch with spaces inside executablePath didn't work microsoft/playwright#30770 - [REGRESSION]: Mask elements outside of viewport when creating fullscreen screenshots didn't work microsoft/playwright#30858 - [REGRESSION]: ipv6 got shown instead of localhost in show-trace/show-report

Browser Versions

  • Chromium 125.0.6422.14
  • Mozilla Firefox 125.0.1
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 124
  • Microsoft Edge 124

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.

... (truncated)

Commits

Updates @types/chrome from 0.0.266 to 0.0.268

Commits

Updates @types/node from 20.12.7 to 20.14.2

Commits

Updates esbuild from 0.20.2 to 0.21.5

Release notes

Sourced from esbuild's releases.

v0.21.5

  • Fix Symbol.metadata on classes without a class decorator (#3781)

    This release fixes a bug with esbuild's support for the decorator metadata proposal. Previously esbuild only added the Symbol.metadata property to decorated classes if there was a decorator on the class element itself. However, the proposal says that the Symbol.metadata property should be present on all classes that have any decorators at all, not just those with a decorator on the class element itself.

  • Allow unknown import attributes to be used with the copy loader (#3792)

    Import attributes (the with keyword on import statements) are allowed to alter how that path is loaded. For example, esbuild cannot assume that it knows how to load ./bagel.js as type bagel:

    // This is an error with "--bundle" without also using "--external:./bagel.js"
    import tasty from "./bagel.js" with { type: "bagel" }

    Because of that, bundling this code with esbuild is an error unless the file ./bagel.js is external to the bundle (such as with --bundle --external:./bagel.js).

    However, there is an additional case where it's ok for esbuild to allow this: if the file is loaded using the copy loader. That's because the copy loader behaves similarly to --external in that the file is left external to the bundle. The difference is that the copy loader copies the file into the output folder and rewrites the import path while --external doesn't. That means the following will now work with the copy loader (such as with --bundle --loader:.bagel=copy):

    // This is no longer an error with "--bundle" and "--loader:.bagel=copy"
    import tasty from "./tasty.bagel" with { type: "bagel" }
  • Support import attributes with glob-style imports (#3797)

    This release adds support for import attributes (the with option) to glob-style imports (dynamic imports with certain string literal patterns as paths). These imports previously didn't support import attributes due to an oversight. So code like this will now work correctly:

    async function loadLocale(locale: string): Locale {
      const data = await import(`./locales/${locale}.data`, { with: { type: 'json' } })
      return unpackLocale(locale, data)
    }

    Previously this didn't work even though esbuild normally supports forcing the JSON loader using an import attribute. Attempting to do this used to result in the following error:

    ✘ [ERROR] No loader is configured for ".data" files: locales/en-US.data
    
    example.ts:2:28:
      2 │   const data = await import(`./locales/${locale}.data`, { with: { type: 'json' } })
        ╵                             ~~~~~~~~~~~~~~~~~~~~~~~~~~
    

    In addition, this change means plugins can now access the contents of with for glob-style imports.

  • Support ${configDir} in tsconfig.json files (#3782)

    This adds support for a new feature from the upcoming TypeScript 5.5 release. The character sequence ${configDir} is now respected at the start of baseUrl and paths values, which are used by esbuild during bundling to correctly map import paths to file system paths. This feature lets base tsconfig.json files specified via extends refer to the directory of the top-level tsconfig.json file. Here is an example:

... (truncated)

Changelog

Sourced from esbuild's changelog.

0.21.5

  • Fix Symbol.metadata on classes without a class decorator (#3781)

    This release fixes a bug with esbuild's support for the decorator metadata proposal. Previously esbuild only added the Symbol.metadata property to decorated classes if there was a decorator on the class element itself. However, the proposal says that the Symbol.metadata property should be present on all classes that have any decorators at all, not just those with a decorator on the class element itself.

  • Allow unknown import attributes to be used with the copy loader (#3792)

    Import attributes (the with keyword on import statements) are allowed to alter how that path is loaded. For example, esbuild cannot assume that it knows how to load ./bagel.js as type bagel:

    // This is an error with "--bundle" without also using "--external:./bagel.js"
    import tasty from "./bagel.js" with { type: "bagel" }

    Because of that, bundling this code with esbuild is an error unless the file ./bagel.js is external to the bundle (such as with --bundle --external:./bagel.js).

    However, there is an additional case where it's ok for esbuild to allow this: if the file is loaded using the copy loader. That's because the copy loader behaves similarly to --external in that the file is left external to the bundle. The difference is that the copy loader copies the file into the output folder and rewrites the import path while --external doesn't. That means the following will now work with the copy loader (such as with --bundle --loader:.bagel=copy):

    // This is no longer an error with "--bundle" and "--loader:.bagel=copy"
    import tasty from "./tasty.bagel" with { type: "bagel" }
  • Support import attributes with glob-style imports (#3797)

    This release adds support for import attributes (the with option) to glob-style imports (dynamic imports with certain string literal patterns as paths). These imports previously didn't support import attributes due to an oversight. So code like this will now work correctly:

    async function loadLocale(locale: string): Locale {
      const data = await import(`./locales/${locale}.data`, { with: { type: 'json' } })
      return unpackLocale(locale, data)
    }

    Previously this didn't work even though esbuild normally supports forcing the JSON loader using an import attribute. Attempting to do this used to result in the following error:

    ✘ [ERROR] No loader is configured for ".data" files: locales/en-US.data
    
    example.ts:2:28:
      2 │   const data = await import(`./locales/${locale}.data`, { with: { type: 'json' } })
        ╵                             ~~~~~~~~~~~~~~~~~~~~~~~~~~
    

    In addition, this change means plugins can now access the contents of with for glob-style imports.

  • Support ${configDir} in tsconfig.json files (#3782)

    This adds support for a new feature from the upcoming TypeScript 5.5 release. The character sequence ${configDir} is now respected at the start of baseUrl and paths values, which are used by esbuild during bundling to correctly map import paths to file system paths. This feature lets base tsconfig.json files specified via extends refer to the directory of the top-level tsconfig.json file. Here is an example:

... (truncated)

Commits
  • fc37c2f publish 0.21.5 to npm
  • cb11924 fix Symbol.metadata errors in decorator tests
  • b93a2a9 fix #3781: add metadata to all decorated classes
  • 953dae9 fix #3797: import attributes and glob-style import
  • 98cb2ed fix #3782: support ${configDir} in tsconfig.json
  • 8e6603b run make update-compat-table
  • db1b8ca fix #3792: import attributes and the copy loader
  • de572d0 fix non-deterministic import attribute plugin test
  • ae8d1b4 fix #3794: --supported:object-accessors=false
  • 67cbf87 publish 0.21.4 to npm
  • Additional commits viewable in compare view

Updates fake-indexeddb from 5.0.2 to 6.0.0

Release notes

Sourced from fake-indexeddb's releases.

v6.0.0

I made this a new major version because it includes a few changes that could in theory break something in some weird situations. But I think the vast majority of users (possibly all users?) won't have any issue upgrading.

  • #48 - Switched to using DOMException errors rather than normal errors, since that's what the IndexedDB spec says to use, and Node.js now has a built-in DOMException in all supported versions.

  • #93 - @​bryan-codaio made the latest tweak to event scheduling, this time improving how setImmediate is used in some situations where people are mocking timers.

  • #99 - @​sjnho fixed handling of Date objects to account for some edge cases, including jsdom overriding the native Date constructor.

Changelog

Sourced from fake-indexeddb's changelog.

6.0.0 (2024-05-20)

I made this a new major version because it includes a few changes that could in theory break something in some weird situations. But I think the vast majority of users (possibly all users?) won't have any issue upgrading.

  • #48 - Switched to using DOMException errors rather than normal errors, since that's what the IndexedDB spec says to use, and Node.js now has a built-in DOMException in all supported versions.

  • #93 - @​bryan-codaio made the latest tweak to event scheduling, this time improving how setImmediate is used in some situations where people are mocking timers.

  • #99 - @​sjnho fixed handling of Date objects to account for some edge cases, including jsdom overriding the native Date constructor.

Commits

Updates jsdom from 24.0.0 to 24.1.0

Release notes

Sourced from jsdom's releases.

Version 24.1.0

  • Added the getSetCookie() method to the Headers class. (ushiboy)
  • Fixed the creation and parsing of elements with names from Object.prototype, like "constructor" or "toString".
  • Updated rweb-cssom, which can now parse additional CSS constructs.
Changelog

Sourced from jsdom's changelog.

24.1.0

  • Added the getSetCookie() method to the Headers class. (ushiboy)
  • Fixed the creation and parsing of elements with names from Object.prototype, like "constructor" or "toString".
  • Updated rweb-cssom, which can now parse additional CSS constructs.
Commits
  • 4555914 Version 24.1.0
  • a693107 Fix elements with names from Object.prototype
  • 8738255 Add regression test for comma selector
  • a343932 Implement the getSetCookie() method of Headers
  • f2fa507 Update URLs and fix grammar error
  • 7dc7ab9 Fix getComputedStyle() not-implemented message
  • f5f2468 Update dependencies and most dev dependencies
  • b32d82b Fix wpt failure in overwritten-customElements-global.html
  • See full diff in compare view

Updates sass from 1.75.0 to 1.77.5

Release notes

Sourced from sass's releases.

Dart Sass 1.77.5

To install Sass 1.77.5, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

  • Fully trim redundant selectors generated by @extend.

See the full changelog for changes in earlier releases.

Dart Sass 1.77.4

To install Sass 1.77.4, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

Embedded Sass

  • Support passing Version input for fatalDeprecations as string over embedded protocol.

  • Fix a bug in the JS Embedded Host where Version could be incorrectly accepted as input for silenceDeprecations and futureDeprecations in pure JS.

See the full changelog for changes in earlier releases.

Dart Sass 1.77.3

To install Sass 1.77.3, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

Dart API

  • Deprecation.duplicateVariableFlags has been deprecated and replaced with Deprecation.duplicateVarFlags to make it consistent with the duplicate-var-flags name used on the command line and in the JS API.

See the full changelog for changes in earlier releases.

Dart Sass 1.77.2

To install Sass 1.77.2, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

... (truncated)

Changelog

Sourced from sass's changelog.

1.77.5

  • Fully trim redundant selectors generated by @extend.

1.77.4

Embedded Sass

  • Support passing Version input for fatalDeprecations as string over embedded protocol.

  • Fix a bug in the JS Embedded Host where Version could be incorrectly accepted as input for silenceDeprecations and futureDeprecations in pure JS.

1.77.3

Dart API

  • Deprecation.duplicateVariableFlags has been deprecated and replaced with Deprecation.duplicateVarFlags to make it consistent with the duplicate-var-flags name used on the command line and in the JS API.

1.77.2

  • Don't emit deprecation warnings for functions and mixins beginning with __.

  • Allow user-defined functions whose names begin with _ and otherwise look like vendor-prefixed functions with special CSS syntax.

Command-Line Interface

  • Properly handle the --silence-deprecation flag.

  • Handle the --fatal-deprecation and --future-deprecation flags for --interactive mode.

1.77.1

  • Fix a crash that could come up with importers in certain contexts.

1.77.0

  • Don't throw errors for at-rules in keyframe blocks.

1.76.0

  • Throw errors for misplaced statements in keyframe blocks.

  • Mixins and functions whose names begin with -- are now deprecated for forwards-compatibility with the in-progress CSS functions and mixins spec.

... (truncated)

Commits

Bumps the external-dependencies group with 14 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [dexie](https://github.com/dexie/Dexie.js) | `4.0.4` | `4.0.7` |
| [i18next](https://github.com/i18next/i18next) | `23.11.2` | `23.11.5` |
| [tldts](https://github.com/remusao/tldts) | `6.1.16` | `6.1.27` |
| [web-ext](https://github.com/mozilla/web-ext) | `8.0.0` | `8.1.0` |
| [zod](https://github.com/colinhacks/zod) | `3.22.4` | `3.23.8` |
| [@fingerprintjs/fingerprintjs](https://github.com/fingerprintjs/fingerprintjs) | `4.2.2` | `4.4.1` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.43.1` | `1.44.1` |
| [@types/chrome](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/chrome) | `0.0.266` | `0.0.268` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.12.7` | `20.14.2` |
| [esbuild](https://github.com/evanw/esbuild) | `0.20.2` | `0.21.5` |
| [fake-indexeddb](https://github.com/dumbmatter/fakeIndexedDB) | `5.0.2` | `6.0.0` |
| [jsdom](https://github.com/jsdom/jsdom) | `24.0.0` | `24.1.0` |
| [sass](https://github.com/sass/dart-sass) | `1.75.0` | `1.77.5` |
| [webextension-polyfill](https://github.com/mozilla/webextension-polyfill) | `0.10.0` | `0.12.0` |



Updates `dexie` from 4.0.4 to 4.0.7
- [Release notes](https://github.com/dexie/Dexie.js/releases)
- [Commits](dexie/Dexie.js@v4.0.4...v4.0.7)

Updates `i18next` from 23.11.2 to 23.11.5
- [Release notes](https://github.com/i18next/i18next/releases)
- [Changelog](https://github.com/i18next/i18next/blob/master/CHANGELOG.md)
- [Commits](i18next/i18next@v23.11.2...v23.11.5)

Updates `tldts` from 6.1.16 to 6.1.27
- [Release notes](https://github.com/remusao/tldts/releases)
- [Changelog](https://github.com/remusao/tldts/blob/master/CHANGELOG.md)
- [Commits](remusao/tldts@v6.1.16...v6.1.27)

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

Updates `zod` from 3.22.4 to 3.23.8
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Changelog](https://github.com/colinhacks/zod/blob/main/CHANGELOG.md)
- [Commits](colinhacks/zod@v3.22.4...v3.23.8)

Updates `@fingerprintjs/fingerprintjs` from 4.2.2 to 4.4.1
- [Release notes](https://github.com/fingerprintjs/fingerprintjs/releases)
- [Commits](fingerprintjs/fingerprintjs@v4.2.2...v4.4.1)

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

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

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

Updates `esbuild` from 0.20.2 to 0.21.5
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.20.2...v0.21.5)

Updates `fake-indexeddb` from 5.0.2 to 6.0.0
- [Release notes](https://github.com/dumbmatter/fakeIndexedDB/releases)
- [Changelog](https://github.com/dumbmatter/fakeIndexedDB/blob/master/CHANGELOG.md)
- [Commits](dumbmatter/fakeIndexedDB@v5.0.2...v6.0.0)

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

Updates `sass` from 1.75.0 to 1.77.5
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
- [Commits](sass/dart-sass@1.75.0...1.77.5)

Updates `webextension-polyfill` from 0.10.0 to 0.12.0
- [Release notes](https://github.com/mozilla/webextension-polyfill/releases)
- [Commits](mozilla/webextension-polyfill@0.10.0...0.12.0)

---
updated-dependencies:
- dependency-name: dexie
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: external-dependencies
- dependency-name: i18next
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: external-dependencies
- dependency-name: tldts
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: external-dependencies
- dependency-name: web-ext
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: external-dependencies
- dependency-name: zod
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: external-dependencies
- dependency-name: "@fingerprintjs/fingerprintjs"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: external-dependencies
- dependency-name: "@playwright/test"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: external-dependencies
- dependency-name: "@types/chrome"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: external-dependencies
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: external-dependencies
- dependency-name: esbuild
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: external-dependencies
- dependency-name: fake-indexeddb
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: external-dependencies
- dependency-name: jsdom
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: external-dependencies
- dependency-name: sass
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: external-dependencies
- dependency-name: webextension-polyfill
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: external-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jun 17, 2024
@sammacbeth sammacbeth merged commit f074095 into main Jun 24, 2024
22 checks passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/main/external-dependencies-6c45234093 branch June 24, 2024 08:57
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

1 participant