Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump wrangler from 3.103.2 to 3.104.0 #122

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 22, 2025

Bumps wrangler from 3.103.2 to 3.104.0.

Changelog

Sourced from wrangler's changelog.

3.104.0

Minor Changes

  • #7715 26fa9e8 Thanks @​penalosa! - Support service bindings from Pages projects to Workers in a single workerd instance. To try it out, pass multiple -c flags to Wrangler: i.e. wrangler pages dev -c wrangler.toml -c ../other-worker/wrangler.toml. The first -c flag must point to your Pages config file, and the rest should point to Workers that are bound to your Pages project.

  • #7816 f6cc029 Thanks @​dario-piotrowicz! - add support for assets bindings to getPlatformProxy

    this change makes sure that that getPlatformProxy, when the input configuration file contains an assets field, correctly returns the appropriate asset binding proxy

    example:

    // wrangler.json
    {
      "name": "my-worker",
      "assets": {
        "directory": "./public/",
        "binding": "ASSETS"
      },
      "vars": {
        "MY_VAR": "my-var"
      }
    }
    import { getPlatformProxy } from "wrangler";
    const { env, dispose } = await getPlatformProxy();
    if (env.ASSETS) {
    const text = await (
    await env.ASSETS.fetch("http://0.0.0.0/file.txt")
    ).text();
    console.log(text); // logs the content of file.txt
    }
    await dispose();

Patch Changes

... (truncated)

Commits
  • 63a60bd Version Packages (#7825)
  • cccfe51 Fix Durable Objects transfer migration validation (#7785)
  • 97d2a1b Relax the messaging when Wrangler uses redirected configuration (#7832)
  • a783c2d Only retry API failures (#7831)
  • 26fa9e8 Support service bindings from Pages projects to workers in a single workerd...
  • 9077a67 fix(wrangler): improve multi account error message in non-interactive mode (#...
  • 0f88d85 types refactor (#7817)
  • f6cc029 add support for assets bindings to getPlatformProxy (#7816)
  • a225f8a tail refactor (#7818)
  • fcaa02c fix(wrangler): fix schema defaults (#7821)
  • Additional commits viewable in compare view

Dependabot compatibility score

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 commands and options

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)

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jan 22, 2025
Copy link

cloudflare-workers-and-pages bot commented Jan 22, 2025

Deploying noeco with  Cloudflare Pages  Cloudflare Pages

Latest commit: 24b106a
Status: ✅  Deploy successful!
Preview URL: https://ce6194e3.noeco.pages.dev
Branch Preview URL: https://dependabot-npm-and-yarn-wran-l1so.noeco.pages.dev

View logs

Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 23, 2025

Superseded by #123.

@dependabot dependabot bot closed this Jan 23, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/wrangler-3.104.0 branch January 23, 2025 01:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant