Skip to content

Commit

Permalink
Version Packages (#6727)
Browse files Browse the repository at this point in the history
* Version Packages

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Samuel Macleod <[email protected]>
  • Loading branch information
3 people authored Sep 16, 2024
1 parent 5b5dd95 commit 0d26420
Show file tree
Hide file tree
Showing 22 changed files with 53 additions and 44 deletions.
5 changes: 0 additions & 5 deletions .changeset/big-dogs-whistle.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/gorgeous-eagles-matter.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/nervous-days-greet.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/perfect-pens-work.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/pink-meals-walk.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.27.1

### Patch Changes

- [#6626](https://github.com/cloudflare/workers-sdk/pull/6626) [`3628814`](https://github.com/cloudflare/workers-sdk/commit/3628814d001a349a6576a02bee4a65f043f156f4) Thanks [@elithrar](https://github.com/elithrar)! - fix: Changes the default for "Do you want to deploy your application" in create cloudflare (C3) to a resounding "No".

## 2.27.0

### Minor Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/create-cloudflare/e2e-tests/cli.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ describe.skipIf(frameworkToTest || isQuarantineMode())(
const { output } = await runC3(
[
projectPath,
"--template=https://github.com/cloudflare/workers-sdk/tree/main/templates/worker-router",
"--template=https://github.com/cloudflare/templates/worker-router",
"--no-deploy",
"--git=false",
],
Expand All @@ -197,10 +197,10 @@ describe.skipIf(frameworkToTest || isQuarantineMode())(
);

expect(output).toContain(
`repository https://github.com/cloudflare/workers-sdk/tree/main/templates/worker-router`,
`repository https://github.com/cloudflare/templates/worker-router`,
);
expect(output).toContain(
`Cloning template from: github:cloudflare/workers-sdk/templates/worker-router`,
`Cloning template from: https://github.com/cloudflare/templates/worker-router`,
);
expect(output).toContain(`template cloned and validated`);
},
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.27.0",
"version": "2.27.1",
"description": "A CLI for creating and deploying new applications to Cloudflare.",
"keywords": [
"cloudflare",
Expand Down
2 changes: 1 addition & 1 deletion packages/create-cloudflare/src/__tests__/deploy.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ describe("deploy helpers", async () => {

await expect(offerToDeploy(ctx)).resolves.toBe(true);
expect(processArgument).toHaveBeenCalledOnce();
expect(ctx.args.deploy).toBe(true);
expect(ctx.args.deploy).toBe(false);
expect(wranglerLogin).toHaveBeenCalled();
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.5.2",
"wrangler": "^3.60.3",
"vitest": "2.1.1"
"vitest": "2.0.5"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.5.2",
"typescript": "^5.5.2",
"vitest": "2.1.1",
"vitest": "2.0.5",
"wrangler": "^3.60.3"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.5.2",
"wrangler": "^3.60.3",
"vitest": "2.1.1"
"vitest": "2.0.5"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.5.2",
"typescript": "^5.5.2",
"vitest": "2.1.1",
"vitest": "2.0.5",
"wrangler": "^3.60.3"
}
}
6 changes: 6 additions & 0 deletions packages/miniflare/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# miniflare

## 3.20240909.2

### Patch Changes

- [#6719](https://github.com/cloudflare/workers-sdk/pull/6719) [`5b5dd95`](https://github.com/cloudflare/workers-sdk/commit/5b5dd9573b2c43023cbcba0fbcc3e374465e745e) Thanks [@sdnts](https://github.com/sdnts)! - fix: Respect delivery delays for Queue consumers in local dev mode

## 3.20240909.1

### Minor Changes
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.20240909.1",
"version": "3.20240909.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.11.58

### Patch Changes

- Updated dependencies [[`5b5dd95`](https://github.com/cloudflare/workers-sdk/commit/5b5dd9573b2c43023cbcba0fbcc3e374465e745e)]:
- [email protected]

## 0.11.57

### 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.11.57",
"version": "0.11.58",
"repository": {
"type": "git",
"url": "https://github.com/cloudflare/workers-sdk.git",
Expand Down
10 changes: 10 additions & 0 deletions packages/vitest-pool-workers/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @cloudflare/vitest-pool-workers

## 0.5.3

### Patch Changes

- [#6716](https://github.com/cloudflare/workers-sdk/pull/6716) [`321a9e1`](https://github.com/cloudflare/workers-sdk/commit/321a9e1c82b0d937d9acbdb438bf6678755a6e40) Thanks [@Cherry](https://github.com/Cherry)! - chore: add support for Vitest 2.1.x

- Updated dependencies [[`2c8506f`](https://github.com/cloudflare/workers-sdk/commit/2c8506f874171f4ccdf99357855389841578d348), [`c135de4`](https://github.com/cloudflare/workers-sdk/commit/c135de4707234e11f7f6438bea6a7067e8f284f9), [`5b5dd95`](https://github.com/cloudflare/workers-sdk/commit/5b5dd9573b2c43023cbcba0fbcc3e374465e745e)]:
- [email protected]
- [email protected]

## 0.5.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/vitest-pool-workers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cloudflare/vitest-pool-workers",
"version": "0.5.2",
"version": "0.5.3",
"description": "Workers Vitest integration for writing Vitest unit and integration tests that run inside the Workers runtime",
"keywords": [
"cloudflare",
Expand Down
11 changes: 11 additions & 0 deletions packages/wrangler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# wrangler

## 3.78.3

### Patch Changes

- [#6686](https://github.com/cloudflare/workers-sdk/pull/6686) [`2c8506f`](https://github.com/cloudflare/workers-sdk/commit/2c8506f874171f4ccdf99357855389841578d348) Thanks [@DaniFoldi](https://github.com/DaniFoldi)! - fix: Bump path-to-regexp dependency version

- [#6329](https://github.com/cloudflare/workers-sdk/pull/6329) [`c135de4`](https://github.com/cloudflare/workers-sdk/commit/c135de4707234e11f7f6438bea6a7067e8f284f9) Thanks [@penalosa](https://github.com/penalosa)! - chore: Cache generated runtime types

- Updated dependencies [[`5b5dd95`](https://github.com/cloudflare/workers-sdk/commit/5b5dd9573b2c43023cbcba0fbcc3e374465e745e)]:
- [email protected]

## 3.78.2

### Patch 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.78.2",
"version": "3.78.3",
"description": "Command-line interface for all things Cloudflare Workers",
"keywords": [
"wrangler",
Expand Down
6 changes: 0 additions & 6 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 0d26420

Please sign in to comment.