0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-16 20:26:19 -05:00

release: version packages (#6631)

This commit is contained in:
silverhand-bot 2024-10-25 17:26:36 +08:00 committed by GitHub
parent 8f59a20c22
commit f48d3a1f95
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
30 changed files with 126 additions and 73 deletions

View file

@ -1,8 +0,0 @@
---
"@logto/shared": patch
"@logto/core": patch
---
add environment variable to override default database connection timeout
By default, out database connection timeout is set to 5 seconds, which might not be enough for some network conditions. This change allows users to override the default value by setting the `DATABASE_CONNECTION_TIMEOUT` environment variable.

View file

@ -1,5 +0,0 @@
---
"@logto/connector-google": minor
---
update the default `prompts` to be `select_account`

View file

@ -1,8 +0,0 @@
---
"@logto/phrases": patch
"@logto/core": patch
---
fix an issue that prevent mp4 video from playing in custom sign-in pages on Safari browser
Safari browser uses range request to fetch video data, but it was not supported by the `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).

View file

@ -1,7 +0,0 @@
---
"@logto/connector-gatewayapi-sms": major
---
add GatewayAPI SMS connector
You can now send SMS messages via GatewayAPI, check out the README in the connector package or the guide in connector page of Console for more details.

View file

@ -1,5 +0,0 @@
---
"@logto/console": patch
---
Connector config default values should only show up when creating new connectors

View file

@ -1,5 +0,0 @@
---
"@logto/core": minor
---
add GatewayAPI SMS connector

View file

@ -1,5 +1,13 @@
# Change Log
## 1.21.0
### Patch Changes
- Updated dependencies [bc2a0ac03]
- @logto/shared@3.1.2
- @logto/schemas@1.21.0
## 1.20.0
### Minor Changes

View file

@ -1,6 +1,6 @@
{
"name": "@logto/cli",
"version": "1.20.0",
"version": "1.21.0",
"description": "Logto CLI.",
"author": "Silverhand Inc. <contact@silverhand.io>",
"homepage": "https://github.com/logto-io/logto#readme",
@ -44,8 +44,8 @@
"dependencies": {
"@logto/connector-kit": "workspace:^4.0.0",
"@logto/core-kit": "workspace:^2.5.0",
"@logto/schemas": "workspace:1.20.0",
"@logto/shared": "workspace:^3.1.1",
"@logto/schemas": "workspace:1.21.0",
"@logto/shared": "workspace:^3.1.2",
"@silverhand/essentials": "^2.9.1",
"@silverhand/slonik": "31.0.0-beta.2",
"chalk": "^5.3.0",

View file

@ -0,0 +1,9 @@
# @logto/connector-gatewayapi-sms
## 1.0.0
### Major Changes
- eae1c30e2: add GatewayAPI SMS connector
You can now send SMS messages via GatewayAPI, check out the README in the connector package or the guide in connector page of Console for more details.

View file

@ -1,6 +1,6 @@
{
"name": "@logto/connector-gatewayapi-sms",
"version": "0.0.0",
"version": "1.0.0",
"description": "GatewayAPI SMS connector implementation.",
"author": "Silverhand Inc. <contact@silverhand.io>",
"dependencies": {

View file

@ -1,5 +1,11 @@
# @logto/connector-google
## 1.6.0
### Minor Changes
- 5bb937505: update the default `prompts` to be `select_account`
## 1.5.0
### Minor Changes

View file

@ -1,6 +1,6 @@
{
"name": "@logto/connector-google",
"version": "1.5.0",
"version": "1.6.0",
"description": "Google web connector implementation.",
"author": "Silverhand Inc. <contact@silverhand.io>",
"dependencies": {

View file

@ -1,5 +1,11 @@
# Change Log
## 1.18.1
### Patch Changes
- 5bb937505: Connector config default values should only show up when creating new connectors
## 1.18.0
### Minor Changes

View file

@ -1,6 +1,6 @@
{
"name": "@logto/console",
"version": "1.18.0",
"version": "1.18.1",
"description": "> TODO: description",
"author": "Silverhand Inc. <contact@silverhand.io>",
"homepage": "https://github.com/logto-io/logto#readme",
@ -31,11 +31,11 @@
"@logto/connector-kit": "workspace:^4.0.0",
"@logto/core-kit": "workspace:^2.5.0",
"@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/react": "^3.0.12",
"@logto/schemas": "workspace:^1.20.0",
"@logto/shared": "workspace:^3.1.1",
"@logto/schemas": "workspace:^1.21.0",
"@logto/shared": "workspace:^3.1.2",
"@mdx-js/react": "^3.0.1",
"@mdx-js/rollup": "^3.0.1",
"@monaco-editor/react": "^4.6.0",

View file

@ -1,5 +1,30 @@
# Change Log
## 1.21.0
### Minor Changes
- eae1c30e2: add GatewayAPI SMS connector
### Patch Changes
- bc2a0ac03: add environment variable to override default database connection timeout
By default, out database connection timeout is set to 5 seconds, which might not be enough for some network conditions. This change allows users to override the default value by setting the `DATABASE_CONNECTION_TIMEOUT` environment variable.
- 3c993d59c: fix an issue that prevent mp4 video from playing in custom sign-in pages on Safari browser
Safari browser uses range request to fetch video data, but it was not supported by the `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 [bc2a0ac03]
- Updated dependencies [3c993d59c]
- Updated dependencies [5bb937505]
- @logto/shared@3.1.2
- @logto/phrases@1.14.1
- @logto/console@1.18.1
- @logto/schemas@1.21.0
- @logto/cli@1.21.0
## 1.20.0
### Minor Changes

View file

@ -1,6 +1,6 @@
{
"name": "@logto/core",
"version": "1.20.0",
"version": "1.21.0",
"description": "The open source identity solution.",
"main": "build/index.js",
"author": "Silverhand Inc. <contact@silverhand.io>",
@ -33,7 +33,7 @@
"@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.21.0",
"@logto/connector-kit": "workspace:^4.0.0",
"@logto/console": "workspace:*",
"@logto/core-kit": "workspace:^2.5.0",
@ -42,10 +42,10 @@
"@logto/experience-legacy": "workspace:*",
"@logto/js": "^4.1.4",
"@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/shared": "workspace:^3.1.1",
"@logto/schemas": "workspace:^1.21.0",
"@logto/shared": "workspace:^3.1.2",
"@silverhand/essentials": "^2.9.1",
"@silverhand/slonik": "31.0.0-beta.2",
"@simplewebauthn/server": "^10.0.0",

View file

@ -1,5 +1,11 @@
# Change Log
## 1.21.0
### Patch Changes
- @logto/cli@1.21.0
## 1.20.0
### Patch Changes

View file

@ -1,6 +1,6 @@
{
"name": "@logto/create",
"version": "1.20.0",
"version": "1.21.0",
"author": "Silverhand Inc. <contact@silverhand.io>",
"license": "MPL-2.0",
"type": "module",
@ -15,6 +15,6 @@
"node": "^20.9.0"
},
"dependencies": {
"@logto/cli": "workspace:^1.20.0"
"@logto/cli": "workspace:^1.21.0"
}
}

View file

@ -1,5 +1,13 @@
# Change Log
## 1.14.1
### Patch Changes
- 3c993d59c: fix an issue that prevent mp4 video from playing in custom sign-in pages on Safari browser
Safari browser uses range request to fetch video data, but it was not supported by the `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

View file

@ -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",

View file

@ -1,5 +1,14 @@
# Change Log
## 1.21.0
### Patch Changes
- Updated dependencies [bc2a0ac03]
- Updated dependencies [3c993d59c]
- @logto/shared@3.1.2
- @logto/phrases@1.14.1
## 1.20.0
### Minor Changes

View file

@ -1,6 +1,6 @@
{
"name": "@logto/schemas",
"version": "1.20.0",
"version": "1.21.0",
"author": "Silverhand Inc. <contact@silverhand.io>",
"license": "MPL-2.0",
"type": "module",
@ -81,9 +81,9 @@
"@logto/connector-kit": "workspace:^4.0.0",
"@logto/core-kit": "workspace:^2.5.0",
"@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",
"@logto/shared": "workspace:^3.1.2",
"@withtyped/server": "^0.14.0",
"nanoid": "^5.0.1"
},

View file

@ -1,5 +1,13 @@
# Change Log
## 3.1.2
### Patch Changes
- bc2a0ac03: add environment variable to override default database connection timeout
By default, out database connection timeout is set to 5 seconds, which might not be enough for some network conditions. This change allows users to override the default value by setting the `DATABASE_CONNECTION_TIMEOUT` environment variable.
## 3.1.1
### Patch Changes

View file

@ -1,6 +1,6 @@
{
"name": "@logto/shared",
"version": "3.1.1",
"version": "3.1.2",
"main": "lib/index.js",
"author": "Silverhand Inc. <contact@silverhand.io>",
"license": "MPL-2.0",

View file

@ -1,5 +1,12 @@
# @logto/tunnel
## 0.2.2
### Patch Changes
- Updated dependencies [bc2a0ac03]
- @logto/shared@3.1.2
## @logto/tunnel@0.2.1
### Patch Changes
@ -94,4 +101,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.

View file

@ -1,6 +1,6 @@
{
"name": "@logto/tunnel",
"version": "0.2.1",
"version": "0.2.2",
"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",

View file

@ -98,10 +98,10 @@ importers:
specifier: workspace:^2.5.0
version: link:../toolkit/core-kit
'@logto/schemas':
specifier: workspace:1.20.0
specifier: workspace:1.21.0
version: link:../schemas
'@logto/shared':
specifier: workspace:^3.1.1
specifier: workspace:^3.1.2
version: link:../shared
'@silverhand/essentials':
specifier: ^2.9.1
@ -2693,7 +2693,7 @@ importers:
specifier: workspace:^1.1.0
version: link:../toolkit/language-kit
'@logto/phrases':
specifier: workspace:^1.14.0
specifier: workspace:^1.14.1
version: link:../phrases
'@logto/phrases-experience':
specifier: workspace:^1.8.0
@ -2702,10 +2702,10 @@ importers:
specifier: ^3.0.12
version: 3.0.13(react@18.3.1)
'@logto/schemas':
specifier: workspace:^1.20.0
specifier: workspace:^1.21.0
version: link:../schemas
'@logto/shared':
specifier: workspace:^3.1.1
specifier: workspace:^3.1.2
version: link:../shared
'@mdx-js/react':
specifier: ^3.0.1
@ -2987,7 +2987,7 @@ importers:
specifier: workspace:^2.0.0
version: link:../app-insights
'@logto/cli':
specifier: workspace:^1.20.0
specifier: workspace:^1.21.0
version: link:../cli
'@logto/connector-kit':
specifier: workspace:^4.0.0
@ -3014,16 +3014,16 @@ importers:
specifier: workspace:^1.1.0
version: link:../toolkit/language-kit
'@logto/phrases':
specifier: workspace:^1.14.0
specifier: workspace:^1.14.1
version: link:../phrases
'@logto/phrases-experience':
specifier: workspace:^1.8.0
version: link:../phrases-experience
'@logto/schemas':
specifier: workspace:^1.20.0
specifier: workspace:^1.21.0
version: link:../schemas
'@logto/shared':
specifier: workspace:^3.1.1
specifier: workspace:^3.1.2
version: link:../shared
'@silverhand/essentials':
specifier: ^2.9.1
@ -3288,7 +3288,7 @@ importers:
packages/create:
dependencies:
'@logto/cli':
specifier: workspace:^1.20.0
specifier: workspace:^1.21.0
version: link:../cli
packages/demo-app:
@ -4036,13 +4036,13 @@ importers:
specifier: workspace:^1.1.0
version: link:../toolkit/language-kit
'@logto/phrases':
specifier: workspace:^1.14.0
specifier: workspace:^1.14.1
version: link:../phrases
'@logto/phrases-experience':
specifier: workspace:^1.8.0
version: link:../phrases-experience
'@logto/shared':
specifier: workspace:^3.1.1
specifier: workspace:^3.1.2
version: link:../shared
'@withtyped/server':
specifier: ^0.14.0