Skip to content

Commit b1c9c86

Browse files
ci: release (#923)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent dfdb662 commit b1c9c86

17 files changed

+41
-42
lines changed

.changeset/breezy-cycles-glow.md

-7
This file was deleted.

.changeset/curvy-beans-divide.md

-5
This file was deleted.

.changeset/cyan-brooms-trade.md

-5
This file was deleted.

.changeset/good-meals-grow.md

-5
This file was deleted.

.changeset/metal-mangos-watch.md

-5
This file was deleted.

.changeset/moody-trees-march.md

-5
This file was deleted.

.changeset/selfish-meals-joke.md

-5
This file was deleted.

crates/cli/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @lagon/cli
22

3+
## 0.7.4
4+
5+
### Patch Changes
6+
7+
- [#928](https://github.com/lagonapp/lagon/pull/928) [`28bd4c6`](https://github.com/lagonapp/lagon/commit/28bd4c644db583b54827f5f1a6bee7ce0f64b4bb) Thanks [@QuiiBz](https://github.com/QuiiBz)! - Set content-length header to 0 when body is null and method POST or PUT in `fetch()`
8+
9+
- [#925](https://github.com/lagonapp/lagon/pull/925) [`102bb75`](https://github.com/lagonapp/lagon/commit/102bb7550a14453c96866a4aa011d4517ed11185) Thanks [@QuiiBz](https://github.com/QuiiBz)! - Fix `lagon dev` hot reloading updating after the 2nd request
10+
11+
- [`dfdb662`](https://github.com/lagonapp/lagon/commit/dfdb6626e86b9c81bff2275ec03944aaa9259c69) Thanks [@QuiiBz](https://github.com/QuiiBz)! - Load environment variable file based on current directory
12+
313
## 0.7.3
414

515
### Patch Changes

crates/cli/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lagon/cli",
3-
"version": "0.7.3",
3+
"version": "0.7.4",
44
"description": "CLI for Lagon",
55
"type": "module",
66
"files": [

crates/runtime/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# @lagon/runtime
22

3+
## 0.3.16
4+
35
## 0.3.15
46

57
## 0.3.14

crates/runtime/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lagon/runtime",
3-
"version": "0.3.15",
3+
"version": "0.3.16",
44
"description": "JavaScript Serverless Runtime for Lagon",
55
"private": true,
66
"scripts": {

crates/serverless/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @lagon/serverless
22

3+
## 0.2.1
4+
5+
### Patch Changes
6+
7+
- [#928](https://github.com/lagonapp/lagon/pull/928) [`28bd4c6`](https://github.com/lagonapp/lagon/commit/28bd4c644db583b54827f5f1a6bee7ce0f64b4bb) Thanks [@QuiiBz](https://github.com/QuiiBz)! - Set content-length header to 0 when body is null and method POST or PUT in `fetch()`
8+
9+
- [#929](https://github.com/lagonapp/lagon/pull/929) [`0174cad`](https://github.com/lagonapp/lagon/commit/0174cad77f41def0092583880c5c88f530e345d2) Thanks [@QuiiBz](https://github.com/QuiiBz)! - Revert isolates cache eviction using ClickHouse to use local cache instead
10+
11+
- [#924](https://github.com/lagonapp/lagon/pull/924) [`cacb962`](https://github.com/lagonapp/lagon/commit/cacb9626c2039c3b1932152220467dc6206f8389) Thanks [@QuiiBz](https://github.com/QuiiBz)! - Retrieve environment variables when booting
12+
313
## 0.2.0
414

515
### Minor Changes

crates/serverless/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lagon/serverless",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"description": "Serverless software using Lagon Runtime",
55
"private": true,
66
"scripts": {

packages/dashboard/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @lagon/dashboard
22

3+
## 0.3.10
4+
5+
### Patch Changes
6+
7+
- [#922](https://github.com/lagonapp/lagon/pull/922) [`6979a7c`](https://github.com/lagonapp/lagon/commit/6979a7c978a0c6fa486ba1c7a0b79063bfd7eeed) Thanks [@QuiiBz](https://github.com/QuiiBz)! - Fix Cron preview to update as we type
8+
9+
- [#927](https://github.com/lagonapp/lagon/pull/927) [`968cb8d`](https://github.com/lagonapp/lagon/commit/968cb8d3922702a799165a1f71f1586f53e17435) Thanks [@QuiiBz](https://github.com/QuiiBz)! - Only allow alphanumeric characters, numbers and underscore as environment variable keys
10+
311
## 0.3.9
412

513
### Patch Changes

packages/dashboard/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lagon/dashboard",
3-
"version": "0.3.9",
3+
"version": "0.3.10",
44
"private": true,
55
"scripts": {
66
"dev": "next dev",

packages/js-runtime/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @lagon/js-runtime
22

3+
## 0.3.16
4+
5+
### Patch Changes
6+
7+
- [#928](https://github.com/lagonapp/lagon/pull/928) [`28bd4c6`](https://github.com/lagonapp/lagon/commit/28bd4c644db583b54827f5f1a6bee7ce0f64b4bb) Thanks [@QuiiBz](https://github.com/QuiiBz)! - Set content-length header to 0 when body is null and method POST or PUT in `fetch()`
8+
39
## 0.3.15
410

511
### Patch Changes

packages/js-runtime/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lagon/js-runtime",
3-
"version": "0.3.15",
3+
"version": "0.3.16",
44
"description": "JavaScript Runtime",
55
"private": true,
66
"type": "module",

0 commit comments

Comments
 (0)