Skip to content

Commit 83716f7

Browse files
ci: release (#934)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent f97aa7e commit 83716f7

34 files changed

+99
-100
lines changed

Diff for: .changeset/beige-bottles-push.md

-5
This file was deleted.

Diff for: .changeset/cold-pumpkins-sort.md

-5
This file was deleted.

Diff for: .changeset/early-points-provide.md

-8
This file was deleted.

Diff for: .changeset/khaki-dogs-type.md

-5
This file was deleted.

Diff for: .changeset/large-pets-rule.md

-5
This file was deleted.

Diff for: .changeset/modern-buttons-beg.md

-8
This file was deleted.

Diff for: .changeset/modern-moose-reflect.md

-5
This file was deleted.

Diff for: .changeset/nasty-weeks-lie.md

-5
This file was deleted.

Diff for: .changeset/neat-taxis-run.md

-5
This file was deleted.

Diff for: .changeset/new-insects-retire.md

-8
This file was deleted.

Diff for: .changeset/poor-ants-lay.md

-5
This file was deleted.

Diff for: .changeset/pretty-socks-grab.md

-6
This file was deleted.

Diff for: .changeset/rotten-bees-nail.md

-5
This file was deleted.

Diff for: .changeset/rude-toys-wait.md

-6
This file was deleted.

Diff for: .changeset/seven-adults-hang.md

-5
This file was deleted.

Diff for: .changeset/shy-pears-film.md

-5
This file was deleted.

Diff for: crates/cli/CHANGELOG.md

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

3+
## 0.7.5
4+
5+
### Patch Changes
6+
7+
- [#916](https://github.com/lagonapp/lagon/pull/916) [`a8a02dd`](https://github.com/lagonapp/lagon/commit/a8a02dd0bd244599d9c6be622e79c6f4cb1b3db4) Thanks [@QuiiBz](https://github.com/QuiiBz)! - Replace once_cell with std's OnceLock
8+
9+
- [#949](https://github.com/lagonapp/lagon/pull/949) [`d003a29`](https://github.com/lagonapp/lagon/commit/d003a2937775f00c17e1bf6b83d46310355c077d) Thanks [@QuiiBz](https://github.com/QuiiBz)! - Improve performance of Headers & Body (Request & Response)
10+
11+
- [#941](https://github.com/lagonapp/lagon/pull/941) [`2dcce72`](https://github.com/lagonapp/lagon/commit/2dcce72d3d0033472c36d2817d8e13153aeaa1bf) Thanks [@QuiiBz](https://github.com/QuiiBz)! - Support HTTP/2 (along with HTTP/1.1) in `fetch()`
12+
13+
- [#948](https://github.com/lagonapp/lagon/pull/948) [`1075ea8`](https://github.com/lagonapp/lagon/commit/1075ea823e1fb810642e883460240ffaa82cd713) Thanks [@QuiiBz](https://github.com/QuiiBz)! - Use rustls-ls instead of native-tls
14+
315
## 0.7.4
416

517
### Patch Changes

Diff for: 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.4",
3+
"version": "0.7.5",
44
"description": "CLI for Lagon",
55
"type": "module",
66
"files": [

Diff for: crates/runtime/CHANGELOG.md

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

3+
## 0.3.17
4+
5+
### Patch Changes
6+
7+
- [#916](https://github.com/lagonapp/lagon/pull/916) [`a8a02dd`](https://github.com/lagonapp/lagon/commit/a8a02dd0bd244599d9c6be622e79c6f4cb1b3db4) Thanks [@QuiiBz](https://github.com/QuiiBz)! - Replace once_cell with std's OnceLock
8+
9+
- [#949](https://github.com/lagonapp/lagon/pull/949) [`d003a29`](https://github.com/lagonapp/lagon/commit/d003a2937775f00c17e1bf6b83d46310355c077d) Thanks [@QuiiBz](https://github.com/QuiiBz)! - Improve performance of Headers & Body (Request & Response)
10+
11+
- [#941](https://github.com/lagonapp/lagon/pull/941) [`2dcce72`](https://github.com/lagonapp/lagon/commit/2dcce72d3d0033472c36d2817d8e13153aeaa1bf) Thanks [@QuiiBz](https://github.com/QuiiBz)! - Support HTTP/2 (along with HTTP/1.1) in `fetch()`
12+
13+
- [#938](https://github.com/lagonapp/lagon/pull/938) [`0a64b68`](https://github.com/lagonapp/lagon/commit/0a64b68b3616fe70d099af6eb5df8a1a9e7093d2) Thanks [@QuiiBz](https://github.com/QuiiBz)! - Forward X-Lagon-Id header
14+
315
## 0.3.16
416

517
## 0.3.15

Diff for: 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.16",
3+
"version": "0.3.17",
44
"description": "JavaScript Serverless Runtime for Lagon",
55
"private": true,
66
"scripts": {

Diff for: crates/runtime_utils/CHANGELOG.md

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

3+
## 0.2.1
4+
5+
### Patch Changes
6+
7+
- [#939](https://github.com/lagonapp/lagon/pull/939) [`079c008`](https://github.com/lagonapp/lagon/commit/079c008d7e140328a1e128dac0ec167509457028) Thanks [@QuiiBz](https://github.com/QuiiBz)! - Fix sync responses bytes length
8+
39
## 0.2.0
410

511
### Minor Changes

Diff for: crates/runtime_utils/package.json

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

Diff for: crates/serverless/CHANGELOG.md

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

3+
## 0.2.2
4+
5+
### Patch Changes
6+
7+
- [#916](https://github.com/lagonapp/lagon/pull/916) [`a8a02dd`](https://github.com/lagonapp/lagon/commit/a8a02dd0bd244599d9c6be622e79c6f4cb1b3db4) Thanks [@QuiiBz](https://github.com/QuiiBz)! - Replace once_cell with std's OnceLock
8+
9+
- [#949](https://github.com/lagonapp/lagon/pull/949) [`d003a29`](https://github.com/lagonapp/lagon/commit/d003a2937775f00c17e1bf6b83d46310355c077d) Thanks [@QuiiBz](https://github.com/QuiiBz)! - Improve performance of Headers & Body (Request & Response)
10+
11+
- [#952](https://github.com/lagonapp/lagon/pull/952) [`1a63dc7`](https://github.com/lagonapp/lagon/commit/1a63dc7e2ed22408455758265a901992bc059ab8) Thanks [@QuiiBz](https://github.com/QuiiBz)! - Add x-robots-tag: noindex header to preview deployments responses
12+
13+
- [#948](https://github.com/lagonapp/lagon/pull/948) [`1075ea8`](https://github.com/lagonapp/lagon/commit/1075ea823e1fb810642e883460240ffaa82cd713) Thanks [@QuiiBz](https://github.com/QuiiBz)! - Fix redis pub/sub sometimes disconnecting
14+
15+
- [#916](https://github.com/lagonapp/lagon/pull/916) [`a8a02dd`](https://github.com/lagonapp/lagon/commit/a8a02dd0bd244599d9c6be622e79c6f4cb1b3db4) Thanks [@QuiiBz](https://github.com/QuiiBz)! - Set region label for prometheus exporter globally
16+
17+
- [#941](https://github.com/lagonapp/lagon/pull/941) [`2dcce72`](https://github.com/lagonapp/lagon/commit/2dcce72d3d0033472c36d2817d8e13153aeaa1bf) Thanks [@QuiiBz](https://github.com/QuiiBz)! - Support HTTP/2 (along with HTTP/1.1) in `fetch()`
18+
19+
- [#939](https://github.com/lagonapp/lagon/pull/939) [`079c008`](https://github.com/lagonapp/lagon/commit/079c008d7e140328a1e128dac0ec167509457028) Thanks [@QuiiBz](https://github.com/QuiiBz)! - Fix sync responses bytes length
20+
21+
- [#948](https://github.com/lagonapp/lagon/pull/948) [`1075ea8`](https://github.com/lagonapp/lagon/commit/1075ea823e1fb810642e883460240ffaa82cd713) Thanks [@QuiiBz](https://github.com/QuiiBz)! - Use rustls-ls instead of native-tls
22+
323
## 0.2.1
424

525
### Patch Changes

Diff for: 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.1",
3+
"version": "0.2.2",
44
"description": "Serverless software using Lagon Runtime",
55
"private": true,
66
"scripts": {

Diff for: crates/wpt-runner/CHANGELOG.md

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

3+
## 0.1.6
4+
5+
### Patch Changes
6+
7+
- [#916](https://github.com/lagonapp/lagon/pull/916) [`a8a02dd`](https://github.com/lagonapp/lagon/commit/a8a02dd0bd244599d9c6be622e79c6f4cb1b3db4) Thanks [@QuiiBz](https://github.com/QuiiBz)! - Replace once_cell with std's OnceLock
8+
39
## 0.1.5
410

511
### Patch Changes

Diff for: crates/wpt-runner/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lagon/wpt-runner",
3-
"version": "0.1.5",
3+
"version": "0.1.6",
44
"description": "web-platform-tests runner for Lagon Runtime",
55
"private": true,
66
"scripts": {

Diff for: packages/dashboard/CHANGELOG.md

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

3+
## 0.3.11
4+
5+
### Patch Changes
6+
7+
- [#906](https://github.com/lagonapp/lagon/pull/906) [`89f40a5`](https://github.com/lagonapp/lagon/commit/89f40a5c464454eb37cc719187bb27e8b78f4d81) Thanks [@anbraten](https://github.com/anbraten)! - Add Dockerfile & publish to Docker Hub
8+
9+
- [#945](https://github.com/lagonapp/lagon/pull/945) [`1422cab`](https://github.com/lagonapp/lagon/commit/1422cab140907c3e0c7dc294010ffbd7d05df3c9) Thanks [@QuiiBz](https://github.com/QuiiBz)! - Improve domains validation status
10+
11+
- [#954](https://github.com/lagonapp/lagon/pull/954) [`6eab245`](https://github.com/lagonapp/lagon/commit/6eab245f0411197011557765a5210bd1d6cdd9a2) Thanks [@QuiiBz](https://github.com/QuiiBz)! - Fix wrong Prisma migration file
12+
13+
- [#959](https://github.com/lagonapp/lagon/pull/959) [`f97aa7e`](https://github.com/lagonapp/lagon/commit/f97aa7e43e059afd48190198a414f05a2504a7ca) Thanks [@QuiiBz](https://github.com/QuiiBz)! - Properly set session information when authenticating via a token
14+
15+
- [#936](https://github.com/lagonapp/lagon/pull/936) [`b996b23`](https://github.com/lagonapp/lagon/commit/b996b234d9fe36dad6e68c0825705970ddfa2d7a) Thanks [@QuiiBz](https://github.com/QuiiBz)! - Fix Stripe subscription
16+
317
## 0.3.10
418

519
### Patch Changes

Diff for: 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.10",
3+
"version": "0.3.11",
44
"private": true,
55
"scripts": {
66
"dev": "next dev",

Diff for: packages/docs/CHANGELOG.md

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

3+
## 1.0.1
4+
5+
### Patch Changes
6+
7+
- [#941](https://github.com/lagonapp/lagon/pull/941) [`2dcce72`](https://github.com/lagonapp/lagon/commit/2dcce72d3d0033472c36d2817d8e13153aeaa1bf) Thanks [@QuiiBz](https://github.com/QuiiBz)! - Support HTTP/2 (along with HTTP/1.1) in `fetch()`
8+
39
## 1.0.0
410

511
### Major Changes

Diff for: packages/docs/package.json

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

Diff for: 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.17
4+
5+
### Patch Changes
6+
7+
- [#949](https://github.com/lagonapp/lagon/pull/949) [`d003a29`](https://github.com/lagonapp/lagon/commit/d003a2937775f00c17e1bf6b83d46310355c077d) Thanks [@QuiiBz](https://github.com/QuiiBz)! - Improve performance of Headers & Body (Request & Response)
8+
39
## 0.3.16
410

511
### Patch Changes

Diff for: 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.16",
3+
"version": "0.3.17",
44
"description": "JavaScript Runtime",
55
"private": true,
66
"type": "module",

Diff for: www/CHANGELOG.md

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

3+
## 1.1.5
4+
5+
### Patch Changes
6+
7+
- [#942](https://github.com/lagonapp/lagon/pull/942) [`f2ba25a`](https://github.com/lagonapp/lagon/commit/f2ba25ae7dae8906518ead3229cad94b2398f594) Thanks [@colinlienard](https://github.com/colinlienard)! - Add favicon color based on navigator scheme
8+
9+
- [#933](https://github.com/lagonapp/lagon/pull/933) [`087dfaa`](https://github.com/lagonapp/lagon/commit/087dfaa972a1db308527549407faa9abcfaf1e4c) Thanks [@xanderbarkhatov](https://github.com/xanderbarkhatov)! - Decrease nav gap on smaller screens
10+
311
## 1.1.4
412

513
### Patch Changes

Diff for: www/package.json

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

0 commit comments

Comments
 (0)