Skip to content

Commit 63e937a

Browse files
Version Packages (#3996)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 9e46659 commit 63e937a

9 files changed

+51
-58
lines changed

.changeset/brave-stingrays-shout.md

-36
This file was deleted.

.changeset/c3-frameworks-update-4001.md

-5
This file was deleted.

.changeset/lazy-clocks-exist.md

-5
This file was deleted.

.changeset/nine-stingrays-hammer.md

-5
This file was deleted.

.changeset/orange-lizards-joke.md

-5
This file was deleted.

packages/create-cloudflare/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# create-cloudflare
22

3+
## 2.3.1
4+
5+
### Patch Changes
6+
7+
- [#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`
8+
39
## 2.3.0
410

511
### Minor Changes

packages/create-cloudflare/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-cloudflare",
3-
"version": "2.3.0",
3+
"version": "2.3.1",
44
"description": "A CLI for creating and deploying new applications to Cloudflare.",
55
"keywords": [
66
"cloudflare",

packages/wrangler/CHANGELOG.md

+43
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,48 @@
11
# wrangler
22

3+
## 3.9.1
4+
5+
### Patch Changes
6+
7+
- [#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.
8+
9+
Example `wrangler.toml`
10+
11+
name = "ai-worker"
12+
main = "src/index.ts"
13+
14+
[ai]
15+
binding = "AI"
16+
17+
Example script:
18+
19+
import Ai from "@cloudflare/ai"
20+
21+
export default {
22+
async fetch(request: Request, env: Env): Promise<Response> {
23+
const ai = new Ai(env.AI);
24+
25+
const story = await ai.run({
26+
model: 'llama-2',
27+
input: {
28+
prompt: 'Tell me a story about the future of the Cloudflare dev platform'
29+
}
30+
});
31+
32+
return new Response(JSON.stringify(story));
33+
},
34+
};
35+
36+
export interface Env {
37+
AI: any;
38+
}
39+
40+
* [#4006](https://github.com/cloudflare/workers-sdk/pull/4006) [`bc8c147a`](https://github.com/cloudflare/workers-sdk/commit/bc8c147a9118748bb3b5eb220af5699f8b2f7899) Thanks [@rozenmd](https://github.com/rozenmd)! - fix: remove warning around using D1's binding, and clean up the epilogue when running D1 commands
41+
42+
- [#4027](https://github.com/cloudflare/workers-sdk/pull/4027) [`9e466599`](https://github.com/cloudflare/workers-sdk/commit/9e466599210902515ece6f5ea07fbabcd8fdac6a) Thanks [@jspspike](https://github.com/jspspike)! - Add WebGPU support through miniflare update
43+
44+
* [#3986](https://github.com/cloudflare/workers-sdk/pull/3986) [`00247a8d`](https://github.com/cloudflare/workers-sdk/commit/00247a8d69613a4cfeb621b5cca075828e5ae1e1) Thanks [@edevil](https://github.com/edevil)! - Added AI related CLI commands
45+
346
## 3.9.0
447

548
### Minor Changes

packages/wrangler/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wrangler",
3-
"version": "3.9.0",
3+
"version": "3.9.1",
44
"description": "Command-line interface for all things Cloudflare Workers",
55
"keywords": [
66
"wrangler",

0 commit comments

Comments
 (0)