forked from cloudflare/workers-sdk
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'cloudflare:main' into main
- Loading branch information
Showing
415 changed files
with
50,830 additions
and
89,024 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"wrangler": minor | ||
--- | ||
|
||
Added --local option for r2 commands to interact with local persisted r2 objects |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
"wrangler": minor | ||
--- | ||
|
||
secret:bulk exit 1 on failure | ||
Previously `secret"bulk` would only log an error on failure of any of the upload requests. | ||
Now when 'secret:bulk' has an upload request fail it throws an Error which sends an `process.exit(1)` at the root `.catch()` signal. | ||
This will enable error handling in programmatic uses of `secret:bulk`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"wrangler": minor | ||
--- | ||
|
||
Added --local option for kv commands to interact with local persisted kv entries |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
"pages-d1-shim": patch | ||
"pages-workerjs-directory": patch | ||
"wrangler": minor | ||
--- | ||
|
||
Removing the D1 shim from the build process, in preparation for the Open Beta. D1 can now be used with --no-bundle enabled. |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,35 @@ | ||
const fs = require("fs"); | ||
const { exec } = require("child_process"); | ||
/** | ||
* Update the package.json version property for the given package | ||
* | ||
* Usage: | ||
* | ||
* ``` | ||
* node ./.github/version-script.js <package-name> | ||
* ``` | ||
* | ||
* `<package-name>` defaults to `wrangler` if not provided. | ||
*/ | ||
|
||
const { readFileSync, writeFileSync } = require("fs"); | ||
const { execSync } = require("child_process"); | ||
|
||
try { | ||
const package = JSON.parse( | ||
fs.readFileSync("./packages/wrangler/package.json") | ||
); | ||
exec("git rev-parse --short HEAD", (err, stdout) => { | ||
if (err) { | ||
console.log(err); | ||
process.exit(1); | ||
} | ||
package.version = "0.0.0-" + stdout.trim(); | ||
fs.writeFileSync( | ||
"./packages/wrangler/package.json", | ||
JSON.stringify(package, null, "\t") + "\n" | ||
); | ||
}); | ||
const packageName = getArgs()[0] ?? "wrangler"; | ||
const packageJsonPath = `./packages/${packageName}/package.json`; | ||
const package = JSON.parse(readFileSync(packageJsonPath)); | ||
const stdout = execSync("git rev-parse --short HEAD", { encoding: "utf8" }); | ||
package.version = "0.0.0-" + stdout.trim(); | ||
writeFileSync(packageJsonPath, JSON.stringify(package, null, "\t") + "\n"); | ||
} catch (error) { | ||
console.error(error); | ||
process.exit(1); | ||
} | ||
|
||
/** | ||
* Get the command line args, stripping `node` and script filename, etc. | ||
*/ | ||
function getArgs() { | ||
const args = Array.from(process.argv); | ||
while (args.shift() !== module.filename) {} | ||
return args; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
name: E2E tests | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- changeset-release/main | ||
pull_request: | ||
types: [synchronize, opened, reopened, labeled, unlabeled] | ||
repository_dispatch: | ||
|
||
jobs: | ||
e2e-test: | ||
if: github.repository_owner == 'cloudflare' && (github.event_name != 'pull_request' || (github.event_name == 'pull_request' && contains(github.event.*.labels.*.name, 'e2e' )) || (github.event_name == 'pull_request' && github.head_ref == 'changeset-release/main')) | ||
name: "E2E Test" | ||
strategy: | ||
matrix: | ||
os: [ | ||
# macos-11, | ||
# macos-12, | ||
macos-13, | ||
windows-2019, | ||
windows-2022, | ||
# ubuntu-20.04, | ||
ubuntu-22.04, | ||
] | ||
node: ["16", "18"] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- name: Checkout Repo | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: Use Node.js ${{ matrix.node }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node }} | ||
cache: "npm" | ||
|
||
- name: Install workerd Dependencies | ||
if: ${{ runner.os == 'Linux' }} | ||
run: | | ||
export DEBIAN_FRONTEND=noninteractive | ||
sudo apt-get update | ||
sudo apt-get install -y libc++1 | ||
# Attempt to cache all the node_modules directories based on the OS and package lock. | ||
- name: Cache node_modules | ||
id: npm-cache | ||
uses: actions/cache@v3 | ||
env: | ||
cache-name: cache-node-modules | ||
with: | ||
key: ${{ runner.os }}-${{ matrix.node }}-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} | ||
path: "**/node_modules" | ||
|
||
# If the cache missed then install using `npm ci` to follow package lock exactly | ||
- if: ${{ steps.npm-cache.outputs.cache-hit != 'true'}} | ||
name: Install NPM Dependencies | ||
run: npm ci | ||
|
||
- name: Run builds | ||
run: npm run build | ||
env: | ||
NODE_ENV: "production" | ||
|
||
- name: Build Wrangler package for npm | ||
run: cd packages/wrangler && npm pack | ||
env: | ||
NODE_ENV: "production" | ||
|
||
- name: Move Wrangler package to tmp directory | ||
shell: bash | ||
id: "move-wrangler" | ||
run: | | ||
cp packages/wrangler/wrangler-*.tgz $HOME | ||
echo "dir=$(ls $HOME/wrangler-*.tgz)" >> $GITHUB_OUTPUT; | ||
env: | ||
NODE_ENV: "production" | ||
|
||
- name: Run tests | ||
id: e2e-1 | ||
continue-on-error: true | ||
run: npm run -w wrangler test:e2e | ||
env: | ||
CLOUDFLARE_API_TOKEN: ${{ secrets.TEST_CLOUDFLARE_API_TOKEN }} | ||
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.TEST_CLOUDFLARE_ACCOUNT_ID }} | ||
WRANGLER: npm install ${{ steps.move-wrangler.outputs.dir}} && npx --prefer-offline wrangler | ||
NODE_OPTIONS: "--max_old_space_size=8192" | ||
|
||
- name: Retry tests | ||
if: steps.e2e-1.outcome == 'failure' | ||
run: npm run -w wrangler test:e2e | ||
env: | ||
CLOUDFLARE_API_TOKEN: ${{ secrets.TEST_CLOUDFLARE_API_TOKEN }} | ||
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.TEST_CLOUDFLARE_ACCOUNT_ID }} | ||
WRANGLER: npm install ${{ steps.move-wrangler.outputs.dir}} && npx --prefer-offline wrangler | ||
NODE_OPTIONS: "--max_old_space_size=8192" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: Prerelease create-cloudflare | ||
|
||
on: | ||
repository_dispatch: | ||
types: [pre-release-create-cloudflare] | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
prerelease: | ||
if: ${{ github.repository_owner == 'cloudflare' }} | ||
name: Build & Publish a beta release of create-cloudflare to NPM | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout Repo | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Use Node.js 16.13 | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16.13 | ||
cache: "npm" # cache ~/.npm in case 'npm ci' needs to run | ||
|
||
- name: Install workerd Dependencies | ||
if: ${{ runner.os == 'Linux' }} | ||
run: | | ||
export DEBIAN_FRONTEND=noninteractive | ||
sudo apt-get update | ||
sudo apt-get install -y libc++1 | ||
- name: Install NPM Dependencies | ||
run: npm ci | ||
|
||
- name: Modify package.json version | ||
run: node .github/version-script.js create-cloudflare | ||
|
||
- name: Build packages | ||
run: npm run build | ||
env: | ||
NODE_ENV: "production" | ||
|
||
- name: Publish Beta to NPM | ||
run: npm publish --tag beta | ||
env: | ||
NPM_PUBLISH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }} | ||
working-directory: packages/create-cloudflare |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.