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

Update dependency wrangler to v3.9.1 #93

Merged
merged 1 commit into from
Sep 25, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 20, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
wrangler 3.9.0 -> 3.9.1 age adoption passing confidence

Release Notes

cloudflare/workers-sdk (wrangler)

v3.9.1

Compare Source

Patch Changes
  • #​3992 35564741 Thanks @​edevil! - Add AI binding that will be used to interact with the AI project.

    Example wrangler.toml

    name = "ai-worker"
    main = "src/index.ts"
    
    [ai]
    binding = "AI"
    

    Example script:

    import Ai from "@​cloudflare/ai"
    
    export default {
        async fetch(request: Request, env: Env): Promise<Response> {
            const ai = new Ai(env.AI);
    
            const story = await ai.run({
                model: 'llama-2',
                input: {
                    prompt: 'Tell me a story about the future of the Cloudflare dev platform'
                }
            });
    
        return new Response(JSON.stringify(story));
        },
    };
    
    export interface Env {
        AI: any;
    }
    
  • #​4006 bc8c147a Thanks @​rozenmd! - fix: remove warning around using D1's binding, and clean up the epilogue when running D1 commands

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot added the dependencies Relates to project dependencies label Sep 20, 2023
@renovate renovate bot changed the title Update dependency wrangler to v3.9.0 Update dependency wrangler to v3.9.0 - autoclosed Sep 20, 2023
@renovate renovate bot closed this Sep 20, 2023
@renovate renovate bot deleted the renovate/wrangler-3.x-lockfile branch September 20, 2023 18:58
@renovate renovate bot changed the title Update dependency wrangler to v3.9.0 - autoclosed Update dependency wrangler to v3.9.0 Sep 25, 2023
@renovate renovate bot reopened this Sep 25, 2023
@renovate renovate bot restored the renovate/wrangler-3.x-lockfile branch September 25, 2023 20:00
@renovate renovate bot changed the title Update dependency wrangler to v3.9.0 Update dependency wrangler to v3.9.1 Sep 25, 2023
@renovate renovate bot force-pushed the renovate/wrangler-3.x-lockfile branch from 2d4c6e9 to ad6edbe Compare September 25, 2023 20:00
@LeoColomb LeoColomb merged commit 3051474 into main Sep 25, 2023
2 checks passed
@LeoColomb LeoColomb deleted the renovate/wrangler-3.x-lockfile branch September 25, 2023 21:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Relates to project dependencies
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant