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 7, 2024
1 parent d26fca7 commit ee3810a
Show file tree
Hide file tree
Showing 116 changed files with 1,043 additions and 453 deletions.
5 changes: 0 additions & 5 deletions .changeset/bright-carpets-relax.md

This file was deleted.

12 changes: 0 additions & 12 deletions .changeset/clever-lemons-yawn.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/cool-otters-unite.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/cyan-bottles-call.md

This file was deleted.

33 changes: 0 additions & 33 deletions .changeset/dull-goats-help.md

This file was deleted.

14 changes: 0 additions & 14 deletions .changeset/fast-rats-talk.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/gold-mails-sin.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/lazy-geese-bow.md

This file was deleted.

12 changes: 0 additions & 12 deletions .changeset/polite-plums-tease.md

This file was deleted.

26 changes: 0 additions & 26 deletions .changeset/seven-comics-tan.md

This file was deleted.

13 changes: 0 additions & 13 deletions .changeset/shy-baboons-occur.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/slow-boxes-greet.md

This file was deleted.

34 changes: 0 additions & 34 deletions .changeset/slow-buses-rhyme.md

This file was deleted.

12 changes: 0 additions & 12 deletions .changeset/sour-windows-wave.md

This file was deleted.

18 changes: 0 additions & 18 deletions .changeset/stale-planets-sneeze.md

This file was deleted.

10 changes: 0 additions & 10 deletions .changeset/sweet-rules-hear.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/swift-stingrays-tap.md

This file was deleted.

10 changes: 0 additions & 10 deletions .changeset/thirty-cups-joke.md

This file was deleted.

46 changes: 0 additions & 46 deletions .changeset/violet-phones-occur.md

This file was deleted.

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

## 1.19.0

### Minor Changes

- 2d0502a42: add new cli command to setup proxy for developing and debugging custom ui locally

This command will establish a proxy tunnel between the following 3 entities together: your 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
npm cli proxy --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
npm cli proxy --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
npm cli proxy --endpoint https://your-custom-domain.com --port 9000 --experience-path /path/to/your/custom/ui
```
This should set up the proxy and it will be running on your local machine at `http://localhost:9000/`.
Finally, run your application and set its Logto endpoint to the proxy 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.

Happy coding!

### Patch Changes

- Updated dependencies [6477c6dee]
- Updated dependencies [3a839f6d6]
- Updated dependencies [b91ec0cd6]
- Updated dependencies [d203c8d2f]
- Updated dependencies [b188bb161]
- Updated dependencies [62f5e5e0c]
- Updated dependencies [d56bc2f73]
- Updated dependencies [510f681fa]
- @logto/schemas@1.19.0
- @logto/phrases@1.13.0

## 1.18.0

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@logto/cli",
"version": "1.18.0",
"version": "1.19.0",
"description": "Logto CLI.",
"author": "Silverhand Inc. <contact@silverhand.io>",
"homepage": "https://github.com/logto-io/logto#readme",
Expand Down Expand Up @@ -45,9 +45,9 @@
"@logto/connector-kit": "workspace:^4.0.0",
"@logto/core-kit": "workspace:^2.5.0",
"@logto/language-kit": "workspace:^1.1.0",
"@logto/phrases": "workspace:^1.12.0",
"@logto/phrases": "workspace:^1.13.0",
"@logto/phrases-experience": "workspace:^1.7.0",
"@logto/schemas": "workspace:1.18.0",
"@logto/schemas": "workspace:1.19.0",
"@logto/shared": "workspace:^3.1.1",
"@silverhand/essentials": "^2.9.1",
"@silverhand/slonik": "31.0.0-beta.2",
Expand Down
10 changes: 10 additions & 0 deletions packages/connectors/connector-alipay-native/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @logto/connector-alipay-native

## 1.3.0

### Minor Changes

- 510f681fa: use tsup for building

We've updated some of the packages to use `tsup` for building. This will make the build process faster, and should not affect the functionality of the packages.

Use minor version bump to catch your attention.

## 1.2.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/connectors/connector-alipay-native/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@logto/connector-alipay-native",
"version": "1.2.1",
"version": "1.3.0",
"description": "Alipay Native implementation.",
"author": "Silverhand Inc. <contact@silverhand.io>",
"dependencies": {
Expand Down
Loading

0 comments on commit ee3810a

Please sign in to comment.