Skip to content

Commit

Permalink
release: version packages
Browse files Browse the repository at this point in the history
  • Loading branch information
silverhand-bot committed Sep 25, 2024
1 parent 0c43618 commit 035ba58
Show file tree
Hide file tree
Showing 18 changed files with 188 additions and 140 deletions.
9 changes: 0 additions & 9 deletions .changeset/tasty-kings-fetch.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tricky-mice-pay.md

This file was deleted.

8 changes: 8 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Change Log

## 1.20.1

### Patch Changes

- Updated dependencies [3c993d59c]
- @logto/core-kit@2.5.1
- @logto/schemas@1.20.1

## 1.20.0

### Minor Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@logto/cli",
"version": "1.20.0",
"version": "1.20.1",
"description": "Logto CLI.",
"author": "Silverhand Inc. <contact@silverhand.io>",
"homepage": "https://github.com/logto-io/logto#readme",
Expand Down Expand Up @@ -43,8 +43,8 @@
},
"dependencies": {
"@logto/connector-kit": "workspace:^4.0.0",
"@logto/core-kit": "workspace:^2.5.0",
"@logto/schemas": "workspace:1.20.0",
"@logto/core-kit": "workspace:^2.5.1",
"@logto/schemas": "workspace:1.20.1",
"@logto/shared": "workspace:^3.1.1",
"@silverhand/essentials": "^2.9.1",
"@silverhand/slonik": "31.0.0-beta.2",
Expand Down
15 changes: 15 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Change Log

## 1.20.1

### Patch Changes

- 3c993d59c: fix an issue that prevent mp4 video from playing on Safari

Safari browser uses range request to fetch video data, but it was not supported by the `@logto/tunnel` CLI tool and `koa-serve-custom-ui-assets` middleware in core. This prevents our users who want to build custom sign-in pages with video background. In order to fix this, we need to partially read the video file stream based on the `range` request header, and set proper response headers and status code (206).

- Updated dependencies [3c993d59c]
- Updated dependencies [3c993d59c]
- @logto/phrases@1.14.1
- @logto/core-kit@2.5.1
- @logto/schemas@1.20.1
- @logto/cli@1.20.1

## 1.20.0

### Minor Changes
Expand Down
10 changes: 5 additions & 5 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@logto/core",
"version": "1.20.0",
"version": "1.20.1",
"description": "The open source identity solution.",
"main": "build/index.js",
"author": "Silverhand Inc. <contact@silverhand.io>",
Expand Down Expand Up @@ -33,17 +33,17 @@
"@koa/cors": "^5.0.0",
"@logto/affiliate": "^0.1.0",
"@logto/app-insights": "workspace:^2.0.0",
"@logto/cli": "workspace:^1.20.0",
"@logto/cli": "workspace:^1.20.1",
"@logto/connector-kit": "workspace:^4.0.0",
"@logto/console": "workspace:*",
"@logto/core-kit": "workspace:^2.5.0",
"@logto/core-kit": "workspace:^2.5.1",
"@logto/demo-app": "workspace:*",
"@logto/experience": "workspace:*",
"@logto/experience-legacy": "workspace:*",
"@logto/language-kit": "workspace:^1.1.0",
"@logto/phrases": "workspace:^1.14.0",
"@logto/phrases": "workspace:^1.14.1",
"@logto/phrases-experience": "workspace:^1.8.0",
"@logto/schemas": "workspace:^1.20.0",
"@logto/schemas": "workspace:^1.20.1",
"@logto/shared": "workspace:^3.1.1",
"@silverhand/essentials": "^2.9.1",
"@silverhand/slonik": "31.0.0-beta.2",
Expand Down
6 changes: 6 additions & 0 deletions packages/create/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 1.20.1

### Patch Changes

- @logto/cli@1.20.1

## 1.20.0

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/create/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@logto/create",
"version": "1.20.0",
"version": "1.20.1",
"author": "Silverhand Inc. <contact@silverhand.io>",
"license": "MPL-2.0",
"type": "module",
Expand All @@ -15,6 +15,6 @@
"node": "^20.9.0"
},
"dependencies": {
"@logto/cli": "workspace:^1.20.0"
"@logto/cli": "workspace:^1.20.1"
}
}
2 changes: 1 addition & 1 deletion packages/integration-tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"@logto/core-kit": "workspace:^",
"@logto/js": "^4.1.4",
"@logto/node": "^2.5.4",
"@logto/schemas": "workspace:^1.20.0",
"@logto/schemas": "workspace:^1.20.1",
"@logto/shared": "workspace:^3.1.1",
"@silverhand/eslint-config": "6.0.1",
"@silverhand/essentials": "^2.9.1",
Expand Down
8 changes: 8 additions & 0 deletions packages/phrases/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Change Log

## 1.14.1

### Patch Changes

- 3c993d59c: fix an issue that prevent mp4 video from playing on Safari

Safari browser uses range request to fetch video data, but it was not supported by the `@logto/tunnel` CLI tool and `koa-serve-custom-ui-assets` middleware in core. This prevents our users who want to build custom sign-in pages with video background. In order to fix this, we need to partially read the video file stream based on the `range` request header, and set proper response headers and status code (206).

## 1.14.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/phrases/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@logto/phrases",
"version": "1.14.0",
"version": "1.14.1",
"description": "Logto shared phrases (i18n).",
"author": "Silverhand Inc. <contact@silverhand.io>",
"homepage": "https://github.com/logto-io/logto#readme",
Expand Down
9 changes: 9 additions & 0 deletions packages/schemas/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Change Log

## 1.20.1

### Patch Changes

- Updated dependencies [3c993d59c]
- Updated dependencies [3c993d59c]
- @logto/phrases@1.14.1
- @logto/core-kit@2.5.1

## 1.20.0

### Minor Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/schemas/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@logto/schemas",
"version": "1.20.0",
"version": "1.20.1",
"author": "Silverhand Inc. <contact@silverhand.io>",
"license": "MPL-2.0",
"type": "module",
Expand Down Expand Up @@ -79,9 +79,9 @@
"prettier": "@silverhand/eslint-config/.prettierrc",
"dependencies": {
"@logto/connector-kit": "workspace:^4.0.0",
"@logto/core-kit": "workspace:^2.5.0",
"@logto/core-kit": "workspace:^2.5.1",
"@logto/language-kit": "workspace:^1.1.0",
"@logto/phrases": "workspace:^1.14.0",
"@logto/phrases": "workspace:^1.14.1",
"@logto/phrases-experience": "workspace:^1.8.0",
"@logto/shared": "workspace:^3.1.1",
"@withtyped/server": "^0.14.0",
Expand Down
6 changes: 6 additions & 0 deletions packages/toolkit/core-kit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 2.5.1

### Patch Changes

- 3c993d59c: add range request handling to url utilities

## 2.5.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/toolkit/core-kit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@logto/core-kit",
"version": "2.5.0",
"version": "2.5.1",
"author": "Silverhand Inc. <contact@silverhand.io>",
"homepage": "https://github.com/logto-io/toolkit#readme",
"repository": {
Expand Down
12 changes: 11 additions & 1 deletion packages/tunnel/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @logto/tunnel

## 0.2.1

### Patch Changes

- 3c993d59c: fix an issue that prevent mp4 video from playing on Safari

Safari browser uses range request to fetch video data, but it was not supported by the `@logto/tunnel` CLI tool and `koa-serve-custom-ui-assets` middleware in core. This prevents our users who want to build custom sign-in pages with video background. In order to fix this, we need to partially read the video file stream based on the `range` request header, and set proper response headers and status code (206).

- Updated dependencies [3c993d59c]
- @logto/core-kit@2.5.1

## @logto/tunnel@0.2.0

### Minor Changes
Expand Down Expand Up @@ -83,4 +94,3 @@
If all set up correctly, when you click the "sign-in" button in your application, you should be navigated to your custom sign-in page instead of Logto's built-in UI, along with valid session (cookies) that allows you to further interact with Logto experience API.

Refer to [Logto tunnel documentation](https://docs.logto.dev/docs/references/tunnel-cli/) for more details.

2 changes: 1 addition & 1 deletion packages/tunnel/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@logto/tunnel",
"version": "0.2.0",
"version": "0.2.1",
"description": "A CLI tool that creates tunnel service to Logto Cloud for local development.",
"author": "Silverhand Inc. <contact@silverhand.io>",
"homepage": "https://github.com/logto-io/logto#readme",
Expand Down
Loading

0 comments on commit 035ba58

Please sign in to comment.