Skip to content

chore(deps)(deps-dev): bump the dev-minor-patch group across 1 directory with 24 updates#49

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/dev-minor-patch-2144afb626
Open

chore(deps)(deps-dev): bump the dev-minor-patch group across 1 directory with 24 updates#49
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/dev-minor-patch-2144afb626

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 18, 2026

Bumps the dev-minor-patch group with 23 updates in the / directory:

Package From To
@biomejs/biome 2.4.4 2.4.15
@graphql-tools/merge 9.1.7 9.1.9
lighthouse 13.0.3 13.3.0
tsx 4.21.0 4.22.2
turbo 2.8.13-canary.8 2.9.14
typescript 6.0.0-dev.20260301 6.0.3
@graphql-codegen/typescript 6.0.0-alpha-20260226131033-a969ebb287a7074d9b41d6e3af3e76b24ba462fa 6.0.1
@graphql-codegen/typescript-resolvers 6.0.0-alpha-20260226131033-a969ebb287a7074d9b41d6e3af3e76b24ba462fa 6.0.1
@types/node 25.3.3 25.9.0
vitest 4.1.0-beta.5 4.1.6
@axe-core/playwright 4.11.2-0f5a6e3.0 4.11.3
@playwright/test 1.59.0-alpha-2026-03-01 1.60.0
@tailwindcss/postcss 4.2.1 4.3.0
@vitest/ui 4.1.0-beta.5 4.1.6
@webgpu/types 0.1.69 0.1.70
axe-core 4.11.1 4.11.4
serwist 9.5.6 9.5.11
@cloudflare/workers-types 4.20260305.0 4.20260518.1
wrangler 4.69.0 4.92.0
dotenv 17.3.1 17.4.2
prisma 7.5.0-dev.33 7.8.0
fast-check 4.5.3 4.8.0
typedoc 0.28.17 0.28.19

Updates @biomejs/biome from 2.4.4 to 2.4.15

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.4.15

2.4.15

Patch Changes

  • #9394 ba3480e Thanks @​dyc3! - Added the nursery rule useTestHooksInOrder in the test domain. The rule enforces that Jest/Vitest lifecycle hooks (beforeAll, beforeEach, afterEach, afterAll) are declared in the order they execute, making test setup and teardown easier to reason about.

  • #10254 e0a54cc Thanks @​dyc3! - Added a new nursery rule useVueNextTickPromise, which enforces Promise syntax when using Vue nextTick.

    For example, the following snippet triggers the rule:

    import { nextTick } from "vue";
    nextTick(() => {
    updateDom();
    });

  • #10219 64aee45 Thanks @​dyc3! - Added a new nursery rule noVueVOnNumberValues, that disallows deprecated number modifiers on Vue v-on directives.

    For example, the following snippet triggers the rule:

    <input @keyup.13="submit" />
  • #10195 7b8d4e1 Thanks @​dyc3! - Added the new nursery rule useVueValidVFor, which validates Vue v-for directives and reports invalid aliases, missing component keys, and keys that do not use iteration variables.

  • #10238 1110256 Thanks @​dyc3! - Added the recommended nursery rule noVueImportCompilerMacros, which disallows importing Vue compiler macros such as defineProps from vue because they are automatically available.

  • #10201 1a08f89 Thanks @​realknove! - Fixed #10193: style/useReadonlyClassProperties no longer reports class properties as readonly-able when they are assigned inside arrow callbacks nested in class property initializers.

  • #9574 3bd2b6a Thanks @​Conaclos! - Fixed #9530. The diagnostics of organizeImports are now more detailed and more precise. They are also better at localizing where the issue is.

  • #10205 a704a6c Thanks @​Conaclos! - Fixed #10185. `organizeImports now errors when it encounters an unknown predefined group.

    The following configuration is now reported as invalid because :INEXISTENT: is an unknown predefined group.

    {
      "assist": {
        "actions": {
          "source": {
            "organizeImports": { "options": { "groups": [":INEXISTENT:"] } }
          }
        }
      }
    }

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.4.15

Patch Changes

  • #9394 ba3480e Thanks @​dyc3! - Added the nursery rule useTestHooksInOrder in the test domain. The rule enforces that Jest/Vitest lifecycle hooks (beforeAll, beforeEach, afterEach, afterAll) are declared in the order they execute, making test setup and teardown easier to reason about.

  • #10254 e0a54cc Thanks @​dyc3! - Added a new nursery rule useVueNextTickPromise, which enforces Promise syntax when using Vue nextTick.

    For example, the following snippet triggers the rule:

    import { nextTick } from "vue";
    nextTick(() => {
    updateDom();
    });

  • #10219 64aee45 Thanks @​dyc3! - Added a new nursery rule noVueVOnNumberValues, that disallows deprecated number modifiers on Vue v-on directives.

    For example, the following snippet triggers the rule:

    <input @keyup.13="submit" />
  • #10195 7b8d4e1 Thanks @​dyc3! - Added the new nursery rule useVueValidVFor, which validates Vue v-for directives and reports invalid aliases, missing component keys, and keys that do not use iteration variables.

  • #10238 1110256 Thanks @​dyc3! - Added the recommended nursery rule noVueImportCompilerMacros, which disallows importing Vue compiler macros such as defineProps from vue because they are automatically available.

  • #10201 1a08f89 Thanks @​realknove! - Fixed #10193: style/useReadonlyClassProperties no longer reports class properties as readonly-able when they are assigned inside arrow callbacks nested in class property initializers.

  • #9574 3bd2b6a Thanks @​Conaclos! - Fixed #9530. The diagnostics of organizeImports are now more detailed and more precise. They are also better at localizing where the issue is.

  • #10205 a704a6c Thanks @​Conaclos! - Fixed #10185. `organizeImports now errors when it encounters an unknown predefined group.

    The following configuration is now reported as invalid because :INEXISTENT: is an unknown predefined group.

    {
      "assist": {
        "actions": {
          "source": {
            "organizeImports": { "options": { "groups": [":INEXISTENT:"] } }
          }
        }
      }
    }

... (truncated)

Commits

Updates @graphql-tools/merge from 9.1.7 to 9.1.9

Changelog

Sourced from @​graphql-tools/merge's changelog.

9.1.9

Patch Changes

  • Updated dependencies [a4b7dce]:
    • @​graphql-tools/utils@​11.1.0

9.1.8

Patch Changes

  • Updated dependencies [ae36a0e]:
    • @​graphql-tools/utils@​11.0.1
Commits
  • 4aa9156 chore(release): update monorepo packages versions (#8145)
  • c097bc9 build(deps): bump the actions-deps group across 1 directory with 9 updates (#...
  • 14066f9 chore(release): update monorepo packages versions (#8118)
  • a831489 build(deps): bump the actions-deps group with 7 updates (#8105)
  • c9a8d1a Fix CI
  • fe413ee Revert unnecessary changes
  • a9b06bc Fix tests
  • a91a765 build(deps): bump the actions-deps group with 8 updates (#8056)
  • 3929728 build(deps): bump the actions-deps group across 1 directory with 2 updates (#...
  • d0e76cd build(deps): bump the actions-deps group across 1 directory with 3 updates (#...
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​graphql-tools/merge since your current version.


Updates lighthouse from 13.0.3 to 13.3.0

Release notes

Sourced from lighthouse's releases.

v13.3.0

Full Changelog

We expect this release to ship in the DevTools of Chrome 150, and to PageSpeed Insights within 2 weeks.

Notable Changes

  • New agentic browsing category added to default config (#17002)

Core

  • agentic-web: add links to category and audit descriptions (#16997)
  • llms-txt: adjust titles and descriptions and add smoketests (#17005)

Deps

  • upgrade dependencies (#17006)

Tests

  • smoke: widen byte efficiency wastedBytes range for ToT (#16996)
  • webmcp: add webmcp smoketests (#16999)

Misc

  • bundle: update build-bundle-mcp (#16995)

v13.2.0

Full Changelog

We expect this release to ship in the DevTools of Chrome 150, and to PageSpeed Insights within 2 weeks.

New contributors

Thanks to our new contributors 👽🐷🐰🐯🐻!

New Audits

  • webmcp-form-coverage: add audit for missing webmcp tool annotations (#16964)
  • webmcp-registered-tools: add audit to list registered webmcp tools (#16959)
  • webmcp-schema-validity: add audit to check WebMCP schema issues (#16973)

Core

  • implement UKM Invalidate fallback for LCP (#16956)
  • agentic: add new agentic browsing category (#16953)

... (truncated)

Changelog

Sourced from lighthouse's changelog.

13.3.0 (2026-05-07)

Full Changelog

We expect this release to ship in the DevTools of Chrome 150, and to PageSpeed Insights within 2 weeks.

Notable Changes

  • New agentic browsing category added to default config (#17002)

Core

  • agentic-web: add links to category and audit descriptions (#16997)
  • llms-txt: adjust titles and descriptions and add smoketests (#17005)

Deps

  • upgrade dependencies (#17006)

Tests

  • smoke: widen byte efficiency wastedBytes range for ToT (#16996)
  • webmcp: add webmcp smoketests (#16999)

Misc

  • bundle: update build-bundle-mcp (#16995)

13.2.0 (2026-04-30)

Full Changelog

We expect this release to ship in the DevTools of Chrome 150, and to PageSpeed Insights within 2 weeks.

New contributors

Thanks to our new contributors 👽🐷🐰🐯🐻!

New Audits

  • webmcp-form-coverage: add audit for missing webmcp tool annotations (#16964)
  • webmcp-registered-tools: add audit to list registered webmcp tools (#16959)
  • webmcp-schema-validity: add audit to check WebMCP schema issues (#16973)

Core

  • implement UKM Invalidate fallback for LCP (#16956)
  • agentic: add new agentic browsing category (#16953)

... (truncated)

Commits
  • 7d8dcf5 v13.3.0 (#17008)
  • f146050 deps: upgrade dependencies (#17006)
  • ec66b4a core(llms-txt): adjust titles and descriptions and add smoketests (#17005)
  • 147d04c tests(webmcp): add webmcp smoketests (#16999)
  • e120fad Revert "clients(devtools): include agentic browsing config in devtools entry"...
  • e796f1b core(agentic browsing): add agentic browsing category to default config (#17002)
  • e148cc6 Revert "clients(devtools): include agentic browsing config in devtools entry"...
  • 081b1f2 clients(devtools): include agentic browsing config in devtools entry (#16998)
  • 7db9ab8 core(agentic-web): add links to category and audit descriptions (#16997)
  • 8c6a64e misc(bundle): update build-bundle-mcp (#16995)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by lusayaa, a new releaser for lighthouse since your current version.


Updates tsx from 4.21.0 to 4.22.2

Release notes

Sourced from tsx's releases.

v4.22.2

4.22.2 (2026-05-18)

Bug Fixes

  • preserve CJS JSON require in ESM hooks (35b700b)
  • preserve named exports from CommonJS TypeScript (11de737)
  • support module.exports require(esm) interop (cf8f199)

This release is also available on:

v4.22.1

4.22.1 (2026-05-17)

Bug Fixes

  • resolve tsconfig path aliases containing a colon (#780) (6979f28)

This release is also available on:

v4.22.0

4.22.0 (2026-05-14)

Features


This release is also available on:

v4.21.1

4.21.1 (2026-05-14)

Bug Fixes

  • support Node 20.11/21.2 import.meta paths (acf3d8f)
  • support Node.js 24.15.0 (c1d2d45)
  • support Node.js 26.1.0 and 25.9.0 (1d7e528)

This release is also available on:

... (truncated)

Commits
  • 35b700b fix: preserve CJS JSON require in ESM hooks
  • ef807db chore: update testing dependencies
  • 3917090 test: document compatibility test taxonomy
  • de8113f refactor: centralize Node capability facts
  • c1f62db test: consolidate tsconfig path edge coverage
  • 4e08174 test: consolidate loader hook coverage
  • 674bb30 test: consolidate tsImport commonjs mts coverage
  • e6972ac test: stabilize process interaction tests
  • 9736a80 test: safely decode stdout stream tex
  • 11de737 fix: preserve named exports from CommonJS TypeScript
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for tsx since your current version.


Updates turbo from 2.8.13-canary.8 to 2.9.14

Release notes

Sourced from turbo's releases.

Turborepo v2.9.14

[!NOTE] This release contains important security fixes.

High:

Low:

What's Changed

Changelog

New Contributors

Full Changelog: vercel/turborepo@v2.9.12...v2.9.14

Turborepo v2.9.13-canary.1

What's Changed

Changelog

... (truncated)

Commits

Updates typescript from 6.0.0-dev.20260301 to 6.0.3

Release notes

Sourced from typescript's releases.

TypeScript 6.0.3

For release notes, check out the release announcement blog post.

Downloads are available on:

TypeScript 6.0

For release notes, check out the release announcement blog post.

Downloads are available on:

Commits

Updates @graphql-codegen/typescript from 6.0.0-alpha-20260226131033-a969ebb287a7074d9b41d6e3af3e76b24ba462fa to 6.0.1

Changelog

Sourced from @​graphql-codegen/typescript's changelog.

6.0.1

Patch Changes

6.0.0

Major Changes

  • #10496 afaace6 Thanks @​eddeee888! - BREAKING CHANGE: visitors' config option are moved based on their use case

    • addTypename/skipTypename: is only a types-visitor concern. This is moved to types-visitor from base-visitor
    • nonOptionalTypename: is a documents-visitor and types-visitor concern. Moved from base-visitor there
    • extractAllFieldsToTypes: is a documents-visitor concern. Moved from base-visitor there
    • enumPrefix and enumSuffix: need to be in base-visitor as all 3 types of visitors need this to correctly sync the enum type names. This is moved to base visitor
    • ignoreEnumValuesFromSchema: is a documents-visitor and types-visitor concern. Moved from base-visitor there.
    • globalNamespace: is a documents-visitor concern. Moved from base-visitor there

    Refactors

    • documents-visitor no longer extends types-visitor option types as they have two distinct usages now. The types now extend base-visitor types. This is now consistent with documents-visitor extending base-visitor
    • Classes now handle config parsing and types at the same level e.g. if typescript-operations plugin parses configOne, then the types for configOne must be in that class, rather than in base-documents-visitor

    Note: These visitors are rolled up into one type for simplicity

    • base-visitor: includes base-visitor
    • documents-visitor: includes base-documents-visitor and typescript-operations visitor
    • types-visitor: includes base-types-visitor and typescript visitor
    • resolvers-visitor: includes base-resolvers-visitor and typescript-resolvers visitor
  • #10496 afaace6 Thanks @​eddeee888! - BREAKING CHANGE: make unknown instead of any the default custom scalar type

... (truncated)

Commits

Updates @graphql-codegen/typescript-resolvers from 6.0.0-alpha-20260226131033-a969ebb287a7074d9b41d6e3af3e76b24ba462fa to 6.0.1

Changelog

Sourced from @​graphql-codegen/typescript-resolvers's changelog.

6.0.1

Patch Changes

6.0.0

Major Changes

  • #10496 afaace6 Thanks @​eddeee888! - BREAKING CHANGE: visitors' config option are moved based on their use case

    • addTypename/skipTypename: is only a types-visitor concern. This is moved to types-visitor from base-visitor
    • nonOptionalTypename: is a documents-visitor and types-visitor concern. Moved from base-visitor there
    • extractAllFieldsToTypes: is a documents-visitor concern. Moved from base-visitor there
    • enumPrefix and enumSuffix: need to be in base-visitor as all 3 types of visitors need this to correctly sync the enum type names. This is moved to base visitor
    • ignoreEnumValuesFromSchema: is a documents-visitor and types-visitor concern. Moved from base-visitor there.
    • globalNamespace: is a documents-visitor concern. Moved from base-visitor there

    Refactors

    • documents-visitor no longer extends types-visitor option types as they have two distinct usages now. The types now extend base-visitor types. This is now consistent with documents-visitor extending base-visitor
    • Classes now handle config parsing and types at the same level e.g. if typescript-operations plugin parses configOne, then the types for configOne must be in that class, rather than in base-documents-visitor

    Note: These visitors are rolled up into one type for simplicity

    • base-visitor: includes base-visitor
    • documents-visitor: includes base-documents-visitor and typescript-operations visitor
    • types-visitor: includes base-types-visitor and typescript visitor
    • resolvers-visitor: includes base-resolvers-visitor and typescript-resolvers visitor
  • #10496 afaace6 Thanks @​eddeee888! - BREAKING CHANGE: make unknown instead of any the default custom scalar type

... (truncated)

Commits

Updates @types/node from 25.3.3 to 25.9.0

Commits

Updates vitest from 4.1.0-beta.5 to 4.1.6

Release notes

Sourced from vitest's releases.

v4.1.6

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub

v4.1.5

   🚀 Experimental Features

   🐞 Bug Fixes

    View changes on GitHub

v4.1.4

   🚀 Experimental Features

   🐞 Bug Fixes

... (truncated)

Commits

…ory with 24 updates

Bumps the dev-minor-patch group with 23 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.4.4` | `2.4.15` |
| [@graphql-tools/merge](https://github.com/ardatan/graphql-tools/tree/HEAD/packages/merge) | `9.1.7` | `9.1.9` |
| [lighthouse](https://github.com/GoogleChrome/lighthouse) | `13.0.3` | `13.3.0` |
| [tsx](https://github.com/privatenumber/tsx) | `4.21.0` | `4.22.2` |
| [turbo](https://github.com/vercel/turborepo) | `2.8.13-canary.8` | `2.9.14` |
| [typescript](https://github.com/microsoft/TypeScript) | `6.0.0-dev.20260301` | `6.0.3` |
| [@graphql-codegen/typescript](https://github.com/dotansimha/graphql-code-generator/tree/HEAD/packages/plugins/typescript/typescript) | `6.0.0-alpha-20260226131033-a969ebb287a7074d9b41d6e3af3e76b24ba462fa` | `6.0.1` |
| [@graphql-codegen/typescript-resolvers](https://github.com/dotansimha/graphql-code-generator/tree/HEAD/packages/plugins/typescript/resolvers) | `6.0.0-alpha-20260226131033-a969ebb287a7074d9b41d6e3af3e76b24ba462fa` | `6.0.1` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `25.3.3` | `25.9.0` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `4.1.0-beta.5` | `4.1.6` |
| [@axe-core/playwright](https://github.com/dequelabs/axe-core-npm) | `4.11.2-0f5a6e3.0` | `4.11.3` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.59.0-alpha-2026-03-01` | `1.60.0` |
| [@tailwindcss/postcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-postcss) | `4.2.1` | `4.3.0` |
| [@vitest/ui](https://github.com/vitest-dev/vitest/tree/HEAD/packages/ui) | `4.1.0-beta.5` | `4.1.6` |
| [@webgpu/types](https://github.com/gpuweb/types) | `0.1.69` | `0.1.70` |
| [axe-core](https://github.com/dequelabs/axe-core) | `4.11.1` | `4.11.4` |
| [serwist](https://github.com/serwist/serwist) | `9.5.6` | `9.5.11` |
| [@cloudflare/workers-types](https://github.com/cloudflare/workerd) | `4.20260305.0` | `4.20260518.1` |
| [wrangler](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler) | `4.69.0` | `4.92.0` |
| [dotenv](https://github.com/motdotla/dotenv) | `17.3.1` | `17.4.2` |
| [prisma](https://github.com/prisma/prisma/tree/HEAD/packages/cli) | `7.5.0-dev.33` | `7.8.0` |
| [fast-check](https://github.com/dubzzz/fast-check/tree/HEAD/packages/fast-check) | `4.5.3` | `4.8.0` |
| [typedoc](https://github.com/TypeStrong/TypeDoc) | `0.28.17` | `0.28.19` |



Updates `@biomejs/biome` from 2.4.4 to 2.4.15
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/@biomejs/biome@2.4.15/packages/@biomejs/biome)

Updates `@graphql-tools/merge` from 9.1.7 to 9.1.9
- [Release notes](https://github.com/ardatan/graphql-tools/releases)
- [Changelog](https://github.com/ardatan/graphql-tools/blob/master/packages/merge/CHANGELOG.md)
- [Commits](https://github.com/ardatan/graphql-tools/commits/@graphql-tools/merge@9.1.9/packages/merge)

Updates `lighthouse` from 13.0.3 to 13.3.0
- [Release notes](https://github.com/GoogleChrome/lighthouse/releases)
- [Changelog](https://github.com/GoogleChrome/lighthouse/blob/main/changelog.md)
- [Commits](GoogleChrome/lighthouse@v13.0.3...v13.3.0)

Updates `tsx` from 4.21.0 to 4.22.2
- [Release notes](https://github.com/privatenumber/tsx/releases)
- [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
- [Commits](privatenumber/tsx@v4.21.0...v4.22.2)

Updates `turbo` from 2.8.13-canary.8 to 2.9.14
- [Release notes](https://github.com/vercel/turborepo/releases)
- [Changelog](https://github.com/vercel/turborepo/blob/main/RELEASE.md)
- [Commits](vercel/turborepo@v2.8.13-canary.8...v2.9.14)

Updates `typescript` from 6.0.0-dev.20260301 to 6.0.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](https://github.com/microsoft/TypeScript/commits/v6.0.3)

Updates `@graphql-codegen/typescript` from 6.0.0-alpha-20260226131033-a969ebb287a7074d9b41d6e3af3e76b24ba462fa to 6.0.1
- [Release notes](https://github.com/dotansimha/graphql-code-generator/releases)
- [Changelog](https://github.com/dotansimha/graphql-code-generator/blob/master/packages/plugins/typescript/typescript/CHANGELOG.md)
- [Commits](https://github.com/dotansimha/graphql-code-generator/commits/@graphql-codegen/typescript@6.0.1/packages/plugins/typescript/typescript)

Updates `@graphql-codegen/typescript-resolvers` from 6.0.0-alpha-20260226131033-a969ebb287a7074d9b41d6e3af3e76b24ba462fa to 6.0.1
- [Release notes](https://github.com/dotansimha/graphql-code-generator/releases)
- [Changelog](https://github.com/dotansimha/graphql-code-generator/blob/master/packages/plugins/typescript/resolvers/CHANGELOG.md)
- [Commits](https://github.com/dotansimha/graphql-code-generator/commits/@graphql-codegen/typescript-resolvers@6.0.1/packages/plugins/typescript/resolvers)

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

Updates `vitest` from 4.1.0-beta.5 to 4.1.6
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.6/packages/vitest)

Updates `@axe-core/playwright` from 4.11.2-0f5a6e3.0 to 4.11.3
- [Release notes](https://github.com/dequelabs/axe-core-npm/releases)
- [Changelog](https://github.com/dequelabs/axe-core-npm/blob/develop/CHANGELOG.md)
- [Commits](https://github.com/dequelabs/axe-core-npm/commits/v4.11.3)

Updates `@playwright/test` from 1.59.0-alpha-2026-03-01 to 1.60.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](https://github.com/microsoft/playwright/commits/v1.60.0)

Updates `@tailwindcss/postcss` from 4.2.1 to 4.3.0
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.0/packages/@tailwindcss-postcss)

Updates `@vitest/ui` from 4.1.0-beta.5 to 4.1.6
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.6/packages/ui)

Updates `@webgpu/types` from 0.1.69 to 0.1.70
- [Commits](gpuweb/types@v0.1.69...v0.1.70)

Updates `axe-core` from 4.11.1 to 4.11.4
- [Release notes](https://github.com/dequelabs/axe-core/releases)
- [Changelog](https://github.com/dequelabs/axe-core/blob/develop/CHANGELOG.md)
- [Commits](dequelabs/axe-core@v4.11.1...v4.11.4)

Updates `happy-dom` from 20.7.0 to 20.9.0
- [Release notes](https://github.com/capricorn86/happy-dom/releases)
- [Commits](capricorn86/happy-dom@v20.7.0...v20.9.0)

Updates `serwist` from 9.5.6 to 9.5.11
- [Release notes](https://github.com/serwist/serwist/releases)
- [Commits](https://github.com/serwist/serwist/compare/serwist@9.5.6...serwist@9.5.11)

Updates `@cloudflare/workers-types` from 4.20260305.0 to 4.20260518.1
- [Release notes](https://github.com/cloudflare/workerd/releases)
- [Changelog](https://github.com/cloudflare/workerd/blob/main/RELEASE.md)
- [Commits](https://github.com/cloudflare/workerd/commits)

Updates `wrangler` from 4.69.0 to 4.92.0
- [Release notes](https://github.com/cloudflare/workers-sdk/releases)
- [Commits](https://github.com/cloudflare/workers-sdk/commits/wrangler@4.92.0/packages/wrangler)

Updates `dotenv` from 17.3.1 to 17.4.2
- [Changelog](https://github.com/motdotla/dotenv/blob/master/CHANGELOG.md)
- [Commits](motdotla/dotenv@v17.3.1...v17.4.2)

Updates `prisma` from 7.5.0-dev.33 to 7.8.0
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/7.8.0/packages/cli)

Updates `fast-check` from 4.5.3 to 4.8.0
- [Release notes](https://github.com/dubzzz/fast-check/releases)
- [Changelog](https://github.com/dubzzz/fast-check/blob/main/packages/fast-check/CHANGELOG.md)
- [Commits](https://github.com/dubzzz/fast-check/commits/v4.8.0/packages/fast-check)

Updates `typedoc` from 0.28.17 to 0.28.19
- [Release notes](https://github.com/TypeStrong/TypeDoc/releases)
- [Changelog](https://github.com/TypeStrong/typedoc/blob/master/CHANGELOG.md)
- [Commits](TypeStrong/typedoc@v0.28.17...v0.28.19)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-version: 2.4.15
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-minor-patch
- dependency-name: "@graphql-tools/merge"
  dependency-version: 9.1.9
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-minor-patch
- dependency-name: lighthouse
  dependency-version: 13.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-minor-patch
- dependency-name: tsx
  dependency-version: 4.22.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-minor-patch
- dependency-name: turbo
  dependency-version: 2.9.14
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-minor-patch
- dependency-name: typescript
  dependency-version: 6.0.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-minor-patch
- dependency-name: "@graphql-codegen/typescript"
  dependency-version: 6.0.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-minor-patch
- dependency-name: "@graphql-codegen/typescript-resolvers"
  dependency-version: 6.0.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-minor-patch
- dependency-name: "@types/node"
  dependency-version: 25.9.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-minor-patch
- dependency-name: vitest
  dependency-version: 4.1.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-minor-patch
- dependency-name: "@axe-core/playwright"
  dependency-version: 4.11.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-minor-patch
- dependency-name: "@playwright/test"
  dependency-version: 1.60.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-minor-patch
- dependency-name: "@tailwindcss/postcss"
  dependency-version: 4.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-minor-patch
- dependency-name: "@vitest/ui"
  dependency-version: 4.1.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-minor-patch
- dependency-name: "@webgpu/types"
  dependency-version: 0.1.70
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-minor-patch
- dependency-name: axe-core
  dependency-version: 4.11.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-minor-patch
- dependency-name: happy-dom
  dependency-version: 20.9.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-minor-patch
- dependency-name: serwist
  dependency-version: 9.5.11
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-minor-patch
- dependency-name: "@cloudflare/workers-types"
  dependency-version: 4.20260518.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-minor-patch
- dependency-name: wrangler
  dependency-version: 4.92.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-minor-patch
- dependency-name: dotenv
  dependency-version: 17.4.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-minor-patch
- dependency-name: prisma
  dependency-version: 7.8.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-minor-patch
- dependency-name: fast-check
  dependency-version: 4.8.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-minor-patch
- dependency-name: typedoc
  dependency-version: 0.28.19
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-minor-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github May 18, 2026

Labels

The following labels could not be found: automated, dependencies. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@vercel
Copy link
Copy Markdown

vercel Bot commented May 18, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
nextcalc-pro Error Error May 18, 2026 11:24pm

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants