mirror of
https://github.com/logto-io/logto.git
synced 2025-04-07 23:01:25 -05:00
release: version packages (#6928)
* release: version packages * chore: fix the ci job fix the integration test ci job --------- Co-authored-by: simeng-li <simeng@silverhand.io>
This commit is contained in:
parent
f4ac74b49c
commit
e515728a52
16 changed files with 55 additions and 31 deletions
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
"@logto/core": patch
|
||||
---
|
||||
|
||||
support custom endpoint and addressing style for S3
|
|
@ -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.
|
|
@ -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 }}
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
# Change Log
|
||||
|
||||
## 1.23.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @logto/schemas@1.23.1
|
||||
|
||||
## 1.23.0
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@logto/cli",
|
||||
"version": "1.23.0",
|
||||
"version": "1.23.1",
|
||||
"description": "Logto CLI.",
|
||||
"author": "Silverhand Inc. <contact@silverhand.io>",
|
||||
"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",
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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. <contact@silverhand.io>",
|
||||
|
@ -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",
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
# Change Log
|
||||
|
||||
## 1.23.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @logto/cli@1.23.1
|
||||
|
||||
## 1.23.0
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@logto/create",
|
||||
"version": "1.23.0",
|
||||
"version": "1.23.1",
|
||||
"author": "Silverhand Inc. <contact@silverhand.io>",
|
||||
"license": "MPL-2.0",
|
||||
"type": "module",
|
||||
|
@ -15,6 +15,6 @@
|
|||
"node": "^20.9.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"@logto/cli": "workspace:^1.23.0"
|
||||
"@logto/cli": "workspace:^1.23.1"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
# Change Log
|
||||
|
||||
## 1.23.1
|
||||
|
||||
## 1.23.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@logto/schemas",
|
||||
"version": "1.23.0",
|
||||
"version": "1.23.1",
|
||||
"author": "Silverhand Inc. <contact@silverhand.io>",
|
||||
"license": "MPL-2.0",
|
||||
"type": "module",
|
||||
|
|
10
pnpm-lock.yaml
generated
10
pnpm-lock.yaml
generated
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue