Skip to content

Commit

Permalink
release: version packages (#6850)
Browse files Browse the repository at this point in the history
* release: version packages

* chore: update new connectors version number

---------

Co-authored-by: Darcy Ye <darcyye@silverhand.io>
  • Loading branch information
silverhand-bot and darcyYe authored Jan 2, 2025
1 parent 3004ae9 commit 460ea89
Show file tree
Hide file tree
Showing 33 changed files with 320 additions and 112 deletions.
5 changes: 0 additions & 5 deletions .changeset/brown-donkeys-share.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/chilled-radios-cover.md

This file was deleted.

24 changes: 0 additions & 24 deletions .changeset/hot-oranges-join.md

This file was deleted.

20 changes: 0 additions & 20 deletions .changeset/nervous-apes-suffer.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/rotten-lizards-buy.md

This file was deleted.

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

## 1.23.0

### 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 [f1b1d9e95]
- Updated dependencies [239b81e31]
- @logto/schemas@1.23.0
- @logto/core-kit@2.5.2

## 1.22.0

### Patch 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.22.0",
"version": "1.23.0",
"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.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.23.0",
"@logto/shared": "workspace:^3.1.2",
"@silverhand/essentials": "^2.9.1",
"@silverhand/slonik": "31.0.0-beta.2",
Expand Down
7 changes: 7 additions & 0 deletions packages/connectors/connector-xiaomi/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# @logto/connector-xiaomi

## 1.0.0

### Minor Changes

- 3fa2b796e: add Xiaomi social connector
7 changes: 7 additions & 0 deletions packages/connectors/connector-yunpian-sms/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# @logto/connector-yunpian-sms

## 1.0.0

### Minor Changes

- 3004ae9a6: add YunPian SMS connector
34 changes: 34 additions & 0 deletions packages/console/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,39 @@
# Change Log

## 1.20.0

### Minor Changes

- f1b1d9e95: new MFA prompt policy

You can now cutomize the MFA prompt policy in the Console.

First, choose if you want to enable **Require MFA**:

- **Enable**: Users will be prompted to set up MFA during the sign-in process which cannot be skipped. If the user fails to set up MFA or deletes their MFA settings, they will be locked out of their account until they set up MFA again.
- **Disable**: Users can skip the MFA setup process during sign-up flow.

If you choose to **Disable**, you can choose the MFA setup prompt:

- Do not ask users to set up MFA.
- Ask users to set up MFA during registration (skippable, one-time prompt). **The same prompt as previous policy (UserControlled)**
- Ask users to set up MFA on their sign-in after registration (skippable, one-time prompt)

### 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
Expand Down
8 changes: 4 additions & 4 deletions packages/console/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@logto/console",
"version": "1.19.0",
"version": "1.20.0",
"description": "> TODO: description",
"author": "Silverhand Inc. <contact@silverhand.io>",
"homepage": "https://github.com/logto-io/logto#readme",
Expand Down Expand Up @@ -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.16.0",
"@logto/phrases-experience": "workspace:^1.9.0",
"@logto/react": "^3.0.12",
"@logto/schemas": "workspace:^1.22.0",
"@logto/schemas": "workspace:^1.23.0",
"@logto/shared": "workspace:^3.1.2",
"@mdx-js/react": "^3.0.1",
"@mdx-js/rollup": "^3.0.1",
Expand Down
45 changes: 45 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,50 @@
# Change Log

## 1.23.0

### Minor Changes

- f1b1d9e95: new MFA prompt policy

You can now cutomize the MFA prompt policy in the Console.

First, choose if you want to enable **Require MFA**:

- **Enable**: Users will be prompted to set up MFA during the sign-in process which cannot be skipped. If the user fails to set up MFA or deletes their MFA settings, they will be locked out of their account until they set up MFA again.
- **Disable**: Users can skip the MFA setup process during sign-up flow.

If you choose to **Disable**, you can choose the MFA setup prompt:

- Do not ask users to set up MFA.
- Ask users to set up MFA during registration (skippable, one-time prompt). **The same prompt as previous policy (UserControlled)**
- Ask users to set up MFA on their sign-in after registration (skippable, one-time prompt)

### 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 [f1b1d9e95]
- Updated dependencies [239b81e31]
- @logto/cli@1.23.0
- @logto/experience-legacy@1.11.0
- @logto/experience@1.11.0
- @logto/console@1.20.0
- @logto/phrases@1.16.0
- @logto/schemas@1.23.0
- @logto/core-kit@2.5.2

## 1.22.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.22.0",
"version": "1.23.0",
"description": "The open source identity solution.",
"main": "build/index.js",
"author": "Silverhand Inc. <contact@silverhand.io>",
Expand Down Expand Up @@ -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.23.0",
"@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.16.0",
"@logto/phrases-experience": "workspace:^1.9.0",
"@logto/schemas": "workspace:^1.22.0",
"@logto/schemas": "workspace:^1.23.0",
"@logto/shared": "workspace:^3.1.2",
"@silverhand/essentials": "^2.9.1",
"@silverhand/slonik": "31.0.0-beta.2",
Expand Down
7 changes: 7 additions & 0 deletions packages/create/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## 1.23.0

### Patch Changes

- Updated dependencies [217858950]
- @logto/cli@1.23.0

## 1.22.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.22.0",
"version": "1.23.0",
"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.22.0"
"@logto/cli": "workspace:^1.23.0"
}
}
19 changes: 19 additions & 0 deletions packages/experience-legacy/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Change Log

## 1.11.0

### Minor Changes

- f1b1d9e95: new MFA prompt policy

You can now cutomize the MFA prompt policy in the Console.

First, choose if you want to enable **Require MFA**:

- **Enable**: Users will be prompted to set up MFA during the sign-in process which cannot be skipped. If the user fails to set up MFA or deletes their MFA settings, they will be locked out of their account until they set up MFA again.
- **Disable**: Users can skip the MFA setup process during sign-up flow.

If you choose to **Disable**, you can choose the MFA setup prompt:

- Do not ask users to set up MFA.
- Ask users to set up MFA during registration (skippable, one-time prompt). **The same prompt as previous policy (UserControlled)**
- Ask users to set up MFA on their sign-in after registration (skippable, one-time prompt)

## 1.10.0

### Minor Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/experience-legacy/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@logto/experience-legacy",
"version": "1.10.0",
"version": "1.11.0",
"license": "MPL-2.0",
"type": "module",
"private": true,
Expand All @@ -22,11 +22,11 @@
"devDependencies": {
"@jest/types": "^29.5.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/phrases": "workspace:^1.15.0",
"@logto/phrases": "workspace:^1.16.0",
"@logto/phrases-experience": "workspace:^1.9.0",
"@logto/schemas": "workspace:^1.22.0",
"@logto/schemas": "workspace:^1.23.0",
"@react-spring/shared": "^9.6.1",
"@react-spring/web": "^9.6.1",
"@silverhand/eslint-config": "6.0.1",
Expand Down
19 changes: 19 additions & 0 deletions packages/experience/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Change Log

## 1.11.0

### Minor Changes

- f1b1d9e95: new MFA prompt policy

You can now cutomize the MFA prompt policy in the Console.

First, choose if you want to enable **Require MFA**:

- **Enable**: Users will be prompted to set up MFA during the sign-in process which cannot be skipped. If the user fails to set up MFA or deletes their MFA settings, they will be locked out of their account until they set up MFA again.
- **Disable**: Users can skip the MFA setup process during sign-up flow.

If you choose to **Disable**, you can choose the MFA setup prompt:

- Do not ask users to set up MFA.
- Ask users to set up MFA during registration (skippable, one-time prompt). **The same prompt as previous policy (UserControlled)**
- Ask users to set up MFA on their sign-in after registration (skippable, one-time prompt)

## 1.10.0

### Minor Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/experience/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@logto/experience",
"version": "1.10.0",
"version": "1.11.0",
"license": "MPL-2.0",
"type": "module",
"private": true,
Expand All @@ -22,11 +22,11 @@
"devDependencies": {
"@jest/types": "^29.5.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/phrases": "workspace:^1.15.0",
"@logto/phrases": "workspace:^1.16.0",
"@logto/phrases-experience": "workspace:^1.9.0",
"@logto/schemas": "workspace:^1.22.0",
"@logto/schemas": "workspace:^1.23.0",
"@react-spring/shared": "^9.6.1",
"@react-spring/web": "^9.6.1",
"@silverhand/eslint-config": "6.0.1",
Expand Down
Loading

0 comments on commit 460ea89

Please sign in to comment.