Skip to content

Commit

Permalink
Version Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Sep 21, 2023
1 parent fd39ae6 commit c6d9308
Show file tree
Hide file tree
Showing 7 changed files with 47 additions and 48 deletions.
36 changes: 0 additions & 36 deletions .changeset/brave-stingrays-shout.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/c3-frameworks-update-4001.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/shiny-rats-hide.md

This file was deleted.

6 changes: 6 additions & 0 deletions packages/create-cloudflare/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# create-cloudflare

## 2.3.1

### Patch Changes

- [#4001](https://github.com/cloudflare/workers-sdk/pull/4001) [`fd39ae64`](https://github.com/cloudflare/workers-sdk/commit/fd39ae649dc0658de4cfd3eac6dcfc6b4ab6205a) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `nuxi` from `3.8.4` to `3.9.0`

## 2.3.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/create-cloudflare/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-cloudflare",
"version": "2.3.0",
"version": "2.3.1",
"description": "A CLI for creating and deploying new applications to Cloudflare.",
"keywords": [
"cloudflare",
Expand Down
39 changes: 39 additions & 0 deletions packages/wrangler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,44 @@
# wrangler

## 3.9.1

### Patch Changes

- [#3992](https://github.com/cloudflare/workers-sdk/pull/3992) [`35564741`](https://github.com/cloudflare/workers-sdk/commit/3556474116db2fc7dbfbb34bfc351490360f4d85) Thanks [@edevil](https://github.com/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;
}

* [#3733](https://github.com/cloudflare/workers-sdk/pull/3733) [`7ba16cde`](https://github.com/cloudflare/workers-sdk/commit/7ba16cde200042830153f2648c4a8670071f1127) Thanks [@jspspike](https://github.com/jspspike)! - Change local dev server default ip to `*` instead of `0.0.0.0`. This will cause the dev server to listen on both ipv4 and ipv6 interfaces

## 3.9.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/wrangler/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wrangler",
"version": "3.9.0",
"version": "3.9.1",
"description": "Command-line interface for all things Cloudflare Workers",
"keywords": [
"wrangler",
Expand Down

0 comments on commit c6d9308

Please sign in to comment.