Skip to content

Commit

Permalink
Version Packages (#3996)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
workers-devprod and github-actions[bot] authored Sep 25, 2023
1 parent 9e46659 commit 63e937a
Show file tree
Hide file tree
Showing 9 changed files with 51 additions and 58 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/lazy-clocks-exist.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/nine-stingrays-hammer.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/orange-lizards-joke.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
43 changes: 43 additions & 0 deletions packages/wrangler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,48 @@
# 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;
}

* [#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

- [#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

* [#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

## 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 63e937a

Please sign in to comment.