Skip to content

Commit

Permalink
release: version packages
Browse files Browse the repository at this point in the history
  • Loading branch information
silverhand-bot committed Aug 16, 2024
1 parent 50e4308 commit fdbb2b9
Show file tree
Hide file tree
Showing 21 changed files with 247 additions and 184 deletions.
5 changes: 0 additions & 5 deletions .changeset/friendly-rice-sell.md

This file was deleted.

33 changes: 0 additions & 33 deletions .changeset/long-rabbits-roll.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/pink-baboons-mix.md

This file was deleted.

20 changes: 0 additions & 20 deletions .changeset/popular-monkeys-complain.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/rare-moons-unite.md

This file was deleted.

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

## 1.20.0

### Minor Changes

- 976558af9: add new cli command to setup Logto tunnel service for developing and debugging custom ui on your local machine

This command will establish a tunnel service between the following 3 entities: Logto cloud auth services, your application, and your custom sign-in UI.

Assuming you have a custom sign-in page running on `http://localhost:4000`, then you can execute the command this way:

```bash
logto tunnel --endpoint https://<tenant-id>.logto.app --port 9000 --experience-uri http://localhost:4000
```

Or if you don't have your custom UI pages hosted on a dev server, you can use the `--experience-path` option to specify the path to your static files:

```bash
logto tunnel --endpoint https://<tenant-id>.logto.app --port 9000 --experience-path /path/to/your/custom/ui
```

This command also works if you have enabled custom domain in your Logto tenant. E.g.:

```bash
logto tunnel --endpoint https://your-custom-domain.com --port 9000 --experience-path /path/to/your/custom/ui
```

This should set up the tunnel and it will be running on your local machine at `http://localhost:9000/`.

Finally, run your application and set its endpoint in Logto config to the tunnel address `http://localhost:9000/` instead.

If all set up correctly, when you click the "sign-in" button in your application, you should be navigated to your custom sign-in page instead of Logto's built-in UI, along with valid session (cookies) that allows you to further interact with Logto experience API.

Refer to the [documentation](https://docs.logto.dev/docs/references/using-cli/tunnel/) for more details.

### Patch Changes

- Updated dependencies [25187ef63]
- @logto/schemas@1.20.0

## 1.19.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@logto/cli",
"version": "1.19.0",
"version": "1.20.0",
"description": "Logto CLI.",
"author": "Silverhand Inc. <contact@silverhand.io>",
"homepage": "https://github.com/logto-io/logto#readme",
Expand Down Expand Up @@ -47,7 +47,7 @@
"@logto/language-kit": "workspace:^1.1.0",
"@logto/phrases": "workspace:^1.13.0",
"@logto/phrases-experience": "workspace:^1.7.0",
"@logto/schemas": "workspace:1.19.0",
"@logto/schemas": "workspace:1.20.0",
"@logto/shared": "workspace:^3.1.1",
"@silverhand/essentials": "^2.9.1",
"@silverhand/slonik": "31.0.0-beta.2",
Expand Down
7 changes: 7 additions & 0 deletions packages/connectors/connector-kook/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# @logto/connector-kook

## 0.2.0

### Minor Changes

- 4b01ce7c1: add KOOK social connector
2 changes: 1 addition & 1 deletion packages/connectors/connector-kook/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@logto/connector-kook",
"version": "0.1.0",
"version": "0.2.0",
"description": "KOOK connector implementation.",
"main": "./lib/index.js",
"module": "./lib/index.js",
Expand Down
6 changes: 6 additions & 0 deletions packages/console/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 1.17.1

### Patch Changes

- ff6b304ba: fix: should not show custom JWT paywall for OSS users

## 1.17.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/console/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@logto/console",
"version": "1.17.0",
"version": "1.17.1",
"description": "> TODO: description",
"author": "Silverhand Inc. <contact@silverhand.io>",
"homepage": "https://github.com/logto-io/logto#readme",
Expand Down Expand Up @@ -35,7 +35,7 @@
"@logto/phrases": "workspace:^1.13.0",
"@logto/phrases-experience": "workspace:^1.7.0",
"@logto/react": "^3.0.12",
"@logto/schemas": "workspace:^1.19.0",
"@logto/schemas": "workspace:^1.20.0",
"@logto/shared": "workspace:^3.1.1",
"@mdx-js/react": "^3.0.1",
"@mdx-js/rollup": "^3.0.1",
Expand Down
30 changes: 30 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,35 @@
# Change Log

## 1.20.0

### Minor Changes

- 25187ef63: add support for `login_hint` parameter in sign-in method

This feature allows you to provide a suggested identifier (email, phone, or username) for the user, improving the sign-in experience especially in scenarios where the user's identifier is known or can be inferred.

Example:

```javascript
// Example usage (React project using React SDK)
void signIn({
redirectUri,
loginHint: "user@example.com",
firstScreen: "signIn", // or 'register'
});
```

### Patch Changes

- Updated dependencies [ff6b304ba]
- Updated dependencies [976558af9]
- Updated dependencies [25187ef63]
- Updated dependencies [ab90f43db]
- @logto/console@1.17.1
- @logto/cli@1.20.0
- @logto/experience@1.9.0
- @logto/schemas@1.20.0

## 1.19.0

### Minor Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@logto/core",
"version": "1.19.0",
"version": "1.20.0",
"description": "The open source identity solution.",
"main": "build/index.js",
"author": "Silverhand Inc. <contact@silverhand.io>",
Expand Down Expand Up @@ -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.19.0",
"@logto/cli": "workspace:^1.20.0",
"@logto/connector-kit": "workspace:^4.0.0",
"@logto/console": "workspace:*",
"@logto/core-kit": "workspace:^2.5.0",
Expand All @@ -42,7 +42,7 @@
"@logto/language-kit": "workspace:^1.1.0",
"@logto/phrases": "workspace:^1.13.0",
"@logto/phrases-experience": "workspace:^1.7.0",
"@logto/schemas": "workspace:^1.19.0",
"@logto/schemas": "workspace:^1.20.0",
"@logto/shared": "workspace:^3.1.1",
"@silverhand/essentials": "^2.9.1",
"@silverhand/slonik": "31.0.0-beta.2",
Expand Down
7 changes: 7 additions & 0 deletions packages/create/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## 1.20.0

### Patch Changes

- Updated dependencies [976558af9]
- @logto/cli@1.20.0

## 1.19.0

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/create/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@logto/create",
"version": "1.19.0",
"version": "1.20.0",
"author": "Silverhand Inc. <contact@silverhand.io>",
"license": "MPL-2.0",
"type": "module",
Expand All @@ -15,6 +15,6 @@
"node": "^20.9.0"
},
"dependencies": {
"@logto/cli": "workspace:^1.19.0"
"@logto/cli": "workspace:^1.20.0"
}
}
25 changes: 25 additions & 0 deletions packages/experience/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# Change Log

## 1.9.0

### Minor Changes

- 25187ef63: add support for `login_hint` parameter in sign-in method

This feature allows you to provide a suggested identifier (email, phone, or username) for the user, improving the sign-in experience especially in scenarios where the user's identifier is known or can be inferred.

Example:

```javascript
// Example usage (React project using React SDK)
void signIn({
redirectUri,
loginHint: "user@example.com",
firstScreen: "signIn", // or 'register'
});
```

### Patch Changes

- ab90f43db: fix(experience): prevent errors from applying unsupported cached identifier types

Previously, cached identifier input values were applied to all pages without type checking, potentially causing errors. Now, the type is verified before application to ensure compatibility with each page's supported types.

## 1.8.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/experience/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@logto/experience",
"version": "1.8.0",
"version": "1.9.0",
"license": "MPL-2.0",
"type": "module",
"private": true,
Expand All @@ -26,7 +26,7 @@
"@logto/language-kit": "workspace:^1.1.0",
"@logto/phrases": "workspace:^1.13.0",
"@logto/phrases-experience": "workspace:^1.7.0",
"@logto/schemas": "workspace:^1.19.0",
"@logto/schemas": "workspace:^1.20.0",
"@react-spring/shared": "^9.6.1",
"@react-spring/web": "^9.6.1",
"@silverhand/eslint-config": "6.0.1",
Expand Down
19 changes: 19 additions & 0 deletions packages/schemas/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Change Log

## 1.20.0

### Minor Changes

- 25187ef63: add support for `login_hint` parameter in sign-in method

This feature allows you to provide a suggested identifier (email, phone, or username) for the user, improving the sign-in experience especially in scenarios where the user's identifier is known or can be inferred.

Example:

```javascript
// Example usage (React project using React SDK)
void signIn({
redirectUri,
loginHint: "user@example.com",
firstScreen: "signIn", // or 'register'
});
```

## 1.19.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/schemas/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@logto/schemas",
"version": "1.19.0",
"version": "1.20.0",
"author": "Silverhand Inc. <contact@silverhand.io>",
"license": "MPL-2.0",
"type": "module",
Expand Down
Loading

0 comments on commit fdbb2b9

Please sign in to comment.