mirror of
https://github.com/logto-io/logto.git
synced 2024-12-16 20:26:19 -05:00
release: version packages
This commit is contained in:
parent
bbbfd01d7b
commit
e64dd4b911
23 changed files with 164 additions and 64 deletions
|
@ -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.
|
|
@ -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.
|
|
@ -1,5 +1,19 @@
|
|||
# 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
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@logto/cli",
|
||||
"version": "1.22.0",
|
||||
"version": "1.22.1",
|
||||
"description": "Logto CLI.",
|
||||
"author": "Silverhand Inc. <contact@silverhand.io>",
|
||||
"homepage": "https://github.com/logto-io/logto#readme",
|
||||
|
@ -43,8 +43,8 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@logto/connector-kit": "workspace:^4.1.0",
|
||||
"@logto/core-kit": "workspace:^2.5.0",
|
||||
"@logto/schemas": "workspace:1.22.0",
|
||||
"@logto/core-kit": "workspace:^2.5.2",
|
||||
"@logto/schemas": "workspace:1.22.1",
|
||||
"@logto/shared": "workspace:^3.1.2",
|
||||
"@silverhand/essentials": "^2.9.1",
|
||||
"@silverhand/slonik": "31.0.0-beta.2",
|
||||
|
|
|
@ -1,5 +1,22 @@
|
|||
# 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
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@logto/console",
|
||||
"version": "1.19.0",
|
||||
"version": "1.19.1",
|
||||
"description": "> TODO: description",
|
||||
"author": "Silverhand Inc. <contact@silverhand.io>",
|
||||
"homepage": "https://github.com/logto-io/logto#readme",
|
||||
|
@ -29,12 +29,12 @@
|
|||
"@jest/types": "^29.5.0",
|
||||
"@logto/cloud": "0.2.5-aac51e9",
|
||||
"@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/phrases": "workspace:^1.15.0",
|
||||
"@logto/phrases": "workspace:^1.15.1",
|
||||
"@logto/phrases-experience": "workspace:^1.9.0",
|
||||
"@logto/react": "^3.0.12",
|
||||
"@logto/schemas": "workspace:^1.22.0",
|
||||
"@logto/schemas": "workspace:^1.22.1",
|
||||
"@logto/shared": "workspace:^3.1.2",
|
||||
"@mdx-js/react": "^3.0.1",
|
||||
"@mdx-js/rollup": "^3.0.1",
|
||||
|
|
|
@ -1,5 +1,30 @@
|
|||
# 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
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@logto/core",
|
||||
"version": "1.22.0",
|
||||
"version": "1.22.1",
|
||||
"description": "The open source identity solution.",
|
||||
"main": "build/index.js",
|
||||
"author": "Silverhand Inc. <contact@silverhand.io>",
|
||||
|
@ -33,18 +33,18 @@
|
|||
"@koa/cors": "^5.0.0",
|
||||
"@logto/affiliate": "^0.1.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/console": "workspace:*",
|
||||
"@logto/core-kit": "workspace:^2.5.0",
|
||||
"@logto/core-kit": "workspace:^2.5.2",
|
||||
"@logto/demo-app": "workspace:*",
|
||||
"@logto/experience": "workspace:*",
|
||||
"@logto/experience-legacy": "workspace:*",
|
||||
"@logto/js": "^4.1.4",
|
||||
"@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/schemas": "workspace:^1.22.0",
|
||||
"@logto/schemas": "workspace:^1.22.1",
|
||||
"@logto/shared": "workspace:^3.1.2",
|
||||
"@silverhand/essentials": "^2.9.1",
|
||||
"@silverhand/slonik": "31.0.0-beta.2",
|
||||
|
|
|
@ -1,5 +1,12 @@
|
|||
# Change Log
|
||||
|
||||
## 1.22.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [217858950]
|
||||
- @logto/cli@1.22.1
|
||||
|
||||
## 1.22.0
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@logto/create",
|
||||
"version": "1.22.0",
|
||||
"version": "1.22.1",
|
||||
"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.22.0"
|
||||
"@logto/cli": "workspace:^1.22.1"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,5 +1,22 @@
|
|||
# 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
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@logto/integration-tests",
|
||||
"version": "1.10.0",
|
||||
"version": "1.10.1",
|
||||
"description": "Integration tests for Logto.",
|
||||
"author": "Silverhand Inc. <contact@silverhand.io>",
|
||||
"license": "MPL-2.0",
|
||||
|
@ -29,7 +29,7 @@
|
|||
"@logto/core-kit": "workspace:^",
|
||||
"@logto/js": "^4.1.4",
|
||||
"@logto/node": "^2.5.4",
|
||||
"@logto/schemas": "workspace:^1.22.0",
|
||||
"@logto/schemas": "workspace:^1.22.1",
|
||||
"@logto/shared": "workspace:^3.1.1",
|
||||
"@silverhand/eslint-config": "6.0.1",
|
||||
"@silverhand/essentials": "^2.9.1",
|
||||
|
|
|
@ -1,5 +1,22 @@
|
|||
# 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
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@logto/phrases",
|
||||
"version": "1.15.0",
|
||||
"version": "1.15.1",
|
||||
"description": "Logto shared phrases (i18n).",
|
||||
"author": "Silverhand Inc. <contact@silverhand.io>",
|
||||
"homepage": "https://github.com/logto-io/logto#readme",
|
||||
|
|
|
@ -1,5 +1,13 @@
|
|||
# Change Log
|
||||
|
||||
## 1.22.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [239b81e31]
|
||||
- @logto/core-kit@2.5.2
|
||||
- @logto/phrases@1.15.1
|
||||
|
||||
## 1.22.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@logto/schemas",
|
||||
"version": "1.22.0",
|
||||
"version": "1.22.1",
|
||||
"author": "Silverhand Inc. <contact@silverhand.io>",
|
||||
"license": "MPL-2.0",
|
||||
"type": "module",
|
||||
|
@ -79,9 +79,9 @@
|
|||
"prettier": "@silverhand/eslint-config/.prettierrc",
|
||||
"dependencies": {
|
||||
"@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/phrases": "workspace:^1.15.0",
|
||||
"@logto/phrases": "workspace:^1.15.1",
|
||||
"@logto/phrases-experience": "workspace:^1.9.0",
|
||||
"@logto/shared": "workspace:^3.1.2",
|
||||
"@withtyped/server": "^0.14.0",
|
||||
|
|
|
@ -1,5 +1,22 @@
|
|||
# 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
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@logto/core-kit",
|
||||
"version": "2.5.1",
|
||||
"version": "2.5.2",
|
||||
"author": "Silverhand Inc. <contact@silverhand.io>",
|
||||
"homepage": "https://github.com/logto-io/toolkit#readme",
|
||||
"repository": {
|
||||
|
|
|
@ -1,5 +1,12 @@
|
|||
# @logto/tunnel
|
||||
|
||||
## 0.2.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [239b81e31]
|
||||
- @logto/core-kit@2.5.2
|
||||
|
||||
## 0.2.2
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"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.",
|
||||
"author": "Silverhand Inc. <contact@silverhand.io>",
|
||||
"homepage": "https://github.com/logto-io/logto#readme",
|
||||
|
|
|
@ -107,10 +107,10 @@ importers:
|
|||
specifier: workspace:^4.1.0
|
||||
version: link:../toolkit/connector-kit
|
||||
'@logto/core-kit':
|
||||
specifier: workspace:^2.5.0
|
||||
specifier: workspace:^2.5.2
|
||||
version: link:../toolkit/core-kit
|
||||
'@logto/schemas':
|
||||
specifier: workspace:1.22.0
|
||||
specifier: workspace:1.22.1
|
||||
version: link:../schemas
|
||||
'@logto/shared':
|
||||
specifier: workspace:^3.1.2
|
||||
|
@ -2754,13 +2754,13 @@ importers:
|
|||
specifier: workspace:^4.1.0
|
||||
version: link:../toolkit/connector-kit
|
||||
'@logto/core-kit':
|
||||
specifier: workspace:^2.5.0
|
||||
specifier: workspace:^2.5.2
|
||||
version: link:../toolkit/core-kit
|
||||
'@logto/language-kit':
|
||||
specifier: workspace:^1.1.0
|
||||
version: link:../toolkit/language-kit
|
||||
'@logto/phrases':
|
||||
specifier: workspace:^1.15.0
|
||||
specifier: workspace:^1.15.1
|
||||
version: link:../phrases
|
||||
'@logto/phrases-experience':
|
||||
specifier: workspace:^1.9.0
|
||||
|
@ -2769,7 +2769,7 @@ importers:
|
|||
specifier: ^3.0.12
|
||||
version: 3.0.13(react@18.3.1)
|
||||
'@logto/schemas':
|
||||
specifier: workspace:^1.22.0
|
||||
specifier: workspace:^1.22.1
|
||||
version: link:../schemas
|
||||
'@logto/shared':
|
||||
specifier: workspace:^3.1.2
|
||||
|
@ -3051,7 +3051,7 @@ importers:
|
|||
specifier: workspace:^2.0.0
|
||||
version: link:../app-insights
|
||||
'@logto/cli':
|
||||
specifier: workspace:^1.22.0
|
||||
specifier: workspace:^1.22.1
|
||||
version: link:../cli
|
||||
'@logto/connector-kit':
|
||||
specifier: workspace:^4.1.0
|
||||
|
@ -3060,7 +3060,7 @@ importers:
|
|||
specifier: workspace:*
|
||||
version: link:../console
|
||||
'@logto/core-kit':
|
||||
specifier: workspace:^2.5.0
|
||||
specifier: workspace:^2.5.2
|
||||
version: link:../toolkit/core-kit
|
||||
'@logto/demo-app':
|
||||
specifier: workspace:*
|
||||
|
@ -3078,13 +3078,13 @@ importers:
|
|||
specifier: workspace:^1.1.0
|
||||
version: link:../toolkit/language-kit
|
||||
'@logto/phrases':
|
||||
specifier: workspace:^1.15.0
|
||||
specifier: workspace:^1.15.1
|
||||
version: link:../phrases
|
||||
'@logto/phrases-experience':
|
||||
specifier: workspace:^1.9.0
|
||||
version: link:../phrases-experience
|
||||
'@logto/schemas':
|
||||
specifier: workspace:^1.22.0
|
||||
specifier: workspace:^1.22.1
|
||||
version: link:../schemas
|
||||
'@logto/shared':
|
||||
specifier: workspace:^3.1.2
|
||||
|
@ -3358,7 +3358,7 @@ importers:
|
|||
packages/create:
|
||||
dependencies:
|
||||
'@logto/cli':
|
||||
specifier: workspace:^1.22.0
|
||||
specifier: workspace:^1.22.1
|
||||
version: link:../cli
|
||||
|
||||
packages/demo-app:
|
||||
|
@ -3963,7 +3963,7 @@ importers:
|
|||
specifier: ^2.5.4
|
||||
version: 2.5.4
|
||||
'@logto/schemas':
|
||||
specifier: workspace:^1.22.0
|
||||
specifier: workspace:^1.22.1
|
||||
version: link:../schemas
|
||||
'@logto/shared':
|
||||
specifier: workspace:^3.1.1
|
||||
|
@ -4100,13 +4100,13 @@ importers:
|
|||
specifier: workspace:^4.1.0
|
||||
version: link:../toolkit/connector-kit
|
||||
'@logto/core-kit':
|
||||
specifier: workspace:^2.5.0
|
||||
specifier: workspace:^2.5.2
|
||||
version: link:../toolkit/core-kit
|
||||
'@logto/language-kit':
|
||||
specifier: workspace:^1.1.0
|
||||
version: link:../toolkit/language-kit
|
||||
'@logto/phrases':
|
||||
specifier: workspace:^1.15.0
|
||||
specifier: workspace:^1.15.1
|
||||
version: link:../phrases
|
||||
'@logto/phrases-experience':
|
||||
specifier: workspace:^1.9.0
|
||||
|
|
Loading…
Reference in a new issue