Skip to content

Update npm dependencies (main) (patch)#481

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/main-patch-npm-dependencies
Open

Update npm dependencies (main) (patch)#481
renovate[bot] wants to merge 1 commit intomainfrom
renovate/main-patch-npm-dependencies

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Oct 25, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@antora/lunr-extension (source) 1.0.0-alpha.101.0.0-alpha.13 age adoption passing confidence
antora (source) 3.1.123.1.14 age adoption passing confidence
mermaid 11.12.111.12.3 age adoption passing confidence
wrangler (source) 4.59.14.59.3 age adoption passing confidence

Release Notes

antora/antora-lunr-extension (@​antora/lunr-extension)

v1.0.0-alpha.13

Compare Source

v1.0.0-alpha.12

Compare Source

v1.0.0-alpha.11

Compare Source

antora/antora (antora)

v3.1.14

Compare Source

v3.1.13

Compare Source

mermaid-js/mermaid (mermaid)

v11.12.3

Compare Source

Patch Changes

v11.12.2

Compare Source

Patch Changes
cloudflare/workers-sdk (wrangler)

v4.59.3

Compare Source

Patch Changes
  • #​9396 75386b1 Thanks @​gnekich! - Fix wrangler login with custom callback-host/callback-port

    The Cloudflare OAuth API always requires the redirect_uri to be localhost:8976. However, sometimes the Wrangler OAuth server needed to listen on a different host/port, for example when running from inside a container. We were previously incorrectly setting the redirect_uri to the configured callback host/port, but it needs to be up to the user to map localhost:8976 to the Wrangler OAuth server in the container.

    Example:

    You might run Wrangler inside a docker container like this: docker run -p 8989:8976 <image>, which forwards port 8976 on your host to 8989 inside the container.

    Then inside the container, run wrangler login --callback-host=0.0.0.0 --callback-port=8989

    The OAuth link still has a redirect_uri set tolocalhost:8976. For example https://dash.cloudflare.com/oauth2/auth?...&redirect_uri=http%3A%2F%2Flocalhost%3A8976%2Foauth%2Fcallback&...

    However the redirect to localhost:8976 is then forwarded to the Wrangler OAuth server inside your container, allowing the login to complete.

  • #​11925 8e4a0e5 Thanks @​dependabot! - chore: update dependencies of "miniflare", "wrangler"

    The following dependency versions have been updated:

    Dependency From To
    workerd 1.20260114.0 1.20260115.0
  • #​11942 133bf95 Thanks @​penalosa! - chore: update dependencies of "miniflare", "wrangler"

    The following dependency versions have been updated:

    Dependency From To
    workerd 1.20260115.0 1.20260116.0
  • #​11922 93d8d78 Thanks @​dario-piotrowicz! - Improve telemetry errors being sent to Sentry by wrangler init when it delegates to C3 by ensuring that they contain the output of the C3 execution.

  • #​11940 69ff962 Thanks @​penalosa! - Show helpful messages for file not found errors (ENOENT)

    When users encounter file not found errors, Wrangler now displays a helpful message with the missing file path and common causes, instead of reporting to Sentry.

  • #​11904 22727c2 Thanks @​danielrs! - Fix false positive infinite loop detection for exact path redirects

    Fixed an issue where the redirect validation incorrectly flagged exact path redirects like / /index.html 200 as infinite loops. This was particularly problematic when html_handling is set to "none", where such redirects are valid.

    The fix makes the validation more specific to only block wildcard patterns (like /* /index.html) that would actually cause infinite loops, while allowing exact path matches that are valid in certain configurations.

    Fixes: #​11824

  • #​11946 fa39a73 Thanks @​MattieTK! - Fix configFileName returning wrong filename for .jsonc config files

    Previously, users with a wrangler.jsonc config file would see error messages and hints referring to wrangler.json instead of wrangler.jsonc. This was because the configFormat function collapsed both .json and .jsonc files into a single "jsonc" value, losing the distinction between them.

    Now configFormat returns "json" for .json files and "jsonc" for .jsonc files, allowing configFileName to return the correct filename for each format.

  • #​11968 4ac7c82 Thanks @​MattieTK! - fix: include version components in command event metrics

    Adds wranglerMajorVersion, wranglerMinorVersion, and wranglerPatchVersion to command events (wrangler command started, wrangler command completed, wrangler command errored). These properties were previously only included in adhoc events.

  • #​11940 69ff962 Thanks @​penalosa! - Improve error message when creating duplicate KV namespace

    When attempting to create a KV namespace with a title that already exists, Wrangler now provides a clear, user-friendly error message instead of the generic API error. The new message explains that the namespace already exists and suggests running wrangler kv namespace list to see existing namespaces with their IDs, or choosing a different namespace name.

  • #​11962 029531a Thanks @​dario-piotrowicz! - Cache chosen account in memory to avoid repeated prompts

    When users have multiple accounts and no node_modules directory exists for file caching, Wrangler (run via npx and equivalent commands) would prompt for account selection multiple times during a single command. Now the selected account is also stored in process memory, preventing duplicate prompts and potential issues from inconsistent account choices.

  • #​11964 d58fbd1 Thanks @​dario-piotrowicz! - Make name the positional argument for wrangler delete instead of script

    The script argument was meaningless for the delete command since it deletes by worker name, not by entry point path. The name argument is now accepted as a positional argument, allowing users to run wrangler delete my-worker instead of wrangler delete --name my-worker. The script argument is now hidden but still accepted for backwards compatibility.

  • #​11967 202c59e Thanks @​emily-shen! - chore: update undici

    The following dependency versions have been updated:

    Dependency From To
    undici 7.14.0 7.18.2
  • #​11940 69ff962 Thanks @​penalosa! - Improve error handling for Vite config transformations

    Replace assertions with proper error handling when transforming Vite configs. When Wrangler encounters a Vite config that uses a function or lacks a plugins array, it now provides clear, actionable error messages instead of crashing with assertion failures. The check function gracefully skips incompatible configs with debug logging.

  • Updated dependencies [8e4a0e5, 133bf95, 202c59e, 133bf95, 25e2c60]:

    • miniflare@​4.20260116.0

v4.59.2

Compare Source

Patch Changes
  • #​11908 e78186d Thanks @​dependabot! - chore: update dependencies of "miniflare", "wrangler"

    The following dependency versions have been updated:

    Dependency From To
    workerd 1.20260111.0 1.20260114.0
  • #​11880 fe4faa3 Thanks @​penalosa! - Show helpful messages for errors outside of Wrangler's control. This prevents unnecessary Sentry reports.

    Errors now handled with user-friendly messages:

    • Connection timeouts to Cloudflare's API (UND_ERR_CONNECT_TIMEOUT) - typically due to slow networks or connectivity issues
    • File system permission errors (EPERM, EACCES) - caused by insufficient permissions, locked files, or antivirus software
    • DNS resolution failures (ENOTFOUND) - caused by network connectivity issues or DNS configuration problems
  • #​11882 695b043 Thanks @​GregBrimble! - Improve the error message for wrangler secret put when using Worker versions or gradual deployments. wrangler versions secret put should be used instead, or ensure to deploy the latest version before using wrangler secret put. wrangler secret put alone will add the new secret to the latest version (possibly undeployed) and immediately deploy that which is usually not intended.

  • Updated dependencies [e78186d, fec8f5b, d39777f, 4714ca1, c17e971]:


Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM ( * 0-3 * * * ) (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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.

@renovate renovate bot enabled auto-merge (squash) October 25, 2025 01:51
@renovate renovate bot added the renovate label Oct 25, 2025
@renovate renovate bot force-pushed the renovate/main-patch-npm-dependencies branch 2 times, most recently from 0a23ab0 to 5c02fd9 Compare November 4, 2025 14:23
@renovate renovate bot changed the title Update dependency antora to v3.1.14 (main) Update npm dependencies (main) (patch) Nov 4, 2025
@github-actions github-actions bot added size: XL and removed size: L labels Nov 4, 2025
@renovate renovate bot force-pushed the renovate/main-patch-npm-dependencies branch 3 times, most recently from fd42614 to 788dbc1 Compare November 11, 2025 20:59
@renovate renovate bot force-pushed the renovate/main-patch-npm-dependencies branch 3 times, most recently from 3cbc866 to 3d9f57a Compare November 19, 2025 05:09
@renovate renovate bot force-pushed the renovate/main-patch-npm-dependencies branch 6 times, most recently from e204f28 to 690db81 Compare December 2, 2025 05:41
@renovate renovate bot force-pushed the renovate/main-patch-npm-dependencies branch 6 times, most recently from 734af30 to c28cfdd Compare December 8, 2025 22:39
@renovate renovate bot force-pushed the renovate/main-patch-npm-dependencies branch from c28cfdd to 115000f Compare December 13, 2025 05:37
@renovate renovate bot force-pushed the renovate/main-patch-npm-dependencies branch from 115000f to dc62979 Compare December 18, 2025 04:52
@renovate renovate bot force-pushed the renovate/main-patch-npm-dependencies branch 3 times, most recently from 0abf111 to e932429 Compare January 6, 2026 22:08
@github-actions github-actions bot added size: L and removed size: XL labels Jan 6, 2026
@renovate renovate bot force-pushed the renovate/main-patch-npm-dependencies branch 2 times, most recently from 0606cc6 to f3ea539 Compare January 13, 2026 04:32
@renovate renovate bot force-pushed the renovate/main-patch-npm-dependencies branch from f3ea539 to 3bfcbe9 Compare January 16, 2026 05:31
@github-actions github-actions bot added size: XL and removed size: L labels Jan 16, 2026
@renovate renovate bot force-pushed the renovate/main-patch-npm-dependencies branch 4 times, most recently from 146c7d2 to 32593e0 Compare January 27, 2026 21:03
@renovate renovate bot force-pushed the renovate/main-patch-npm-dependencies branch 3 times, most recently from 727d0f0 to c39514a Compare February 8, 2026 05:47
@renovate renovate bot force-pushed the renovate/main-patch-npm-dependencies branch 4 times, most recently from f50e6b4 to 6e9c80e Compare February 17, 2026 15:15
@renovate renovate bot force-pushed the renovate/main-patch-npm-dependencies branch from 6e9c80e to 8fccf75 Compare February 19, 2026 22:58
@renovate renovate bot force-pushed the renovate/main-patch-npm-dependencies branch from 8fccf75 to 2f50823 Compare February 25, 2026 22:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants