Skip to content

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Oct 1, 2025

Bumps the development-dependencies group with 21 updates in the / directory:

Package From To
@biomejs/biome 1.9.4 2.2.4
@types/node 22.13.5 24.6.1
dotenv-cli 8.0.0 10.0.0
turbo 2.4.3 2.5.8
typescript 5.7.3 5.9.3
@content-collections/core 0.8.0 0.11.1
@content-collections/mdx 0.2.0 0.2.2
@content-collections/next 0.2.4 0.2.7
@mdx-js/mdx 3.1.0 3.1.1
@playwright/test 1.50.1 1.55.1
@shikijs/rehype 3.0.0 3.13.0
@tailwindcss/postcss 4.0.8 4.1.13
autoprefixer 10.4.20 10.4.21
dotenv 16.4.7 17.2.3
postcss 8.5.3 8.5.6
start-server-and-test 2.0.10 2.1.2
tailwindcss 4.0.8 4.1.13
prisma 6.3.1 6.16.3
prisma-json-types-generator 3.2.2 3.6.1
zod-prisma-types 3.2.4 3.3.5
tsx 4.19.3 4.20.6

Updates @biomejs/biome from 1.9.4 to 2.2.4

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.2.4

2.2.4

Patch Changes

  • #7453 aa8cea3 Thanks @​arendjr! - Fixed #7242: Aliases specified in package.json's imports section now support having multiple targets as part of an array.

  • #7454 ac17183 Thanks @​arendjr! - Greatly improved performance of noImportCycles by eliminating allocations.

    In one repository, the total runtime of Biome with only noImportCycles enabled went from ~23s down to ~4s.

  • #7447 7139aad Thanks @​rriski! - Fixes #7446. The GritQL $... spread metavariable now correctly matches members in object literals, aligning its behavior with arrays and function calls.

  • #6710 98cf9af Thanks @​arendjr! - Fixed #4723: Type inference now recognises index signatures and their accesses when they are being indexed as a string.

    Example

    type BagOfPromises = {
      // This is an index signature definition. It declares that instances of type
      // `BagOfPromises` can be indexed using arbitrary strings.
      [property: string]: Promise<void>;
    };
    let bag: BagOfPromises = {};
    // Because bag.iAmAPromise is equivalent to bag[&quot;iAmAPromise&quot;], this is
    // considered an access to the string index, and a Promise is expected.
    bag.iAmAPromise;

  • #7415 d042f18 Thanks @​qraqras! - Fixed #7212, now the useOptionalChain rule recognizes optional chaining using typeof (e.g., typeof foo !== 'undefined' && foo.bar).

  • #7419 576baf4 Thanks @​Conaclos! - Fixed #7323. noUnusedPrivateClassMembers no longer reports as unused TypeScript private members if the rule encounters a computed access on this.

    In the following example, member as previously reported as unused. It is no longer reported.

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.2.4

Patch Changes

  • #7453 aa8cea3 Thanks @​arendjr! - Fixed #7242: Aliases specified in package.json's imports section now support having multiple targets as part of an array.

  • #7454 ac17183 Thanks @​arendjr! - Greatly improved performance of noImportCycles by eliminating allocations.

    In one repository, the total runtime of Biome with only noImportCycles enabled went from ~23s down to ~4s.

  • #7447 7139aad Thanks @​rriski! - Fixes #7446. The GritQL $... spread metavariable now correctly matches members in object literals, aligning its behavior with arrays and function calls.

  • #6710 98cf9af Thanks @​arendjr! - Fixed #4723: Type inference now recognises index signatures and their accesses when they are being indexed as a string.

    Example

    type BagOfPromises = {
      // This is an index signature definition. It declares that instances of type
      // `BagOfPromises` can be indexed using arbitrary strings.
      [property: string]: Promise<void>;
    };
    let bag: BagOfPromises = {};
    // Because bag.iAmAPromise is equivalent to bag[&quot;iAmAPromise&quot;], this is
    // considered an access to the string index, and a Promise is expected.
    bag.iAmAPromise;

  • #7415 d042f18 Thanks @​qraqras! - Fixed #7212, now the useOptionalChain rule recognizes optional chaining using typeof (e.g., typeof foo !== 'undefined' && foo.bar).

  • #7419 576baf4 Thanks @​Conaclos! - Fixed #7323. noUnusedPrivateClassMembers no longer reports as unused TypeScript private members if the rule encounters a computed access on this.

    In the following example, member as previously reported as unused. It is no longer reported.

    class TsBioo {
      private member: number;
    set_with_name(name: string, value: number) {
    this[name] = value;
    }
    }

... (truncated)

Commits

Updates @types/node from 22.13.5 to 24.6.1

Commits

Updates dotenv-cli from 8.0.0 to 10.0.0

Release notes

Sourced from dotenv-cli's releases.

v10.0.0: bump dotenv-expand

Fixes entropitor/dotenv-cli#121

v9.0.0 Bump dotenv and be quiet by default

entropitor/dotenv-cli#129

Commits

Updates turbo from 2.4.3 to 2.5.8

Release notes

Sourced from turbo's releases.

Turborepo v2.5.8

What's Changed

create-turbo

Changelog

Full Changelog: vercel/turborepo@v2.5.7...v2.5.8

Turborepo v2.5.8-canary.0

What's Changed

create-turbo

Changelog

Full Changelog: vercel/turborepo@v2.5.7...v2.5.8-canary.0

Turborepo v2.5.7

What's Changed

Docs

create-turbo

eslint

@​turbo/repository

Examples

... (truncated)

Commits

Updates typescript from 5.7.3 to 5.9.3

Release notes

Sourced from typescript's releases.

TypeScript 5.9.3

TypeScript 5.9

For release notes, check out the release announcement

Downloads are available on:

TypeScript 5.9 RC

For release notes, check out the release announcement

Downloads are available on:

TypeScript 5.9 Beta

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.8.3

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.8

... (truncated)

Commits

Updates @content-collections/core from 0.8.0 to 0.11.1

Release notes

Sourced from @​content-collections/core's releases.

@​content-collections/core@​0.11.1

Patch Changes

@​content-collections/core@​0.11.0

Minor Changes

Patch Changes

@​content-collections/core@​0.10.0

Minor Changes

Patch Changes

@​content-collections/core@​0.9.1

Patch Changes

@​content-collections/core@​0.9.0

Minor Changes

@​content-collections/core@​0.8.2

Patch Changes

  • #518 d5a9b5a Thanks @​sdorra! - Add an option to cache the API, allowing the inclusion of an additional key to prevent cache collisions

@​content-collections/core@​0.8.1

Patch Changes

Changelog

Sourced from @​content-collections/core's changelog.

0.11.1

Patch Changes

0.11.0

Minor Changes

Patch Changes

0.10.0

Minor Changes

Patch Changes

0.9.1

Patch Changes

0.9.0

Minor Changes

0.8.2

Patch Changes

  • #518 d5a9b5a Thanks @​sdorra! - Add an option to cache the API, allowing the inclusion of an additional key to prevent cache collisions

0.8.1

... (truncated)

Commits
  • d5f0739 chore(release): #642 version packages
  • a24db7e refactor(core): remove unused code
  • 5b16eaf test(core): add missing tests for builder events
  • 475b888 fix(core): throw if a collection is defined with an invalid parser
  • 7129c62 fix(core): ensure all deprecation warnings are properly suppressed
  • 593a7ac refactor(core): #638 refactor core tests
  • f008896 chore(release): #630 version packages
  • b37a2a0 build(core): increase test timeout on all platforms
  • 86490bc feat(core): #620 add option to skip documents
  • 0bee209 build: update vitest to 3.2.4
  • Additional commits viewable in compare view

Updates @content-collections/mdx from 0.2.0 to 0.2.2

Updates @content-collections/next from 0.2.4 to 0.2.7

Release notes

Sourced from @​content-collections/next's releases.

@​content-collections/next@​0.2.7

Patch Changes

  • Updated dependencies [86490bc]:
    • @​content-collections/integrations@​0.3.0

@​content-collections/next@​0.2.6

Patch Changes

  • #520 2f096e8 Thanks @​sdorra! - Check for ppid ooly on dev mode

  • Updated dependencies []:

    • @​content-collections/integrations@​0.2.1

@​content-collections/next@​0.2.5

Patch Changes

Changelog

Sourced from @​content-collections/next's changelog.

0.2.7

Patch Changes

  • Updated dependencies [86490bc]:
    • @​content-collections/integrations@​0.3.0

0.2.6

Patch Changes

  • #520 2f096e8 Thanks @​sdorra! - Check for ppid ooly on dev mode

  • Updated dependencies []:

    • @​content-collections/integrations@​0.2.1

0.2.5

Patch Changes

Commits

Updates @mdx-js/mdx from 3.1.0 to 3.1.1

Release notes

Sourced from @​mdx-js/mdx's releases.

3.1.1

Fix

Types

  • 933ab444 @mdx-js/mdx: add attributes to export/import declarations

Docs

Full Changelog: mdx-js/mdx@3.1.0...3.1.1

Commits

Updates @playwright/test from 1.50.1 to 1.55.1

Release notes

Sourced from @​playwright/test's releases.

v1.55.1

Highlights

microsoft/playwright#37479 - [Bug]: Upgrade Chromium to 140.0.7339.186. microsoft/playwright#37147 - [Regression]: Internal error: step id not found. microsoft/playwright#37146 - [Regression]: HTML reporter displays a broken chip link when there are no projects. microsoft/playwright#37137 - Revert "fix(a11y): track inert elements as hidden".

Browser Versions

  • Chromium 140.0.7339.186
  • Mozilla Firefox 141.0
  • WebKit 26.0

This version was also tested against the following stable channels:

  • Google Chrome 139
  • Microsoft Edge 139

v1.55.0

New APIs

  • New Property testStepInfo.titlePath Returns the full title path starting from the test file, including test and step titles.

Codegen

  • Automatic toBeVisible() assertions: Codegen can now generate automatic toBeVisible() assertions for common UI interactions. This feature can be enabled in the Codegen settings UI.

Breaking Changes

  • ⚠️ Dropped support for Chromium extension manifest v2.

Miscellaneous

  • Added support for Debian 13 "Trixie".

Browser Versions

  • Chromium 140.0.7339.16
  • Mozilla Firefox 141.0
  • WebKit 26.0

This version was also tested against the following stable channels:

  • Google Chrome 139
  • Microsoft Edge 139

v1.54.2

Highlights

microsoft/playwright#36714 - [Regression]: Codegen is not able to launch in Administrator Terminal on Windows (ProtocolError: Protocol error) microsoft/playwright#36828 - [Regression]: Playwright Codegen keeps spamming with selected option microsoft/playwright#36810 - [Regression]: Starting Codegen with target language doesn't work anymore

Browser Versions

  • Chromium 139.0.7258.5

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by playwright-bot, a new releaser for @​playwright/test since your current version.


Updates @shikijs/rehype from 3.0.0 to 3.13.0

Release notes

Sourced from @​shikijs/rehype's releases.

v3.13.0

   🚀 Features

    View changes on GitHub

v3.12.3

   🐞 Bug Fixes

    View changes on GitHub

v3.12.2

   🐞 Bug Fixes

    View changes on GitHub

v3.12.1

No significant changes

    View changes on GitHub

v3.12.0

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v3.11.0

   🚀 Features

    View changes on GitHub

v3.10.0

   🚀 Features

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​shikijs/rehype since your current version.


Updates @tailwindcss/postcss from 4.0.8 to 4.1.13

Release notes

Sourced from @​tailwindcss/postcss's releases.

v4.1.13

Changed

  • Drop warning from browser build (#18731)
  • Drop exact duplicate declarations when emitting CSS (#18809)

Fixed

  • Don't transition visibility when using transition (#18795)
  • Discard matched variants with unknown named values (#18799)
  • Discard matched variants with non-string values (#18799)
  • Show suggestions for known matchVariant values (#18798)
  • Replace deprecated clip with clip-path in sr-only (#18769)
  • Hide internal fields from completions in matchUtilities (#18820)
  • Ignore .vercel folders by default (can be overridden by <...

    Description has been truncated

…dates

Bumps the development-dependencies group with 21 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `1.9.4` | `2.2.4` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.13.5` | `24.6.1` |
| [dotenv-cli](https://github.com/entropitor/dotenv-cli) | `8.0.0` | `10.0.0` |
| [turbo](https://github.com/vercel/turborepo) | `2.4.3` | `2.5.8` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.7.3` | `5.9.3` |
| [@content-collections/core](https://github.com/sdorra/content-collections/tree/HEAD/packages/core) | `0.8.0` | `0.11.1` |
| @content-collections/mdx | `0.2.0` | `0.2.2` |
| [@content-collections/next](https://github.com/sdorra/content-collections/tree/HEAD/packages/next) | `0.2.4` | `0.2.7` |
| [@mdx-js/mdx](https://github.com/mdx-js/mdx/tree/HEAD/packages/mdx) | `3.1.0` | `3.1.1` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.50.1` | `1.55.1` |
| [@shikijs/rehype](https://github.com/shikijs/shiki/tree/HEAD/packages/rehype) | `3.0.0` | `3.13.0` |
| [@tailwindcss/postcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-postcss) | `4.0.8` | `4.1.13` |
| [autoprefixer](https://github.com/postcss/autoprefixer) | `10.4.20` | `10.4.21` |
| [dotenv](https://github.com/motdotla/dotenv) | `16.4.7` | `17.2.3` |
| [postcss](https://github.com/postcss/postcss) | `8.5.3` | `8.5.6` |
| [start-server-and-test](https://github.com/bahmutov/start-server-and-test) | `2.0.10` | `2.1.2` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `4.0.8` | `4.1.13` |
| [prisma](https://github.com/prisma/prisma/tree/HEAD/packages/cli) | `6.3.1` | `6.16.3` |
| [prisma-json-types-generator](https://github.com/arthurfiorette/prisma-json-types-generator) | `3.2.2` | `3.6.1` |
| [zod-prisma-types](https://github.com/chrishoermann/zod-prisma-types) | `3.2.4` | `3.3.5` |
| [tsx](https://github.com/privatenumber/tsx) | `4.19.3` | `4.20.6` |



Updates `@biomejs/biome` from 1.9.4 to 2.2.4
- [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/[email protected]/packages/@biomejs/biome)

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

Updates `dotenv-cli` from 8.0.0 to 10.0.0
- [Release notes](https://github.com/entropitor/dotenv-cli/releases)
- [Commits](entropitor/dotenv-cli@v8.0.0...v10.0.0)

Updates `turbo` from 2.4.3 to 2.5.8
- [Release notes](https://github.com/vercel/turborepo/releases)
- [Changelog](https://github.com/vercel/turborepo/blob/main/release.md)
- [Commits](vercel/turborepo@v2.4.3...v2.5.8)

Updates `typescript` from 5.7.3 to 5.9.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](microsoft/TypeScript@v5.7.3...v5.9.3)

Updates `@content-collections/core` from 0.8.0 to 0.11.1
- [Release notes](https://github.com/sdorra/content-collections/releases)
- [Changelog](https://github.com/sdorra/content-collections/blob/main/packages/core/CHANGELOG.md)
- [Commits](https://github.com/sdorra/content-collections/commits/@content-collections/[email protected]/packages/core)

Updates `@content-collections/mdx` from 0.2.0 to 0.2.2

Updates `@content-collections/next` from 0.2.4 to 0.2.7
- [Release notes](https://github.com/sdorra/content-collections/releases)
- [Changelog](https://github.com/sdorra/content-collections/blob/main/packages/next/CHANGELOG.md)
- [Commits](https://github.com/sdorra/content-collections/commits/@content-collections/[email protected]/packages/next)

Updates `@mdx-js/mdx` from 3.1.0 to 3.1.1
- [Release notes](https://github.com/mdx-js/mdx/releases)
- [Changelog](https://github.com/mdx-js/mdx/blob/main/changelog.md)
- [Commits](https://github.com/mdx-js/mdx/commits/3.1.1/packages/mdx)

Updates `@playwright/test` from 1.50.1 to 1.55.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.50.1...v1.55.1)

Updates `@shikijs/rehype` from 3.0.0 to 3.13.0
- [Release notes](https://github.com/shikijs/shiki/releases)
- [Commits](https://github.com/shikijs/shiki/commits/v3.13.0/packages/rehype)

Updates `@tailwindcss/postcss` from 4.0.8 to 4.1.13
- [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.1.13/packages/@tailwindcss-postcss)

Updates `autoprefixer` from 10.4.20 to 10.4.21
- [Release notes](https://github.com/postcss/autoprefixer/releases)
- [Changelog](https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md)
- [Commits](postcss/autoprefixer@10.4.20...10.4.21)

Updates `dotenv` from 16.4.7 to 17.2.3
- [Changelog](https://github.com/motdotla/dotenv/blob/master/CHANGELOG.md)
- [Commits](motdotla/dotenv@v16.4.7...v17.2.3)

Updates `postcss` from 8.5.3 to 8.5.6
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](postcss/postcss@8.5.3...8.5.6)

Updates `start-server-and-test` from 2.0.10 to 2.1.2
- [Release notes](https://github.com/bahmutov/start-server-and-test/releases)
- [Commits](bahmutov/start-server-and-test@v2.0.10...v2.1.2)

Updates `tailwindcss` from 4.0.8 to 4.1.13
- [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.1.13/packages/tailwindcss)

Updates `prisma` from 6.3.1 to 6.16.3
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/6.16.3/packages/cli)

Updates `prisma-json-types-generator` from 3.2.2 to 3.6.1
- [Release notes](https://github.com/arthurfiorette/prisma-json-types-generator/releases)
- [Commits](arthurfiorette/prisma-json-types-generator@v3.2.2...v3.6.1)

Updates `zod-prisma-types` from 3.2.4 to 3.3.5
- [Release notes](https://github.com/chrishoermann/zod-prisma-types/releases)
- [Commits](chrishoermann/zod-prisma-types@v3.2.4...v3.3.5)

Updates `tsx` from 4.19.3 to 4.20.6
- [Release notes](https://github.com/privatenumber/tsx/releases)
- [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
- [Commits](privatenumber/tsx@v4.19.3...v4.20.6)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-version: 2.2.4
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: "@types/node"
  dependency-version: 24.6.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: dotenv-cli
  dependency-version: 10.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: turbo
  dependency-version: 2.5.8
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: typescript
  dependency-version: 5.9.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@content-collections/core"
  dependency-version: 0.11.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@content-collections/mdx"
  dependency-version: 0.2.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@content-collections/next"
  dependency-version: 0.2.7
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@mdx-js/mdx"
  dependency-version: 3.1.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@playwright/test"
  dependency-version: 1.55.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@shikijs/rehype"
  dependency-version: 3.13.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@tailwindcss/postcss"
  dependency-version: 4.1.13
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: autoprefixer
  dependency-version: 10.4.21
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: dotenv
  dependency-version: 17.2.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: postcss
  dependency-version: 8.5.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: start-server-and-test
  dependency-version: 2.1.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: tailwindcss
  dependency-version: 4.1.13
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: prisma
  dependency-version: 6.16.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: prisma-json-types-generator
  dependency-version: 3.6.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: zod-prisma-types
  dependency-version: 3.3.5
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: tsx
  dependency-version: 4.20.6
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Oct 1, 2025
@vercel
Copy link

vercel bot commented Oct 1, 2025

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

Project Deployment Preview Comments Updated (UTC)
azure-web Error Error Oct 1, 2025 7:30am

@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Nov 19, 2025

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot recreate.

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

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant