Commit 05e0690
authored
Bump wrangler from 4.43.0 to 4.45.0 (#147)
Bumps
[wrangler](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler)
from 4.43.0 to 4.45.0.
<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.0</h2>
<h3>Minor Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/cloudflare/workers-sdk/pull/11030">#11030</a>
<a
href="https://github.com/cloudflare/workers-sdk/commit/1a8088ab32110f7d0503f5c379d4964200c0c140"><code>1a8088a</code></a>
Thanks <a
href="https://github.com/penalosa"><code>@penalosa</code></a>! - Enable
automatic resource provisioning by default in Wrangler. This is still an
experimental feature, but we're turning on the flag by default to make
it easier for people to test it and try it out. You can disable the
feature using the <code>--no-x-provision</code> flag. It currently works
for R2, D1, and KV bindings.</p>
<p>To use this feature, add a binding to your config file
<em>without</em> a resource ID:</p>
<pre lang="jsonc"><code>{
"kv_namespaces": [{ "binding": "MY_KV" }],
"d1_databases": [{ "binding": "MY_DB" }],
"r2_buckets": [{ "binding": "MY_R2" }],
}
</code></pre>
<p><code>wrangler dev</code> will automatically create these resources
for you locally, and when you next run <code>wrangler deploy</code>
Wrangler will call the Cloudflare API to create the requested resources
and link them to your Worker. They'll stay linked across deploys, and
you don't need to add the resource IDs to the config file for future
deploys to work. This is especially good for shared templates, which now
no longer need to include account-specific resource ID when adding a
binding.</p>
</li>
</ul>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/cloudflare/workers-sdk/pull/11037">#11037</a>
<a
href="https://github.com/cloudflare/workers-sdk/commit/4bd4c296d599246d04f3c86034c739411b224659"><code>4bd4c29</code></a>
Thanks <a
href="https://github.com/danielrs"><code>@danielrs</code></a>! - Better
Wrangler subdomain defaults warning.</p>
<p>Improves the warnings that we show users when either
<code>worker_dev</code> or <code>preview_urls</code> are missing.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/cloudflare/workers-sdk/pull/10927">#10927</a>
<a
href="https://github.com/cloudflare/workers-sdk/commit/31e133090af046982b3ee15dc61262055c66ab5e"><code>31e1330</code></a>
Thanks <a href="https://github.com/dom96"><code>@dom96</code></a>! -
Implements <code>python_modules.excludes</code> wrangler config
field</p>
<pre lang="toml"><code>[python_modules]
excludes = ["**/*.pyc", "**/__pycache__"]
</code></pre>
</li>
<li>
<p><a
href="https://redirect.github.com/cloudflare/workers-sdk/pull/10741">#10741</a>
<a
href="https://github.com/cloudflare/workers-sdk/commit/2f57345a7a57b6bba75c51e1a8f322894aa8a628"><code>2f57345</code></a>
Thanks <a
href="https://github.com/penalosa"><code>@penalosa</code></a>! - Remove
obsolete <code>--x-remote-bindings</code> flag</p>
</li>
<li>
<p>Updated dependencies [<a
href="https://github.com/cloudflare/workers-sdk/commit/ca6c01017ccc39671e8724a6b9a5aa37a5e07e57"><code>ca6c010</code></a>]:</p>
<ul>
<li>miniflare@4.20251011.1</li>
</ul>
</li>
</ul>
<h2>wrangler@4.44.0</h2>
<h3>Minor Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/cloudflare/workers-sdk/pull/10939">#10939</a>
<a
href="https://github.com/cloudflare/workers-sdk/commit/d4b4c90ec2e48bcc128f105337979c1d51af6642"><code>d4b4c90</code></a>
Thanks <a
href="https://github.com/danielrs"><code>@danielrs</code></a>! - Config
<code>preview_urls</code> defaults to <code>workers_dev</code>
value.</p>
<p>Originally, we were defaulting config.preview_urls to
<code>true</code>, but we
were accidentally enabling Preview URLs for users that only had
config.workers_dev=false.</p>
<p>Then, we set the default value of config.preview_urls to
<code>false</code>, but we
were accidentally disabling Preview URLs for users that only had
config.workers_dev=true.</p>
<p>Rather than defaulting config.preview_urls to <code>true</code> or
<code>false</code>, we
default to the resolved value of config.workers_dev. Should result in
a</p>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</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.0</h2>
<h3>Minor Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/cloudflare/workers-sdk/pull/11030">#11030</a>
<a
href="https://github.com/cloudflare/workers-sdk/commit/1a8088ab32110f7d0503f5c379d4964200c0c140"><code>1a8088a</code></a>
Thanks <a
href="https://github.com/penalosa"><code>@penalosa</code></a>! - Enable
automatic resource provisioning by default in Wrangler. This is still an
experimental feature, but we're turning on the flag by default to make
it easier for people to test it and try it out. You can disable the
feature using the <code>--no-x-provision</code> flag. It currently works
for R2, D1, and KV bindings.</p>
<p>To use this feature, add a binding to your config file
<em>without</em> a resource ID:</p>
<pre lang="jsonc"><code>{
"kv_namespaces": [{ "binding": "MY_KV" }],
"d1_databases": [{ "binding": "MY_DB" }],
"r2_buckets": [{ "binding": "MY_R2" }],
}
</code></pre>
<p><code>wrangler dev</code> will automatically create these resources
for you locally, and when you next run <code>wrangler deploy</code>
Wrangler will call the Cloudflare API to create the requested resources
and link them to your Worker. They'll stay linked across deploys, and
you don't need to add the resource IDs to the config file for future
deploys to work. This is especially good for shared templates, which now
no longer need to include account-specific resource ID when adding a
binding.</p>
</li>
</ul>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/cloudflare/workers-sdk/pull/11037">#11037</a>
<a
href="https://github.com/cloudflare/workers-sdk/commit/4bd4c296d599246d04f3c86034c739411b224659"><code>4bd4c29</code></a>
Thanks <a
href="https://github.com/danielrs"><code>@danielrs</code></a>! - Better
Wrangler subdomain defaults warning.</p>
<p>Improves the warnings that we show users when either
<code>worker_dev</code> or <code>preview_urls</code> are missing.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/cloudflare/workers-sdk/pull/10927">#10927</a>
<a
href="https://github.com/cloudflare/workers-sdk/commit/31e133090af046982b3ee15dc61262055c66ab5e"><code>31e1330</code></a>
Thanks <a href="https://github.com/dom96"><code>@dom96</code></a>! -
Implements <code>python_modules.excludes</code> wrangler config
field</p>
<pre lang="toml"><code>[python_modules]
excludes = ["**/*.pyc", "**/__pycache__"]
</code></pre>
</li>
<li>
<p><a
href="https://redirect.github.com/cloudflare/workers-sdk/pull/10741">#10741</a>
<a
href="https://github.com/cloudflare/workers-sdk/commit/2f57345a7a57b6bba75c51e1a8f322894aa8a628"><code>2f57345</code></a>
Thanks <a
href="https://github.com/penalosa"><code>@penalosa</code></a>! - Remove
obsolete <code>--x-remote-bindings</code> flag</p>
</li>
<li>
<p>Updated dependencies [<a
href="https://github.com/cloudflare/workers-sdk/commit/ca6c01017ccc39671e8724a6b9a5aa37a5e07e57"><code>ca6c010</code></a>]:</p>
<ul>
<li>miniflare@4.20251011.1</li>
</ul>
</li>
</ul>
<h2>4.44.0</h2>
<h3>Minor Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/cloudflare/workers-sdk/pull/10939">#10939</a>
<a
href="https://github.com/cloudflare/workers-sdk/commit/d4b4c90ec2e48bcc128f105337979c1d51af6642"><code>d4b4c90</code></a>
Thanks <a
href="https://github.com/danielrs"><code>@danielrs</code></a>! - Config
<code>preview_urls</code> defaults to <code>workers_dev</code>
value.</p>
<p>Originally, we were defaulting config.preview_urls to
<code>true</code>, but we
were accidentally enabling Preview URLs for users that only had
config.workers_dev=false.</p>
<p>Then, we set the default value of config.preview_urls to
<code>false</code>, but we
were accidentally disabling Preview URLs for users that only had
config.workers_dev=true.</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/a5eb5134f73d3983655d325a4de71c6370c57faa"><code>a5eb513</code></a>
Version Packages (<a
href="https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler/issues/11054">#11054</a>)</li>
<li><a
href="https://github.com/cloudflare/workers-sdk/commit/2f57345a7a57b6bba75c51e1a8f322894aa8a628"><code>2f57345</code></a>
Remove remote bindings flag (<a
href="https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler/issues/10741">#10741</a>)</li>
<li><a
href="https://github.com/cloudflare/workers-sdk/commit/1a8088ab32110f7d0503f5c379d4964200c0c140"><code>1a8088a</code></a>
Enable provisioning by default (<a
href="https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler/issues/11030">#11030</a>)</li>
<li><a
href="https://github.com/cloudflare/workers-sdk/commit/4bd4c296d599246d04f3c86034c739411b224659"><code>4bd4c29</code></a>
wrangler: feat: better wrangler subdomain defaults warning (<a
href="https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler/issues/11037">#11037</a>)</li>
<li><a
href="https://github.com/cloudflare/workers-sdk/commit/31e133090af046982b3ee15dc61262055c66ab5e"><code>31e1330</code></a>
Configurable rules for exclusions in bundling of python_modules (<a
href="https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler/issues/10927">#10927</a>)</li>
<li><a
href="https://github.com/cloudflare/workers-sdk/commit/b57cd441c333b2020619b732332a3a42d188fdd9"><code>b57cd44</code></a>
rename !legacyEnv to useServiceEnvironments (<a
href="https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler/issues/10903">#10903</a>)</li>
<li><a
href="https://github.com/cloudflare/workers-sdk/commit/0bfbfa007bc48465b1a5bb68cae4f64495cf9d2f"><code>0bfbfa0</code></a>
Version Packages (<a
href="https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler/issues/10980">#10980</a>)</li>
<li><a
href="https://github.com/cloudflare/workers-sdk/commit/1a2bbf893833f68398becf12d3bdd62a2dca6ac9"><code>1a2bbf8</code></a>
Set default values when statically replacing
<code>process.env.NODE_ENV</code> (<a
href="https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler/issues/11027">#11027</a>)</li>
<li><a
href="https://github.com/cloudflare/workers-sdk/commit/daa352939109315c45b5862be99f19a45049f979"><code>daa3529</code></a>
Change AI model in tests (<a
href="https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler/issues/11035">#11035</a>)</li>
<li><a
href="https://github.com/cloudflare/workers-sdk/commit/cf16debb668a1ffb69cba9171048c5a295dde6c6"><code>cf16deb</code></a>
CC-6280: Correctly handle image names that contain a slash (<a
href="https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler/issues/11007">#11007</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/cloudflare/workers-sdk/commits/wrangler@4.45.0/packages/wrangler">compare
view</a></li>
</ul>
</details>
<br />
[](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 1b871f2 commit 05e0690
1 file changed
Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
0 commit comments