Skip to content

Commit 825a021

Browse files
workers-devprodgithub-actions[bot]penalosa
authored
Version Packages (#8097)
* Version Packages * Use fake Wrangler version in tests * Fix Wrangler + C3 integration E2E test --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Samuel Macleod <[email protected]>
1 parent a025ad2 commit 825a021

File tree

13 files changed

+111
-98
lines changed

13 files changed

+111
-98
lines changed

.changeset/cuddly-jeans-check.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/fifty-hairs-drum.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/gold-frogs-rest.md

Lines changed: 0 additions & 29 deletions
This file was deleted.

.changeset/proud-days-study.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/vitest-pool-workers/CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,39 @@
11
# @cloudflare/vitest-pool-workers
22

3+
## 0.6.14
4+
5+
### Patch Changes
6+
7+
- [#7810](https://github.com/cloudflare/workers-sdk/pull/7810) [`ac4f30b`](https://github.com/cloudflare/workers-sdk/commit/ac4f30b0532f2559ecf1739ba12aa5155cd0a62e) Thanks [@edmundhung](https://github.com/edmundhung)! - Added [Vite dependency pre-bundling](https://vite.dev/guide/dep-pre-bundling) support. If you encounter module resolution issues—such as: `Error: Cannot use require() to import an ES Module` or `Error: No such module`—you can now bundle these dependencies using the [deps.optimizer](https://vitest.dev/config/#deps-optimizer) option:
8+
9+
```tsx
10+
import { defineWorkersConfig } from "@cloudflare/vitest-pool-workers/config";
11+
12+
export default defineWorkersConfig({
13+
test: {
14+
deps: {
15+
optimizer: {
16+
ssr: {
17+
enabled: true,
18+
include: ["your-package-name"],
19+
},
20+
},
21+
},
22+
poolOptions: {
23+
workers: {
24+
// ...
25+
},
26+
},
27+
},
28+
});
29+
```
30+
31+
Fixed #6591, #6581, #6405.
32+
33+
- Updated dependencies [[`a025ad2`](https://github.com/cloudflare/workers-sdk/commit/a025ad2ecb086cb4bcee6b9dfd8cf06eb2102ade)]:
34+
35+
36+
337
## 0.6.13
438

539
### Patch Changes

packages/vitest-pool-workers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cloudflare/vitest-pool-workers",
3-
"version": "0.6.13",
3+
"version": "0.6.14",
44
"description": "Workers Vitest integration for writing Vitest unit and integration tests that run inside the Workers runtime",
55
"keywords": [
66
"cloudflare",

packages/workers-shared/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @cloudflare/workers-shared
22

3+
## 0.14.0
4+
5+
### Minor Changes
6+
7+
- [#8094](https://github.com/cloudflare/workers-sdk/pull/8094) [`d83dd19`](https://github.com/cloudflare/workers-sdk/commit/d83dd1912baf680df45cea4bbdeae77d2d7013aa) Thanks [@WillTaylorDev](https://github.com/WillTaylorDev)! - Provides sentry sourcemap generation and upload on production deploys.
8+
9+
- [#8084](https://github.com/cloudflare/workers-sdk/pull/8084) [`2547c0f`](https://github.com/cloudflare/workers-sdk/commit/2547c0fcca80ac3fde9fed292c3c477218fbd096) Thanks [@GregBrimble](https://github.com/GregBrimble)! - Rollout interpolation search method for asset manifests (1 / 20,000 requests)
10+
311
## 0.13.2
412

513
### Patch Changes

packages/workers-shared/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cloudflare/workers-shared",
3-
"version": "0.13.2",
3+
"version": "0.14.0",
44
"description": "Package that is used at Cloudflare to power some internal features of Cloudflare Workers.",
55
"keywords": [
66
"cloudflare",

packages/wrangler/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# wrangler
22

3+
## 3.108.1
4+
5+
### Patch Changes
6+
7+
- [#8103](https://github.com/cloudflare/workers-sdk/pull/8103) [`a025ad2`](https://github.com/cloudflare/workers-sdk/commit/a025ad2ecb086cb4bcee6b9dfd8cf06eb2102ade) Thanks [@emily-shen](https://github.com/emily-shen)! - fix: fix bug where `wrangler secret list --format=json` was printing the wrangler banner.
8+
9+
- Updated dependencies []:
10+
11+
312
## 3.108.0
413

514
### Minor Changes

packages/wrangler/e2e/c3-integration.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ describe.runIf(process.platform !== "win32")("c3 integration", () => {
4141

4242
expect(
4343
readFileSync(
44-
path.join(helper.tmpPath, workerName, "wrangler.json"),
44+
path.join(helper.tmpPath, workerName, "wrangler.jsonc"),
4545
"utf8"
4646
)
4747
).not.toContain("<TBD>");

0 commit comments

Comments
 (0)