0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-03-31 22:51:25 -05:00

release: version packages (#5463)

This commit is contained in:
silverhand-bot 2024-04-10 21:27:24 +08:00 committed by GitHub
parent 1ade7a32eb
commit fb55249ab2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
123 changed files with 907 additions and 404 deletions

View file

@ -1,8 +0,0 @@
---
"@logto/connector-azuread": patch
---
Update the Microsoft social connector integration guide.
- Reorganize the content to make it more readable.
- Exclusively explained the different access types and their corresponding tenant IDs in the Azure Portal.

View file

@ -1,5 +0,0 @@
---
"@logto/core": minor
---
Add avatar and customData fields to create user API (POST /api/users)

View file

@ -1,6 +0,0 @@
---
"@logto/console": minor
"@logto/phrases": minor
---
feat(console): support signing-key rotation

View file

@ -1,8 +0,0 @@
---
"@logto/connector-kit": major
---
update `SocialUserInfo` and `GetUserInfo` types
- Added `rawData?: Json` to `SocialUserInfo`
- `GetUserInfo` now does not accept unknown keys in the return object, since the raw data is now stored in `SocialUserInfo`

View file

@ -1,5 +0,0 @@
---
"@logto/experience": minor
---
support direct sign-in for sso

View file

@ -1,18 +0,0 @@
---
"@logto/core-kit": minor
"@logto/schemas": minor
"@logto/core": minor
"@logto/phrases-experience": patch
"@logto/integration-tests": patch
---
full oidc standard claims support
We have added support for the remaining [OpenID Connect standard claims](https://openid.net/specs/openid-connect-core-1_0.html#StandardClaims). Now, these claims are accessible in both ID tokens and the response from the `/me` endpoint.
Additionally, we adhere to the standard scopes - claims mapping. This means that you can retrieve most of the profile claims using the `profile` scope, and the `address` claim can be obtained by using the `address` scope.
For all newly introduced claims, we store them in the `user.profile` field.
> ![Note]
> Unlike other database fields (e.g. `name`), the claims stored in the `profile` field will fall back to `undefined` rather than `null`. We refrain from using `?? null` here to reduce the size of ID tokens, since `undefined` fields will be stripped in tokens.

View file

@ -1,27 +0,0 @@
---
"@logto/core": minor
---
support `first_screen` parameter in authentication request
Sign-in experience can be initiated with a specific screen by setting the `first_screen` parameter in the OIDC authentication request. This parameter is intended to replace the `interaction_mode` parameter, which is now deprecated.
The `first_screen` parameter can have the following values:
- `signIn`: The sign-in screen is displayed first.
- `register`: The registration screen is displayed first.
Here's a non-normative example of how to use the `first_screen` parameter:
```
GET /authorize?
response_type=code
&client_id=your_client_id
&redirect_uri=https%3A%2F%2Fclient.example.org%2Fcb
&scope=openid
&state=af0ifjsldkj
&nonce=n-0S6_WzA2Mj
&first_screen=signIn
```
When `first_screen` is set, the legacy `interaction_mode` parameter is ignored.

View file

@ -1,10 +0,0 @@
---
"@logto/console": patch
"@logto/phrases": patch
---
api resource indicator must be a valid absolute uri
An invalid indicator will make Console crash without this check.
Note: We don't mark it as a breaking change as the api behavior has not changed, only adding the check on Console.

View file

@ -1,9 +0,0 @@
---
"@logto/schemas": minor
---
add oidc params variables and types
- Add `ExtraParamsKey` enum for all possible OIDC extra parameters that Logto supports.
- Add `FirstScreen` enum for the `first_screen` parameter.
- Add `extraParamsObjectGuard` guard and `ExtraParamsObject` type for shaping the extra parameters object in the OIDC authentication request.

View file

@ -1,7 +0,0 @@
---
"@logto/connector-kit": major
---
guard results of `parseJson` and `parseJsonObject`
Now `parseJson` and `parseJsonObject` are type safe.

View file

@ -1,21 +0,0 @@
---
"@logto/connector-alipay-native": minor
"@logto/connector-wechat-native": minor
"@logto/connector-mock-social": minor
"@logto/connector-alipay-web": minor
"@logto/connector-feishu-web": minor
"@logto/connector-wechat-web": minor
"@logto/connector-facebook": minor
"@logto/connector-azuread": minor
"@logto/connector-discord": minor
"@logto/connector-github": minor
"@logto/connector-google": minor
"@logto/connector-oauth": minor
"@logto/connector-apple": minor
"@logto/connector-kakao": minor
"@logto/connector-naver": minor
"@logto/connector-wecom": minor
"@logto/connector-oidc": minor
---
return and store social connector raw data

View file

@ -1,6 +0,0 @@
---
"@logto/integration-tests": minor
"@logto/core": minor
---
Get organization roles with search keyword.

View file

@ -1,8 +0,0 @@
---
"@logto/integration-tests": minor
"@logto/phrases": minor
"@logto/schemas": minor
"@logto/core": minor
---
Create a new user through API with password digest and corresponding algorithm

View file

@ -1,15 +0,0 @@
---
"@logto/experience": minor
"@logto/core": minor
---
support direct sign-in
Instead of showing a screen for the user to choose between the sign-in methods, a specific sign-in method can be initiated directly by setting the `direct_sign_in` parameter in the OIDC authentication request.
This parameter follows the format of `direct_sign_in=<method>:<target>`, where:
- `<method>` is the sign-in method to trigger. Currently the only supported value is `social`.
- `<target>` is the target value for the sign-in method. If the method is `social`, the value is the social connector's `target`.
When a valid `direct_sign_in` parameter is set, the first screen will be skipped and the specified sign-in method will be triggered immediately upon entering the sign-in experience. If the parameter is invalid, the default behavior of showing the first screen will be used.

View file

@ -1,25 +0,0 @@
---
"@logto/schemas": patch
---
## Resolve third-party app's /interaction/consent endpoint 500 error
### Reproduction steps
- Create an organization scope with an empty description and assign this scope to a third-party application.
- Login to the third-party application and request the organization scope.
- Proceed through the interaction flow until reaching the consent page.
- An internal server error 500 is returned.
### Root cause
For the `/interaction/consent` endpoint, the organization scope is returned alongside other resource scopes in the `missingResourceScopes` property.
In the `consentInfoResponseGuard`, we utilize the resource Scopes zod guard to validate the `missingResourceScopes` property. However, the description field in the resource scope is mandatory while organization scopes'description is optional. An organization scope with an empty description will not pass the validation.
### Solution
Alter the resource scopes table to make the description field nullable. Related Scope zod guard and the consentInfoResponseGuard will be updated to reflect this change. Align the resource scopes table with the organization scopes table to ensure consistency.

View file

@ -1,13 +0,0 @@
---
"@logto/experience": patch
---
skip non-object messages in the native environment
In the `WKWebView` of new iOS versions, some script will constantly post messages to the
window object with increasing numbers as the message content ("1", "2", "3", ...).
Ideally, we should check the source of the message with Logto-specific identifier in the
`event.data`; however, this change will result a breaking change for the existing
native SDK implementations. Add the `isObject` check to prevent the crazy messages while
keeping the backward compatibility.

View file

@ -1,7 +0,0 @@
---
"@logto/demo-app": minor
---
carry over search params to the authentication request
When entering the Logto demo app with search parameters, if the user is not authenticated, the search parameters are now carried over to the authentication request. This allows manual testing of the OIDC authentication flow with specific parameters.

View file

@ -1,19 +0,0 @@
---
"@logto/core": patch
---
Fix SSO connector new user authentication internal server error.
## Description
Thanks to the [issue](https://github.com/logto-io/logto/issues/5502) report, we found that the SSO connector new user authentication was causing an internal server error. Should return an 422 status code instead of 500. Frontend sign-in page can not handle the 500 error and complete the new user registration process.
### Root cause
When the SSO connector returns a new user that does not exist in the Logto database, the backend with throw a 422 error. Frontend relies the 422 error to redirect and complete the new user registration process.
However, the backend was throwing a 500 error instead. That is because we applied a strict API response status code guard at the koaGuard middleware level. The status code 422 was not listed. Therefore, the middleware threw a 500 error.
### Solution
We added the 422 status code to the koaGuard middleware. Now, the backend will return a 422 status code when the SSO connector returns a new user that does not exist in the Logto database. The frontend sign-in page can handle the 422 error and complete the new user registration process.

View file

@ -1,5 +0,0 @@
---
"@logto/connector-kit": minor
---
add `jsonGuard()` and `jsonObjectGuard()`

View file

@ -1,5 +0,0 @@
---
"@logto/connector-kit": patch
---
allow unknown properties in send message payload

View file

@ -1,5 +1,26 @@
# Change Log
## 1.15.0
### Patch Changes
- Updated dependencies [5758f84f5]
- Updated dependencies [57d97a4df]
- Updated dependencies [abffb9f95]
- Updated dependencies [746483c49]
- Updated dependencies [2cbc591ff]
- Updated dependencies [57d97a4df]
- Updated dependencies [cc01acbd0]
- Updated dependencies [951865859]
- Updated dependencies [57d97a4df]
- Updated dependencies [2c10c2423]
- @logto/phrases@1.10.0
- @logto/connector-kit@3.0.0
- @logto/core-kit@2.4.0
- @logto/schemas@1.15.0
- @logto/phrases-experience@1.6.1
- @logto/shared@3.1.0
## 1.14.0
### Patch Changes

View file

@ -1,6 +1,6 @@
{
"name": "@logto/cli",
"version": "1.14.0",
"version": "1.15.0",
"description": "Logto CLI.",
"author": "Silverhand Inc. <contact@silverhand.io>",
"homepage": "https://github.com/logto-io/logto#readme",
@ -42,12 +42,12 @@
"url": "https://github.com/logto-io/logto/issues"
},
"dependencies": {
"@logto/connector-kit": "workspace:^2.1.0",
"@logto/core-kit": "workspace:^2.3.0",
"@logto/connector-kit": "workspace:^3.0.0",
"@logto/core-kit": "workspace:^2.4.0",
"@logto/language-kit": "workspace:^1.1.0",
"@logto/phrases": "workspace:^1.9.0",
"@logto/phrases-experience": "workspace:^1.6.0",
"@logto/schemas": "workspace:1.14.0",
"@logto/phrases": "workspace:^1.10.0",
"@logto/phrases-experience": "workspace:^1.6.1",
"@logto/schemas": "workspace:1.15.0",
"@logto/shared": "workspace:^3.1.0",
"@silverhand/essentials": "^2.9.0",
"@silverhand/slonik": "31.0.0-beta.2",

View file

@ -1,5 +1,19 @@
# @logto/connector-alipay-native
## 1.2.0
### Minor Changes
- 57d97a4df: return and store social connector raw data
### Patch Changes
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [2c10c2423]
- @logto/connector-kit@3.0.0
## 1.1.0
### Minor Changes

View file

@ -1,10 +1,10 @@
{
"name": "@logto/connector-alipay-native",
"version": "1.1.0",
"version": "1.2.0",
"description": "Alipay Native implementation.",
"author": "Silverhand Inc. <contact@silverhand.io>",
"dependencies": {
"@logto/connector-kit": "workspace:^2.1.0",
"@logto/connector-kit": "workspace:^3.0.0",
"dayjs": "^1.10.5",
"iconv-lite": "^0.6.3"
},

View file

@ -1,5 +1,19 @@
# @logto/connector-alipay-web
## 1.3.0
### Minor Changes
- 57d97a4df: return and store social connector raw data
### Patch Changes
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [2c10c2423]
- @logto/connector-kit@3.0.0
## 1.2.0
### Minor Changes

View file

@ -1,9 +1,9 @@
{
"name": "@logto/connector-alipay-web",
"version": "1.2.0",
"version": "1.3.0",
"description": "Alipay implementation.",
"dependencies": {
"@logto/connector-kit": "workspace:^2.1.0",
"@logto/connector-kit": "workspace:^3.0.0",
"dayjs": "^1.10.5",
"iconv-lite": "^0.6.3"
},

View file

@ -1,5 +1,15 @@
# @logto/connector-aliyun-dm
## 1.1.1
### Patch Changes
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [2c10c2423]
- @logto/connector-kit@3.0.0
## 1.1.0
### Minor Changes

View file

@ -1,9 +1,9 @@
{
"name": "@logto/connector-aliyun-dm",
"version": "1.1.0",
"version": "1.1.1",
"description": "Aliyun DM connector implementation.",
"dependencies": {
"@logto/connector-kit": "workspace:^2.1.0"
"@logto/connector-kit": "workspace:^3.0.0"
},
"main": "./lib/index.js",
"module": "./lib/index.js",

View file

@ -1,5 +1,15 @@
# @logto/connector-aliyun-sms
## 1.1.1
### Patch Changes
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [2c10c2423]
- @logto/connector-kit@3.0.0
## 1.1.0
### Minor Changes

View file

@ -1,9 +1,9 @@
{
"name": "@logto/connector-aliyun-sms",
"version": "1.1.0",
"version": "1.1.1",
"description": "Aliyun SMS connector implementation.",
"dependencies": {
"@logto/connector-kit": "workspace:^2.1.0"
"@logto/connector-kit": "workspace:^3.0.0"
},
"main": "./lib/index.js",
"module": "./lib/index.js",

View file

@ -1,5 +1,20 @@
# @logto/connector-apple
## 1.3.0
### Minor Changes
- 57d97a4df: return and store social connector raw data
### Patch Changes
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [2c10c2423]
- @logto/connector-kit@3.0.0
- @logto/shared@3.1.0
## 1.2.0
### Minor Changes

View file

@ -1,9 +1,9 @@
{
"name": "@logto/connector-apple",
"version": "1.2.0",
"version": "1.3.0",
"description": "Apple web connector implementation.",
"dependencies": {
"@logto/connector-kit": "workspace:^2.1.0",
"@logto/connector-kit": "workspace:^3.0.0",
"@logto/shared": "workspace:^3.1.0",
"jose": "^5.0.0"
},

View file

@ -1,5 +1,15 @@
# @logto/connector-aws-ses
## 1.1.1
### Patch Changes
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [2c10c2423]
- @logto/connector-kit@3.0.0
## 1.1.0
### Minor Changes

View file

@ -1,10 +1,10 @@
{
"name": "@logto/connector-aws-ses",
"version": "1.1.0",
"version": "1.1.1",
"description": "Logto Connector for Amazon SES",
"author": "Jeff <admin@breadth.app>",
"dependencies": {
"@logto/connector-kit": "workspace:^2.1.0",
"@logto/connector-kit": "workspace:^3.0.0",
"@aws-sdk/client-sesv2": "^3.224.0",
"@aws-sdk/types": "^3.226.0"
},

View file

@ -1,5 +1,24 @@
# @logto/connector-azuread
## 1.2.0
### Minor Changes
- 57d97a4df: return and store social connector raw data
### Patch Changes
- 5cde35ec1: Update the Microsoft social connector integration guide.
- Reorganize the content to make it more readable.
- Exclusively explained the different access types and their corresponding tenant IDs in the Azure Portal.
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [2c10c2423]
- @logto/connector-kit@3.0.0
## 1.1.0
### Minor Changes

View file

@ -1,11 +1,11 @@
{
"name": "@logto/connector-azuread",
"version": "1.1.0",
"version": "1.2.0",
"description": "Microsoft Azure AD connector implementation.",
"author": "Mobilist Inc. <info@mobilist.com.tr>",
"dependencies": {
"@azure/msal-node": "^2.0.0",
"@logto/connector-kit": "workspace:^2.1.0"
"@logto/connector-kit": "workspace:^3.0.0"
},
"main": "./lib/index.js",
"module": "./lib/index.js",

View file

@ -1,5 +1,19 @@
# @logto/connector-discord
## 1.3.0
### Minor Changes
- 57d97a4df: return and store social connector raw data
### Patch Changes
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [2c10c2423]
- @logto/connector-kit@3.0.0
## 1.2.0
### Minor Changes

View file

@ -1,10 +1,10 @@
{
"name": "@logto/connector-discord",
"version": "1.2.0",
"version": "1.3.0",
"description": "Discord connector implementation.",
"author": "ZR3SYSTEMS. <https://github.com/FlurryNight>",
"dependencies": {
"@logto/connector-kit": "workspace:^2.1.0"
"@logto/connector-kit": "workspace:^3.0.0"
},
"main": "./lib/index.js",
"module": "./lib/index.js",

View file

@ -1,5 +1,19 @@
# @logto/connector-facebook
## 1.3.0
### Minor Changes
- 57d97a4df: return and store social connector raw data
### Patch Changes
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [2c10c2423]
- @logto/connector-kit@3.0.0
## 1.2.0
### Minor Changes

View file

@ -1,10 +1,10 @@
{
"name": "@logto/connector-facebook",
"version": "1.2.0",
"version": "1.3.0",
"description": "Facebook web connector implementation.",
"author": "Silverhand Inc. <contact@silverhand.io>",
"dependencies": {
"@logto/connector-kit": "workspace:^2.1.0"
"@logto/connector-kit": "workspace:^3.0.0"
},
"main": "./lib/index.js",
"module": "./lib/index.js",

View file

@ -1,5 +1,19 @@
# @logto/connector-feishu-web
## 1.2.0
### Minor Changes
- 57d97a4df: return and store social connector raw data
### Patch Changes
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [2c10c2423]
- @logto/connector-kit@3.0.0
## 1.1.0
### Minor Changes

View file

@ -1,10 +1,10 @@
{
"name": "@logto/connector-feishu-web",
"version": "1.1.0",
"version": "1.2.0",
"description": "Feishu web connector.",
"author": "Silverhand Inc. <contact@silverhand.io>",
"dependencies": {
"@logto/connector-kit": "workspace:^2.1.0"
"@logto/connector-kit": "workspace:^3.0.0"
},
"main": "./lib/index.js",
"module": "./lib/index.js",

View file

@ -1,5 +1,19 @@
# @logto/connector-github
## 1.3.0
### Minor Changes
- 57d97a4df: return and store social connector raw data
### Patch Changes
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [2c10c2423]
- @logto/connector-kit@3.0.0
## 1.2.0
### Minor Changes

View file

@ -1,10 +1,10 @@
{
"name": "@logto/connector-github",
"version": "1.2.0",
"version": "1.3.0",
"description": "Github web connector implementation.",
"author": "Silverhand Inc. <contact@silverhand.io>",
"dependencies": {
"@logto/connector-kit": "workspace:^2.1.0",
"@logto/connector-kit": "workspace:^3.0.0",
"query-string": "^9.0.0"
},
"main": "./lib/index.js",

View file

@ -1,5 +1,19 @@
# @logto/connector-google
## 1.3.0
### Minor Changes
- 57d97a4df: return and store social connector raw data
### Patch Changes
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [2c10c2423]
- @logto/connector-kit@3.0.0
## 1.2.0
### Minor Changes

View file

@ -1,10 +1,10 @@
{
"name": "@logto/connector-google",
"version": "1.2.0",
"version": "1.3.0",
"description": "Google web connector implementation.",
"author": "Silverhand Inc. <contact@silverhand.io>",
"dependencies": {
"@logto/connector-kit": "workspace:^2.1.0"
"@logto/connector-kit": "workspace:^3.0.0"
},
"main": "./lib/index.js",
"module": "./lib/index.js",

View file

@ -1,5 +1,19 @@
# @logto/connector-kakao
## 1.2.0
### Minor Changes
- 57d97a4df: return and store social connector raw data
### Patch Changes
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [2c10c2423]
- @logto/connector-kit@3.0.0
## 1.1.0
### Minor Changes

View file

@ -1,10 +1,10 @@
{
"name": "@logto/connector-kakao",
"version": "1.1.0",
"version": "1.2.0",
"description": "Kakao connector implementation.",
"author": "Kyungyoon Kim. <ruddbs5302@gmail.com>",
"dependencies": {
"@logto/connector-kit": "workspace:^2.1.0"
"@logto/connector-kit": "workspace:^3.0.0"
},
"main": "./lib/index.js",
"module": "./lib/index.js",

View file

@ -1,5 +1,15 @@
# @logto/connector-logto-email
## 1.1.1
### Patch Changes
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [2c10c2423]
- @logto/connector-kit@3.0.0
## 1.1.0
### Minor Changes

View file

@ -1,10 +1,10 @@
{
"name": "@logto/connector-logto-email",
"version": "1.1.0",
"version": "1.1.1",
"description": "Logto email connector.",
"author": "Silverhand Inc. <contact@silverhand.io>",
"dependencies": {
"@logto/connector-kit": "workspace:^2.1.0"
"@logto/connector-kit": "workspace:^3.0.0"
},
"main": "./lib/index.js",
"module": "./lib/index.js",

View file

@ -1,5 +1,15 @@
# @logto/connector-logto-sms
## 1.1.1
### Patch Changes
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [2c10c2423]
- @logto/connector-kit@3.0.0
## 1.1.0
### Minor Changes

View file

@ -1,10 +1,10 @@
{
"name": "@logto/connector-logto-sms",
"version": "1.1.0",
"version": "1.1.1",
"description": "Logto SMS connector.",
"author": "Silverhand Inc. <contact@silverhand.io>",
"dependencies": {
"@logto/connector-kit": "workspace:^2.1.0"
"@logto/connector-kit": "workspace:^3.0.0"
},
"main": "./lib/index.js",
"module": "./lib/index.js",

View file

@ -1,5 +1,15 @@
# @logto/connector-logto-social-demo
## 1.1.1
### Patch Changes
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [2c10c2423]
- @logto/connector-kit@3.0.0
## 1.1.0
### Minor Changes

View file

@ -1,10 +1,10 @@
{
"name": "@logto/connector-logto-social-demo",
"version": "1.1.0",
"version": "1.1.1",
"description": "OAuth standard connector implementation.",
"author": "Silverhand Inc. <contact@silverhand.io>",
"dependencies": {
"@logto/connector-kit": "workspace:^2.1.0"
"@logto/connector-kit": "workspace:^3.0.0"
},
"main": "./lib/index.js",
"module": "./lib/index.js",

View file

@ -1,5 +1,15 @@
# @logto/connector-mailgun
## 1.2.1
### Patch Changes
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [2c10c2423]
- @logto/connector-kit@3.0.0
## 1.2.0
### Minor Changes

View file

@ -1,10 +1,10 @@
{
"name": "@logto/connector-mailgun",
"version": "1.2.0",
"version": "1.2.1",
"description": "Mailgun connector for Logto.",
"author": "Silverhand Inc. <contact@silverhand.io>",
"dependencies": {
"@logto/connector-kit": "workspace:^2.1.0"
"@logto/connector-kit": "workspace:^3.0.0"
},
"main": "./lib/index.js",
"module": "./lib/index.js",

View file

@ -1,5 +1,15 @@
# @logto/connector-mock-standard-email
## 2.0.1
### Patch Changes
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [2c10c2423]
- @logto/connector-kit@3.0.0
## 2.0.0
### Major Changes

View file

@ -1,10 +1,10 @@
{
"name": "@logto/connector-mock-standard-email",
"version": "2.0.0",
"version": "2.0.1",
"description": "Mock Standard Email Service connector implementation for integration tests only.",
"author": "Silverhand Inc. <contact@silverhand.io>",
"dependencies": {
"@logto/connector-kit": "workspace:^2.1.0"
"@logto/connector-kit": "workspace:^3.0.0"
},
"scripts": {
"precommit": "lint-staged",

View file

@ -1,5 +1,15 @@
# @logto/connector-mock-email
## 2.0.1
### Patch Changes
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [2c10c2423]
- @logto/connector-kit@3.0.0
## 2.0.0
### Major Changes

View file

@ -1,10 +1,10 @@
{
"name": "@logto/connector-mock-email",
"version": "2.0.0",
"version": "2.0.1",
"description": "Mock Email Service connector implementation for integration tests only.",
"author": "Silverhand Inc. <contact@silverhand.io>",
"dependencies": {
"@logto/connector-kit": "workspace:^2.1.0"
"@logto/connector-kit": "workspace:^3.0.0"
},
"scripts": {
"precommit": "lint-staged",

View file

@ -1,5 +1,15 @@
# @logto/connector-mock-sms
## 2.0.1
### Patch Changes
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [2c10c2423]
- @logto/connector-kit@3.0.0
## 2.0.0
### Major Changes

View file

@ -1,10 +1,10 @@
{
"name": "@logto/connector-mock-sms",
"version": "2.0.0",
"version": "2.0.1",
"description": "Mock SMS connector implementation for integration tests only.",
"author": "Silverhand Inc. <contact@silverhand.io>",
"dependencies": {
"@logto/connector-kit": "workspace:^2.1.0"
"@logto/connector-kit": "workspace:^3.0.0"
},
"scripts": {
"precommit": "lint-staged",

View file

@ -1,5 +1,19 @@
# @logto/connector-mock-social
## 1.2.0
### Minor Changes
- 57d97a4df: return and store social connector raw data
### Patch Changes
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [2c10c2423]
- @logto/connector-kit@3.0.0
## 1.1.0
### Minor Changes

View file

@ -1,10 +1,10 @@
{
"name": "@logto/connector-mock-social",
"version": "1.1.0",
"version": "1.2.0",
"description": "Social mock connector implementation.",
"author": "Silverhand Inc. <contact@silverhand.io>",
"dependencies": {
"@logto/connector-kit": "workspace:^2.1.0"
"@logto/connector-kit": "workspace:^3.0.0"
},
"scripts": {
"precommit": "lint-staged",

View file

@ -1,5 +1,19 @@
# @logto/connector-naver
## 1.2.0
### Minor Changes
- 57d97a4df: return and store social connector raw data
### Patch Changes
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [2c10c2423]
- @logto/connector-kit@3.0.0
## 1.1.0
### Minor Changes

View file

@ -1,10 +1,10 @@
{
"name": "@logto/connector-naver",
"version": "1.1.0",
"version": "1.2.0",
"description": "Naver connector implementation.",
"author": "Kyungyoon Kim. <ruddbs5302@gmail.com>",
"dependencies": {
"@logto/connector-kit": "workspace:^2.1.0"
"@logto/connector-kit": "workspace:^3.0.0"
},
"main": "./lib/index.js",
"module": "./lib/index.js",

View file

@ -1,5 +1,19 @@
# @logto/connector-oauth
## 1.2.0
### Minor Changes
- 57d97a4df: return and store social connector raw data
### Patch Changes
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [2c10c2423]
- @logto/connector-kit@3.0.0
## 1.1.0
### Minor Changes

View file

@ -1,10 +1,10 @@
{
"name": "@logto/connector-oauth",
"version": "1.1.0",
"version": "1.2.0",
"description": "OAuth standard connector implementation.",
"author": "Silverhand Inc. <contact@silverhand.io>",
"dependencies": {
"@logto/connector-kit": "workspace:^2.1.0",
"@logto/connector-kit": "workspace:^3.0.0",
"query-string": "^9.0.0"
},
"main": "./lib/index.js",

View file

@ -1,5 +1,20 @@
# @logto/connector-oidc
## 1.2.0
### Minor Changes
- 57d97a4df: return and store social connector raw data
### Patch Changes
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [2c10c2423]
- @logto/connector-kit@3.0.0
- @logto/shared@3.1.0
## 1.1.0
### Minor Changes

View file

@ -1,9 +1,9 @@
{
"name": "@logto/connector-oidc",
"version": "1.1.0",
"version": "1.2.0",
"description": "OIDC standard connector implementation.",
"dependencies": {
"@logto/connector-kit": "workspace:^2.1.0",
"@logto/connector-kit": "workspace:^3.0.0",
"@logto/shared": "workspace:^3.1.0",
"jose": "^5.0.0",
"nanoid": "^5.0.1"

View file

@ -1,5 +1,15 @@
# @logto/connector-saml
## 1.1.1
### Patch Changes
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [2c10c2423]
- @logto/connector-kit@3.0.0
## 1.1.0
### Minor Changes

View file

@ -1,10 +1,10 @@
{
"name": "@logto/connector-saml",
"version": "1.1.0",
"version": "1.1.1",
"description": "SAML standard connector implementation.",
"author": "Silverhand Inc. <contact@silverhand.io>",
"dependencies": {
"@logto/connector-kit": "workspace:^2.1.0",
"@logto/connector-kit": "workspace:^3.0.0",
"fast-xml-parser": "^4.2.5",
"samlify": "2.8.10"
},

View file

@ -1,5 +1,15 @@
# @logto/connector-sendgrid-email
## 1.1.1
### Patch Changes
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [2c10c2423]
- @logto/connector-kit@3.0.0
## 1.1.0
### Minor Changes

View file

@ -1,10 +1,10 @@
{
"name": "@logto/connector-sendgrid-email",
"version": "1.1.0",
"version": "1.1.1",
"description": "SendGrid Email Service connector implementation.",
"author": "Silverhand Inc. <contact@silverhand.io>",
"dependencies": {
"@logto/connector-kit": "workspace:^2.1.0"
"@logto/connector-kit": "workspace:^3.0.0"
},
"main": "./lib/index.js",
"module": "./lib/index.js",

View file

@ -1,5 +1,15 @@
# @logto/connector-smsaero
## 1.2.1
### Patch Changes
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [2c10c2423]
- @logto/connector-kit@3.0.0
## 1.2.0
### Minor Changes

View file

@ -1,10 +1,10 @@
{
"name": "@logto/connector-smsaero",
"version": "1.2.0",
"version": "1.2.1",
"description": "SMSAero connector implementation.",
"author": "Danil Tankov <danil.tankoff@yandex.ru>",
"dependencies": {
"@logto/connector-kit": "workspace:^2.1.0"
"@logto/connector-kit": "workspace:^3.0.0"
},
"main": "./lib/index.js",
"module": "./lib/index.js",

View file

@ -1,5 +1,15 @@
# @logto/connector-smtp
## 1.1.2
### Patch Changes
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [2c10c2423]
- @logto/connector-kit@3.0.0
## 1.1.1
### Patch Changes

View file

@ -1,10 +1,10 @@
{
"name": "@logto/connector-smtp",
"version": "1.1.1",
"version": "1.1.2",
"description": "SMTP connector implementation.",
"author": "Silverhand Inc. <contact@silverhand.io>",
"dependencies": {
"@logto/connector-kit": "workspace:^2.1.0",
"@logto/connector-kit": "workspace:^3.0.0",
"nodemailer": "^6.9.9"
},
"devDependencies": {

View file

@ -1,5 +1,15 @@
# @logto/connector-tencent-sms
## 1.1.1
### Patch Changes
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [2c10c2423]
- @logto/connector-kit@3.0.0
## 1.1.0
### Minor Changes

View file

@ -1,10 +1,10 @@
{
"name": "@logto/connector-tencent-sms",
"version": "1.1.0",
"version": "1.1.1",
"description": "Tencent SMS connector implementation.",
"author": "StringKe",
"dependencies": {
"@logto/connector-kit": "workspace:^2.1.0"
"@logto/connector-kit": "workspace:^3.0.0"
},
"main": "./lib/index.js",
"module": "./lib/index.js",

View file

@ -1,5 +1,15 @@
# @logto/connector-twilio-sms
## 1.1.1
### Patch Changes
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [2c10c2423]
- @logto/connector-kit@3.0.0
## 1.1.0
### Minor Changes

View file

@ -1,10 +1,10 @@
{
"name": "@logto/connector-twilio-sms",
"version": "1.1.0",
"version": "1.1.1",
"description": "Twilio SMS connector implementation.",
"author": "Silverhand Inc. <contact@silverhand.io>",
"dependencies": {
"@logto/connector-kit": "workspace:^2.1.0"
"@logto/connector-kit": "workspace:^3.0.0"
},
"main": "./lib/index.js",
"module": "./lib/index.js",

View file

@ -1,5 +1,19 @@
# @logto/connector-wechat-native
## 1.2.0
### Minor Changes
- 57d97a4df: return and store social connector raw data
### Patch Changes
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [2c10c2423]
- @logto/connector-kit@3.0.0
## 1.1.0
### Minor Changes

View file

@ -1,10 +1,10 @@
{
"name": "@logto/connector-wechat-native",
"version": "1.1.0",
"version": "1.2.0",
"description": "WeChat native connector implementation.",
"author": "Silverhand Inc. <contact@silverhand.io>",
"dependencies": {
"@logto/connector-kit": "workspace:^2.1.0"
"@logto/connector-kit": "workspace:^3.0.0"
},
"main": "./lib/index.js",
"module": "./lib/index.js",

View file

@ -1,5 +1,19 @@
# @logto/connector-wechat-web
## 1.3.0
### Minor Changes
- 57d97a4df: return and store social connector raw data
### Patch Changes
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [2c10c2423]
- @logto/connector-kit@3.0.0
## 1.2.0
### Minor Changes

View file

@ -1,10 +1,10 @@
{
"name": "@logto/connector-wechat-web",
"version": "1.2.0",
"version": "1.3.0",
"description": "Wechat Web connector implementation.",
"author": "Silverhand Inc. <contact@silverhand.io>",
"dependencies": {
"@logto/connector-kit": "workspace:^2.1.0"
"@logto/connector-kit": "workspace:^3.0.0"
},
"main": "./lib/index.js",
"module": "./lib/index.js",

View file

@ -0,0 +1,15 @@
# @logto/connector-wecom
## 0.2.0
### Minor Changes
- 57d97a4df: return and store social connector raw data
### Patch Changes
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [57d97a4df]
- Updated dependencies [2c10c2423]
- @logto/connector-kit@3.0.0

View file

@ -1,10 +1,10 @@
{
"name": "@logto/connector-wecom",
"version": "0.1.0",
"version": "0.2.0",
"description": "Wecom connector implementation.",
"author": "Dove<dove@feegr.cc> fork from Wechat Web connector",
"dependencies": {
"@logto/connector-kit": "workspace:^2.0.0"
"@logto/connector-kit": "workspace:^3.0.0"
},
"main": "./lib/index.js",
"module": "./lib/index.js",

View file

@ -1,5 +1,19 @@
# Change Log
## 1.13.0
### Minor Changes
- 5758f84f5: feat(console): support signing-key rotation
### Patch Changes
- 746483c49: api resource indicator must be a valid absolute uri
An invalid indicator will make Console crash without this check.
Note: We don't mark it as a breaking change as the api behavior has not changed, only adding the check on Console.
## 1.12.1
### Patch Changes

View file

@ -1,6 +1,6 @@
{
"name": "@logto/console",
"version": "1.12.1",
"version": "1.13.0",
"description": "> TODO: description",
"author": "Silverhand Inc. <contact@silverhand.io>",
"homepage": "https://github.com/logto-io/logto#readme",
@ -29,13 +29,13 @@
"@jest/types": "^29.5.0",
"@logto/app-insights": "workspace:^1.4.0",
"@logto/cloud": "0.2.5-ab8a489",
"@logto/connector-kit": "workspace:^2.1.0",
"@logto/core-kit": "workspace:^2.3.0",
"@logto/connector-kit": "workspace:^3.0.0",
"@logto/core-kit": "workspace:^2.4.0",
"@logto/language-kit": "workspace:^1.1.0",
"@logto/phrases": "workspace:^1.9.0",
"@logto/phrases-experience": "workspace:^1.6.0",
"@logto/phrases": "workspace:^1.10.0",
"@logto/phrases-experience": "workspace:^1.6.1",
"@logto/react": "^3.0.5",
"@logto/schemas": "workspace:^1.13.1",
"@logto/schemas": "workspace:^1.15.0",
"@logto/shared": "workspace:^3.1.0",
"@mdx-js/react": "^1.6.22",
"@monaco-editor/react": "^4.6.0",

View file

@ -1,5 +1,101 @@
# Change Log
## 1.15.0
### Minor Changes
- 172411946: Add avatar and customData fields to create user API (POST /api/users)
- abffb9f95: full oidc standard claims support
We have added support for the remaining [OpenID Connect standard claims](https://openid.net/specs/openid-connect-core-1_0.html#StandardClaims). Now, these claims are accessible in both ID tokens and the response from the `/me` endpoint.
Additionally, we adhere to the standard scopes - claims mapping. This means that you can retrieve most of the profile claims using the `profile` scope, and the `address` claim can be obtained by using the `address` scope.
For all newly introduced claims, we store them in the `user.profile` field.
> ![Note]
> Unlike other database fields (e.g. `name`), the claims stored in the `profile` field will fall back to `undefined` rather than `null`. We refrain from using `?? null` here to reduce the size of ID tokens, since `undefined` fields will be stripped in tokens.
- 2cbc591ff: support `first_screen` parameter in authentication request
Sign-in experience can be initiated with a specific screen by setting the `first_screen` parameter in the OIDC authentication request. This parameter is intended to replace the `interaction_mode` parameter, which is now deprecated.
The `first_screen` parameter can have the following values:
- `signIn`: The sign-in screen is displayed first.
- `register`: The registration screen is displayed first.
Here's a non-normative example of how to use the `first_screen` parameter:
```
GET /authorize?
response_type=code
&client_id=your_client_id
&redirect_uri=https%3A%2F%2Fclient.example.org%2Fcb
&scope=openid
&state=af0ifjsldkj
&nonce=n-0S6_WzA2Mj
&first_screen=signIn
```
When `first_screen` is set, the legacy `interaction_mode` parameter is ignored.
- 468558721: Get organization roles with search keyword.
- cc01acbd0: Create a new user through API with password digest and corresponding algorithm
- 2cbc591ff: support direct sign-in
Instead of showing a screen for the user to choose between the sign-in methods, a specific sign-in method can be initiated directly by setting the `direct_sign_in` parameter in the OIDC authentication request.
This parameter follows the format of `direct_sign_in=<method>:<target>`, where:
- `<method>` is the sign-in method to trigger. Currently the only supported value is `social`.
- `<target>` is the target value for the sign-in method. If the method is `social`, the value is the social connector's `target`.
When a valid `direct_sign_in` parameter is set, the first screen will be skipped and the specified sign-in method will be triggered immediately upon entering the sign-in experience. If the parameter is invalid, the default behavior of showing the first screen will be used.
### Patch Changes
- 7c22c50cb: Fix SSO connector new user authentication internal server error.
## Description
Thanks to the [issue](https://github.com/logto-io/logto/issues/5502) report, we found that the SSO connector new user authentication was causing an internal server error. Should return an 422 status code instead of 500. Frontend sign-in page can not handle the 500 error and complete the new user registration process.
### Root cause
When the SSO connector returns a new user that does not exist in the Logto database, the backend with throw a 422 error. Frontend relies the 422 error to redirect and complete the new user registration process.
However, the backend was throwing a 500 error instead. That is because we applied a strict API response status code guard at the koaGuard middleware level. The status code 422 was not listed. Therefore, the middleware threw a 500 error.
### Solution
We added the 422 status code to the koaGuard middleware. Now, the backend will return a 422 status code when the SSO connector returns a new user that does not exist in the Logto database. The frontend sign-in page can handle the 422 error and complete the new user registration process.
- Updated dependencies [5758f84f5]
- Updated dependencies [57d97a4df]
- Updated dependencies [7756f50f8]
- Updated dependencies [abffb9f95]
- Updated dependencies [746483c49]
- Updated dependencies [2cbc591ff]
- Updated dependencies [57d97a4df]
- Updated dependencies [cc01acbd0]
- Updated dependencies [2cbc591ff]
- Updated dependencies [951865859]
- Updated dependencies [5a7204571]
- Updated dependencies [2cbc591ff]
- Updated dependencies [57d97a4df]
- Updated dependencies [2c10c2423]
- @logto/console@1.13.0
- @logto/phrases@1.10.0
- @logto/connector-kit@3.0.0
- @logto/experience@1.6.0
- @logto/core-kit@2.4.0
- @logto/schemas@1.15.0
- @logto/phrases-experience@1.6.1
- @logto/demo-app@1.2.0
- @logto/cli@1.15.0
- @logto/shared@3.1.0
## 1.14.0
### Minor Changes

View file

@ -1,6 +1,6 @@
{
"name": "@logto/core",
"version": "1.14.0",
"version": "1.15.0",
"description": "The open source identity solution.",
"main": "build/index.js",
"author": "Silverhand Inc. <contact@silverhand.io>",
@ -32,16 +32,16 @@
"@koa/cors": "^5.0.0",
"@logto/affiliate": "^0.1.0",
"@logto/app-insights": "workspace:^1.4.0",
"@logto/cli": "workspace:^1.14.0",
"@logto/connector-kit": "workspace:^2.1.0",
"@logto/cli": "workspace:^1.15.0",
"@logto/connector-kit": "workspace:^3.0.0",
"@logto/console": "workspace:*",
"@logto/core-kit": "workspace:^2.3.0",
"@logto/core-kit": "workspace:^2.4.0",
"@logto/demo-app": "workspace:*",
"@logto/experience": "workspace:*",
"@logto/language-kit": "workspace:^1.1.0",
"@logto/phrases": "workspace:^1.9.0",
"@logto/phrases-experience": "workspace:^1.6.0",
"@logto/schemas": "workspace:^1.14.0",
"@logto/phrases": "workspace:^1.10.0",
"@logto/phrases-experience": "workspace:^1.6.1",
"@logto/schemas": "workspace:^1.15.0",
"@logto/shared": "workspace:^3.1.0",
"@silverhand/essentials": "^2.9.0",
"@simplewebauthn/server": "^9.0.0",

View file

@ -1,5 +1,11 @@
# Change Log
## 1.15.0
### Patch Changes
- @logto/cli@1.15.0
## 1.14.0
### Patch Changes

View file

@ -1,6 +1,6 @@
{
"name": "@logto/create",
"version": "1.14.0",
"version": "1.15.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.14.0"
"@logto/cli": "workspace:^1.15.0"
}
}

View file

@ -1,5 +1,13 @@
# Change Log
## 1.2.0
### Minor Changes
- 2cbc591ff: carry over search params to the authentication request
When entering the Logto demo app with search parameters, if the user is not authenticated, the search parameters are now carried over to the authentication request. This allows manual testing of the OIDC authentication flow with specific parameters.
## 1.1.0
### Minor Changes

View file

@ -1,6 +1,6 @@
{
"name": "@logto/demo-app",
"version": "1.1.0",
"version": "1.2.0",
"description": "Logto demo app.",
"author": "Silverhand Inc. <contact@silverhand.io>",
"license": "MPL-2.0",
@ -19,11 +19,11 @@
"stylelint": "stylelint \"src/**/*.scss\""
},
"devDependencies": {
"@logto/core-kit": "workspace:^2.3.0",
"@logto/core-kit": "workspace:^2.4.0",
"@logto/language-kit": "workspace:^1.1.0",
"@logto/phrases": "workspace:^1.9.0",
"@logto/phrases": "workspace:^1.10.0",
"@logto/react": "^3.0.5",
"@logto/schemas": "workspace:^1.13.0",
"@logto/schemas": "workspace:^1.15.0",
"@parcel/core": "2.9.3",
"@parcel/transformer-sass": "2.9.3",
"@silverhand/eslint-config": "5.0.0",

View file

@ -1,5 +1,33 @@
# Change Log
## 1.6.0
### Minor Changes
- 7756f50f8: support direct sign-in for sso
- 2cbc591ff: support direct sign-in
Instead of showing a screen for the user to choose between the sign-in methods, a specific sign-in method can be initiated directly by setting the `direct_sign_in` parameter in the OIDC authentication request.
This parameter follows the format of `direct_sign_in=<method>:<target>`, where:
- `<method>` is the sign-in method to trigger. Currently the only supported value is `social`.
- `<target>` is the target value for the sign-in method. If the method is `social`, the value is the social connector's `target`.
When a valid `direct_sign_in` parameter is set, the first screen will be skipped and the specified sign-in method will be triggered immediately upon entering the sign-in experience. If the parameter is invalid, the default behavior of showing the first screen will be used.
### Patch Changes
- 5a7204571: skip non-object messages in the native environment
In the `WKWebView` of new iOS versions, some script will constantly post messages to the
window object with increasing numbers as the message content ("1", "2", "3", ...).
Ideally, we should check the source of the message with Logto-specific identifier in the
`event.data`; however, this change will result a breaking change for the existing
native SDK implementations. Add the `isObject` check to prevent the crazy messages while
keeping the backward compatibility.
## 1.5.0
### Minor Changes

View file

@ -1,6 +1,6 @@
{
"name": "@logto/experience",
"version": "1.5.0",
"version": "1.6.0",
"license": "MPL-2.0",
"type": "module",
"private": true,
@ -22,12 +22,12 @@
"devDependencies": {
"@jest/types": "^29.5.0",
"@logto/app-insights": "workspace:^1.4.0",
"@logto/connector-kit": "workspace:^2.1.0",
"@logto/core-kit": "workspace:^2.3.0",
"@logto/connector-kit": "workspace:^3.0.0",
"@logto/core-kit": "workspace:^2.4.0",
"@logto/language-kit": "workspace:^1.1.0",
"@logto/phrases": "workspace:^1.9.0",
"@logto/phrases-experience": "workspace:^1.6.0",
"@logto/schemas": "workspace:^1.13.0",
"@logto/phrases": "workspace:^1.10.0",
"@logto/phrases-experience": "workspace:^1.6.1",
"@logto/schemas": "workspace:^1.15.0",
"@parcel/compressor-brotli": "2.9.3",
"@parcel/compressor-gzip": "2.9.3",
"@parcel/core": "2.9.3",

View file

@ -1,5 +1,25 @@
# Change Log
## 1.6.0
### Minor Changes
- 468558721: Get organization roles with search keyword.
- cc01acbd0: Create a new user through API with password digest and corresponding algorithm
### Patch Changes
- abffb9f95: full oidc standard claims support
We have added support for the remaining [OpenID Connect standard claims](https://openid.net/specs/openid-connect-core-1_0.html#StandardClaims). Now, these claims are accessible in both ID tokens and the response from the `/me` endpoint.
Additionally, we adhere to the standard scopes - claims mapping. This means that you can retrieve most of the profile claims using the `profile` scope, and the `address` claim can be obtained by using the `address` scope.
For all newly introduced claims, we store them in the `user.profile` field.
> ![Note]
> Unlike other database fields (e.g. `name`), the claims stored in the `profile` field will fall back to `undefined` rather than `null`. We refrain from using `?? null` here to reduce the size of ID tokens, since `undefined` fields will be stripped in tokens.
## 1.5.0
### Minor Changes

View file

@ -1,6 +1,6 @@
{
"name": "@logto/integration-tests",
"version": "1.5.0",
"version": "1.6.0",
"description": "Integration tests for Logto.",
"author": "Silverhand Inc. <contact@silverhand.io>",
"license": "MPL-2.0",
@ -24,11 +24,11 @@
"@apidevtools/swagger-parser": "^10.1.0",
"@jest/test-sequencer": "^29.5.0",
"@jest/types": "^29.1.2",
"@logto/connector-kit": "workspace:^2.1.0",
"@logto/connector-kit": "workspace:^3.0.0",
"@logto/core-kit": "workspace:^",
"@logto/js": "^4.1.1",
"@logto/node": "^2.4.4",
"@logto/schemas": "workspace:^1.13.0",
"@logto/schemas": "workspace:^1.15.0",
"@logto/shared": "workspace:^3.1.0",
"@silverhand/eslint-config": "5.0.0",
"@silverhand/essentials": "^2.9.0",

Some files were not shown because too many files have changed in this diff Show more