From e77b379c10d4c2ea0e1a313b884a2c563045eda0 Mon Sep 17 00:00:00 2001 From: silverhand-bot Date: Tue, 15 Sep 2026 10:05:24 +0000 Subject: [PATCH] release: version packages --- .changeset/apple-services-id-clarity.md | 9 ----- .changeset/calm-ravens-paginate.md | 5 --- .changeset/lucky-spoons-itch.md | 5 --- .changeset/olive-otters-sing.md | 13 ------- .changeset/purple-eels-shave.md | 9 ----- .changeset/quiet-owls-remember.md | 14 ------- .changeset/quiet-roles-seed.md | 7 ---- .changeset/shiny-mugs-hope.md | 11 ------ packages/account/CHANGELOG.md | 8 ++++ packages/account/package.json | 2 +- packages/api/CHANGELOG.md | 15 ++++++++ packages/api/package.json | 2 +- packages/cli/CHANGELOG.md | 12 ++++++ packages/cli/package.json | 2 +- .../connectors/connector-apple/CHANGELOG.md | 10 +++++ .../connectors/connector-apple/package.json | 2 +- packages/console/CHANGELOG.md | 16 ++++++++ packages/console/package.json | 2 +- packages/core/CHANGELOG.md | 37 +++++++++++++++++++ packages/core/package.json | 2 +- packages/create/CHANGELOG.md | 7 ++++ packages/create/package.json | 4 +- packages/experience/CHANGELOG.md | 8 ++++ packages/experience/package.json | 2 +- packages/phrases/CHANGELOG.md | 12 ++++++ packages/phrases/package.json | 2 +- packages/schemas/CHANGELOG.md | 21 +++++++++++ ...88946735-add-saml-authn-request-config.ts} | 0 packages/schemas/package.json | 2 +- packages/translate/CHANGELOG.md | 7 ++++ packages/translate/package.json | 2 +- pnpm-lock.yaml | 2 +- 32 files changed, 166 insertions(+), 86 deletions(-) delete mode 100644 .changeset/apple-services-id-clarity.md delete mode 100644 .changeset/calm-ravens-paginate.md delete mode 100644 .changeset/lucky-spoons-itch.md delete mode 100644 .changeset/olive-otters-sing.md delete mode 100644 .changeset/purple-eels-shave.md delete mode 100644 .changeset/quiet-owls-remember.md delete mode 100644 .changeset/quiet-roles-seed.md delete mode 100644 .changeset/shiny-mugs-hope.md rename packages/schemas/alterations/{next-1788946735-add-saml-authn-request-config.ts => 1.44.0-1788946735-add-saml-authn-request-config.ts} (100%) diff --git a/.changeset/apple-services-id-clarity.md b/.changeset/apple-services-id-clarity.md deleted file mode 100644 index 435f640c076c..000000000000 --- a/.changeset/apple-services-id-clarity.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -"@logto/connector-apple": patch ---- - -clarify that the Apple connector's identifier is a Services ID - -The connector's identifier field is now labeled "Services ID" and states that an App ID (bundle ID) is not a valid value, which Apple rejects with an `invalid_client` error. - -Setup instructions cover the Apple Developer portal, so enabling Sign in with Apple no longer appears to require Xcode. Troubleshooting guidance explains `invalid_client` and `invalid_request`, including Apple's caching of identifier configuration, which has been observed to take up to 24 hours to refresh and can make a correct configuration look broken. diff --git a/.changeset/calm-ravens-paginate.md b/.changeset/calm-ravens-paginate.md deleted file mode 100644 index 7402f4576565..000000000000 --- a/.changeset/calm-ravens-paginate.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@logto/api": minor ---- - -add a typed async iterator for paginated Management API endpoints diff --git a/.changeset/lucky-spoons-itch.md b/.changeset/lucky-spoons-itch.md deleted file mode 100644 index 8d629ec9913b..000000000000 --- a/.changeset/lucky-spoons-itch.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@logto/core": patch ---- - -use a supported base language for API error messages when the requested regional language is unavailable diff --git a/.changeset/olive-otters-sing.md b/.changeset/olive-otters-sing.md deleted file mode 100644 index 4af44ae8a8d4..000000000000 --- a/.changeset/olive-otters-sing.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -"@logto/api": minor ---- - -improve API SDK client reliability and ergonomics - -- reject token request redirects, support custom abort signals and a configurable 10-second timeout, and share one token fetch across concurrent requests -- invalidate a rejected cached token once without continuously fetching tokens for permanent `401` responses -- normalize trailing slashes in custom base URLs -- support object-style Management API client configuration with a tenant ID or explicit base URL and API indicator -- support lowercase API client methods such as `.get()` and `.post()` while keeping the uppercase methods available -- apply a configurable 10-second timeout to Management API network requests while preserving per-request cancellation -- emit scope mismatch warnings once per distinct scope and preserve token request failure causes diff --git a/.changeset/purple-eels-shave.md b/.changeset/purple-eels-shave.md deleted file mode 100644 index 0669edbca786..000000000000 --- a/.changeset/purple-eels-shave.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -"@logto/core": patch ---- - -support a trailing slash in the issuer of OIDC enterprise SSO connectors - -The discovery path is now joined onto the connector's `Issuer`, so `https://idp.example.com/` and `https://idp.example.com` both resolve to `https://idp.example.com/.well-known/openid-configuration`. The stored issuer value stays exactly as configured, so existing SSO identities keep resolving. - -Failed outbound requests made by an OIDC SSO connector now report a concise reason: the error message, or the status code alongside the response body for an HTTP failure. diff --git a/.changeset/quiet-owls-remember.md b/.changeset/quiet-owls-remember.md deleted file mode 100644 index b7e41fe94422..000000000000 --- a/.changeset/quiet-owls-remember.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -"@logto/console": minor -"@logto/core": minor -"@logto/phrases": minor -"@logto/schemas": minor ---- - -add authentication policies for SAML applications - -SAML applications force fresh authentication by default, as before. To let a SAML application reuse an existing Logto session, turn off "Always force authentication" in the application settings, or set `authnRequestConfig.forceAuthn` to `false` using the SAML application Management API. The service provider can still require fresh authentication for a single sign-in with `ForceAuthn="true"` (SAML 2.0 core, section 3.4.1). - -SAML assertions report the actual authentication time. - -To require signed authentication requests, set `authnRequestConfig.requireSignedAuthnRequests` to `true` and provide the service provider’s PEM-encoded RSA X.509 certificate in `authnRequestConfig.signingCertificate`. Both HTTP-POST and HTTP-Redirect signatures are verified. Unsigned requests remain accepted by default. diff --git a/.changeset/quiet-roles-seed.md b/.changeset/quiet-roles-seed.md deleted file mode 100644 index bbd2372ef233..000000000000 --- a/.changeset/quiet-roles-seed.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@logto/cli": patch ---- - -explain existing PostgreSQL tenant roles before database seeding stops - -The database seed command now checks for the roles it needs before creating tables. If roles from a previous Logto database remain in the PostgreSQL cluster, the command reports the conflict and explains why dropping the database did not remove them, so an administrator can clean them up safely before retrying. diff --git a/.changeset/shiny-mugs-hope.md b/.changeset/shiny-mugs-hope.md deleted file mode 100644 index c44ba586320c..000000000000 --- a/.changeset/shiny-mugs-hope.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -"@logto/experience": minor -"@logto/account": minor -"@logto/console": minor -"@logto/schemas": minor -"@logto/core": minor ---- - -add MFA trusted devices with configurable policies and device management - -Configure tenant-wide trusted-device policies and organization-level restrictions. After completing MFA, users can choose whether to trust their device on a dedicated page at the end of sign-in or sign-up, then skip repeated MFA on that browser. Manage trusted devices through Console, Account Center, the Management API, and the Account API, and subscribe to device lifecycle webhooks. diff --git a/packages/account/CHANGELOG.md b/packages/account/CHANGELOG.md index 0f3e93d98c71..e5472533f7d1 100644 --- a/packages/account/CHANGELOG.md +++ b/packages/account/CHANGELOG.md @@ -1,5 +1,13 @@ # @logto/account +## 0.7.0 + +### Minor Changes + +- c5bd438f79: add MFA trusted devices with configurable policies and device management + + Configure tenant-wide trusted-device policies and organization-level restrictions. After completing MFA, users can choose whether to trust their device on a dedicated page at the end of sign-in or sign-up, then skip repeated MFA on that browser. Manage trusted devices through Console, Account Center, the Management API, and the Account API, and subscribe to device lifecycle webhooks. + ## 0.6.0 ### Minor Changes diff --git a/packages/account/package.json b/packages/account/package.json index 4a7cb3ce4bbb..f14a093cfbfa 100644 --- a/packages/account/package.json +++ b/packages/account/package.json @@ -1,6 +1,6 @@ { "name": "@logto/account", - "version": "0.6.0", + "version": "0.7.0", "description": "Logto account center app.", "author": "Silverhand Inc. ", "license": "MPL-2.0", diff --git a/packages/api/CHANGELOG.md b/packages/api/CHANGELOG.md index 1fa004c42a54..0effcf6f7b46 100644 --- a/packages/api/CHANGELOG.md +++ b/packages/api/CHANGELOG.md @@ -1,5 +1,20 @@ # @logto/api +## 1.44.0 + +### Minor Changes + +- 1bac1b7cda: add a typed async iterator for paginated Management API endpoints +- fd41d8fdf7: improve API SDK client reliability and ergonomics + + - reject token request redirects, support custom abort signals and a configurable 10-second timeout, and share one token fetch across concurrent requests + - invalidate a rejected cached token once without continuously fetching tokens for permanent `401` responses + - normalize trailing slashes in custom base URLs + - support object-style Management API client configuration with a tenant ID or explicit base URL and API indicator + - support lowercase API client methods such as `.get()` and `.post()` while keeping the uppercase methods available + - apply a configurable 10-second timeout to Management API network requests while preserving per-request cancellation + - emit scope mismatch warnings once per distinct scope and preserve token request failure causes + ## 1.43.0 ## 1.42.0 diff --git a/packages/api/package.json b/packages/api/package.json index 077ac58b0494..d53eaaa413d4 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -1,6 +1,6 @@ { "name": "@logto/api", - "version": "1.43.0", + "version": "1.44.0", "description": "Logto API types and clients.", "author": "Silverhand Inc. ", "homepage": "https://github.com/logto-io/logto#readme", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 0d2d231185b9..32b7a14c5a39 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,17 @@ # Change Log +## 1.44.0 + +### Patch Changes + +- a2d6e83a4f: explain existing PostgreSQL tenant roles before database seeding stops + + The database seed command now checks for the roles it needs before creating tables. If roles from a previous Logto database remain in the PostgreSQL cluster, the command reports the conflict and explains why dropping the database did not remove them, so an administrator can clean them up safely before retrying. + +- Updated dependencies [3f9fd15331] +- Updated dependencies [c5bd438f79] + - @logto/schemas@1.44.0 + ## 1.43.0 ### Patch Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index c6ff692edd48..eb87dccaa7be 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@logto/cli", - "version": "1.43.0", + "version": "1.44.0", "description": "Logto CLI.", "author": "Silverhand Inc. ", "homepage": "https://github.com/logto-io/logto#readme", diff --git a/packages/connectors/connector-apple/CHANGELOG.md b/packages/connectors/connector-apple/CHANGELOG.md index efb9d957e418..07a5015a7022 100644 --- a/packages/connectors/connector-apple/CHANGELOG.md +++ b/packages/connectors/connector-apple/CHANGELOG.md @@ -1,5 +1,15 @@ # @logto/connector-apple +## 1.6.10 + +### Patch Changes + +- bad3854bfa: clarify that the Apple connector's identifier is a Services ID + + The connector's identifier field is now labeled "Services ID" and states that an App ID (bundle ID) is not a valid value, which Apple rejects with an `invalid_client` error. + + Setup instructions cover the Apple Developer portal, so enabling Sign in with Apple no longer appears to require Xcode. Troubleshooting guidance explains `invalid_client` and `invalid_request`, including Apple's caching of identifier configuration, which has been observed to take up to 24 hours to refresh and can make a correct configuration look broken. + ## 1.6.9 ### Patch Changes diff --git a/packages/connectors/connector-apple/package.json b/packages/connectors/connector-apple/package.json index 84e09db02e7a..783378ef4d14 100644 --- a/packages/connectors/connector-apple/package.json +++ b/packages/connectors/connector-apple/package.json @@ -1,6 +1,6 @@ { "name": "@logto/connector-apple", - "version": "1.6.9", + "version": "1.6.10", "description": "Apple web connector implementation.", "dependencies": { "@logto/connector-kit": "workspace:^", diff --git a/packages/console/CHANGELOG.md b/packages/console/CHANGELOG.md index f2da96078e3d..e98ad54d757f 100644 --- a/packages/console/CHANGELOG.md +++ b/packages/console/CHANGELOG.md @@ -1,5 +1,21 @@ # Change Log +## 1.41.0 + +### Minor Changes + +- 3f9fd15331: add authentication policies for SAML applications + + SAML applications force fresh authentication by default, as before. To let a SAML application reuse an existing Logto session, turn off "Always force authentication" in the application settings, or set `authnRequestConfig.forceAuthn` to `false` using the SAML application Management API. The service provider can still require fresh authentication for a single sign-in with `ForceAuthn="true"` (SAML 2.0 core, section 3.4.1). + + SAML assertions report the actual authentication time. + + To require signed authentication requests, set `authnRequestConfig.requireSignedAuthnRequests` to `true` and provide the service provider’s PEM-encoded RSA X.509 certificate in `authnRequestConfig.signingCertificate`. Both HTTP-POST and HTTP-Redirect signatures are verified. Unsigned requests remain accepted by default. + +- c5bd438f79: add MFA trusted devices with configurable policies and device management + + Configure tenant-wide trusted-device policies and organization-level restrictions. After completing MFA, users can choose whether to trust their device on a dedicated page at the end of sign-in or sign-up, then skip repeated MFA on that browser. Manage trusted devices through Console, Account Center, the Management API, and the Account API, and subscribe to device lifecycle webhooks. + ## 1.40.0 ### Minor Changes diff --git a/packages/console/package.json b/packages/console/package.json index 1c62d695847a..ee40f4d05dc8 100644 --- a/packages/console/package.json +++ b/packages/console/package.json @@ -1,6 +1,6 @@ { "name": "@logto/console", - "version": "1.40.0", + "version": "1.41.0", "description": "> TODO: description", "author": "Silverhand Inc. ", "homepage": "https://github.com/logto-io/logto#readme", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 21779023c3e2..b80bc60f24d9 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,42 @@ # Change Log +## 1.44.0 + +### Minor Changes + +- 3f9fd15331: add authentication policies for SAML applications + + SAML applications force fresh authentication by default, as before. To let a SAML application reuse an existing Logto session, turn off "Always force authentication" in the application settings, or set `authnRequestConfig.forceAuthn` to `false` using the SAML application Management API. The service provider can still require fresh authentication for a single sign-in with `ForceAuthn="true"` (SAML 2.0 core, section 3.4.1). + + SAML assertions report the actual authentication time. + + To require signed authentication requests, set `authnRequestConfig.requireSignedAuthnRequests` to `true` and provide the service provider’s PEM-encoded RSA X.509 certificate in `authnRequestConfig.signingCertificate`. Both HTTP-POST and HTTP-Redirect signatures are verified. Unsigned requests remain accepted by default. + +- c5bd438f79: add MFA trusted devices with configurable policies and device management + + Configure tenant-wide trusted-device policies and organization-level restrictions. After completing MFA, users can choose whether to trust their device on a dedicated page at the end of sign-in or sign-up, then skip repeated MFA on that browser. Manage trusted devices through Console, Account Center, the Management API, and the Account API, and subscribe to device lifecycle webhooks. + +### Patch Changes + +- 7d54310ee0: use a supported base language for API error messages when the requested regional language is unavailable +- 3da75ce7cf: support a trailing slash in the issuer of OIDC enterprise SSO connectors + + The discovery path is now joined onto the connector's `Issuer`, so `https://idp.example.com/` and `https://idp.example.com` both resolve to `https://idp.example.com/.well-known/openid-configuration`. The stored issuer value stays exactly as configured, so existing SSO identities keep resolving. + + Failed outbound requests made by an OIDC SSO connector now report a concise reason: the error message, or the status code alongside the response body for an HTTP failure. + +- Updated dependencies [3f9fd15331] +- Updated dependencies [a2d6e83a4f] +- Updated dependencies [c5bd438f79] + - @logto/console@1.41.0 + - @logto/phrases@1.32.0 + - @logto/schemas@1.44.0 + - @logto/cli@1.44.0 + - @logto/experience@1.23.0 + - @logto/account@0.7.0 + - @logto/demo-app@1.5.0 + - @logto/device-demo-app@0.1.0 + ## 1.43.0 ### Minor Changes diff --git a/packages/core/package.json b/packages/core/package.json index 32b359419d99..459f99775140 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@logto/core", - "version": "1.43.0", + "version": "1.44.0", "description": "The open source identity solution.", "main": "build/index.js", "author": "Silverhand Inc. ", diff --git a/packages/create/CHANGELOG.md b/packages/create/CHANGELOG.md index e90c100af2f0..e12d809aa30c 100644 --- a/packages/create/CHANGELOG.md +++ b/packages/create/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 1.44.0 + +### Patch Changes + +- Updated dependencies [a2d6e83a4f] + - @logto/cli@1.44.0 + ## 1.43.0 ### Patch Changes diff --git a/packages/create/package.json b/packages/create/package.json index 98de32320474..745416422ca0 100644 --- a/packages/create/package.json +++ b/packages/create/package.json @@ -1,6 +1,6 @@ { "name": "@logto/create", - "version": "1.43.0", + "version": "1.44.0", "author": "Silverhand Inc. ", "license": "MPL-2.0", "type": "module", @@ -15,6 +15,6 @@ "node": "^22.14.0" }, "dependencies": { - "@logto/cli": "workspace:^1.43.0" + "@logto/cli": "workspace:^1.44.0" } } diff --git a/packages/experience/CHANGELOG.md b/packages/experience/CHANGELOG.md index 0fd4fa5b8c88..0a1cb0ac3906 100644 --- a/packages/experience/CHANGELOG.md +++ b/packages/experience/CHANGELOG.md @@ -1,5 +1,13 @@ # Change Log +## 1.23.0 + +### Minor Changes + +- c5bd438f79: add MFA trusted devices with configurable policies and device management + + Configure tenant-wide trusted-device policies and organization-level restrictions. After completing MFA, users can choose whether to trust their device on a dedicated page at the end of sign-in or sign-up, then skip repeated MFA on that browser. Manage trusted devices through Console, Account Center, the Management API, and the Account API, and subscribe to device lifecycle webhooks. + ## 1.22.0 ### Minor Changes diff --git a/packages/experience/package.json b/packages/experience/package.json index 41ebda60904a..5ef75ab847fe 100644 --- a/packages/experience/package.json +++ b/packages/experience/package.json @@ -1,6 +1,6 @@ { "name": "@logto/experience", - "version": "1.22.0", + "version": "1.23.0", "license": "MPL-2.0", "type": "module", "private": true, diff --git a/packages/phrases/CHANGELOG.md b/packages/phrases/CHANGELOG.md index f65e70764d17..ee6aa37928e5 100644 --- a/packages/phrases/CHANGELOG.md +++ b/packages/phrases/CHANGELOG.md @@ -1,5 +1,17 @@ # Change Log +## 1.32.0 + +### Minor Changes + +- 3f9fd15331: add authentication policies for SAML applications + + SAML applications force fresh authentication by default, as before. To let a SAML application reuse an existing Logto session, turn off "Always force authentication" in the application settings, or set `authnRequestConfig.forceAuthn` to `false` using the SAML application Management API. The service provider can still require fresh authentication for a single sign-in with `ForceAuthn="true"` (SAML 2.0 core, section 3.4.1). + + SAML assertions report the actual authentication time. + + To require signed authentication requests, set `authnRequestConfig.requireSignedAuthnRequests` to `true` and provide the service provider’s PEM-encoded RSA X.509 certificate in `authnRequestConfig.signingCertificate`. Both HTTP-POST and HTTP-Redirect signatures are verified. Unsigned requests remain accepted by default. + ## 1.31.0 ### Minor Changes diff --git a/packages/phrases/package.json b/packages/phrases/package.json index c2fbe8e8c924..221bf1192f5d 100644 --- a/packages/phrases/package.json +++ b/packages/phrases/package.json @@ -1,6 +1,6 @@ { "name": "@logto/phrases", - "version": "1.31.0", + "version": "1.32.0", "description": "Logto shared phrases (i18n).", "author": "Silverhand Inc. ", "homepage": "https://github.com/logto-io/logto#readme", diff --git a/packages/schemas/CHANGELOG.md b/packages/schemas/CHANGELOG.md index 4049facf282c..e8a5d55cff09 100644 --- a/packages/schemas/CHANGELOG.md +++ b/packages/schemas/CHANGELOG.md @@ -1,5 +1,26 @@ # Change Log +## 1.44.0 + +### Minor Changes + +- 3f9fd15331: add authentication policies for SAML applications + + SAML applications force fresh authentication by default, as before. To let a SAML application reuse an existing Logto session, turn off "Always force authentication" in the application settings, or set `authnRequestConfig.forceAuthn` to `false` using the SAML application Management API. The service provider can still require fresh authentication for a single sign-in with `ForceAuthn="true"` (SAML 2.0 core, section 3.4.1). + + SAML assertions report the actual authentication time. + + To require signed authentication requests, set `authnRequestConfig.requireSignedAuthnRequests` to `true` and provide the service provider’s PEM-encoded RSA X.509 certificate in `authnRequestConfig.signingCertificate`. Both HTTP-POST and HTTP-Redirect signatures are verified. Unsigned requests remain accepted by default. + +- c5bd438f79: add MFA trusted devices with configurable policies and device management + + Configure tenant-wide trusted-device policies and organization-level restrictions. After completing MFA, users can choose whether to trust their device on a dedicated page at the end of sign-in or sign-up, then skip repeated MFA on that browser. Manage trusted devices through Console, Account Center, the Management API, and the Account API, and subscribe to device lifecycle webhooks. + +### Patch Changes + +- Updated dependencies [3f9fd15331] + - @logto/phrases@1.32.0 + ## 1.43.0 ### Minor Changes diff --git a/packages/schemas/alterations/next-1788946735-add-saml-authn-request-config.ts b/packages/schemas/alterations/1.44.0-1788946735-add-saml-authn-request-config.ts similarity index 100% rename from packages/schemas/alterations/next-1788946735-add-saml-authn-request-config.ts rename to packages/schemas/alterations/1.44.0-1788946735-add-saml-authn-request-config.ts diff --git a/packages/schemas/package.json b/packages/schemas/package.json index a55ddaac9e37..e6107a9beca2 100644 --- a/packages/schemas/package.json +++ b/packages/schemas/package.json @@ -1,6 +1,6 @@ { "name": "@logto/schemas", - "version": "1.43.0", + "version": "1.44.0", "author": "Silverhand Inc. ", "license": "MPL-2.0", "type": "module", diff --git a/packages/translate/CHANGELOG.md b/packages/translate/CHANGELOG.md index 8342f9e601c4..275b791b2fc1 100644 --- a/packages/translate/CHANGELOG.md +++ b/packages/translate/CHANGELOG.md @@ -1,5 +1,12 @@ # @logto/translate +## 0.2.18 + +### Patch Changes + +- Updated dependencies [3f9fd15331] + - @logto/phrases@1.32.0 + ## 0.2.17 ### Patch Changes diff --git a/packages/translate/package.json b/packages/translate/package.json index a171c672deef..e43a8423c887 100644 --- a/packages/translate/package.json +++ b/packages/translate/package.json @@ -1,6 +1,6 @@ { "name": "@logto/translate", - "version": "0.2.17", + "version": "0.2.18", "description": "A CLI tool that helps translate phrases and experience-phrases to i18n resources.", "author": "Silverhand Inc. ", "homepage": "https://github.com/logto-io/logto#readme", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 2413ea9bfc63..3981b4859607 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -4424,7 +4424,7 @@ importers: packages/create: dependencies: '@logto/cli': - specifier: workspace:^1.43.0 + specifier: workspace:^1.44.0 version: link:../cli packages/demo-app: