Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 16, 2025

Bumps the packages group with 38 updates:

Package From To
@types/node 25.0.2 25.0.3
vercel 50.0.1 50.1.0
vite-plugin-vercel 9.0.8 9.1.1
@esbuild/aix-ppc64 0.27.0 0.25.12
@esbuild/android-arm64 0.27.0 0.25.12
@esbuild/android-arm 0.27.0 0.25.12
@esbuild/android-x64 0.27.0 0.25.12
@esbuild/darwin-arm64 0.27.0 0.25.12
@esbuild/darwin-x64 0.27.0 0.25.12
@esbuild/freebsd-arm64 0.27.0 0.25.12
@esbuild/freebsd-x64 0.27.0 0.25.12
@esbuild/linux-arm64 0.27.0 0.25.12
@esbuild/linux-arm 0.27.0 0.25.12
@esbuild/linux-ia32 0.27.0 0.25.12
@esbuild/linux-loong64 0.27.0 0.25.12
@esbuild/linux-mips64el 0.27.0 0.25.12
@esbuild/linux-ppc64 0.27.0 0.25.12
@esbuild/linux-riscv64 0.27.0 0.25.12
@esbuild/linux-s390x 0.27.0 0.25.12
@esbuild/linux-x64 0.27.0 0.25.12
@esbuild/netbsd-arm64 0.27.0 0.25.12
@esbuild/netbsd-x64 0.27.0 0.25.12
@esbuild/openbsd-arm64 0.27.0 0.25.12
@esbuild/openbsd-x64 0.27.0 0.25.12
@esbuild/openharmony-arm64 0.27.0 0.25.12
@esbuild/sunos-x64 0.27.0 0.25.12
@esbuild/win32-arm64 0.27.0 0.25.12
@esbuild/win32-ia32 0.27.0 0.25.12
@esbuild/win32-x64 0.27.0 0.25.12
@vercel/build-utils 8.8.0 13.2.3
@vercel/next 4.15.8 4.15.9
@vercel/nft 0.27.10 1.1.1
@vercel/python 6.1.3 6.1.4
baseline-browser-mapping 2.9.7 2.9.8
esbuild 0.27.0 0.25.12
glob 7.2.3 13.0.0
rollup 4.53.4 4.53.5
update-browserslist-db 1.2.2 1.2.3

Updates @types/node from 25.0.2 to 25.0.3

Commits

Updates vercel from 50.0.1 to 50.1.0

Release notes

Sourced from vercel's releases.

vercel@50.1.0

Minor Changes

  • Bugfix: handle json values with newlines when pulling environment variables (#14479)

  • Add out to deploy command for aliasing production domains (#14458)

Patch Changes

Changelog

Sourced from vercel's changelog.

50.1.0

Minor Changes

  • Bugfix: handle json values with newlines when pulling environment variables (#14479)

  • Add out to deploy command for aliasing production domains (#14458)

Patch Changes

Commits

Updates vite-plugin-vercel from 9.0.8 to 9.1.1

Commits

Updates @esbuild/aix-ppc64 from 0.27.0 to 0.25.12

Changelog

Sourced from @​esbuild/aix-ppc64's changelog.

0.27.0

This release deliberately contains backwards-incompatible changes. To avoid automatically picking up releases like this, you should either be pinning the exact version of esbuild in your package.json file (recommended) or be using a version range syntax that only accepts patch upgrades such as ^0.26.0 or ~0.26.0. See npm's documentation about semver for more information.

  • Use Uint8Array.fromBase64 if available (#4286)

    With this release, esbuild's binary loader will now use the new Uint8Array.fromBase64 function unless it's unavailable in the configured target environment. If it's unavailable, esbuild's previous code for this will be used as a fallback. Note that this means you may now need to specify target when using this feature with Node (for example --target=node22) unless you're using Node v25+.

  • Update the Go compiler from v1.23.12 to v1.25.4 (#4208, #4311)

    This raises the operating system requirements for running esbuild:

    • Linux: now requires a kernel version of 3.2 or later
    • macOS: now requires macOS 12 (Monterey) or later

0.26.0

  • Enable trusted publishing (#4281)

    GitHub and npm are recommending that maintainers for packages such as esbuild switch to trusted publishing. With this release, a VM on GitHub will now build and publish all of esbuild's packages to npm instead of me. In theory.

    Unfortunately there isn't really a way to test that this works other than to do it live. So this release is that live test. Hopefully this release is uneventful and is exactly the same as the previous one (well, except for the green provenance attestation checkmark on npm that happens with trusted publishing).

0.25.12

  • Fix a minification regression with CSS media queries (#4315)

    The previous release introduced support for parsing media queries which unintentionally introduced a regression with the removal of duplicate media rules during minification. Specifically the grammar for @media <media-type> and <media-condition-without-or> { ... } was missing an equality check for the <media-condition-without-or> part, so rules with different suffix clauses in this position would incorrectly compare equal and be deduplicated. This release fixes the regression.

  • Update the list of known JavaScript globals (#4310)

    This release updates esbuild's internal list of known JavaScript globals. These are globals that are known to not have side-effects when the property is accessed. For example, accessing the global Array property is considered to be side-effect free but accessing the global scrollY property can trigger a layout, which is a side-effect. This is used by esbuild's tree-shaking to safely remove unused code that is known to be side-effect free. This update adds the following global properties:

    From ES2017:

    • Atomics
    • SharedArrayBuffer

    From ES2020:

    • BigInt64Array
    • BigUint64Array

    From ES2021:

    • FinalizationRegistry
    • WeakRef

    From ES2025:

    • Float16Array
    • Iterator

    Note that this does not indicate that constructing any of these objects is side-effect free, just that accessing the identifier is side-effect free. For example, this now allows esbuild to tree-shake classes that extend from Iterator:

... (truncated)

Commits

Updates @esbuild/android-arm64 from 0.27.0 to 0.25.12

Changelog

Sourced from @​esbuild/android-arm64's changelog.

0.27.0

This release deliberately contains backwards-incompatible changes. To avoid automatically picking up releases like this, you should either be pinning the exact version of esbuild in your package.json file (recommended) or be using a version range syntax that only accepts patch upgrades such as ^0.26.0 or ~0.26.0. See npm's documentation about semver for more information.

  • Use Uint8Array.fromBase64 if available (#4286)

    With this release, esbuild's binary loader will now use the new Uint8Array.fromBase64 function unless it's unavailable in the configured target environment. If it's unavailable, esbuild's previous code for this will be used as a fallback. Note that this means you may now need to specify target when using this feature with Node (for example --target=node22) unless you're using Node v25+.

  • Update the Go compiler from v1.23.12 to v1.25.4 (#4208, #4311)

    This raises the operating system requirements for running esbuild:

    • Linux: now requires a kernel version of 3.2 or later
    • macOS: now requires macOS 12 (Monterey) or later

0.26.0

  • Enable trusted publishing (#4281)

    GitHub and npm are recommending that maintainers for packages such as esbuild switch to trusted publishing. With this release, a VM on GitHub will now build and publish all of esbuild's packages to npm instead of me. In theory.

    Unfortunately there isn't really a way to test that this works other than to do it live. So this release is that live test. Hopefully this release is uneventful and is exactly the same as the previous one (well, except for the green provenance attestation checkmark on npm that happens with trusted publishing).

0.25.12

  • Fix a minification regression with CSS media queries (#4315)

    The previous release introduced support for parsing media queries which unintentionally introduced a regression with the removal of duplicate media rules during minification. Specifically the grammar for @media <media-type> and <media-condition-without-or> { ... } was missing an equality check for the <media-condition-without-or> part, so rules with different suffix clauses in this position would incorrectly compare equal and be deduplicated. This release fixes the regression.

  • Update the list of known JavaScript globals (#4310)

    This release updates esbuild's internal list of known JavaScript globals. These are globals that are known to not have side-effects when the property is accessed. For example, accessing the global Array property is considered to be side-effect free but accessing the global scrollY property can trigger a layout, which is a side-effect. This is used by esbuild's tree-shaking to safely remove unused code that is known to be side-effect free. This update adds the following global properties:

    From ES2017:

    • Atomics
    • SharedArrayBuffer

    From ES2020:

    • BigInt64Array
    • BigUint64Array

    From ES2021:

    • FinalizationRegistry
    • WeakRef

    From ES2025:

    • Float16Array
    • Iterator

    Note that this does not indicate that constructing any of these objects is side-effect free, just that accessing the identifier is side-effect free. For example, this now allows esbuild to tree-shake classes that extend from Iterator:

... (truncated)

Commits

Updates @esbuild/android-arm from 0.27.0 to 0.25.12

Changelog

Sourced from @​esbuild/android-arm's changelog.

0.27.0

This release deliberately contains backwards-incompatible changes. To avoid automatically picking up releases like this, you should either be pinning the exact version of esbuild in your package.json file (recommended) or be using a version range syntax that only accepts patch upgrades such as ^0.26.0 or ~0.26.0. See npm's documentation about semver for more information.

  • Use Uint8Array.fromBase64 if available (#4286)

    With this release, esbuild's binary loader will now use the new Uint8Array.fromBase64 function unless it's unavailable in the configured target environment. If it's unavailable, esbuild's previous code for this will be used as a fallback. Note that this means you may now need to specify target when using this feature with Node (for example --target=node22) unless you're using Node v25+.

  • Update the Go compiler from v1.23.12 to v1.25.4 (#4208, #4311)

    This raises the operating system requirements for running esbuild:

    • Linux: now requires a kernel version of 3.2 or later
    • macOS: now requires macOS 12 (Monterey) or later

0.26.0

  • Enable trusted publishing (#4281)

    GitHub and npm are recommending that maintainers for packages such as esbuild switch to trusted publishing. With this release, a VM on GitHub will now build and publish all of esbuild's packages to npm instead of me. In theory.

    Unfortunately there isn't really a way to test that this works other than to do it live. So this release is that live test. Hopefully this release is uneventful and is exactly the same as the previous one (well, except for the green provenance attestation checkmark on npm that happens with trusted publishing).

0.25.12

  • Fix a minification regression with CSS media queries (#4315)

    The previous release introduced support for parsing media queries which unintentionally introduced a regression with the removal of duplicate media rules during minification. Specifically the grammar for @media <media-type> and <media-condition-without-or> { ... } was missing an equality check for the <media-condition-without-or> part, so rules with different suffix clauses in this position would incorrectly compare equal and be deduplicated. This release fixes the regression.

  • Update the list of known JavaScript globals (#4310)

    This release updates esbuild's internal list of known JavaScript globals. These are globals that are known to not have side-effects when the property is accessed. For example, accessing the global Array property is considered to be side-effect free but accessing the global scrollY property can trigger a layout, which is a side-effect. This is used by esbuild's tree-shaking to safely remove unused code that is known to be side-effect free. This update adds the following global properties:

    From ES2017:

    • Atomics
    • SharedArrayBuffer

    From ES2020:

    • BigInt64Array
    • BigUint64Array

    From ES2021:

    • FinalizationRegistry
    • WeakRef

    From ES2025:

    • Float16Array
    • Iterator

    Note that this does not indicate that constructing any of these objects is side-effect free, just that accessing the identifier is side-effect free. For example, this now allows esbuild to tree-shake classes that extend from Iterator:

... (truncated)

Commits

Updates @esbuild/android-x64 from 0.27.0 to 0.25.12

Changelog

Sourced from @​esbuild/android-x64's changelog.

0.27.0

This release deliberately contains backwards-incompatible changes. To avoid automatically picking up releases like this, you should either be pinning the exact version of esbuild in your package.json file (recommended) or be using a version range syntax that only accepts patch upgrades such as ^0.26.0 or ~0.26.0. See npm's documentation about semver for more information.

  • Use Uint8Array.fromBase64 if available (#4286)

    With this release, esbuild's binary loader will now use the new Uint8Array.fromBase64 function unless it's unavailable in the configured target environment. If it's unavailable, esbuild's previous code for this will be used as a fallback. Note that this means you may now need to specify target when using this feature with Node (for example --target=node22) unless you're using Node v25+.

  • Update the Go compiler from v1.23.12 to v1.25.4 (#4208, #4311)

    This raises the operating system requirements for running esbuild:

    • Linux: now requires a kernel version of 3.2 or later
    • macOS: now requires macOS 12 (Monterey) or later

0.26.0

  • Enable trusted publishing (#4281)

    GitHub and npm are recommending that maintainers for packages such as esbuild switch to trusted publishing. With this release, a VM on GitHub will now build and publish all of esbuild's packages to npm instead of me. In theory.

    Unfortunately there isn't really a way to test that this works other than to do it live. So this release is that live test. Hopefully this release is uneventful and is exactly the same as the previous one (well, except for the green provenance attestation checkmark on npm that happens with trusted publishing).

0.25.12

  • Fix a minification regression with CSS media queries (#4315)

    The previous release introduced support for parsing media queries which unintentionally introduced a regression with the removal of duplicate media rules during minification. Specifically the grammar for @media <media-type> and <media-condition-without-or> { ... } was missing an equality check for the <media-condition-without-or> part, so rules with different suffix clauses in this position would incorrectly compare equal and be deduplicated. This release fixes the regression.

  • Update the list of known JavaScript globals (#4310)

    This release updates esbuild's internal list of known JavaScript globals. These are globals that are known to not have side-effects when the property is accessed. For example, accessing the global Array property is considered to be side-effect free but accessing the global scrollY property can trigger a layout, which is a side-effect. This is used by esbuild's tree-shaking to safely remove unused code that is known to be side-effect free. This update adds the following global properties:

    From ES2017:

    • Atomics
    • SharedArrayBuffer

    From ES2020:

    • BigInt64Array
    • BigUint64Array

    From ES2021:

    • FinalizationRegistry
    • WeakRef

    From ES2025:

    • Float16Array
    • Iterator

    Note that this does not indicate that constructing any of these objects is side-effect free, just that accessing the identifier is side-effect free. For example, this now allows esbuild to tree-shake classes that extend from Iterator:

... (truncated)

Commits

Updates @esbuild/darwin-arm64 from 0.27.0 to 0.25.12

Changelog

Sourced from @​esbuild/darwin-arm64's changelog.

0.27.0

This release deliberately contains backwards-incompatible changes. To avoid automatically picking up releases like this, you should either be pinning the exact version of esbuild in your package.json file (recommended) or be using a version range syntax that only accepts patch upgrades such as ^0.26.0 or ~0.26.0. See npm's documentation about semver for more information.

  • Use Uint8Array.fromBase64 if available (#4286)

    With this release, esbuild's binary loader will now use the new Uint8Array.fromBase64 function unless it's unavailable in the configured target environment. If it's unavailable, esbuild's previous code for this will be used as a fallback. Note that this means you may now need to specify target when using this feature with Node (for example --target=node22) unless you're using Node v25+.

  • Update the Go compiler from v1.23.12 to v1.25.4 (#4208, #4311)

    This raises the operating system requirements for running esbuild:

    • Linux: now requires a kernel version of 3.2 or later
    • macOS: now requires macOS 12 (Monterey) or later

0.26.0

  • Enable trusted publishing (#4281)

    GitHub and npm are recommending that maintainers for packages such as esbuild switch to trusted publishing. With this release, a VM on GitHub will now build and publish all of esbuild's packages to npm instead of me. In theory.

    Unfortunately there isn't really a way to test that this works other than to do it live. So this release is that live test. Hopefully this release is uneventful and is exactly the same as the previous one (well, except for the green provenance attestation checkmark on npm that happens with trusted publishing).

0.25.12

  • Fix a minification regression with CSS media queries (#4315)

    The previous release introduced support for parsing media queries which unintentionally introduced a regression with the removal of duplicate media rules during minification. Specifically the grammar for @media <media-type> and <media-condition-without-or> { ... } was missing an equality check for the <media-condition-without-or> part, so rules with different suffix clauses in this position would incorrectly compare equal and be deduplicated. This release fixes the regression.

  • Update the list of known JavaScript globals (#4310)

    This release updates esbuild's internal list of known JavaScript globals. These are globals that are known to not have side-effects when the property is accessed. For example, accessing the global Array property is considered to be side-effect free but accessing the global scrollY property can trigger a layout, which is a side-effect. This is used by esbuild's tree-shaking to safely remove unused code that is known to be side-effect free. This update adds the following global properties:

    From ES2017:

    • Atomics
    • SharedArrayBuffer

    From ES2020:

    • BigInt64Array
    • BigUint64Array

    From ES2021:

    • FinalizationRegistry
    • WeakRef

    From ES2025:

    • Float16Array
    • Iterator

    Note that this does not indicate that constructing any of these objects is side-effect free, just that accessing the identifier is side-effect free. For example, this now allows esbuild to tree-shake classes that extend from Iterator:

... (truncated)

Commits

Updates @esbuild/darwin-x64 from 0.27.0 to 0.25.12

Changelog

Sourced from @​esbuild/darwin-x64's changelog.

0.27.0

This release deliberately contains backwards-incompatible changes. To avoid automatically picking up releases like this, you should either be pinning the exact version of esbuild in your package.json file (recommended) or be using a version range syntax that only accepts patch upgrades such as ^0.26.0 or ~0.26.0. See npm's documentation about semver for more information.

  • Use Uint8Array.fromBase64 if available (#4286)

    With this release, esbuild's binary loader will now use the new Uint8Array.fromBase64 function unless it's unavailable in the configured target environment. If it's unavailable, esbuild's previous code for this will be used as a fallback. Note that this means you may now need to specify target when using this feature with Node (for example --target=node22) unless you're using Node v25+.

  • Update the Go compiler from v1.23.12 to v1.25.4 (#4208, #4311)

    This raises the operating system requirements for running esbuild:

    • Linux: now requires a kernel version of 3.2 or later
    • macOS: now requires macOS 12 (Monterey) or later

0.26.0

  • Enable trusted publishing (#4281)

    GitHub and npm are recommending that maintainers for packages such as esbuild switch to trusted publishing. With this release, a VM on GitHub will now build and publish all of esbuild's packages to npm instead of me. In theory.

    Unfortunately there isn't really a way to test that this works other than to do it live. So this release is that live test. Hopefully this release is uneventful and is exactly the same as the previous one (well, except for the green provenance attestation checkmark on npm that happens with trusted publishing).

0.25.12

  • Fix a minification regression with CSS media queries (#4315)

    The previous release introduced support for parsing media queries which unintentionally introduced a regression with the removal of duplicate media rules during minification. Specifically the grammar for @media <media-type> and <media-condition-without-or> { ... } was missing an equality check for the <media-condition-without-or> part, so rules with different suffix clauses in this position would incorrectly compare equal and be deduplicated. This release fixes the regression.

  • Update the list of known JavaScript globals (#4310)

    This release updates esbuild's internal list of known JavaScript globals. These are globals that are known to not have side-effects when the property is accessed. For example, accessing the global Array property is considered to be side-effect free but accessing the global scrollY property can trigger a layout, which is a side-effect. This is used by esbuild's tree-shaking to safely remove unused code that is known to be side-effect free. This update adds the following global properties:

    From ES2017:

    • Atomics
    • SharedArrayBuffer

    From ES2020:

    • BigInt64Array
    • BigUint64Array

    From ES2021:

    • FinalizationRegistry
    • WeakRef

    From ES2025:

    • Float16Array
    • Iterator

    Note that this does not indicate that constructing any of these objects is side-effect free, just that accessing the identifier is side-effect free. For example, this now allows esbuild to tree-shake classes that extend from Iterator:

... (truncated)

Commits

Updates @esbuild/freebsd-arm64 from 0.27.0 to 0.25.12

Changelog

Sourced from @​esbuild/freebsd-arm64's changelog.

0.27.0

This release deliberately contains backwards-incompatible changes. To avoid automatically picking up releases like this, you should either be pinning the exact version of esbuild in your package.json file (recommended) or be using a version range syntax that only accepts patch upgrades such as ^0.26.0 or ~0.26.0. See npm's documentation about semver for more information.

  • Use Uint8Array.fromBase64 if available (#4286)

    With this release, esbuild's binary loader will now use the new Uint8Array.fromBase64 function unless it's unavailable in the configured target environment. If it's unavailable, esbuild's previous code for this will be used as a fallback. Note that this means you may now need to specify target when using this feature with Node (for example --target=node22) unless you're using Node v25+.

  • Update the Go compiler from v1.23.12 to v1.25.4 (#4208, #4311)

    This raises the operating system requirements for running esbuild:

    • Linux: now requires a kernel version of 3.2 or later
    • macOS: now requires macOS 12 (Monterey) or later

0.26.0

  • Enable trusted publishing (#4281)

    GitHub and npm are recommending that maintainers for packages such as esbuild switch to trusted publishing. With this release, a VM on GitHub will now build and publish all of esbuild's packages to npm instead of me. In theory.

    Unfortunately there isn't really a way to test that this works other than to do it live. So this release is that live test. Hopefully this release is uneventful and is exactly the same as the previous one (well, except for the green provenance attestation checkmark on npm that happens with trusted publishing).

0.25.12

  • Fix a minification regression with CSS media queries (#4315)

    The previous release introduced support for parsing media queries which unintentionally introduced a regression with the removal of duplicate media rules during minification. Specifically the grammar for @media <media-type> and <media-condition-without-or> { ... } was missing an equality check for the <media-condition-without-or> part, so rules with different suffix clauses in this position would incorrectly compare equal and be deduplicated. This release fixes the regression.

  • Update the list of known JavaScript globals (#4310)

    This release updates esbuild's internal list of known JavaScript globals. These are globals that are known to not have side-effects when the property is accessed. For example, accessing the global Array property is considered to be side-effect free but accessing the global scrollY property can trigger a layout, which is a side-effect. This is used by esbuild's tree-shaking to safely remove unused code that is known to be side-effect free. This update adds the following global properties:

    From ES2017:

    • Atomics
    • SharedArrayBuffer

    From ES2020:

    • BigInt64Array
    • BigUint64Array

    From ES2021:

    • FinalizationRegistry
    • WeakRef

    From ES2025:

    • Float16Array
    • Iterator

    Note that this does not indicate that constructing any of these objects is side-effect free, just that accessing the identifier is side-effect free. For example, this now allows esbuild to tree-shake classes that extend from Iterator:

... (truncated)

Commits

Updates @esbuild/freebsd-x64 from 0.27.0 to 0.25.12

Changelog

Sourced from @​esbuild/freebsd-x64's changelog.

0.27.0

This release deliberately contains backwards-incompatible changes. To avoid automatically picking up releases like this, you should either be pinning the exact version of esbuild in your package.json file (recommended) or be using a version range syntax that only accepts patch upgrades such as ^0.26.0 or ~0.26.0. See npm's documentation about semver for more information.

  • Use Uint8Array.fromBase64 if available (#4286)

    With this release, esbuild's binary loader will now use the new Uint8Array.fromBase64 function unless it's unavailable in the configured target environment. If it's unavailable, esbuild's previous code for this will be used as a fallback. Note that this means you may now need to specify target when using this feature with Node (for example --target=node22) unless you're using Node v25+.

  • Update the Go compiler from v1.23.12 to v1.25.4 (#4208, #4311)

    This raises the operating system requirements for running esbuild:

    • Linux: now requires a kernel version of 3.2 or later
    • macOS: now requires macOS 12 (Monterey) or later

0.26.0

  • Enable trusted publishing (#4281)

    GitHub and npm are recommending that maintainers for packages such as esbuild switch to trusted publishing. With this release, a VM on GitHub will now build and publish all of esbuild's packages to npm instead of me. In theory.

    Unfortunately there isn't really a way to test that this works other than to do it live. So this release is that live test. Hopefully this release is uneventful and is exactly the same as the previous one (well, except for the green provenance attestation checkmark on npm that happens with trusted publishing).

0.25.12

  • Fix a minification regression with CSS media queries (#4315)

    The previous release introduced support for parsing media queries which unintentionally introduced a regression with the removal of duplicate media rules during minification. Specifically the grammar for @media <media-type> and <media-condition-without-or> { ... } was missing an equality check for the <media-condition-without-or> part, so rules with different suffix clauses in this position would incorrectly compare equal and be deduplicated. This release fixes the regression.

  • Update the list of known JavaScript globals (#4310)

    This release updates esbuild's internal list of known JavaScript globals. These are globals that are known to not have side-...

    Description has been truncated

Bumps the packages group with 38 updates:

| Package | From | To |
| --- | --- | --- |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `25.0.2` | `25.0.3` |
| [vercel](https://github.com/vercel/vercel/tree/HEAD/packages/cli) | `50.0.1` | `50.1.0` |
| [vite-plugin-vercel](https://github.com/magne4000/vite-plugin-vercel) | `9.0.8` | `9.1.1` |
| [@esbuild/aix-ppc64](https://github.com/evanw/esbuild) | `0.27.0` | `0.25.12` |
| [@esbuild/android-arm64](https://github.com/evanw/esbuild) | `0.27.0` | `0.25.12` |
| [@esbuild/android-arm](https://github.com/evanw/esbuild) | `0.27.0` | `0.25.12` |
| [@esbuild/android-x64](https://github.com/evanw/esbuild) | `0.27.0` | `0.25.12` |
| [@esbuild/darwin-arm64](https://github.com/evanw/esbuild) | `0.27.0` | `0.25.12` |
| [@esbuild/darwin-x64](https://github.com/evanw/esbuild) | `0.27.0` | `0.25.12` |
| [@esbuild/freebsd-arm64](https://github.com/evanw/esbuild) | `0.27.0` | `0.25.12` |
| [@esbuild/freebsd-x64](https://github.com/evanw/esbuild) | `0.27.0` | `0.25.12` |
| [@esbuild/linux-arm64](https://github.com/evanw/esbuild) | `0.27.0` | `0.25.12` |
| [@esbuild/linux-arm](https://github.com/evanw/esbuild) | `0.27.0` | `0.25.12` |
| [@esbuild/linux-ia32](https://github.com/evanw/esbuild) | `0.27.0` | `0.25.12` |
| [@esbuild/linux-loong64](https://github.com/evanw/esbuild) | `0.27.0` | `0.25.12` |
| [@esbuild/linux-mips64el](https://github.com/evanw/esbuild) | `0.27.0` | `0.25.12` |
| [@esbuild/linux-ppc64](https://github.com/evanw/esbuild) | `0.27.0` | `0.25.12` |
| [@esbuild/linux-riscv64](https://github.com/evanw/esbuild) | `0.27.0` | `0.25.12` |
| [@esbuild/linux-s390x](https://github.com/evanw/esbuild) | `0.27.0` | `0.25.12` |
| [@esbuild/linux-x64](https://github.com/evanw/esbuild) | `0.27.0` | `0.25.12` |
| [@esbuild/netbsd-arm64](https://github.com/evanw/esbuild) | `0.27.0` | `0.25.12` |
| [@esbuild/netbsd-x64](https://github.com/evanw/esbuild) | `0.27.0` | `0.25.12` |
| [@esbuild/openbsd-arm64](https://github.com/evanw/esbuild) | `0.27.0` | `0.25.12` |
| [@esbuild/openbsd-x64](https://github.com/evanw/esbuild) | `0.27.0` | `0.25.12` |
| [@esbuild/openharmony-arm64](https://github.com/evanw/esbuild) | `0.27.0` | `0.25.12` |
| [@esbuild/sunos-x64](https://github.com/evanw/esbuild) | `0.27.0` | `0.25.12` |
| [@esbuild/win32-arm64](https://github.com/evanw/esbuild) | `0.27.0` | `0.25.12` |
| [@esbuild/win32-ia32](https://github.com/evanw/esbuild) | `0.27.0` | `0.25.12` |
| [@esbuild/win32-x64](https://github.com/evanw/esbuild) | `0.27.0` | `0.25.12` |
| [@vercel/build-utils](https://github.com/vercel/vercel/tree/HEAD/packages/now-build-utils) | `8.8.0` | `13.2.3` |
| [@vercel/next](https://github.com/vercel/vercel/tree/HEAD/packages/next) | `4.15.8` | `4.15.9` |
| [@vercel/nft](https://github.com/vercel/nft) | `0.27.10` | `1.1.1` |
| [@vercel/python](https://github.com/vercel/vercel/tree/HEAD/packages/python) | `6.1.3` | `6.1.4` |
| [baseline-browser-mapping](https://github.com/web-platform-dx/baseline-browser-mapping) | `2.9.7` | `2.9.8` |
| [esbuild](https://github.com/evanw/esbuild) | `0.27.0` | `0.25.12` |
| [glob](https://github.com/isaacs/node-glob) | `7.2.3` | `13.0.0` |
| [rollup](https://github.com/rollup/rollup) | `4.53.4` | `4.53.5` |
| [update-browserslist-db](https://github.com/browserslist/update-db) | `1.2.2` | `1.2.3` |


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

Updates `vercel` from 50.0.1 to 50.1.0
- [Release notes](https://github.com/vercel/vercel/releases)
- [Changelog](https://github.com/vercel/vercel/blob/main/packages/cli/CHANGELOG.md)
- [Commits](https://github.com/vercel/vercel/commits/vercel@50.1.0/packages/cli)

Updates `vite-plugin-vercel` from 9.0.8 to 9.1.1
- [Commits](https://github.com/magne4000/vite-plugin-vercel/compare/vite-plugin-vercel@9.0.8...vite-plugin-vercel@9.1.1)

Updates `@esbuild/aix-ppc64` from 0.27.0 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.27.0...v0.25.12)

Updates `@esbuild/android-arm64` from 0.27.0 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.27.0...v0.25.12)

Updates `@esbuild/android-arm` from 0.27.0 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.27.0...v0.25.12)

Updates `@esbuild/android-x64` from 0.27.0 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.27.0...v0.25.12)

Updates `@esbuild/darwin-arm64` from 0.27.0 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.27.0...v0.25.12)

Updates `@esbuild/darwin-x64` from 0.27.0 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.27.0...v0.25.12)

Updates `@esbuild/freebsd-arm64` from 0.27.0 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.27.0...v0.25.12)

Updates `@esbuild/freebsd-x64` from 0.27.0 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.27.0...v0.25.12)

Updates `@esbuild/linux-arm64` from 0.27.0 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.27.0...v0.25.12)

Updates `@esbuild/linux-arm` from 0.27.0 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.27.0...v0.25.12)

Updates `@esbuild/linux-ia32` from 0.27.0 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.27.0...v0.25.12)

Updates `@esbuild/linux-loong64` from 0.27.0 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.27.0...v0.25.12)

Updates `@esbuild/linux-mips64el` from 0.27.0 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.27.0...v0.25.12)

Updates `@esbuild/linux-ppc64` from 0.27.0 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.27.0...v0.25.12)

Updates `@esbuild/linux-riscv64` from 0.27.0 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.27.0...v0.25.12)

Updates `@esbuild/linux-s390x` from 0.27.0 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.27.0...v0.25.12)

Updates `@esbuild/linux-x64` from 0.27.0 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.27.0...v0.25.12)

Updates `@esbuild/netbsd-arm64` from 0.27.0 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.27.0...v0.25.12)

Updates `@esbuild/netbsd-x64` from 0.27.0 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.27.0...v0.25.12)

Updates `@esbuild/openbsd-arm64` from 0.27.0 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.27.0...v0.25.12)

Updates `@esbuild/openbsd-x64` from 0.27.0 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.27.0...v0.25.12)

Updates `@esbuild/openharmony-arm64` from 0.27.0 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.27.0...v0.25.12)

Updates `@esbuild/sunos-x64` from 0.27.0 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.27.0...v0.25.12)

Updates `@esbuild/win32-arm64` from 0.27.0 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.27.0...v0.25.12)

Updates `@esbuild/win32-ia32` from 0.27.0 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.27.0...v0.25.12)

Updates `@esbuild/win32-x64` from 0.27.0 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.27.0...v0.25.12)

Updates `@vercel/build-utils` from 8.8.0 to 13.2.3
- [Release notes](https://github.com/vercel/vercel/releases)
- [Commits](https://github.com/vercel/vercel/commits/@vercel/build-utils@13.2.3/packages/now-build-utils)

Updates `@vercel/next` from 4.15.8 to 4.15.9
- [Release notes](https://github.com/vercel/vercel/releases)
- [Changelog](https://github.com/vercel/vercel/blob/main/packages/next/CHANGELOG.md)
- [Commits](https://github.com/vercel/vercel/commits/@vercel/next@4.15.9/packages/next)

Updates `@vercel/nft` from 0.27.10 to 1.1.1
- [Release notes](https://github.com/vercel/nft/releases)
- [Commits](vercel/nft@0.27.10...1.1.1)

Updates `@vercel/python` from 6.1.3 to 6.1.4
- [Release notes](https://github.com/vercel/vercel/releases)
- [Changelog](https://github.com/vercel/vercel/blob/main/packages/python/CHANGELOG.md)
- [Commits](https://github.com/vercel/vercel/commits/@vercel/python@6.1.4/packages/python)

Updates `baseline-browser-mapping` from 2.9.7 to 2.9.8
- [Release notes](https://github.com/web-platform-dx/baseline-browser-mapping/releases)
- [Commits](web-platform-dx/baseline-browser-mapping@v2.9.7...v2.9.8)

Updates `esbuild` from 0.27.0 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.27.0...v0.25.12)

Updates `glob` from 7.2.3 to 13.0.0
- [Changelog](https://github.com/isaacs/node-glob/blob/main/changelog.md)
- [Commits](isaacs/node-glob@v7.2.3...v13.0.0)

Updates `rollup` from 4.53.4 to 4.53.5
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](rollup/rollup@v4.53.4...v4.53.5)

Updates `update-browserslist-db` from 1.2.2 to 1.2.3
- [Release notes](https://github.com/browserslist/update-db/releases)
- [Changelog](https://github.com/browserslist/update-db/blob/main/CHANGELOG.md)
- [Commits](browserslist/update-db@1.2.2...1.2.3)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-version: 25.0.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: packages
- dependency-name: vercel
  dependency-version: 50.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: packages
- dependency-name: vite-plugin-vercel
  dependency-version: 9.1.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: packages
- dependency-name: "@esbuild/aix-ppc64"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: packages
- dependency-name: "@esbuild/android-arm64"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: packages
- dependency-name: "@esbuild/android-arm"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: packages
- dependency-name: "@esbuild/android-x64"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: packages
- dependency-name: "@esbuild/darwin-arm64"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: packages
- dependency-name: "@esbuild/darwin-x64"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: packages
- dependency-name: "@esbuild/freebsd-arm64"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: packages
- dependency-name: "@esbuild/freebsd-x64"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: packages
- dependency-name: "@esbuild/linux-arm64"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: packages
- dependency-name: "@esbuild/linux-arm"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: packages
- dependency-name: "@esbuild/linux-ia32"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: packages
- dependency-name: "@esbuild/linux-loong64"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: packages
- dependency-name: "@esbuild/linux-mips64el"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: packages
- dependency-name: "@esbuild/linux-ppc64"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: packages
- dependency-name: "@esbuild/linux-riscv64"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: packages
- dependency-name: "@esbuild/linux-s390x"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: packages
- dependency-name: "@esbuild/linux-x64"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: packages
- dependency-name: "@esbuild/netbsd-arm64"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: packages
- dependency-name: "@esbuild/netbsd-x64"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: packages
- dependency-name: "@esbuild/openbsd-arm64"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: packages
- dependency-name: "@esbuild/openbsd-x64"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: packages
- dependency-name: "@esbuild/openharmony-arm64"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: packages
- dependency-name: "@esbuild/sunos-x64"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: packages
- dependency-name: "@esbuild/win32-arm64"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: packages
- dependency-name: "@esbuild/win32-ia32"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: packages
- dependency-name: "@esbuild/win32-x64"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: packages
- dependency-name: "@vercel/build-utils"
  dependency-version: 13.2.3
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: packages
- dependency-name: "@vercel/next"
  dependency-version: 4.15.9
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: packages
- dependency-name: "@vercel/nft"
  dependency-version: 1.1.1
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: packages
- dependency-name: "@vercel/python"
  dependency-version: 6.1.4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: packages
- dependency-name: baseline-browser-mapping
  dependency-version: 2.9.8
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: packages
- dependency-name: esbuild
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: packages
- dependency-name: glob
  dependency-version: 13.0.0
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: packages
- dependency-name: rollup
  dependency-version: 4.53.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: packages
- dependency-name: update-browserslist-db
  dependency-version: 1.2.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: packages
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Dec 16, 2025
@vercel
Copy link

vercel bot commented Dec 16, 2025

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

Project Deployment Review Updated (UTC)
github-rest-api-executor Error Error Dec 16, 2025 10:54pm

@github-actions github-actions bot merged commit 5efbe0b into main Dec 16, 2025
4 of 5 checks passed
@github-actions github-actions bot deleted the dependabot/npm_and_yarn/packages-4b8bd822f5 branch December 16, 2025 22:54
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.

2 participants