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 Nov 2, 2023
1 parent 29a59d4 commit 391791b
Show file tree
Hide file tree
Showing 21 changed files with 77 additions and 90 deletions.
5 changes: 0 additions & 5 deletions .changeset/c3-frameworks-update-4242.md

This file was deleted.

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

This file was deleted.

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

This file was deleted.

11 changes: 0 additions & 11 deletions .changeset/funny-rice-prove.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/gentle-news-laugh.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/hot-kiwis-raise.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/olive-queens-retire.md

This file was deleted.

13 changes: 0 additions & 13 deletions .changeset/rude-chicken-raise.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/spotty-bees-arrive.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/swift-files-care.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/thin-pears-repeat.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/three-carpets-smile.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/wise-pears-fry.md

This file was deleted.

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

## 2.7.0

### Minor Changes

- [#4280](https://github.com/cloudflare/workers-sdk/pull/4280) [`a6cd9aff`](https://github.com/cloudflare/workers-sdk/commit/a6cd9aff92c636bdaa57f912868f328735e5686a) Thanks [@alan-agius4](https://github.com/alan-agius4)! - Update Angular template to use version 17

### Patch Changes

- [#4242](https://github.com/cloudflare/workers-sdk/pull/4242) [`a1c9f43f`](https://github.com/cloudflare/workers-sdk/commit/a1c9f43f3e1f8ff1b781b9f524ebac82afce7563) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `nuxi` from `3.9.0` to `3.9.1`

* [#4275](https://github.com/cloudflare/workers-sdk/pull/4275) [`e4aff81a`](https://github.com/cloudflare/workers-sdk/commit/e4aff81a1289ba52ee4fc40f5ee2ee34a9da690a) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-astro` from `4.3.0` to `4.4.1`

- [#4288](https://github.com/cloudflare/workers-sdk/pull/4288) [`b7d91bb5`](https://github.com/cloudflare/workers-sdk/commit/b7d91bb58cb977b7e4f7667c086bed4c20afca94) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-qwik` from `1.2.14` to `1.2.15`

* [#4226](https://github.com/cloudflare/workers-sdk/pull/4226) [`5810f815`](https://github.com/cloudflare/workers-sdk/commit/5810f8150eb775663177a43266233abac19e9781) Thanks [@jculvey](https://github.com/jculvey)! - Relax empty directory check. Directories containing certain common config files and/or files created by an ide will be exempt from the pre-flight check

- [#4249](https://github.com/cloudflare/workers-sdk/pull/4249) [`b18a2c0f`](https://github.com/cloudflare/workers-sdk/commit/b18a2c0f3b88b5ce986f8c134cfe6df4603b343d) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - correct error message for unrecognized application type

* [#4249](https://github.com/cloudflare/workers-sdk/pull/4249) [`b18a2c0f`](https://github.com/cloudflare/workers-sdk/commit/b18a2c0f3b88b5ce986f8c134cfe6df4603b343d) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - improve help message by adding more detailed descriptions about the various CLI options
also let the user know that more information is available in the Cloudflare docs

- [#4279](https://github.com/cloudflare/workers-sdk/pull/4279) [`2526794f`](https://github.com/cloudflare/workers-sdk/commit/2526794f214e730f7f88a8146ef24f50c2caf8f6) Thanks [@dnasdw](https://github.com/dnasdw)! - fix: use a valid compatibility date for the scheduled worker ts template

## 2.6.2

### Patch 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.6.2",
"version": "2.7.0",
"description": "A CLI for creating and deploying new applications to Cloudflare.",
"keywords": [
"cloudflare",
Expand Down
14 changes: 14 additions & 0 deletions packages/miniflare/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# miniflare

## 3.20231025.2

### Patch Changes

- [#4321](https://github.com/cloudflare/workers-sdk/pull/4321) [`29a59d4e`](https://github.com/cloudflare/workers-sdk/commit/29a59d4e72e3ae849474325c5c93252a3f84af0d) Thanks [@mrbbot](https://github.com/mrbbot)! - fix: ensure `Mutex` doesn't report itself as drained if locked

Previously, Miniflare's `Mutex` implementation would report itself as drained
if there were no waiters, regardless of the locked state. This bug meant that
if you called but didn't `await` `Miniflare#setOptions()`, future calls to
`Miniflare#dispatchFetch()` (or any other asynchronous `Miniflare` method)
wouldn't wait for the options update to apply and the runtime to restart before
sending requests. This change ensures we wait until the mutex is unlocked before
reporting it as drained.

## Previous Releases

For previous Miniflare 3 releases, refer to this GitHub releases page: https://github.com/cloudflare/miniflare/releases.
Expand Down
2 changes: 1 addition & 1 deletion packages/miniflare/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "miniflare",
"version": "3.20231025.1",
"version": "3.20231025.2",
"description": "Fun, full-featured, fully-local simulator for Cloudflare Workers",
"keywords": [
"cloudflare",
Expand Down
7 changes: 7 additions & 0 deletions packages/pages-shared/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @cloudflare/pages-shared

## 0.10.2

### Patch Changes

- Updated dependencies [[`29a59d4e`](https://github.com/cloudflare/workers-sdk/commit/29a59d4e72e3ae849474325c5c93252a3f84af0d)]:
- [email protected]

## 0.10.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/pages-shared/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cloudflare/pages-shared",
"version": "0.10.1",
"version": "0.10.2",
"repository": {
"type": "git",
"url": "https://github.com/cloudflare/workers-sdk.git",
Expand Down
35 changes: 29 additions & 6 deletions packages/wrangler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# wrangler

## 3.16.0

### Minor Changes

- [#4179](https://github.com/cloudflare/workers-sdk/pull/4179) [`dd270d00`](https://github.com/cloudflare/workers-sdk/commit/dd270d0065159150ff318f2f06607ddecba6ee9b) Thanks [@matthewdavidrodgers](https://github.com/matthewdavidrodgers)! - Simplify secret:bulk api via script settings

Firing PUTs to the secret api in parallel has never been a great solution - each request independently needs to lock the script, so running in parallel is at best just as bad as running serially.

Luckily, we have the script settings PATCH api now, which can update the settings for a script (including secret bindings) at once, which means we don't need any parallelization. However this api doesn't work with a partial list of bindings, so we have to fetch the current bindings and merge in with the new secrets before PATCHing. We can however just omit the value of the binding (i.e. only provide the name and type) which instructs the config service to inherit the existing value, which simplifies this as well. Note that we don't use the bindings in your current wrangler.toml, as you could be in a draft state, and it makes sense as a user that a bulk secrets update won't update anything else. Instead, we use script settings api again to fetch the current state of your bindings.

This simplified implementation means the operation can only fail or succeed, rather than succeeding in updating some secrets but failing for others. In order to not introduce breaking changes for logging output, the language around "${x} secrets were updated" or "${x} secrets failed" is kept, even if it doesn't make much sense anymore.

### Patch Changes

- [#4149](https://github.com/cloudflare/workers-sdk/pull/4149) [`7e05f38e`](https://github.com/cloudflare/workers-sdk/commit/7e05f38e04e40125c9c5352b7ff1c95616c1baf0) Thanks [@jspspike](https://github.com/jspspike)! - Fixed issue with `tail` not using proxy

* [#3845](https://github.com/cloudflare/workers-sdk/pull/3845) [`4b073850`](https://github.com/cloudflare/workers-sdk/commit/4b073850a052c1354bfe14293394c2d190645ee5) Thanks [@ndisidore](https://github.com/ndisidore)! - [Workers] Allow namespace to be specified for a tail script

- [#4219](https://github.com/cloudflare/workers-sdk/pull/4219) [`0453b447`](https://github.com/cloudflare/workers-sdk/commit/0453b447251cc670310be6a2067c84074f6a515b) Thanks [@maxwellpeterson](https://github.com/maxwellpeterson)! - Allows uploads with both cron triggers and smart placement enabled

- Updated dependencies [[`29a59d4e`](https://github.com/cloudflare/workers-sdk/commit/29a59d4e72e3ae849474325c5c93252a3f84af0d)]:
- [email protected]

## 3.15.0

### Minor Changes
Expand Down Expand Up @@ -958,7 +981,7 @@
const url = new URL(req.url);
const name = url.searchParams.get("name");
return new Response("Hello, " + name);
}
},
};
```

Expand Down Expand Up @@ -1636,7 +1659,7 @@ rozenmd@cflaptop test1 % npx wrangler d1 execute test --command="select * from c

```js
worker = await unstable_dev("src/index.js", {
experimental: { disableExperimentalWarning: true }
experimental: { disableExperimentalWarning: true },
});
```

Expand Down Expand Up @@ -2144,7 +2167,7 @@ rozenmd@cflaptop test1 % npx wrangler d1 execute test --command="select * from c

```js
await unstable_dev("src/index.ts", {
local: false
local: false,
});
```

Expand Down Expand Up @@ -2787,7 +2810,7 @@ rozenmd@cflaptop test1 % npx wrangler d1 execute test --command="select * from c
export default {
fetch(req, env) {
return env.Bee.fetch(req);
}
},
};
```

Expand All @@ -2803,7 +2826,7 @@ rozenmd@cflaptop test1 % npx wrangler d1 execute test --command="select * from c
export default {
fetch(req, env) {
return new Response("Hello World");
}
},
};
```

Expand Down Expand Up @@ -3784,7 +3807,7 @@ And in your worker, you can call it like so:
export default {
fetch(req, env, ctx) {
return env.MYWORKER.fetch(new Request("http://domain/some-path"));
}
},
};
```
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.15.0",
"version": "3.16.0",
"description": "Command-line interface for all things Cloudflare Workers",
"keywords": [
"wrangler",
Expand Down

0 comments on commit 391791b

Please sign in to comment.