From 84269241b8e7a52912b6457a916230a1b2f47579 Mon Sep 17 00:00:00 2001 From: Tom Lienard Date: Tue, 23 May 2023 08:53:45 +0200 Subject: [PATCH] ci: release (#869) Co-authored-by: github-actions[bot] --- .changeset/afraid-boats-lie.md | 7 ------- .changeset/lazy-bears-tap.md | 5 ----- .changeset/nasty-ads-buy.md | 8 -------- .changeset/nervous-books-fetch.md | 5 ----- .changeset/pink-carpets-hope.md | 7 ------- .changeset/seven-doors-help.md | 5 ----- .changeset/silly-wombats-cheer.md | 8 -------- crates/cli/CHANGELOG.md | 10 ++++++++++ crates/cli/package.json | 2 +- crates/runtime/CHANGELOG.md | 10 ++++++++++ crates/runtime/package.json | 2 +- crates/runtime_utils/CHANGELOG.md | 7 +++++++ crates/runtime_utils/package.json | 2 +- crates/serverless/CHANGELOG.md | 10 ++++++++++ crates/serverless/package.json | 2 +- crates/wpt-runner/CHANGELOG.md | 6 ++++++ crates/wpt-runner/package.json | 2 +- examples/upstash-ratelimit/CHANGELOG.md | 7 +++++++ examples/upstash-ratelimit/package.json | 2 +- examples/upstash/CHANGELOG.md | 7 +++++++ examples/upstash/package.json | 2 +- packages/dashboard/CHANGELOG.md | 8 ++++++++ packages/dashboard/package.json | 2 +- packages/docs/CHANGELOG.md | 6 ++++++ packages/docs/package.json | 2 +- packages/js-runtime/CHANGELOG.md | 6 ++++++ packages/js-runtime/package.json | 2 +- 27 files changed, 87 insertions(+), 55 deletions(-) delete mode 100644 .changeset/afraid-boats-lie.md delete mode 100644 .changeset/lazy-bears-tap.md delete mode 100644 .changeset/nasty-ads-buy.md delete mode 100644 .changeset/nervous-books-fetch.md delete mode 100644 .changeset/pink-carpets-hope.md delete mode 100644 .changeset/seven-doors-help.md delete mode 100644 .changeset/silly-wombats-cheer.md create mode 100644 crates/runtime_utils/CHANGELOG.md create mode 100644 examples/upstash-ratelimit/CHANGELOG.md create mode 100644 examples/upstash/CHANGELOG.md diff --git a/.changeset/afraid-boats-lie.md b/.changeset/afraid-boats-lie.md deleted file mode 100644 index e6fe4119c..000000000 --- a/.changeset/afraid-boats-lie.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@lagon/example-upstash': patch -'@lagon/example-upstash-ratelimit': patch -'@lagon/docs': patch ---- - -Add Upstash examples diff --git a/.changeset/lazy-bears-tap.md b/.changeset/lazy-bears-tap.md deleted file mode 100644 index 289cc1d64..000000000 --- a/.changeset/lazy-bears-tap.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@lagon/dashboard': patch ---- - -Use correct theme for playground editor diff --git a/.changeset/nasty-ads-buy.md b/.changeset/nasty-ads-buy.md deleted file mode 100644 index be166c79f..000000000 --- a/.changeset/nasty-ads-buy.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -'@lagon/cli': patch -'@lagon/runtime': patch -'@lagon/serverless': patch -'@lagon/js-runtime': patch ---- - -Allow `export as` for handler function diff --git a/.changeset/nervous-books-fetch.md b/.changeset/nervous-books-fetch.md deleted file mode 100644 index 3e60874ff..000000000 --- a/.changeset/nervous-books-fetch.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@lagon/runtime-utils': minor ---- - -Add dark-mode for error pages diff --git a/.changeset/pink-carpets-hope.md b/.changeset/pink-carpets-hope.md deleted file mode 100644 index 78496b4a2..000000000 --- a/.changeset/pink-carpets-hope.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@lagon/cli': patch -'@lagon/runtime': patch -'@lagon/serverless': patch ---- - -Support RSA-OAEP for `SubtleCrypto#encrypt` & `SubtleCrypto#decrypto` diff --git a/.changeset/seven-doors-help.md b/.changeset/seven-doors-help.md deleted file mode 100644 index 8d6e9f059..000000000 --- a/.changeset/seven-doors-help.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@lagon/dashboard': patch ---- - -Fix environment variables deletion diff --git a/.changeset/silly-wombats-cheer.md b/.changeset/silly-wombats-cheer.md deleted file mode 100644 index 5c5aee7ee..000000000 --- a/.changeset/silly-wombats-cheer.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -'@lagon/cli': patch -'@lagon/runtime': patch -'@lagon/serverless': patch -'@lagon/wpt-runner': patch ---- - -Improve performance by always using Hyper types diff --git a/crates/cli/CHANGELOG.md b/crates/cli/CHANGELOG.md index fa233898b..592e4bcda 100644 --- a/crates/cli/CHANGELOG.md +++ b/crates/cli/CHANGELOG.md @@ -1,5 +1,15 @@ # @lagon/cli +## 0.7.2 + +### Patch Changes + +- [#868](https://github.com/lagonapp/lagon/pull/868) [`33fa56c`](https://github.com/lagonapp/lagon/commit/33fa56c12b80d091a45fdffac0791c46f760e2e2) Thanks [@QuiiBz](https://github.com/QuiiBz)! - Allow `export as` for handler function + +* [#889](https://github.com/lagonapp/lagon/pull/889) [`62447ba`](https://github.com/lagonapp/lagon/commit/62447bac3dbef88eb31a2ade620f478e7c27b538) Thanks [@akitaSummer](https://github.com/akitaSummer)! - Support RSA-OAEP for `SubtleCrypto#encrypt` & `SubtleCrypto#decrypto` + +- [#883](https://github.com/lagonapp/lagon/pull/883) [`00c1e66`](https://github.com/lagonapp/lagon/commit/00c1e6630d43f247e8d9893e63ff5de1ca7e64f5) Thanks [@QuiiBz](https://github.com/QuiiBz)! - Improve performance by always using Hyper types + ## 0.7.1 ### Patch Changes diff --git a/crates/cli/package.json b/crates/cli/package.json index 544bf8446..f2731bc6f 100644 --- a/crates/cli/package.json +++ b/crates/cli/package.json @@ -1,6 +1,6 @@ { "name": "@lagon/cli", - "version": "0.7.1", + "version": "0.7.2", "description": "CLI for Lagon", "type": "module", "files": [ diff --git a/crates/runtime/CHANGELOG.md b/crates/runtime/CHANGELOG.md index 4c0ff4d63..07d5661ef 100644 --- a/crates/runtime/CHANGELOG.md +++ b/crates/runtime/CHANGELOG.md @@ -1,5 +1,15 @@ # @lagon/runtime +## 0.3.14 + +### Patch Changes + +- [#868](https://github.com/lagonapp/lagon/pull/868) [`33fa56c`](https://github.com/lagonapp/lagon/commit/33fa56c12b80d091a45fdffac0791c46f760e2e2) Thanks [@QuiiBz](https://github.com/QuiiBz)! - Allow `export as` for handler function + +* [#889](https://github.com/lagonapp/lagon/pull/889) [`62447ba`](https://github.com/lagonapp/lagon/commit/62447bac3dbef88eb31a2ade620f478e7c27b538) Thanks [@akitaSummer](https://github.com/akitaSummer)! - Support RSA-OAEP for `SubtleCrypto#encrypt` & `SubtleCrypto#decrypto` + +- [#883](https://github.com/lagonapp/lagon/pull/883) [`00c1e66`](https://github.com/lagonapp/lagon/commit/00c1e6630d43f247e8d9893e63ff5de1ca7e64f5) Thanks [@QuiiBz](https://github.com/QuiiBz)! - Improve performance by always using Hyper types + ## 0.3.13 ### Patch Changes diff --git a/crates/runtime/package.json b/crates/runtime/package.json index 46e625836..a42f2af07 100644 --- a/crates/runtime/package.json +++ b/crates/runtime/package.json @@ -1,6 +1,6 @@ { "name": "@lagon/runtime", - "version": "0.3.13", + "version": "0.3.14", "description": "JavaScript Serverless Runtime for Lagon", "private": true, "scripts": { diff --git a/crates/runtime_utils/CHANGELOG.md b/crates/runtime_utils/CHANGELOG.md new file mode 100644 index 000000000..8d59ea2c9 --- /dev/null +++ b/crates/runtime_utils/CHANGELOG.md @@ -0,0 +1,7 @@ +# @lagon/runtime-utils + +## 0.2.0 + +### Minor Changes + +- [#870](https://github.com/lagonapp/lagon/pull/870) [`15d08f1`](https://github.com/lagonapp/lagon/commit/15d08f1bb08b641aaac78fef8ab8a61cf8d6e177) Thanks [@anbraten](https://github.com/anbraten)! - Add dark-mode for error pages diff --git a/crates/runtime_utils/package.json b/crates/runtime_utils/package.json index 630c5dd08..bfc08d79a 100644 --- a/crates/runtime_utils/package.json +++ b/crates/runtime_utils/package.json @@ -1,6 +1,6 @@ { "name": "@lagon/runtime-utils", - "version": "0.1.0", + "version": "0.2.0", "description": "JavaScript Serverless Runtime for Lagon", "private": true, "scripts": { diff --git a/crates/serverless/CHANGELOG.md b/crates/serverless/CHANGELOG.md index eca4bbb4d..079771076 100644 --- a/crates/serverless/CHANGELOG.md +++ b/crates/serverless/CHANGELOG.md @@ -1,5 +1,15 @@ # @lagon/serverless +## 0.1.33 + +### Patch Changes + +- [#868](https://github.com/lagonapp/lagon/pull/868) [`33fa56c`](https://github.com/lagonapp/lagon/commit/33fa56c12b80d091a45fdffac0791c46f760e2e2) Thanks [@QuiiBz](https://github.com/QuiiBz)! - Allow `export as` for handler function + +* [#889](https://github.com/lagonapp/lagon/pull/889) [`62447ba`](https://github.com/lagonapp/lagon/commit/62447bac3dbef88eb31a2ade620f478e7c27b538) Thanks [@akitaSummer](https://github.com/akitaSummer)! - Support RSA-OAEP for `SubtleCrypto#encrypt` & `SubtleCrypto#decrypto` + +- [#883](https://github.com/lagonapp/lagon/pull/883) [`00c1e66`](https://github.com/lagonapp/lagon/commit/00c1e6630d43f247e8d9893e63ff5de1ca7e64f5) Thanks [@QuiiBz](https://github.com/QuiiBz)! - Improve performance by always using Hyper types + ## 0.1.32 ### Patch Changes diff --git a/crates/serverless/package.json b/crates/serverless/package.json index 317bfd88a..bab81304e 100644 --- a/crates/serverless/package.json +++ b/crates/serverless/package.json @@ -1,6 +1,6 @@ { "name": "@lagon/serverless", - "version": "0.1.32", + "version": "0.1.33", "description": "Serverless software using Lagon Runtime", "private": true, "scripts": { diff --git a/crates/wpt-runner/CHANGELOG.md b/crates/wpt-runner/CHANGELOG.md index d9136bd91..ad9a2d940 100644 --- a/crates/wpt-runner/CHANGELOG.md +++ b/crates/wpt-runner/CHANGELOG.md @@ -1,5 +1,11 @@ # @lagon/wpt-runner +## 0.1.4 + +### Patch Changes + +- [#883](https://github.com/lagonapp/lagon/pull/883) [`00c1e66`](https://github.com/lagonapp/lagon/commit/00c1e6630d43f247e8d9893e63ff5de1ca7e64f5) Thanks [@QuiiBz](https://github.com/QuiiBz)! - Improve performance by always using Hyper types + ## 0.1.3 ### Patch Changes diff --git a/crates/wpt-runner/package.json b/crates/wpt-runner/package.json index d35ca9f4e..7705bc1ce 100644 --- a/crates/wpt-runner/package.json +++ b/crates/wpt-runner/package.json @@ -1,6 +1,6 @@ { "name": "@lagon/wpt-runner", - "version": "0.1.3", + "version": "0.1.4", "description": "web-platform-tests runner for Lagon Runtime", "private": true, "scripts": { diff --git a/examples/upstash-ratelimit/CHANGELOG.md b/examples/upstash-ratelimit/CHANGELOG.md new file mode 100644 index 000000000..0dae4b7c5 --- /dev/null +++ b/examples/upstash-ratelimit/CHANGELOG.md @@ -0,0 +1,7 @@ +# @lagon/example-upstash-ratelimit + +## 0.1.1 + +### Patch Changes + +- [#874](https://github.com/lagonapp/lagon/pull/874) [`be5dbde`](https://github.com/lagonapp/lagon/commit/be5dbdec750c62256d5bfef3496ccb2a409f12fa) Thanks [@QuiiBz](https://github.com/QuiiBz)! - Add Upstash examples diff --git a/examples/upstash-ratelimit/package.json b/examples/upstash-ratelimit/package.json index 34bf9d233..35d010065 100644 --- a/examples/upstash-ratelimit/package.json +++ b/examples/upstash-ratelimit/package.json @@ -1,6 +1,6 @@ { "name": "@lagon/example-upstash-ratelimit", - "version": "0.1.0", + "version": "0.1.1", "private": true, "scripts": { "lagon-dev": "lagon dev index.ts" diff --git a/examples/upstash/CHANGELOG.md b/examples/upstash/CHANGELOG.md new file mode 100644 index 000000000..d74f3c91c --- /dev/null +++ b/examples/upstash/CHANGELOG.md @@ -0,0 +1,7 @@ +# @lagon/example-upstash + +## 0.1.1 + +### Patch Changes + +- [#874](https://github.com/lagonapp/lagon/pull/874) [`be5dbde`](https://github.com/lagonapp/lagon/commit/be5dbdec750c62256d5bfef3496ccb2a409f12fa) Thanks [@QuiiBz](https://github.com/QuiiBz)! - Add Upstash examples diff --git a/examples/upstash/package.json b/examples/upstash/package.json index 37d9161b4..7d9702ac5 100644 --- a/examples/upstash/package.json +++ b/examples/upstash/package.json @@ -1,6 +1,6 @@ { "name": "@lagon/example-upstash", - "version": "0.1.0", + "version": "0.1.1", "private": true, "scripts": { "lagon-dev": "lagon dev index.ts" diff --git a/packages/dashboard/CHANGELOG.md b/packages/dashboard/CHANGELOG.md index 0310f21fc..21b4b3a5d 100644 --- a/packages/dashboard/CHANGELOG.md +++ b/packages/dashboard/CHANGELOG.md @@ -1,5 +1,13 @@ # @lagon/dashboard +## 0.3.8 + +### Patch Changes + +- [#871](https://github.com/lagonapp/lagon/pull/871) [`de0ffb6`](https://github.com/lagonapp/lagon/commit/de0ffb677507a1cd5fa1630e9992f685fb43ce37) Thanks [@anbraten](https://github.com/anbraten)! - Use correct theme for playground editor + +* [#877](https://github.com/lagonapp/lagon/pull/877) [`79fd8f6`](https://github.com/lagonapp/lagon/commit/79fd8f6ccba3819e542b868b2f05733d674bd713) Thanks [@QuiiBz](https://github.com/QuiiBz)! - Fix environment variables deletion + ## 0.3.7 ### Patch Changes diff --git a/packages/dashboard/package.json b/packages/dashboard/package.json index 66e63b79f..d4fd70e11 100644 --- a/packages/dashboard/package.json +++ b/packages/dashboard/package.json @@ -1,6 +1,6 @@ { "name": "@lagon/dashboard", - "version": "0.3.7", + "version": "0.3.8", "private": true, "scripts": { "dev": "next dev", diff --git a/packages/docs/CHANGELOG.md b/packages/docs/CHANGELOG.md index 00cf7d6ee..0dec00683 100644 --- a/packages/docs/CHANGELOG.md +++ b/packages/docs/CHANGELOG.md @@ -1,5 +1,11 @@ # @lagon/docs +## 0.3.10 + +### Patch Changes + +- [#874](https://github.com/lagonapp/lagon/pull/874) [`be5dbde`](https://github.com/lagonapp/lagon/commit/be5dbdec750c62256d5bfef3496ccb2a409f12fa) Thanks [@QuiiBz](https://github.com/QuiiBz)! - Add Upstash examples + ## 0.3.9 ### Patch Changes diff --git a/packages/docs/package.json b/packages/docs/package.json index b852e93af..cc9ff790a 100644 --- a/packages/docs/package.json +++ b/packages/docs/package.json @@ -1,6 +1,6 @@ { "name": "@lagon/docs", - "version": "0.3.9", + "version": "0.3.10", "private": true, "scripts": { "dev": "next dev", diff --git a/packages/js-runtime/CHANGELOG.md b/packages/js-runtime/CHANGELOG.md index 32e6bb1c6..34fd5388b 100644 --- a/packages/js-runtime/CHANGELOG.md +++ b/packages/js-runtime/CHANGELOG.md @@ -1,5 +1,11 @@ # @lagon/js-runtime +## 0.3.14 + +### Patch Changes + +- [#868](https://github.com/lagonapp/lagon/pull/868) [`33fa56c`](https://github.com/lagonapp/lagon/commit/33fa56c12b80d091a45fdffac0791c46f760e2e2) Thanks [@QuiiBz](https://github.com/QuiiBz)! - Allow `export as` for handler function + ## 0.3.13 ### Patch Changes diff --git a/packages/js-runtime/package.json b/packages/js-runtime/package.json index 6b36972b8..ad1cdf51f 100644 --- a/packages/js-runtime/package.json +++ b/packages/js-runtime/package.json @@ -1,6 +1,6 @@ { "name": "@lagon/js-runtime", - "version": "0.3.13", + "version": "0.3.14", "description": "JavaScript Runtime", "private": true, "type": "module",