Skip to content

Commit 6657b80

Browse files
authored
Merge branch 'main' into next
2 parents 4bfaf5c + a3d9d64 commit 6657b80

File tree

35 files changed

+1244
-47
lines changed

35 files changed

+1244
-47
lines changed

.changeset/bitter-teeth-think.md

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

.changeset/fifty-bears-wink.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"miniflare": patch
3+
"wrangler": patch
4+
---
5+
6+
fix bindings to entrypoints on the same worker in workers with assets

.changeset/good-rooms-sneeze.md

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

.changeset/quick-singers-stand.md

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

.changeset/red-rockets-lie.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@cloudflare/vitest-pool-workers": patch
3+
---
4+
5+
improve error message with isolated storage

.changeset/seven-flies-repair.md

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

.changeset/silver-flowers-notice.md

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

.changeset/sixty-spoons-unite.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
"create-cloudflare": patch
3+
---
4+
5+
fix: stop c3 adding a duplicate `./wrangler.jsonc` when using --existing-script
6+
7+
This should mean dev and deploy on projects initialised using `create-cloudflare --existing-script` start working again. Note there will still be an extraneous `./src/wrangler.toml`, which will require a separate fix in the dashboard. This file can be manually deleted in the meantime.
Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
name: Release a hotfix
2+
on:
3+
workflow_dispatch:
4+
inputs:
5+
pr-number:
6+
description: "Which PR should be released?"
7+
required: true
8+
confirm:
9+
description: "Confirm that the PR is up to date with the last published release, with the specific additional changes that should be released as part of this hotfix and the relevant package patch versions bumped"
10+
type: boolean
11+
required: true
12+
label:
13+
description: "Which dist-tag should this release have?"
14+
type: string
15+
default: hotfix
16+
required: true
17+
jobs:
18+
hotfix-release:
19+
name: Hotfix Release
20+
if: ${{ inputs.confirm == true }}
21+
runs-on: ubuntu-latest
22+
steps:
23+
- name: Checkout Repo
24+
uses: actions/checkout@v4
25+
with:
26+
fetch-depth: 0
27+
28+
- name: Check user for team affiliation
29+
uses: tspascoal/get-user-teams-membership@v2
30+
id: teamAffiliation
31+
with:
32+
GITHUB_TOKEN: ${{ secrets.READ_ONLY_ORG_GITHUB_TOKEN }}
33+
username: ${{ github.actor }}
34+
team: wrangler
35+
36+
- name: Stop workflow if user is not a wrangler team member
37+
if: ${{ steps.teamAffiliation.outputs.isTeamMember == false }}
38+
run: |
39+
echo "You must be on the "wrangler" team to trigger this job."
40+
exit 1
41+
42+
- name: "Checkout PR"
43+
run: gh pr checkout ${{ inputs.pr-number }}
44+
env:
45+
GH_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }}
46+
47+
- name: Install Dependencies
48+
uses: ./.github/actions/install-dependencies
49+
with:
50+
turbo-api: ${{ secrets.TURBO_API }}
51+
turbo-team: ${{ secrets.TURBO_TEAM }}
52+
turbo-token: ${{ secrets.TURBO_TOKEN }}
53+
turbo-signature: ${{ secrets.TURBO_REMOTE_CACHE_SIGNATURE_KEY }}
54+
55+
- name: Build all packages
56+
run: pnpm run build
57+
env:
58+
CI_OS: ${{ runner.os }}
59+
60+
- name: Publish packages
61+
run: pnpm publish -r --tag ${{ inputs.label }} --filter wrangler --filter miniflare --filter create-cloudflare --dry-run

.github/workflows/run-ci-for-external-forks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- name: Stop workflow if user is not a team member
3535
if: ${{ steps.teamAffiliation.outputs.isTeamMember == false }}
3636
run: |
37-
echo "You have must be on the "wrangler" team to trigger this job."
37+
echo "You must be on the "wrangler" team to trigger this job."
3838
exit 1
3939
4040
- name: "Checkout PR"

0 commit comments

Comments
 (0)