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 #429

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Jun 17, 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.27
web-ext 7.11.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
asana d90978a f4375cc
esbuild 0.20.2 0.21.5
eslint 8.57.0 9.5.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.5
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.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 7.11.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

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


... (truncated)

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

Release notes

Sourced from eslint's releases.

v9.5.0

Features

  • b2d256c feat: no-sparse-arrays report on "comma" instead of the whole array (#18579) (fisker Cheung)

Bug Fixes

  • 6880286 fix: treat * as a universal pattern (#18586) (Milos Djermanovic)
  • 7fbe211 fix: message template for all files ignored (#18564) (Milos Djermanovic)
  • 469cb36 fix: Don't lint the same file multiple times (#18552) (Milos Djermanovic)
  • 5cff638 fix: improve message for ignored files without a matching config (#18404) (Francesco Trotta)

Documentation

  • 455f7fd docs: add section about including .gitignore files (#18590) (Milos Djermanovic)
  • 721eafe docs: update info about universal files patterns (#18587) (Francesco Trotta)
  • 8127127 docs: Update README (GitHub Actions Bot)
  • 55c2a66 docs: Update README (GitHub Actions Bot)
  • eb76282 docs: Update README (GitHub Actions Bot)
  • ff6e96e docs: baseConfig and overrideConfig can be arrays (#18571) (Milos Djermanovic)
  • d2d83e0 docs: Add mention of eslint-transforms to v9 migration guide (#18566) (Nicholas C. Zakas)
  • 9ce6832 docs: add callout box for unintuitive behavior (#18567) (Ben McCann)
  • b8db99c docs: Add VS Code info to config migration guide (#18555) (Nicholas C. Zakas)
  • 518a35c docs: Mention config migrator (#18561) (Nicholas C. Zakas)
  • eb440fc docs: specifying files with arbitrary or no extension (#18539) (Francesco Trotta)
  • 38c159e docs: Provide example of reading package.json for plugins meta (#18530) (Nicholas C. Zakas)
  • d16a659 docs: add link to migration guide for --ext CLI option (#18537) (Milos Djermanovic)
  • 73408de docs: add link to configuration file docs before examples (#18535) (Milos Djermanovic)

Chores

  • f588160 chore: upgrade @​eslint/js@​9.5.0 (#18591) (Milos Djermanovic)
  • 5890841 chore: package.json update for @​eslint/js release (Jenkins)
  • e9f4ccd chore: remove unused eslint-disable directive (#18589) (Milos Djermanovic)
  • 4b23ffd refactor: Move JS parsing logic into JS language (#18448) (Nicholas C. Zakas)
  • 1495b93 chore: update WebdriverIO packages (#18558) (Christian Bromann)
  • cea7ede chore: add website donate link instead of opencollective (#18582) (Strek)
  • ec94880 chore: package.json update for eslint-config-eslint release (Jenkins)
  • 6912586 chore: extract formatting rules into separate config (#18560) (Milos Djermanovic)
  • 9738f7e ci: fix CLI flags for c8, raise thresholds (#18554) (Francesco Trotta)
  • c6de7bb chore: update dependency markdownlint-cli to ^0.41.0 (#18538) (renovate[bot])

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.27` |
| [web-ext](https://github.com/mozilla/web-ext) | `7.11.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` |
| [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.5.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.5` |
| [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.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 7.11.0 to 8.1.0
- [Release notes](https://github.com/mozilla/web-ext/releases)
- [Commits](mozilla/web-ext@7.11.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 `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.5.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.5.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.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 `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 17, 2024

The following labels could not be found: dependencies.

Copy link
Author

dependabot bot commented on behalf of github Jun 18, 2024

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

@dependabot dependabot bot closed this Jun 18, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/main/external-dependencies-965ae8ecb2 branch June 18, 2024 11: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
0 participants