Skip to content

chore(deps): update patch/minor dependencies#78

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all-non-major
Open

chore(deps): update patch/minor dependencies#78
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all-non-major

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Mar 13, 2026

This PR contains the following updates:

Package Change Age Confidence
@octokit/request 10.0.910.0.10 age confidence
@vercel/node (source) 5.8.35.8.12 age confidence
eslint (source) 10.4.010.4.1 age confidence
typescript-eslint (source) 8.59.48.60.1 age confidence
vercel (source) 54.3.054.9.1 age confidence
yarn (source) 4.15.04.16.0 age confidence

Release Notes

octokit/request.js (@​octokit/request)

v10.0.10

Compare Source

Bug Fixes
  • remove unused fast-content-type-parse dependency (#​808) (25b0838)
vercel/vercel (@​vercel/node)

v5.8.12

Compare Source

Patch Changes

v5.8.11

Compare Source

Patch Changes

v5.8.10

Compare Source

Patch Changes

v5.8.9

Compare Source

Patch Changes

v5.8.8

Compare Source

Patch Changes
  • ab0e5aa: Bump @​vercel/nft to 1.10.0 and enable moduleSyncCatchall tracing in node, backends, and next builders.

v5.8.7

Compare Source

Patch Changes

v5.8.6

Compare Source

Patch Changes

v5.8.5

Compare Source

Patch Changes

v5.8.4

Compare Source

Patch Changes
eslint/eslint (eslint)

v10.4.1

Compare Source

Bug Fixes

  • e557467 fix: update @eslint/plugin-kit version to 0.7.2 (#​20930) (Francesco Trotta)
  • d4ce898 fix: propagate failures from delegated commands (#​20917) (Minh Vu)
  • f4f3507 fix: prefer-arrow-callback invalid autofix with newline after async (#​20916) (kuldeep kumar)
  • c5bc78b fix: false positive for reference in finally block (#​20655) (Tanuj Kanti)
  • 27538c0 fix: add missing CodePath and CodePathSegment types (#​20853) (Pixel998)

Documentation

  • 61b0add docs: remove deprecated rule from related rules of max-params (#​20921) (Tanuj Kanti)
  • 305d5b9 docs: remove deprecated rules from related rules section (#​20911) (Tanuj Kanti)
  • 49b0202 docs: fix display: none of ad (#​20901) (Tanuj Kanti)
  • 9067f94 docs: switch build to Node.js 24 (#​20893) (Milos Djermanovic)
  • c91b041 docs: Update README (GitHub Actions Bot)
  • e349265 docs: clarify semver strings in rule deprecation objects (#​20885) (Milos Djermanovic)

Chores

typescript-eslint/typescript-eslint (typescript-eslint)

v8.60.1

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.60.0

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

vercel/vercel (vercel)

v54.9.1

Compare Source

Patch Changes
  • f5ab607: [evals] Shrink eval result uploads and fix run discovery

    The eval ingest transform (transform-agent-eval-to-canonical.js) now excludes raw transcripts (transcript-raw.jsonl) from the --upload-artifacts all path, roughly halving each ingest payload. The parsed transcript.json is still uploaded and still read for resolvedModels metadata.

    It also normalizes provider-prefixed model paths before upload. Models that resolve to provider/model (e.g. openai/gpt-5.5-pro) write results one directory deeper, pushing the timestamp past the experiment/model/timestamp shape the ingest endpoint discovers runs from, which previously failed with Could not discover any experiment/model/timestamp runs. The model is now collapsed to a single segment (openai-gpt-5.5-pro) so discovery succeeds.

  • 2b31813: Fix vc build --standalone failing to zip Lambdas when run from a monorepo
    subdirectory. When dependencies are hoisted to the monorepo root (e.g. pnpm's
    node_modules/.pnpm/...), the recorded function file paths could escape the
    function root (../../node_modules/...), which later caused zipping to fail
    with invalid relative path: ../../node_modules/.... These paths are now
    re-anchored inside the function so the standalone output is self-contained.

  • 252c6eb: [cli] Show claim in vercel integration resource --help

    The claim subcommand was missing from resourceSubcommand.subcommands, so vercel integration resource --help only listed connect, disconnect, remove, and create-threshold. The legacy vercel integration-resource --help and the dispatcher's runtime resolution both already included claim — this was purely a help/discoverability gap on the canonical nested path. Adds claimSubcommand to the subcommand list and updates the parent description accordingly.

  • 0a170fd: [services] wire experimentalServicesV2 into fs-detectors.

  • Updated dependencies [aeb5bfa]

  • Updated dependencies [0a170fd]

v54.9.0

Compare Source

Minor Changes
  • fb4fb2d: Add support for claiming sandbox marketplace resources (Stripe, Shopify) from the CLI. integration list shows a new Claim column, integration-resource claim <name> opens the provider claim URL in the browser and polls until completion, and integration add offers to claim sandbox resources after provisioning with new --claim / --no-claim flags.
Patch Changes

v54.8.0

Compare Source

Minor Changes
  • fddeb55: Add configurable credentials storage handling across the CLI auth stack. Storage of credentials can be configured by the new credStorage key in global config.json or the new VERCEL_TOKEN_STORAGE environment variable. The environment variable takes precedence over the configuration key. Accepted values are file (store credentials in auth.json), keyring (store credentials in system keyring, e.g macOS Keychain or Secrets Service on Linux), and auto (try storing in keyring if available, fall back to file if keyring is not available).

    @vercel/oidc supports keyring-stored authentication credentials by delegating the OIDC minting to the CLI executable via @vercel/cli-exec.

Patch Changes
  • a869874: [connect] Rename user-facing "client" references to "connector"

    Updates the vercel connect CLI commands to use the official "connector" terminology in all user-facing surfaces: help text argument names (remove/attach/detach), usage strings in error messages, and the --format=json output key (clientsconnectors) for vercel connect list.

  • 200aa3b: [connect] Forward --scopes and --installation-id into the authorize/install recovery URL

    When vercel connect token hits an action-required error (user_authorization_required or client_installation_required), the CLI builds an authorize/install URL for the user to complete consent in the browser. Previously this URL carried only teamId and request_code, dropping the --scopes and --installation-id the user supplied. As a result the consent flow fell back to provider defaults (e.g. Slack's users.profile:read), and the post-authorization token retry mismatched the requested scopes. The CLI now forwards scopes (comma-joined) and installationId as query params, which the authorize and install endpoints already accept.

  • 3019788: [services] Remove the services field from vercel.json and the VERCEL_USE_SERVICES gate.

  • fe893ec: [services] Add experimentalServicesV2 field to vercel.json implementing the new schema for services.

  • d22d812: [cli] Nest integration-resource under integration resource and add integration resource connect

    The marketplace resource subcommands (disconnect, remove, create-threshold) are now discoverable under vercel integration resource <sub>. The standalone vercel integration-resource and vc ir forms still work as hidden aliases — no scripts or tests break.

    Adds a new vercel integration resource connect <resource> [project] command (the inverse of disconnect). Accepts --environment (repeatable, defaults to all three), --prefix for env var namespacing, --yes, and --format=json. Defaults to the project linked in the current directory when <project> is omitted.

    Tightens disconnect to error (exit 1) when the specified project is not connected to the resource, instead of exiting 0 with a "not found" message.

    Both commands emit a structured outputAgentError payload with reason: confirmation_required and a next: [{command}] retry hint when run in non-interactive / agent mode without --yes. When connect fails because an env var with the same name already exists on the target project, the error names the conflicting variable and suggests --prefix or vercel env rm as remediation.

  • Updated dependencies [3019788]

  • Updated dependencies [fe893ec]

  • Updated dependencies [fddeb55]

v54.7.1

Compare Source

Patch Changes

v54.7.0

Compare Source

Minor Changes
  • 0b4e1ef: Add vercel connect revoke-tokens subcommand to revoke tokens issued from a connector.
Patch Changes
  • ba6e7c6: Internal: fix _deploy eval grader passing --token "" in the Docker sandbox where VERCEL_TOKEN isn't in process env. Only pass --token when set; CLI falls back to auth.json otherwise.
  • 92988c2: Handle sensitive Environment Variable pull challenges in the CLI.
  • 3986bb0: Stop retrying intentionally aborted requests so the CLI exits promptly after a deployment is ready.
  • 64f5484: Allow SAML re-authentication to use device-code flow in non-TTY sessions.
  • 97fdbbe: [flags] fix dep detection for build embedding
  • Updated dependencies [2d918b8]

v54.6.1

Compare Source

Patch Changes

v54.6.0

Compare Source

Minor Changes
  • af3e0bd: adding version node + cli version to top of every command
Patch Changes

v54.5.1

Compare Source

Patch Changes

v54.5.0

Compare Source

Minor Changes
  • 6860c32: Add project manifest to rust builder.
  • 2c17a12: Added --open and --view flags to vercel traces get. --open opens the trace in the Vercel Dashboard instead of printing the markdown summary. --view <timeline|tree|gantt> selects the dashboard view and is only valid with --open.
Patch Changes

v54.4.1

Compare Source

Patch Changes

v54.4.0

Compare Source

Minor Changes
  • 9d9532d: Wire builder entrypoint detection into service setup.
Patch Changes
yarnpkg/berry (yarn)

v4.16.0: v4.16.0

Compare Source

What's Changed
New Contributors

Full Changelog: https://github.com/yarnpkg/berry/compare/@yarnpkg/cli/4.15.0...@​yarnpkg/cli/4.16.0


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • "every 2 weeks on friday"
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@vercel
Copy link
Copy Markdown

vercel Bot commented Mar 13, 2026

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

Project Deployment Actions Updated (UTC)
gh-discord-middleware Ready Ready Preview, Comment Jun 4, 2026 6:15pm

Request Review

@renovate renovate Bot force-pushed the renovate/all-non-major branch from 8894eda to 7a7c68d Compare March 13, 2026 16:12
@renovate renovate Bot force-pushed the renovate/all-non-major branch from 7a7c68d to 731e369 Compare March 14, 2026 01:49
@renovate renovate Bot force-pushed the renovate/all-non-major branch from 731e369 to 8eb424e Compare March 16, 2026 18:34
@renovate renovate Bot force-pushed the renovate/all-non-major branch from 8eb424e to ab7a898 Compare March 18, 2026 01:13
@renovate renovate Bot force-pushed the renovate/all-non-major branch from ab7a898 to 7ec2405 Compare March 18, 2026 20:57
@renovate renovate Bot force-pushed the renovate/all-non-major branch from 7ec2405 to afab523 Compare March 19, 2026 17:49
@renovate renovate Bot force-pushed the renovate/all-non-major branch from afab523 to a806075 Compare March 19, 2026 21:27
@renovate renovate Bot force-pushed the renovate/all-non-major branch from a806075 to ad2292f Compare March 20, 2026 01:30
@renovate renovate Bot force-pushed the renovate/all-non-major branch from ad2292f to 677427a Compare March 20, 2026 21:41
@renovate renovate Bot force-pushed the renovate/all-non-major branch from 677427a to 10b0360 Compare March 21, 2026 20:54
@renovate renovate Bot force-pushed the renovate/all-non-major branch from 10b0360 to 1d26dd5 Compare March 23, 2026 17:27
@renovate renovate Bot force-pushed the renovate/all-non-major branch from 1d26dd5 to 80eb67c Compare March 25, 2026 01:39
@renovate renovate Bot force-pushed the renovate/all-non-major branch from 80eb67c to 0e75a0b Compare March 26, 2026 13:33
@renovate renovate Bot force-pushed the renovate/all-non-major branch from 0e75a0b to c7e0df0 Compare March 27, 2026 00:39
@renovate renovate Bot force-pushed the renovate/all-non-major branch from 19e7e96 to a4cd1ee Compare April 3, 2026 17:34
@renovate renovate Bot force-pushed the renovate/all-non-major branch from a4cd1ee to 5e01d95 Compare April 6, 2026 22:00
@renovate renovate Bot force-pushed the renovate/all-non-major branch from 5e01d95 to 7124ab2 Compare April 7, 2026 17:47
@renovate renovate Bot force-pushed the renovate/all-non-major branch from 7124ab2 to a269587 Compare April 8, 2026 04:46
@renovate renovate Bot force-pushed the renovate/all-non-major branch 2 times, most recently from a269587 to 0b21946 Compare April 8, 2026 18:08
@renovate renovate Bot force-pushed the renovate/all-non-major branch from 0b21946 to ef5f0e5 Compare April 10, 2026 06:09
@renovate renovate Bot force-pushed the renovate/all-non-major branch from ef5f0e5 to b28fc06 Compare April 10, 2026 10:17
@renovate renovate Bot force-pushed the renovate/all-non-major branch from b28fc06 to a67d010 Compare April 11, 2026 05:34
@renovate renovate Bot force-pushed the renovate/all-non-major branch from a67d010 to 062f746 Compare April 13, 2026 21:14
@renovate renovate Bot force-pushed the renovate/all-non-major branch from 062f746 to 1601c68 Compare April 14, 2026 09:25
@renovate renovate Bot force-pushed the renovate/all-non-major branch from 1601c68 to 9de2501 Compare April 14, 2026 16:43
@renovate renovate Bot force-pushed the renovate/all-non-major branch from 9de2501 to df5d010 Compare April 15, 2026 04:33
@renovate renovate Bot force-pushed the renovate/all-non-major branch from df5d010 to 28d36f6 Compare April 16, 2026 10:51
@renovate renovate Bot force-pushed the renovate/all-non-major branch from 28d36f6 to 2dad191 Compare April 16, 2026 17:35
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