Skip to content

Commit 3e45cc2

Browse files
Bump wrangler from 4.45.0 to 4.45.3 (#153)
Bumps [wrangler](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler) from 4.45.0 to 4.45.3. <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.45.3</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/cloudflare/workers-sdk/pull/11117">#11117</a> <a href="https://github.com/cloudflare/workers-sdk/commit/6822aaf405954a2939d1a064b3968297e337f97e"><code>6822aaf</code></a> Thanks <a href="https://github.com/emily-shen"><code>@​emily-shen</code></a>! - fix: show local/remote status before D1 command confirmations</p> <p>D1 commands (<code>execute</code>, <code>export</code>, <code>migrations apply</code>, <code>migrations list</code>, <code>delete</code>, <code>time-travel</code>) now display whether they're running against local or remote databases before showing confirmation prompts. This prevents confusion about which database will be affected by the operation.</p> </li> <li> <p><a href="https://redirect.github.com/cloudflare/workers-sdk/pull/11077">#11077</a> <a href="https://github.com/cloudflare/workers-sdk/commit/bce81422f7685aef8fb62fd80192ea3516690702"><code>bce8142</code></a> Thanks <a href="https://github.com/petebacondarwin"><code>@​petebacondarwin</code></a>! - Ensure that process.env is case-insensitive on Windows</p> <p>The object that holds the environment variables in <code>process.env</code> does not care about the case of its keys in Windows. For example, <code>process.env.SystemRoot</code> and <code>process.env.SYSTEMROOT</code> will refer to the same value.</p> <p>Previously, when merging fields from <code>.env</code> files we were replacing this native object with a vanilla JavaScript object, that is case-insensitive, and so sometimes environment variables appeared to be missing when in reality they just had different casing.</p> </li> </ul> <h2>wrangler@4.45.1</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/cloudflare/workers-sdk/pull/10959">#10959</a> <a href="https://github.com/cloudflare/workers-sdk/commit/d0208fef543c8a4850614d2cd3cba86a8bf4e3cb"><code>d0208fe</code></a> Thanks <a href="https://github.com/apps/devin-ai-integration"><code>@​devin-ai-integration</code></a>! - Fixed conflict between <code>--env</code> and <code>--expires</code> flags in <code>wrangler r2 object put</code>.</p> <p><code>--e</code> now aliases <code>--env</code> only, and NOT <code>--expires</code>.</p> </li> <li> <p><a href="https://redirect.github.com/cloudflare/workers-sdk/pull/10915">#10915</a> <a href="https://github.com/cloudflare/workers-sdk/commit/dbe51c19bc3ad32c61efd5b0ca1fc2749de3bbe9"><code>dbe51c1</code></a> Thanks <a href="https://github.com/apps/devin-ai-integration"><code>@​devin-ai-integration</code></a>! - Fixed self-bindings (service bindings to the same worker) showing as [not connected] in wrangler dev. Self-bindings now correctly show as [connected] since a worker is always available to itself.</p> </li> <li> <p><a href="https://redirect.github.com/cloudflare/workers-sdk/pull/10913">#10913</a> <a href="https://github.com/cloudflare/workers-sdk/commit/d4f2daf71f64eb1a4529d78c27228877d48c22c4"><code>d4f2daf</code></a> Thanks <a href="https://github.com/apps/devin-ai-integration"><code>@​devin-ai-integration</code></a>! - Fixed duplicate warning messages appearing during wrangler dev when configuration changes or state transitions occur</p> </li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/cloudflare/workers-sdk/blob/main/packages/wrangler/CHANGELOG.md">wrangler's changelog</a>.</em></p> <blockquote> <h2>4.45.3</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/cloudflare/workers-sdk/pull/11117">#11117</a> <a href="https://github.com/cloudflare/workers-sdk/commit/6822aaf405954a2939d1a064b3968297e337f97e"><code>6822aaf</code></a> Thanks <a href="https://github.com/emily-shen"><code>@​emily-shen</code></a>! - fix: show local/remote status before D1 command confirmations</p> <p>D1 commands (<code>execute</code>, <code>export</code>, <code>migrations apply</code>, <code>migrations list</code>, <code>delete</code>, <code>time-travel</code>) now display whether they're running against local or remote databases before showing confirmation prompts. This prevents confusion about which database will be affected by the operation.</p> </li> <li> <p><a href="https://redirect.github.com/cloudflare/workers-sdk/pull/11077">#11077</a> <a href="https://github.com/cloudflare/workers-sdk/commit/bce81422f7685aef8fb62fd80192ea3516690702"><code>bce8142</code></a> Thanks <a href="https://github.com/petebacondarwin"><code>@​petebacondarwin</code></a>! - Ensure that process.env is case-insensitive on Windows</p> <p>The object that holds the environment variables in <code>process.env</code> does not care about the case of its keys in Windows. For example, <code>process.env.SystemRoot</code> and <code>process.env.SYSTEMROOT</code> will refer to the same value.</p> <p>Previously, when merging fields from <code>.env</code> files we were replacing this native object with a vanilla JavaScript object, that is case-insensitive, and so sometimes environment variables appeared to be missing when in reality they just had different casing.</p> </li> </ul> <h2>4.45.2</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/cloudflare/workers-sdk/pull/11097">#11097</a> <a href="https://github.com/cloudflare/workers-sdk/commit/55657eb0dfa01ef9081a3510c4ba2b90243f2978"><code>55657eb</code></a> Thanks <a href="https://github.com/penalosa"><code>@​penalosa</code></a>! - Extract internal APIs into a new <code>@cloudflare/workers-utils</code> package</p> </li> <li> <p><a href="https://redirect.github.com/cloudflare/workers-sdk/pull/11118">#11118</a> <a href="https://github.com/cloudflare/workers-sdk/commit/d47f166499dd1a38c245ba06d1a2c150b2d6ef80"><code>d47f166</code></a> Thanks <a href="https://github.com/zebp"><code>@​zebp</code></a>! - Fix validation of the <code>persist</code> field of observability <code>logs</code> and <code>traces</code> configuration</p> </li> </ul> <h2>4.45.1</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/cloudflare/workers-sdk/pull/10959">#10959</a> <a href="https://github.com/cloudflare/workers-sdk/commit/d0208fef543c8a4850614d2cd3cba86a8bf4e3cb"><code>d0208fe</code></a> Thanks <a href="https://github.com/apps/devin-ai-integration"><code>@​devin-ai-integration</code></a>! - Fixed conflict between <code>--env</code> and <code>--expires</code> flags in <code>wrangler r2 object put</code>.</p> <p><code>--e</code> now aliases <code>--env</code> only, and NOT <code>--expires</code>.</p> </li> <li> <p><a href="https://redirect.github.com/cloudflare/workers-sdk/pull/10915">#10915</a> <a href="https://github.com/cloudflare/workers-sdk/commit/dbe51c19bc3ad32c61efd5b0ca1fc2749de3bbe9"><code>dbe51c1</code></a> Thanks <a href="https://github.com/apps/devin-ai-integration"><code>@​devin-ai-integration</code></a>! - Fixed self-bindings (service bindings to the same worker) showing as [not connected] in wrangler dev. Self-bindings now correctly show as [connected] since a worker is always available to itself.</p> </li> <li> <p><a href="https://redirect.github.com/cloudflare/workers-sdk/pull/10913">#10913</a> <a href="https://github.com/cloudflare/workers-sdk/commit/d4f2daf71f64eb1a4529d78c27228877d48c22c4"><code>d4f2daf</code></a> Thanks <a href="https://github.com/apps/devin-ai-integration"><code>@​devin-ai-integration</code></a>! - Fixed duplicate warning messages appearing during wrangler dev when configuration changes or state transitions occur</p> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/cloudflare/workers-sdk/commit/8445f29df67092e4975e76a831577232336597d9"><code>8445f29</code></a> Version Packages (<a href="https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler/issues/11131">#11131</a>)</li> <li><a href="https://github.com/cloudflare/workers-sdk/commit/6822aaf405954a2939d1a064b3968297e337f97e"><code>6822aaf</code></a> print d1 resource locations take 2 (<a href="https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler/issues/11117">#11117</a>)</li> <li><a href="https://github.com/cloudflare/workers-sdk/commit/bce81422f7685aef8fb62fd80192ea3516690702"><code>bce8142</code></a> Ensure that process.env is case-insensitive on Windows (<a href="https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler/issues/11077">#11077</a>)</li> <li><a href="https://github.com/cloudflare/workers-sdk/commit/6958fa7abda59b644a48090e4974f469c187c9e6"><code>6958fa7</code></a> Version Packages (<a href="https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler/issues/11115">#11115</a>)</li> <li><a href="https://github.com/cloudflare/workers-sdk/commit/d47f166499dd1a38c245ba06d1a2c150b2d6ef80"><code>d47f166</code></a> Fix validation of the persist field of observability logs and traces (<a href="https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler/issues/11118">#11118</a>)</li> <li><a href="https://github.com/cloudflare/workers-sdk/commit/55657eb0dfa01ef9081a3510c4ba2b90243f2978"><code>55657eb</code></a> Extract a publishable <code>@cloudflare/workers-utils</code> package (<a href="https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler/issues/11097">#11097</a>)</li> <li><a href="https://github.com/cloudflare/workers-sdk/commit/fbbb1dabfac8c57919216dd23eecbafb04244b96"><code>fbbb1da</code></a> Revert &quot;fix: add printResourceLocation to D1 commands (<a href="https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler/issues/10912">#10912</a>)&quot; (<a href="https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler/issues/11116">#11116</a>)</li> <li><a href="https://github.com/cloudflare/workers-sdk/commit/1357ca24aeb12f487a88fff32fdd671b8b81b611"><code>1357ca2</code></a> fix: add printResourceLocation to D1 commands (<a href="https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler/issues/10912">#10912</a>)</li> <li><a href="https://github.com/cloudflare/workers-sdk/commit/cb476146fb7b4740eb48587e77b40ed299886d49"><code>cb47614</code></a> Version Packages (<a href="https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler/issues/11085">#11085</a>)</li> <li><a href="https://github.com/cloudflare/workers-sdk/commit/d0208fef543c8a4850614d2cd3cba86a8bf4e3cb"><code>d0208fe</code></a> [wrangler] Fix --env and --expires flag conflict in r2 object put (<a href="https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler/issues/10959">#10959</a>)</li> <li>Additional commits viewable in <a href="https://github.com/cloudflare/workers-sdk/commits/wrangler@4.45.3/packages/wrangler">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=wrangler&package-manager=bun&previous-version=4.45.0&new-version=4.45.3)](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) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 915087b commit 3e45cc2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bun.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,7 @@
627627

628628
"workerd": ["workerd@1.20251011.0", "", { "optionalDependencies": { "@cloudflare/workerd-darwin-64": "1.20251011.0", "@cloudflare/workerd-darwin-arm64": "1.20251011.0", "@cloudflare/workerd-linux-64": "1.20251011.0", "@cloudflare/workerd-linux-arm64": "1.20251011.0", "@cloudflare/workerd-windows-64": "1.20251011.0" }, "bin": { "workerd": "bin/workerd" } }, "sha512-Dq35TLPEJAw7BuYQMkN3p9rge34zWMU2Gnd4DSJFeVqld4+DAO2aPG7+We2dNIAyM97S8Y9BmHulbQ00E0HC7Q=="],
629629

630-
"wrangler": ["wrangler@4.45.0", "", { "dependencies": { "@cloudflare/kv-asset-handler": "0.4.0", "@cloudflare/unenv-preset": "2.7.8", "blake3-wasm": "2.1.5", "esbuild": "0.25.4", "miniflare": "4.20251011.1", "path-to-regexp": "6.3.0", "unenv": "2.0.0-rc.21", "workerd": "1.20251011.0" }, "optionalDependencies": { "fsevents": "~2.3.2" }, "peerDependencies": { "@cloudflare/workers-types": "^4.20251011.0" }, "optionalPeers": ["@cloudflare/workers-types"], "bin": { "wrangler": "bin/wrangler.js", "wrangler2": "bin/wrangler.js" } }, "sha512-2qM6bHw8l7r89Z9Y5A7Wn4L9U+dFoLjYgEUVpqy7CcmXpppL3QIYqU6rU5lre7/SRzBuPu/H93Vwfh538gZ3iw=="],
630+
"wrangler": ["wrangler@4.45.3", "", { "dependencies": { "@cloudflare/kv-asset-handler": "0.4.0", "@cloudflare/unenv-preset": "2.7.8", "blake3-wasm": "2.1.5", "esbuild": "0.25.4", "miniflare": "4.20251011.1", "path-to-regexp": "6.3.0", "unenv": "2.0.0-rc.21", "workerd": "1.20251011.0" }, "optionalDependencies": { "fsevents": "~2.3.2" }, "peerDependencies": { "@cloudflare/workers-types": "^4.20251011.0" }, "optionalPeers": ["@cloudflare/workers-types"], "bin": { "wrangler": "bin/wrangler.js", "wrangler2": "bin/wrangler.js" } }, "sha512-0ddEA9t4HeBgSVTVTcqtBHl7Z5CorWZ8tGgTQCP5XuL+9E1TJRwS6t/zzG51Ruwjb17SZYCaLchoM8V629S8cw=="],
631631

632632
"wrap-ansi": ["wrap-ansi@6.2.0", "", { "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" } }, "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA=="],
633633

0 commit comments

Comments
 (0)