From e515728a52574e7836b0e66b8ba13fc14b811f6d Mon Sep 17 00:00:00 2001 From: silverhand-bot <107667382+silverhand-bot@users.noreply.github.com> Date: Thu, 23 Jan 2025 13:51:17 +0800 Subject: [PATCH] release: version packages (#6928) * release: version packages * chore: fix the ci job fix the integration test ci job --------- Co-authored-by: simeng-li --- .changeset/afraid-otters-crash.md | 5 ----- .changeset/soft-kings-grin.md | 9 --------- .../alteration-compatibility-integration-test.yml | 8 ++++++-- packages/cli/CHANGELOG.md | 6 ++++++ packages/cli/package.json | 4 ++-- packages/core/CHANGELOG.md | 10 ++++++++++ packages/core/package.json | 6 +++--- packages/create/CHANGELOG.md | 6 ++++++ packages/create/package.json | 4 ++-- packages/experience/CHANGELOG.md | 10 ++++++++++ packages/experience/package.json | 4 ++-- packages/schemas/CHANGELOG.md | 2 ++ ...1-1735274337-add-encryption-config-to-saml-apps.ts} | 0 ...1.23.1-1735292380-make-saml-app-first-party-app.ts} | 0 packages/schemas/package.json | 2 +- pnpm-lock.yaml | 10 +++++----- 16 files changed, 55 insertions(+), 31 deletions(-) delete mode 100644 .changeset/afraid-otters-crash.md delete mode 100644 .changeset/soft-kings-grin.md rename packages/schemas/alterations/{next-1735274337-add-encryption-config-to-saml-apps.ts => 1.23.1-1735274337-add-encryption-config-to-saml-apps.ts} (100%) rename packages/schemas/alterations/{next-1735292380-make-saml-app-first-party-app.ts => 1.23.1-1735292380-make-saml-app-first-party-app.ts} (100%) diff --git a/.changeset/afraid-otters-crash.md b/.changeset/afraid-otters-crash.md deleted file mode 100644 index 24d4e5c9e23..00000000000 --- a/.changeset/afraid-otters-crash.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@logto/core": patch ---- - -support custom endpoint and addressing style for S3 diff --git a/.changeset/soft-kings-grin.md b/.changeset/soft-kings-grin.md deleted file mode 100644 index ecddbc304c4..00000000000 --- a/.changeset/soft-kings-grin.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -"@logto/experience": patch ---- - -remove the image element's `cross-origin="anonymous"` attribute. - -Some public image resources may not have the proper cross-origin headers configured, those images may fail to load when the `cross-origin="anonymous"` attribute is present. -Since those image elements are only used for display purposes, Logto does not need to access the image data, so the `cross-origin="anonymous"` attribute is not necessary. -To make the image elements more compatible with public image resources, remove the `cross-origin="anonymous"` attribute from the image elements. diff --git a/.github/workflows/alteration-compatibility-integration-test.yml b/.github/workflows/alteration-compatibility-integration-test.yml index 27d1454786c..ba102b90fb4 100644 --- a/.github/workflows/alteration-compatibility-integration-test.yml +++ b/.github/workflows/alteration-compatibility-integration-test.yml @@ -64,7 +64,9 @@ jobs: matrix: target: [api, experience, console] needs: package - runs-on: ubuntu-latest + # An error will occur if we use a newer version of Ubuntu in the CI environment, as it has restrictions on unprivileged user namespaces and sandbox usage, which prevents Chromium (used by Puppeteer) from launching properly during integration tests. So we lock the Ubuntu version to 22.04. + # See error record: https://github.com/logto-io/logto/actions/runs/12803809008/job/35697654974 + runs-on: ubuntu-22.04 env: INTEGRATION_TEST: true DEV_FEATURES_ENABLED: false @@ -84,7 +86,9 @@ jobs: rerun-on-failure: needs: run-logto if: failure() && fromJSON(github.run_attempt) < 3 - runs-on: ubuntu-latest + # An error will occur if we use a newer version of Ubuntu in the CI environment, as it has restrictions on unprivileged user namespaces and sandbox usage, which prevents Chromium (used by Puppeteer) from launching properly during integration tests. So we lock the Ubuntu version to 22.04. + # See error record: https://github.com/logto-io/logto/actions/runs/12803809008/job/35697654974 + runs-on: ubuntu-22.04 steps: - env: GH_REPO: ${{ github.repository }} diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 82785eac3a2..6650c4e2069 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 1.23.1 + +### Patch Changes + +- @logto/schemas@1.23.1 + ## 1.23.0 ### Patch Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index bf3760d7058..3126e7043b1 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@logto/cli", - "version": "1.23.0", + "version": "1.23.1", "description": "Logto CLI.", "author": "Silverhand Inc. ", "homepage": "https://github.com/logto-io/logto#readme", @@ -44,7 +44,7 @@ "dependencies": { "@logto/connector-kit": "workspace:^4.1.0", "@logto/core-kit": "workspace:^2.5.2", - "@logto/schemas": "workspace:1.23.0", + "@logto/schemas": "workspace:1.23.1", "@logto/shared": "workspace:^3.1.2", "@silverhand/essentials": "^2.9.1", "@silverhand/slonik": "31.0.0-beta.2", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 6e5e51fc6cc..42ec2cbe269 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,15 @@ # Change Log +## 1.23.1 + +### Patch Changes + +- 39cef8ea4: support custom endpoint and addressing style for S3 +- Updated dependencies [d2468683c] + - @logto/experience@1.11.1 + - @logto/schemas@1.23.1 + - @logto/cli@1.23.1 + ## 1.23.0 ### Minor Changes diff --git a/packages/core/package.json b/packages/core/package.json index 6cbb96b7d51..e32aca6b2aa 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@logto/core", - "version": "1.23.0", + "version": "1.23.1", "description": "The open source identity solution.", "main": "build/index.js", "author": "Silverhand Inc. ", @@ -33,7 +33,7 @@ "@koa/cors": "^5.0.0", "@logto/affiliate": "^0.1.0", "@logto/app-insights": "workspace:^2.0.0", - "@logto/cli": "workspace:^1.23.0", + "@logto/cli": "workspace:^1.23.1", "@logto/connector-kit": "workspace:^4.1.0", "@logto/console": "workspace:*", "@logto/core-kit": "workspace:^2.5.2", @@ -44,7 +44,7 @@ "@logto/language-kit": "workspace:^1.1.0", "@logto/phrases": "workspace:^1.16.0", "@logto/phrases-experience": "workspace:^1.9.0", - "@logto/schemas": "workspace:^1.23.0", + "@logto/schemas": "workspace:^1.23.1", "@logto/shared": "workspace:^3.1.2", "@silverhand/essentials": "^2.9.1", "@silverhand/slonik": "31.0.0-beta.2", diff --git a/packages/create/CHANGELOG.md b/packages/create/CHANGELOG.md index 27b5bdbc472..f26698542ed 100644 --- a/packages/create/CHANGELOG.md +++ b/packages/create/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 1.23.1 + +### Patch Changes + +- @logto/cli@1.23.1 + ## 1.23.0 ### Patch Changes diff --git a/packages/create/package.json b/packages/create/package.json index 908a7899496..39db265cd19 100644 --- a/packages/create/package.json +++ b/packages/create/package.json @@ -1,6 +1,6 @@ { "name": "@logto/create", - "version": "1.23.0", + "version": "1.23.1", "author": "Silverhand Inc. ", "license": "MPL-2.0", "type": "module", @@ -15,6 +15,6 @@ "node": "^20.9.0" }, "dependencies": { - "@logto/cli": "workspace:^1.23.0" + "@logto/cli": "workspace:^1.23.1" } } diff --git a/packages/experience/CHANGELOG.md b/packages/experience/CHANGELOG.md index f35ee50395b..f2bd7ee3a28 100644 --- a/packages/experience/CHANGELOG.md +++ b/packages/experience/CHANGELOG.md @@ -1,5 +1,15 @@ # Change Log +## 1.11.1 + +### Patch Changes + +- d2468683c: remove the image element's `cross-origin="anonymous"` attribute. + + Some public image resources may not have the proper cross-origin headers configured, those images may fail to load when the `cross-origin="anonymous"` attribute is present. + Since those image elements are only used for display purposes, Logto does not need to access the image data, so the `cross-origin="anonymous"` attribute is not necessary. + To make the image elements more compatible with public image resources, remove the `cross-origin="anonymous"` attribute from the image elements. + ## 1.11.0 ### Minor Changes diff --git a/packages/experience/package.json b/packages/experience/package.json index 270cb95b216..99259f9e49e 100644 --- a/packages/experience/package.json +++ b/packages/experience/package.json @@ -1,6 +1,6 @@ { "name": "@logto/experience", - "version": "1.11.0", + "version": "1.11.1", "license": "MPL-2.0", "type": "module", "private": true, @@ -26,7 +26,7 @@ "@logto/language-kit": "workspace:^1.1.0", "@logto/phrases": "workspace:^1.16.0", "@logto/phrases-experience": "workspace:^1.9.0", - "@logto/schemas": "workspace:^1.23.0", + "@logto/schemas": "workspace:^1.23.1", "@react-spring/shared": "^9.6.1", "@react-spring/web": "^9.6.1", "@silverhand/eslint-config": "6.0.1", diff --git a/packages/schemas/CHANGELOG.md b/packages/schemas/CHANGELOG.md index abd301791b3..fcbcee09cb5 100644 --- a/packages/schemas/CHANGELOG.md +++ b/packages/schemas/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 1.23.1 + ## 1.23.0 ### Minor Changes diff --git a/packages/schemas/alterations/next-1735274337-add-encryption-config-to-saml-apps.ts b/packages/schemas/alterations/1.23.1-1735274337-add-encryption-config-to-saml-apps.ts similarity index 100% rename from packages/schemas/alterations/next-1735274337-add-encryption-config-to-saml-apps.ts rename to packages/schemas/alterations/1.23.1-1735274337-add-encryption-config-to-saml-apps.ts diff --git a/packages/schemas/alterations/next-1735292380-make-saml-app-first-party-app.ts b/packages/schemas/alterations/1.23.1-1735292380-make-saml-app-first-party-app.ts similarity index 100% rename from packages/schemas/alterations/next-1735292380-make-saml-app-first-party-app.ts rename to packages/schemas/alterations/1.23.1-1735292380-make-saml-app-first-party-app.ts diff --git a/packages/schemas/package.json b/packages/schemas/package.json index bbf45058229..41e4690043d 100644 --- a/packages/schemas/package.json +++ b/packages/schemas/package.json @@ -1,6 +1,6 @@ { "name": "@logto/schemas", - "version": "1.23.0", + "version": "1.23.1", "author": "Silverhand Inc. ", "license": "MPL-2.0", "type": "module", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 674c7595eac..7b0e5d702c7 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -111,7 +111,7 @@ importers: specifier: workspace:^2.5.2 version: link:../toolkit/core-kit '@logto/schemas': - specifier: workspace:1.23.0 + specifier: workspace:1.23.1 version: link:../schemas '@logto/shared': specifier: workspace:^3.1.2 @@ -3162,7 +3162,7 @@ importers: specifier: workspace:^2.0.0 version: link:../app-insights '@logto/cli': - specifier: workspace:^1.23.0 + specifier: workspace:^1.23.1 version: link:../cli '@logto/connector-kit': specifier: workspace:^4.1.0 @@ -3195,7 +3195,7 @@ importers: specifier: workspace:^1.9.0 version: link:../phrases-experience '@logto/schemas': - specifier: workspace:^1.23.0 + specifier: workspace:^1.23.1 version: link:../schemas '@logto/shared': specifier: workspace:^3.1.2 @@ -3469,7 +3469,7 @@ importers: packages/create: dependencies: '@logto/cli': - specifier: workspace:^1.23.0 + specifier: workspace:^1.23.1 version: link:../cli packages/demo-app: @@ -3653,7 +3653,7 @@ importers: specifier: workspace:^1.9.0 version: link:../phrases-experience '@logto/schemas': - specifier: workspace:^1.23.0 + specifier: workspace:^1.23.1 version: link:../schemas '@react-spring/shared': specifier: ^9.6.1