0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-30 20:33:54 -05:00

release: version packages

This commit is contained in:
silverhand-bot 2024-12-16 08:23:31 +00:00
parent bbbfd01d7b
commit e64dd4b911
No known key found for this signature in database
GPG key ID: 8743812EA5D7B09A
23 changed files with 164 additions and 64 deletions

View file

@ -1,9 +0,0 @@
---
"@logto/cli": patch
---
fix fetch official connector list CLI command error
Due to changes in the npm registry API (`https://registry.npmjs.org/-/v1/search`) that our CLI add official connector depends on, the new API behavior returns irrelevant search results.
We need to manually filter out these irrelevant results to avoid potential infinite loops, where each loop triggers an API call, eventually hitting a rate limit and resulting in a status code 429.

View file

@ -1,20 +0,0 @@
---
"@logto/integration-tests": patch
"@logto/core-kit": patch
"@logto/console": patch
"@logto/phrases": patch
"@logto/core": patch
---
loose redirect uri restrictions
Logto has been following the industry best practices for OAuth2.0 and OIDC from the start. However, in the real world, there are things we cannot control, like third-party services or operation systems like Windows.
This update relaxes restrictions on redirect URIs to allow the following:
1. A mix of native and HTTP(S) redirect URIs. For example, a native app can now use a redirect URI like `https://example.com`.
2. Native schemes without a period (`.`). For example, `myapp://callback` is now allowed.
When such URIs are configured, Logto Console will display a prominent warning. This change is backward-compatible and will not affect existing applications.
We hope this change will make it easier for you to integrate Logto with your applications.

View file

@ -1,5 +1,19 @@
# Change Log # Change Log
## 1.22.1
### Patch Changes
- 217858950: fix fetch official connector list CLI command error
Due to changes in the npm registry API (`https://registry.npmjs.org/-/v1/search`) that our CLI add official connector depends on, the new API behavior returns irrelevant search results.
We need to manually filter out these irrelevant results to avoid potential infinite loops, where each loop triggers an API call, eventually hitting a rate limit and resulting in a status code 429.
- Updated dependencies [239b81e31]
- @logto/core-kit@2.5.2
- @logto/schemas@1.22.1
## 1.22.0 ## 1.22.0
### Patch Changes ### Patch Changes

View file

@ -1,6 +1,6 @@
{ {
"name": "@logto/cli", "name": "@logto/cli",
"version": "1.22.0", "version": "1.22.1",
"description": "Logto CLI.", "description": "Logto CLI.",
"author": "Silverhand Inc. <contact@silverhand.io>", "author": "Silverhand Inc. <contact@silverhand.io>",
"homepage": "https://github.com/logto-io/logto#readme", "homepage": "https://github.com/logto-io/logto#readme",
@ -43,8 +43,8 @@
}, },
"dependencies": { "dependencies": {
"@logto/connector-kit": "workspace:^4.1.0", "@logto/connector-kit": "workspace:^4.1.0",
"@logto/core-kit": "workspace:^2.5.0", "@logto/core-kit": "workspace:^2.5.2",
"@logto/schemas": "workspace:1.22.0", "@logto/schemas": "workspace:1.22.1",
"@logto/shared": "workspace:^3.1.2", "@logto/shared": "workspace:^3.1.2",
"@silverhand/essentials": "^2.9.1", "@silverhand/essentials": "^2.9.1",
"@silverhand/slonik": "31.0.0-beta.2", "@silverhand/slonik": "31.0.0-beta.2",

View file

@ -1,5 +1,22 @@
# Change Log # Change Log
## 1.19.1
### Patch Changes
- 239b81e31: loose redirect uri restrictions
Logto has been following the industry best practices for OAuth2.0 and OIDC from the start. However, in the real world, there are things we cannot control, like third-party services or operation systems like Windows.
This update relaxes restrictions on redirect URIs to allow the following:
1. A mix of native and HTTP(S) redirect URIs. For example, a native app can now use a redirect URI like `https://example.com`.
2. Native schemes without a period (`.`). For example, `myapp://callback` is now allowed.
When such URIs are configured, Logto Console will display a prominent warning. This change is backward-compatible and will not affect existing applications.
We hope this change will make it easier for you to integrate Logto with your applications.
## 1.19.0 ## 1.19.0
### Minor Changes ### Minor Changes

View file

@ -1,6 +1,6 @@
{ {
"name": "@logto/console", "name": "@logto/console",
"version": "1.19.0", "version": "1.19.1",
"description": "> TODO: description", "description": "> TODO: description",
"author": "Silverhand Inc. <contact@silverhand.io>", "author": "Silverhand Inc. <contact@silverhand.io>",
"homepage": "https://github.com/logto-io/logto#readme", "homepage": "https://github.com/logto-io/logto#readme",
@ -29,12 +29,12 @@
"@jest/types": "^29.5.0", "@jest/types": "^29.5.0",
"@logto/cloud": "0.2.5-aac51e9", "@logto/cloud": "0.2.5-aac51e9",
"@logto/connector-kit": "workspace:^4.1.0", "@logto/connector-kit": "workspace:^4.1.0",
"@logto/core-kit": "workspace:^2.5.0", "@logto/core-kit": "workspace:^2.5.2",
"@logto/language-kit": "workspace:^1.1.0", "@logto/language-kit": "workspace:^1.1.0",
"@logto/phrases": "workspace:^1.15.0", "@logto/phrases": "workspace:^1.15.1",
"@logto/phrases-experience": "workspace:^1.9.0", "@logto/phrases-experience": "workspace:^1.9.0",
"@logto/react": "^3.0.12", "@logto/react": "^3.0.12",
"@logto/schemas": "workspace:^1.22.0", "@logto/schemas": "workspace:^1.22.1",
"@logto/shared": "workspace:^3.1.2", "@logto/shared": "workspace:^3.1.2",
"@mdx-js/react": "^3.0.1", "@mdx-js/react": "^3.0.1",
"@mdx-js/rollup": "^3.0.1", "@mdx-js/rollup": "^3.0.1",

View file

@ -1,5 +1,30 @@
# Change Log # Change Log
## 1.22.1
### Patch Changes
- 239b81e31: loose redirect uri restrictions
Logto has been following the industry best practices for OAuth2.0 and OIDC from the start. However, in the real world, there are things we cannot control, like third-party services or operation systems like Windows.
This update relaxes restrictions on redirect URIs to allow the following:
1. A mix of native and HTTP(S) redirect URIs. For example, a native app can now use a redirect URI like `https://example.com`.
2. Native schemes without a period (`.`). For example, `myapp://callback` is now allowed.
When such URIs are configured, Logto Console will display a prominent warning. This change is backward-compatible and will not affect existing applications.
We hope this change will make it easier for you to integrate Logto with your applications.
- Updated dependencies [217858950]
- Updated dependencies [239b81e31]
- @logto/cli@1.22.1
- @logto/core-kit@2.5.2
- @logto/console@1.19.1
- @logto/phrases@1.15.1
- @logto/schemas@1.22.1
## 1.22.0 ## 1.22.0
### Minor Changes ### Minor Changes

View file

@ -1,6 +1,6 @@
{ {
"name": "@logto/core", "name": "@logto/core",
"version": "1.22.0", "version": "1.22.1",
"description": "The open source identity solution.", "description": "The open source identity solution.",
"main": "build/index.js", "main": "build/index.js",
"author": "Silverhand Inc. <contact@silverhand.io>", "author": "Silverhand Inc. <contact@silverhand.io>",
@ -33,18 +33,18 @@
"@koa/cors": "^5.0.0", "@koa/cors": "^5.0.0",
"@logto/affiliate": "^0.1.0", "@logto/affiliate": "^0.1.0",
"@logto/app-insights": "workspace:^2.0.0", "@logto/app-insights": "workspace:^2.0.0",
"@logto/cli": "workspace:^1.22.0", "@logto/cli": "workspace:^1.22.1",
"@logto/connector-kit": "workspace:^4.1.0", "@logto/connector-kit": "workspace:^4.1.0",
"@logto/console": "workspace:*", "@logto/console": "workspace:*",
"@logto/core-kit": "workspace:^2.5.0", "@logto/core-kit": "workspace:^2.5.2",
"@logto/demo-app": "workspace:*", "@logto/demo-app": "workspace:*",
"@logto/experience": "workspace:*", "@logto/experience": "workspace:*",
"@logto/experience-legacy": "workspace:*", "@logto/experience-legacy": "workspace:*",
"@logto/js": "^4.1.4", "@logto/js": "^4.1.4",
"@logto/language-kit": "workspace:^1.1.0", "@logto/language-kit": "workspace:^1.1.0",
"@logto/phrases": "workspace:^1.15.0", "@logto/phrases": "workspace:^1.15.1",
"@logto/phrases-experience": "workspace:^1.9.0", "@logto/phrases-experience": "workspace:^1.9.0",
"@logto/schemas": "workspace:^1.22.0", "@logto/schemas": "workspace:^1.22.1",
"@logto/shared": "workspace:^3.1.2", "@logto/shared": "workspace:^3.1.2",
"@silverhand/essentials": "^2.9.1", "@silverhand/essentials": "^2.9.1",
"@silverhand/slonik": "31.0.0-beta.2", "@silverhand/slonik": "31.0.0-beta.2",

View file

@ -1,5 +1,12 @@
# Change Log # Change Log
## 1.22.1
### Patch Changes
- Updated dependencies [217858950]
- @logto/cli@1.22.1
## 1.22.0 ## 1.22.0
### Patch Changes ### Patch Changes

View file

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

View file

@ -1,5 +1,22 @@
# Change Log # Change Log
## 1.10.1
### Patch Changes
- 239b81e31: loose redirect uri restrictions
Logto has been following the industry best practices for OAuth2.0 and OIDC from the start. However, in the real world, there are things we cannot control, like third-party services or operation systems like Windows.
This update relaxes restrictions on redirect URIs to allow the following:
1. A mix of native and HTTP(S) redirect URIs. For example, a native app can now use a redirect URI like `https://example.com`.
2. Native schemes without a period (`.`). For example, `myapp://callback` is now allowed.
When such URIs are configured, Logto Console will display a prominent warning. This change is backward-compatible and will not affect existing applications.
We hope this change will make it easier for you to integrate Logto with your applications.
## 1.10.0 ## 1.10.0
### Minor Changes ### Minor Changes

View file

@ -1,6 +1,6 @@
{ {
"name": "@logto/integration-tests", "name": "@logto/integration-tests",
"version": "1.10.0", "version": "1.10.1",
"description": "Integration tests for Logto.", "description": "Integration tests for Logto.",
"author": "Silverhand Inc. <contact@silverhand.io>", "author": "Silverhand Inc. <contact@silverhand.io>",
"license": "MPL-2.0", "license": "MPL-2.0",
@ -29,7 +29,7 @@
"@logto/core-kit": "workspace:^", "@logto/core-kit": "workspace:^",
"@logto/js": "^4.1.4", "@logto/js": "^4.1.4",
"@logto/node": "^2.5.4", "@logto/node": "^2.5.4",
"@logto/schemas": "workspace:^1.22.0", "@logto/schemas": "workspace:^1.22.1",
"@logto/shared": "workspace:^3.1.1", "@logto/shared": "workspace:^3.1.1",
"@silverhand/eslint-config": "6.0.1", "@silverhand/eslint-config": "6.0.1",
"@silverhand/essentials": "^2.9.1", "@silverhand/essentials": "^2.9.1",

View file

@ -1,5 +1,22 @@
# Change Log # Change Log
## 1.15.1
### Patch Changes
- 239b81e31: loose redirect uri restrictions
Logto has been following the industry best practices for OAuth2.0 and OIDC from the start. However, in the real world, there are things we cannot control, like third-party services or operation systems like Windows.
This update relaxes restrictions on redirect URIs to allow the following:
1. A mix of native and HTTP(S) redirect URIs. For example, a native app can now use a redirect URI like `https://example.com`.
2. Native schemes without a period (`.`). For example, `myapp://callback` is now allowed.
When such URIs are configured, Logto Console will display a prominent warning. This change is backward-compatible and will not affect existing applications.
We hope this change will make it easier for you to integrate Logto with your applications.
## 1.15.0 ## 1.15.0
### Minor Changes ### Minor Changes

View file

@ -1,6 +1,6 @@
{ {
"name": "@logto/phrases", "name": "@logto/phrases",
"version": "1.15.0", "version": "1.15.1",
"description": "Logto shared phrases (i18n).", "description": "Logto shared phrases (i18n).",
"author": "Silverhand Inc. <contact@silverhand.io>", "author": "Silverhand Inc. <contact@silverhand.io>",
"homepage": "https://github.com/logto-io/logto#readme", "homepage": "https://github.com/logto-io/logto#readme",

View file

@ -1,5 +1,13 @@
# Change Log # Change Log
## 1.22.1
### Patch Changes
- Updated dependencies [239b81e31]
- @logto/core-kit@2.5.2
- @logto/phrases@1.15.1
## 1.22.0 ## 1.22.0
### Minor Changes ### Minor Changes

View file

@ -1,6 +1,6 @@
{ {
"name": "@logto/schemas", "name": "@logto/schemas",
"version": "1.22.0", "version": "1.22.1",
"author": "Silverhand Inc. <contact@silverhand.io>", "author": "Silverhand Inc. <contact@silverhand.io>",
"license": "MPL-2.0", "license": "MPL-2.0",
"type": "module", "type": "module",
@ -79,9 +79,9 @@
"prettier": "@silverhand/eslint-config/.prettierrc", "prettier": "@silverhand/eslint-config/.prettierrc",
"dependencies": { "dependencies": {
"@logto/connector-kit": "workspace:^4.1.0", "@logto/connector-kit": "workspace:^4.1.0",
"@logto/core-kit": "workspace:^2.5.0", "@logto/core-kit": "workspace:^2.5.2",
"@logto/language-kit": "workspace:^1.1.0", "@logto/language-kit": "workspace:^1.1.0",
"@logto/phrases": "workspace:^1.15.0", "@logto/phrases": "workspace:^1.15.1",
"@logto/phrases-experience": "workspace:^1.9.0", "@logto/phrases-experience": "workspace:^1.9.0",
"@logto/shared": "workspace:^3.1.2", "@logto/shared": "workspace:^3.1.2",
"@withtyped/server": "^0.14.0", "@withtyped/server": "^0.14.0",

View file

@ -1,5 +1,22 @@
# Change Log # Change Log
## 2.5.2
### Patch Changes
- 239b81e31: loose redirect uri restrictions
Logto has been following the industry best practices for OAuth2.0 and OIDC from the start. However, in the real world, there are things we cannot control, like third-party services or operation systems like Windows.
This update relaxes restrictions on redirect URIs to allow the following:
1. A mix of native and HTTP(S) redirect URIs. For example, a native app can now use a redirect URI like `https://example.com`.
2. Native schemes without a period (`.`). For example, `myapp://callback` is now allowed.
When such URIs are configured, Logto Console will display a prominent warning. This change is backward-compatible and will not affect existing applications.
We hope this change will make it easier for you to integrate Logto with your applications.
## 2.5.1 ## 2.5.1
### Patch Changes ### Patch Changes

View file

@ -1,6 +1,6 @@
{ {
"name": "@logto/core-kit", "name": "@logto/core-kit",
"version": "2.5.1", "version": "2.5.2",
"author": "Silverhand Inc. <contact@silverhand.io>", "author": "Silverhand Inc. <contact@silverhand.io>",
"homepage": "https://github.com/logto-io/toolkit#readme", "homepage": "https://github.com/logto-io/toolkit#readme",
"repository": { "repository": {

View file

@ -1,5 +1,12 @@
# @logto/tunnel # @logto/tunnel
## 0.2.3
### Patch Changes
- Updated dependencies [239b81e31]
- @logto/core-kit@2.5.2
## 0.2.2 ## 0.2.2
### Patch Changes ### Patch Changes

View file

@ -1,6 +1,6 @@
{ {
"name": "@logto/tunnel", "name": "@logto/tunnel",
"version": "0.2.2", "version": "0.2.3",
"description": "A CLI tool that creates tunnel service to Logto Cloud for local development.", "description": "A CLI tool that creates tunnel service to Logto Cloud for local development.",
"author": "Silverhand Inc. <contact@silverhand.io>", "author": "Silverhand Inc. <contact@silverhand.io>",
"homepage": "https://github.com/logto-io/logto#readme", "homepage": "https://github.com/logto-io/logto#readme",

View file

@ -107,10 +107,10 @@ importers:
specifier: workspace:^4.1.0 specifier: workspace:^4.1.0
version: link:../toolkit/connector-kit version: link:../toolkit/connector-kit
'@logto/core-kit': '@logto/core-kit':
specifier: workspace:^2.5.0 specifier: workspace:^2.5.2
version: link:../toolkit/core-kit version: link:../toolkit/core-kit
'@logto/schemas': '@logto/schemas':
specifier: workspace:1.22.0 specifier: workspace:1.22.1
version: link:../schemas version: link:../schemas
'@logto/shared': '@logto/shared':
specifier: workspace:^3.1.2 specifier: workspace:^3.1.2
@ -2754,13 +2754,13 @@ importers:
specifier: workspace:^4.1.0 specifier: workspace:^4.1.0
version: link:../toolkit/connector-kit version: link:../toolkit/connector-kit
'@logto/core-kit': '@logto/core-kit':
specifier: workspace:^2.5.0 specifier: workspace:^2.5.2
version: link:../toolkit/core-kit version: link:../toolkit/core-kit
'@logto/language-kit': '@logto/language-kit':
specifier: workspace:^1.1.0 specifier: workspace:^1.1.0
version: link:../toolkit/language-kit version: link:../toolkit/language-kit
'@logto/phrases': '@logto/phrases':
specifier: workspace:^1.15.0 specifier: workspace:^1.15.1
version: link:../phrases version: link:../phrases
'@logto/phrases-experience': '@logto/phrases-experience':
specifier: workspace:^1.9.0 specifier: workspace:^1.9.0
@ -2769,7 +2769,7 @@ importers:
specifier: ^3.0.12 specifier: ^3.0.12
version: 3.0.13(react@18.3.1) version: 3.0.13(react@18.3.1)
'@logto/schemas': '@logto/schemas':
specifier: workspace:^1.22.0 specifier: workspace:^1.22.1
version: link:../schemas version: link:../schemas
'@logto/shared': '@logto/shared':
specifier: workspace:^3.1.2 specifier: workspace:^3.1.2
@ -3051,7 +3051,7 @@ importers:
specifier: workspace:^2.0.0 specifier: workspace:^2.0.0
version: link:../app-insights version: link:../app-insights
'@logto/cli': '@logto/cli':
specifier: workspace:^1.22.0 specifier: workspace:^1.22.1
version: link:../cli version: link:../cli
'@logto/connector-kit': '@logto/connector-kit':
specifier: workspace:^4.1.0 specifier: workspace:^4.1.0
@ -3060,7 +3060,7 @@ importers:
specifier: workspace:* specifier: workspace:*
version: link:../console version: link:../console
'@logto/core-kit': '@logto/core-kit':
specifier: workspace:^2.5.0 specifier: workspace:^2.5.2
version: link:../toolkit/core-kit version: link:../toolkit/core-kit
'@logto/demo-app': '@logto/demo-app':
specifier: workspace:* specifier: workspace:*
@ -3078,13 +3078,13 @@ importers:
specifier: workspace:^1.1.0 specifier: workspace:^1.1.0
version: link:../toolkit/language-kit version: link:../toolkit/language-kit
'@logto/phrases': '@logto/phrases':
specifier: workspace:^1.15.0 specifier: workspace:^1.15.1
version: link:../phrases version: link:../phrases
'@logto/phrases-experience': '@logto/phrases-experience':
specifier: workspace:^1.9.0 specifier: workspace:^1.9.0
version: link:../phrases-experience version: link:../phrases-experience
'@logto/schemas': '@logto/schemas':
specifier: workspace:^1.22.0 specifier: workspace:^1.22.1
version: link:../schemas version: link:../schemas
'@logto/shared': '@logto/shared':
specifier: workspace:^3.1.2 specifier: workspace:^3.1.2
@ -3358,7 +3358,7 @@ importers:
packages/create: packages/create:
dependencies: dependencies:
'@logto/cli': '@logto/cli':
specifier: workspace:^1.22.0 specifier: workspace:^1.22.1
version: link:../cli version: link:../cli
packages/demo-app: packages/demo-app:
@ -3963,7 +3963,7 @@ importers:
specifier: ^2.5.4 specifier: ^2.5.4
version: 2.5.4 version: 2.5.4
'@logto/schemas': '@logto/schemas':
specifier: workspace:^1.22.0 specifier: workspace:^1.22.1
version: link:../schemas version: link:../schemas
'@logto/shared': '@logto/shared':
specifier: workspace:^3.1.1 specifier: workspace:^3.1.1
@ -4100,13 +4100,13 @@ importers:
specifier: workspace:^4.1.0 specifier: workspace:^4.1.0
version: link:../toolkit/connector-kit version: link:../toolkit/connector-kit
'@logto/core-kit': '@logto/core-kit':
specifier: workspace:^2.5.0 specifier: workspace:^2.5.2
version: link:../toolkit/core-kit version: link:../toolkit/core-kit
'@logto/language-kit': '@logto/language-kit':
specifier: workspace:^1.1.0 specifier: workspace:^1.1.0
version: link:../toolkit/language-kit version: link:../toolkit/language-kit
'@logto/phrases': '@logto/phrases':
specifier: workspace:^1.15.0 specifier: workspace:^1.15.1
version: link:../phrases version: link:../phrases
'@logto/phrases-experience': '@logto/phrases-experience':
specifier: workspace:^1.9.0 specifier: workspace:^1.9.0