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 21 updates #425

Conversation

dependabot[bot]
Copy link

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

Bumps the external-dependencies group with 20 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.25
web-ext 7.11.0 8.0.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
asana d90978a f4375cc
esbuild 0.20.2 0.21.5
eslint 8.57.0 9.4.0
fake-indexeddb 5.0.2 6.0.0
jasmine 5.0.2 5.1.0
@types/jasmine 4.3.5 5.1.4
jsdom 24.0.0 24.1.0
karma-jasmine 1.1.1 5.1.0
sass 1.75.0 1.77.4
typescript 5.3.3 5.4.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.25

Release notes

Sourced from tldts's releases.

v6.1.25

📜 Update Public Suffix List

  • tldts-experimental, tldts-icann, tldts

🔩 Dependencies

Authors: 2

v6.1.24

📜 Update Public Suffix List

Authors: 1

v6.1.23

📜 Update Public Suffix List

  • tldts-experimental, tldts

Authors: 1

v6.1.22

📜 Update Public Suffix List

🔩 Dependencies

... (truncated)

Changelog

Sourced from tldts's changelog.

v6.1.25 (Thu Jun 06 2024)

📜 Update Public Suffix List

  • tldts-experimental, tldts-icann, tldts

🔩 Dependencies

Authors: 2


v6.1.24 (Sat Jun 01 2024)

📜 Update Public Suffix List

Authors: 1


v6.1.23 (Tue May 28 2024)

📜 Update Public Suffix List

  • tldts-experimental, tldts

Authors: 1


v6.1.22 (Sun May 26 2024)

📜 Update Public Suffix List

... (truncated)

Commits
  • 082aa15 Bump version to: v6.1.25 [skip ci]
  • fd7f9d6 Update CHANGELOG.md [skip ci]
  • 619f998 Update upstream public suffix list (#2057)
  • a966fde Bump @​types/node from 20.14.0 to 20.14.2 (#2061)
  • 9d6b022 Bump @​typescript-eslint/parser from 7.11.0 to 7.12.0 (#2059)
  • 15c354c Bump @​typescript-eslint/parser from 7.10.0 to 7.11.0 (#2052)
  • ed1f017 Bump @​typescript-eslint/eslint-plugin from 7.10.0 to 7.11.0 (#2053)
  • 8b15d0a Bump @​types/node from 20.12.12 to 20.14.0 (#2056)
  • 6d135a7 Bump version to: v6.1.24 [skip ci]
  • 40afbb9 Update CHANGELOG.md [skip ci]
  • Additional commits viewable in compare view

Updates web-ext from 7.11.0 to 8.0.0

Release notes

Sourced from web-ext's releases.

8.0.0

What's changed

300+ commits have been written to get this new version 8 out of the door (see link to the full changelog at the bottom). Please take a look at the official documentation to know what has changed but expect some breaking changes.

Specifically, web-ext sign has been heavily refactored. Among other things, you can create new add-ons (not just versions) from the command line now 🎉 Unfortunately, this command is not backward compatible with v7.

While we're keeping the v7 branch around to ease the transition, we will mainly fix bugs and introduce new features in v8.

New contributors

Full changelog: mozilla/web-ext@7.12.0...8.0.0

7.12.0

📣 We're finalizing web-ext v8 (the next major release), which will use a new AMO API to sign add-ons. Please try it out now by passing the --use-submission-api flag to the sign command in web-ext v7. More information at: https://extensionworkshop.com/documentation/develop/web-ext-command-reference-v7/#use-submission-api


features

  • web-ext lint: updated to use addons-linter to 6.28.0
  • web-ext run: fixed a bug related to the use of work profiles on Android devices (backport #2857)

See all changes: mozilla/web-ext@7.11.0...7.12.0

Commits
  • 17d1c4b docs: remove some badges in the README file
  • 06dafc5 fix: Fix link to EW in README file (#3149)
  • e224899 chore(deps): bump addons-linter from 6.27.0 to 6.28.0 (#3145)
  • 0539cce feat: remove --id flag on web-ext sign (#3126)
  • 9fa3bf1 chore(deps-dev): bump @​babel/eslint-parser from 7.24.5 to 7.24.6 (#3142)
  • 1b58b41 chore(deps-dev): bump @​babel/cli from 7.24.5 to 7.24.6 (#3144)
  • 0548119 chore(deps-dev): bump @​babel/register from 7.23.7 to 7.24.6 (#3143)
  • c1fb52c chore(deps-dev): bump @​babel/core from 7.24.5 to 7.24.6 (#3140)
  • b697131 chore(deps-dev): bump @​babel/preset-env from 7.24.5 to 7.24.6 (#3139)
  • 4559323 chore(deps): bump @​babel/runtime from 7.24.5 to 7.24.6 (#3138)
  • 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 asana from d90978a to f4375cc

Commits
  • f4375cc Updated JavaScript SDK: v3.0.7
  • fc1f3bb Updated JavaScript SDK: v3.0.6
  • 120f09b Updated JavaScript SDK: v3.0.5
  • 15c5e2b Updated JavaScript SDK: v3.0.4
  • 67c10b0 Updated JavaScript SDK: v3.0.3
  • 6f77337 Merge pull request #294 from Asana/simplify-pagination-sample-code
  • fadbad7 Simplify pagination sample code on the README.mustache template
  • a0145f4 Merge pull request #292 from Asana/fix-api-mustache-template-hard-coded-boolean
  • 118019f Merge pull request #293 from Asana/fix-github-action-workflow
  • 4916560 Remove composite action to get github app tokens and use get github app token...
  • Additional commits viewable in compare view

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 eslint from 8.57.0 to 9.4.0

Release notes

Sourced from eslint's releases.

v9.4.0

Features

  • 89a4a0a feat: ignore IIFE's in the no-loop-func rule (#17528) (Nitin Kumar)

Bug Fixes

  • f6534d1 fix: skip processor code blocks that match only universal patterns (#18507) (Milos Djermanovic)
  • 7226ebd fix: allow implicit undefined return in no-constructor-return (#18515) (Ali Rezvani)
  • 389744b fix: use @eslint/config-inspector@latest (#18483) (唯然)
  • 70118a5 fix: func-style false positive with arrow functions and super (#18473) (Milos Djermanovic)

Documentation

  • d7ab6f5 docs: update theme when when prefers-color-scheme changes (#18510) (Nitin Kumar)
  • 525fdff docs: fix components files (#18519) (Tanuj Kanti)
  • 80747d2 docs: refactor prefer-destructuring rule (#18472) (Tanuj Kanti)
  • f06e0b5 docs: clarify func-style (#18477) (Cameron Steffen)

Chores

  • 010dd2e chore: upgrade to @eslint/js@9.4.0 (#18534) (Francesco Trotta)
  • 5e1b5dc chore: package.json update for @​eslint/js release (Jenkins)
  • 594145f refactor: switch to @eslint/config-array (#18527) (Francesco Trotta)

v9.3.0

Features

  • b32153c feat: add overrides.namedExports to func-style rule (#18444) (Percy Ma)
  • b67eba4 feat: add restrictedNamedExportsPattern to no-restricted-exports (#18431) (Akul Srivastava)
  • 069aa68 feat: add option allowEscape to no-misleading-character-class rule (#18208) (Francesco Trotta)
  • 05ef92d feat: deprecate multiline-comment-style & line-comment-position (#18435) (唯然)
  • db0b174 feat: add enforceForInnerExpressions option to no-extra-boolean-cast (#18222) (Kirk Waiblinger)

Bug Fixes

  • 8db0eff fix: Improve config error messages (#18457) (Nicholas C. Zakas)
  • 5c28d9a fix: don't remove comments between key and value in object-shorthand (#18442) (Kuba Jastrzębski)
  • 39fb0ee fix: object-shorthand loses type parameters when auto-fixing (#18438) (dalaoshu)
  • 37eba48 fix: don't crash when fs.readFile returns promise from another realm (#18416) (Milos Djermanovic)

Documentation

  • ceada8c docs: explain how to use "tsc waiting" label (#18466) (Francesco Trotta)
  • 62e686c docs: Add troubleshooting info for plugin compatibility (#18451) (Nicholas C. Zakas)
  • e17e1c0 docs: Update README (GitHub Actions Bot)
  • 2465a1e docs: Update README (GitHub Actions Bot)
  • d23574c docs: Clarify usage of no-unreachable with TypeScript (#18445) (benj-dobs)
  • 1db9bae docs: Fix typos (#18443) (Frieder Bluemle)
  • 7065196 docs: Update README (GitHub Actions Bot)
  • 04e7c6e docs: update deprecation notice of no-return-await (#18433) (Tanuj Kanti)
  • e763512 docs: Link global ignores section in config object property list (#18430) (MaoShizhong)
  • ac7f718 docs: reflect release of v9 in config migration guide (#18412) (Peter Briggs)
  • 0de0909 docs: fix grammar in configuration file resolution (#18419) (Mike McCready)

Chores

  • 58e2719 chore: update dependencies for v9.3.0 release (#18469) (Francesco Trotta)

... (truncated)

Changelog

Sourced from eslint's changelog.

v9.4.0 - May 31, 2024

Bumps the external-dependencies group with 20 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.25` |
| [web-ext](https://github.com/mozilla/web-ext) | `7.11.0` | `8.0.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` |
| [asana](https://github.com/Asana/node-asana) | ``d90978a`` | ``f4375cc`` |
| [esbuild](https://github.com/evanw/esbuild) | `0.20.2` | `0.21.5` |
| [eslint](https://github.com/eslint/eslint) | `8.57.0` | `9.4.0` |
| [fake-indexeddb](https://github.com/dumbmatter/fakeIndexedDB) | `5.0.2` | `6.0.0` |
| [jasmine](https://github.com/jasmine/jasmine-npm) | `5.0.2` | `5.1.0` |
| [@types/jasmine](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jasmine) | `4.3.5` | `5.1.4` |
| [jsdom](https://github.com/jsdom/jsdom) | `24.0.0` | `24.1.0` |
| [karma-jasmine](https://github.com/karma-runner/karma-jasmine) | `1.1.1` | `5.1.0` |
| [sass](https://github.com/sass/dart-sass) | `1.75.0` | `1.77.4` |
| [typescript](https://github.com/Microsoft/TypeScript) | `5.3.3` | `5.4.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.25
- [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.25)

Updates `web-ext` from 7.11.0 to 8.0.0
- [Release notes](https://github.com/mozilla/web-ext/releases)
- [Commits](mozilla/web-ext@7.11.0...8.0.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 `asana` from `d90978a` to `f4375cc`
- [Release notes](https://github.com/Asana/node-asana/releases)
- [Commits](Asana/node-asana@d90978a...f4375cc)

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 `eslint` from 8.57.0 to 9.4.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v8.57.0...v9.4.0)

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 `glob` from 10.3.12 to 10.4.1
- [Changelog](https://github.com/isaacs/node-glob/blob/main/changelog.md)
- [Commits](isaacs/node-glob@v10.3.12...v10.4.1)

Updates `jasmine` from 5.0.2 to 5.1.0
- [Release notes](https://github.com/jasmine/jasmine-npm/releases)
- [Changelog](https://github.com/jasmine/jasmine-npm/blob/main/RELEASE.md)
- [Commits](jasmine/jasmine-npm@v5.0.2...v5.1.0)

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

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 `karma-jasmine` from 1.1.1 to 5.1.0
- [Release notes](https://github.com/karma-runner/karma-jasmine/releases)
- [Changelog](https://github.com/karma-runner/karma-jasmine/blob/master/CHANGELOG.md)
- [Commits](karma-runner/karma-jasmine@v1.1.1...v5.1.0)

Updates `sass` from 1.75.0 to 1.77.4
- [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.4)

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)

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-major
  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: asana
  dependency-type: direct:development
  dependency-group: external-dependencies
- dependency-name: esbuild
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: external-dependencies
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: external-dependencies
- dependency-name: fake-indexeddb
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: external-dependencies
- dependency-name: glob
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: external-dependencies
- dependency-name: jasmine
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: external-dependencies
- dependency-name: "@types/jasmine"
  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: karma-jasmine
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: external-dependencies
- dependency-name: sass
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: external-dependencies
- dependency-name: typescript
  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>
Copy link
Author

dependabot bot commented on behalf of github Jun 10, 2024

The following labels could not be found: dependencies.

Copy link
Author

dependabot bot commented on behalf of github Jun 17, 2024

Superseded by #429.

@dependabot dependabot bot closed this Jun 17, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/main/external-dependencies-600460fd7f branch June 17, 2024 03:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
0 participants