From 60e375fc00bcefce6f4af630ed9ae7046b6ee179 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 24 Apr 2023 19:06:45 +0100 Subject: [PATCH] Version Packages (#192) Co-authored-by: github-actions[bot] --- .changeset/clever-queens-cough.md | 5 ----- .changeset/modern-candles-shave.md | 5 ----- .changeset/modern-crews-tease.md | 12 ------------ .changeset/short-goats-grab.md | 8 -------- .changeset/tame-humans-tease.md | 5 ----- CHANGELOG.md | 24 ++++++++++++++++++++++++ package.json | 2 +- 7 files changed, 25 insertions(+), 36 deletions(-) delete mode 100644 .changeset/clever-queens-cough.md delete mode 100644 .changeset/modern-candles-shave.md delete mode 100644 .changeset/modern-crews-tease.md delete mode 100644 .changeset/short-goats-grab.md delete mode 100644 .changeset/tame-humans-tease.md diff --git a/.changeset/clever-queens-cough.md b/.changeset/clever-queens-cough.md deleted file mode 100644 index 8314dc7dc..000000000 --- a/.changeset/clever-queens-cough.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@cloudflare/next-on-pages': patch ---- - -fix: properly align invalid functions in error message diff --git a/.changeset/modern-candles-shave.md b/.changeset/modern-candles-shave.md deleted file mode 100644 index 095778283..000000000 --- a/.changeset/modern-candles-shave.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@cloudflare/next-on-pages': patch ---- - -Ignore '.wrangler' directory in watch mode diff --git a/.changeset/modern-crews-tease.md b/.changeset/modern-crews-tease.md deleted file mode 100644 index c430d1a30..000000000 --- a/.changeset/modern-crews-tease.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -'@cloudflare/next-on-pages': patch ---- - -move the invalidFunctions check before the no-functions one - -currently if a build contains only invalid functions we'd be presenting a log -saying that no function was found and simply return the static assets as if -everything is correct, this is because we check for invalid functions only -after checking if there are any (valid) ones, this change moves the invalid -functions check so that is performed first, making sure that the described case -successfully errors diff --git a/.changeset/short-goats-grab.md b/.changeset/short-goats-grab.md deleted file mode 100644 index 9d4b63c4c..000000000 --- a/.changeset/short-goats-grab.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -'@cloudflare/next-on-pages': patch ---- - -improve AST checking - -improve the way we check for webpack chunks (for the experimental minification) by -improving the AST types used and also make the AST checking more robust diff --git a/.changeset/tame-humans-tease.md b/.changeset/tame-humans-tease.md deleted file mode 100644 index ae19b31fb..000000000 --- a/.changeset/tame-humans-tease.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@cloudflare/next-on-pages': minor ---- - -add --info, -i CLI flag to print relevant details about the system and environment diff --git a/CHANGELOG.md b/CHANGELOG.md index 136b1a01c..7891c7743 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,29 @@ # @cloudflare/next-on-pages +## 0.10.0 + +### Minor Changes + +- 2a159ed: add --info, -i CLI flag to print relevant details about the system and environment + +### Patch Changes + +- dc74ffe: fix: properly align invalid functions in error message +- e3b92c3: Ignore '.wrangler' directory in watch mode +- cf43f44: move the invalidFunctions check before the no-functions one + + currently if a build contains only invalid functions we'd be presenting a log + saying that no function was found and simply return the static assets as if + everything is correct, this is because we check for invalid functions only + after checking if there are any (valid) ones, this change moves the invalid + functions check so that is performed first, making sure that the described case + successfully errors + +- 758f588: improve AST checking + + improve the way we check for webpack chunks (for the experimental minification) by + improving the AST types used and also make the AST checking more robust + ## 0.9.0 ### Minor Changes diff --git a/package.json b/package.json index c8dde1624..784ca2d24 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@cloudflare/next-on-pages", - "version": "0.9.0", + "version": "0.10.0", "bin": "./bin/index.js", "scripts": { "prettier": "npx prettier --ignore-unknown --ignore-path=.gitignore .",