Skip to content

Commit fbdd541

Browse files
chore(deps): bump wrangler from 4.20.5 to 4.59.1 in /packages/node-sdk/examples/express (#503)
Bumps [wrangler](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler) from 4.20.5 to 4.59.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/cloudflare/workers-sdk/releases">wrangler's releases</a>.</em></p> <blockquote> <h2>wrangler@4.59.1</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/cloudflare/workers-sdk/pull/11889">#11889</a> <a href="https://github.com/cloudflare/workers-sdk/commit/99b1f328a9afe181b49f1114ed47f15f6d25f0be"><code>99b1f32</code></a> Thanks <a href="https://github.com/emily-shen"><code>@​emily-shen</code></a>! - Use argument array when executing git commands with <code>wrangler pages deploy</code></p> <p>Pass user provided values from <code>--commit-hash</code> safely to underlying git command.</p> </li> </ul> <h2>wrangler@4.59.0</h2> <h3>Minor Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/cloudflare/workers-sdk/pull/11852">#11852</a> <a href="https://github.com/cloudflare/workers-sdk/commit/ad65efa73ae8b666e1669964ccacc2680b12c853"><code>ad65efa</code></a> Thanks <a href="https://github.com/NuroDev"><code>@​NuroDev</code></a>! - Add <code>--check</code> flag to <code>wrangler types</code> command</p> <p>The new <code>--check</code> flag allows you to verify that your generated types file is up-to-date without regenerating it. This is useful for CI/CD pipelines, pre-commit hooks, or any scenario where you want to ensure types have been committed after configuration changes.</p> <p>When types are up-to-date, the command exits with code 0:</p> <pre lang="bash"><code>$ wrangler types --check ✨ Types at worker-configuration.d.ts are up to date. </code></pre> <p>When types are out-of-date, the command exits with code 1:</p> <pre lang="bash"><code>$ wrangler types --check ✘ [ERROR] Types at worker-configuration.d.ts are out of date. Run `wrangler types` to regenerate. </code></pre> <p>You can also use it with a custom output path:</p> <pre lang="bash"><code>$ wrangler types ./custom-types.d.ts --check </code></pre> </li> <li> <p><a href="https://redirect.github.com/cloudflare/workers-sdk/pull/11529">#11529</a> <a href="https://github.com/cloudflare/workers-sdk/commit/43d5363c7b40191723e9bab9900edd70ecac5837"><code>43d5363</code></a> Thanks <a href="https://github.com/matthewdavidrodgers"><code>@​matthewdavidrodgers</code></a>! - Add ability to enable higher asset count limits for Pages deployments</p> <p>Wrangler can now read asset count limits from JWT claims during Pages deployments, allowing users to be enabled for higher limits (up to 100,000 assets) on a per-account basis. The default limit remains at 20,000 assets.</p> </li> <li> <p><a href="https://redirect.github.com/cloudflare/workers-sdk/pull/11755">#11755</a> <a href="https://github.com/cloudflare/workers-sdk/commit/0f8d69d31071abeb567aa3c8478492536b5740fb"><code>0f8d69d</code></a> Thanks <a href="https://github.com/nikitassharma"><code>@​nikitassharma</code></a>! - Users can now specify <code>constraints.tiers</code> for their container applications. <code>tier</code> is deprecated in favor of <code>tiers</code>. If left unset, we will default to <code>tiers: [1, 2]</code>. Note that <code>constraints</code> is an experimental feature.</p> </li> </ul> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/cloudflare/workers-sdk/pull/11820">#11820</a> <a href="https://github.com/cloudflare/workers-sdk/commit/b0e54b26f261234ec47dcc673a5240734ba03fcc"><code>b0e54b2</code></a> Thanks <a href="https://github.com/MattieTK"><code>@​MattieTK</code></a>! - Add AI agent detection to analytics events</p> <p>Wrangler now detects when commands are executed by AI coding agents (such as Claude Code, Cursor, GitHub Copilot, etc.) using the <code>am-i-vibing</code> library. This information is included as an <code>agent</code> property in all analytics events, helping Cloudflare understand how developers interact with Wrangler through AI assistants.</p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/cloudflare/workers-sdk/commit/37a86071615a67ceaa4565f177642e9c69768168"><code>37a8607</code></a> Version Packages (<a href="https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler/issues/11890">#11890</a>)</li> <li><a href="https://github.com/cloudflare/workers-sdk/commit/99b1f328a9afe181b49f1114ed47f15f6d25f0be"><code>99b1f32</code></a> fix: execute git commands in pages deploy safely (<a href="https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler/issues/11889">#11889</a>)</li> <li><a href="https://github.com/cloudflare/workers-sdk/commit/e98c95aa22938f5ab6c3c1befe91350b9dc2ba0c"><code>e98c95a</code></a> Version Packages (<a href="https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler/issues/11836">#11836</a>)</li> <li><a href="https://github.com/cloudflare/workers-sdk/commit/ad65efa73ae8b666e1669964ccacc2680b12c853"><code>ad65efa</code></a> Add <code>--check</code> flag to <code>wrangler types</code> (<a href="https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler/issues/11852">#11852</a>)</li> <li><a href="https://github.com/cloudflare/workers-sdk/commit/beb96af470aefaae73237309244cf7369b329ff0"><code>beb96af</code></a> feat(unenv-preset): add support for native node:sqlite module (<a href="https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler/issues/11841">#11841</a>)</li> <li><a href="https://github.com/cloudflare/workers-sdk/commit/b0e54b26f261234ec47dcc673a5240734ba03fcc"><code>b0e54b2</code></a> [wrangler] Add AI agent detection to analytics events (<a href="https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler/issues/11820">#11820</a>)</li> <li><a href="https://github.com/cloudflare/workers-sdk/commit/2203af44331dd80d93ff412f1b9dbd1b6f2edf9c"><code>2203af4</code></a> Add Node.js 24 and 25 compatibility to the test suites for Miniflare, Wrangle...</li> <li><a href="https://github.com/cloudflare/workers-sdk/commit/b6148ed733f6d6873261df5ae61e71c475ba8a8d"><code>b6148ed</code></a> chore(deps): bump the workerd-and-workers-types group with 2 updates (<a href="https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler/issues/11872">#11872</a>)</li> <li><a href="https://github.com/cloudflare/workers-sdk/commit/0eb973deb57b8d8b9bb2fe4e5cb471fabab51bac"><code>0eb973d</code></a> Do not warn user when using a redirected config that came from a config with ...</li> <li><a href="https://github.com/cloudflare/workers-sdk/commit/0f8d69d31071abeb567aa3c8478492536b5740fb"><code>0f8d69d</code></a> containers: users can set multiple tiers for constraints (<a href="https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler/issues/11755">#11755</a>)</li> <li>Additional commits viewable in <a href="https://github.com/cloudflare/workers-sdk/commits/wrangler@4.59.1/packages/wrangler">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by [GitHub Actions](<a href="https://www.npmjs.com/~GitHub">https://www.npmjs.com/~GitHub</a> Actions), a new releaser for wrangler since your current version.</p> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=wrangler&package-manager=npm_and_yarn&previous-version=4.20.5&new-version=4.59.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/reflagcom/javascript/network/alerts). </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent d47eb96 commit fbdd541

File tree

2 files changed

+438
-476
lines changed

2 files changed

+438
-476
lines changed

packages/node-sdk/examples/express/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"express": "^4.20.0",
1212
"tsx": "^4.16.2",
1313
"typescript": "^5.5.3",
14-
"wrangler": "^4.20.5"
14+
"wrangler": "^4.59.1"
1515
},
1616
"devDependencies": {
1717
"@types/express": "^4.17.21",

0 commit comments

Comments
 (0)