0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-02-17 22:04:19 -05:00

release: toolkit v1.0.0 (#3552)

This commit is contained in:
Gao Sun 2023-03-20 21:38:32 +08:00 committed by GitHub
parent 384df30e04
commit 415c2fab23
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 53 additions and 109 deletions

View file

@ -1,7 +0,0 @@
---
"@logto/connector-kit": minor
---
Add optional `formItems` to connector's metadata.
If set, the admin console's connector page (both create and update) will use it to generate a form to input config instead of raw JSON.

View file

@ -1,5 +0,0 @@
---
"@logto/connector-kit": patch
---
Add description and tooltip for connector config's formItems.

View file

@ -1,6 +0,0 @@
---
"@logto/connector-kit": patch
---
1. Add `connectorId`, `connectorFactoryId` and `jti` to `GetAuthorizationUri`.
2. Make `ConnectorSession` compatible for arbitrary keys.

View file

@ -1,10 +0,0 @@
---
"@logto/connector-kit": minor
"@logto/core-kit": minor
"@logto/language-kit": minor
---
## Improvements
- Exported seed constants and schemas.
- Add ID generation utilities `buildIdGenerator()` and `generateStandardId()`.

View file

@ -1,5 +0,0 @@
---
"@logto/connector-kit": minor
---
Pass user agent to connector

View file

@ -1,61 +0,0 @@
{
"mode": "pre",
"tag": "rc",
"initialVersions": {
"@logto/cli": "1.0.0-rc.0",
"@logto/console": "1.0.0-rc.0",
"@logto/core": "1.0.0-rc.0",
"@logto/create": "1.0.0-rc.0",
"@logto/demo-app": "1.0.0-rc.0",
"@logto/integration-tests": "1.0.0-rc.0",
"@logto/phrases": "1.0.0-rc.0",
"@logto/phrases-ui": "1.0.0-rc.0",
"@logto/schemas": "1.0.0-rc.0",
"@logto/shared": "1.0.0-rc.0",
"@logto/ui": "1.0.0-rc.0",
"@logto/connector-kit": "1.0.0-rc.0",
"@logto/core-kit": "1.0.0-rc.0",
"@logto/language-kit": "1.0.0-rc.0",
"@logto/cloud": "0.1.0"
},
"changesets": [
"afraid-eagles-retire",
"big-turkeys-invite",
"breezy-socks-joke",
"clever-panthers-lay",
"curly-apes-tease",
"curly-hornets-end",
"cyan-buses-trade",
"empty-rockets-march",
"fast-toys-share",
"fifty-balloons-taste",
"good-dodos-visit",
"good-feet-own",
"green-geese-train",
"grumpy-clocks-refuse",
"large-windows-scream",
"lemon-cars-wonder",
"lovely-rivers-sniff",
"many-avocados-know",
"modern-days-float",
"moody-timers-grin",
"neat-snakes-smash",
"pink-maps-yell",
"plenty-ties-divide",
"quick-turtles-joke",
"quiet-shrimps-flow",
"silly-rules-laugh",
"six-falcons-sin",
"six-mayflies-tan",
"slow-meals-enjoy",
"small-knives-swim",
"sweet-dolphins-own",
"tender-maps-burn",
"thin-balloons-brush",
"thin-oranges-act",
"three-ducks-yell",
"tricky-mirrors-act",
"unlucky-lizards-agree",
"unlucky-months-clap"
]
}

View file

@ -1,7 +0,0 @@
---
"@logto/connector-kit": patch
---
Add optional `setSession` method and `getSession` method as input parameters of `getAuthorizationUri` and `getUserInfo` respectively.
This change enabled stateless connectors to utilize Logto session to pass parameters between APIs.

View file

@ -1,5 +0,0 @@
---
"@logto/connector-kit": patch
---
Remove connector database `storage` column and its corresponding access.

View file

@ -1,5 +1,32 @@
# Change Log
## 1.0.0
### Minor Changes
- 8658827ca: Add optional `formItems` to connector's metadata.
If set, the admin console's connector page (both create and update) will use it to generate a form to input config instead of raw JSON.
- 738675a7d: ## Improvements
- Exported seed constants and schemas.
- Add ID generation utilities `buildIdGenerator()` and `generateStandardId()`.
- c0526d931: Pass user agent to connector
### Patch Changes
- 69ac13e3a: Add description and tooltip for connector config's formItems.
- 69af8a381: 1. Add `connectorId`, `connectorFactoryId` and `jti` to `GetAuthorizationUri`. 2. Make `ConnectorSession` compatible for arbitrary keys.
- c2d36b1c8: Add optional `setSession` method and `getSession` method as input parameters of `getAuthorizationUri` and `getUserInfo` respectively.
This change enabled stateless connectors to utilize Logto session to pass parameters between APIs.
- ad3611f5a: Remove connector database `storage` column and its corresponding access.
- Updated dependencies [738675a7d]
- @logto/language-kit@1.0.0
## 1.0.0-rc.3
### Patch Changes

View file

@ -1,6 +1,6 @@
{
"name": "@logto/connector-kit",
"version": "1.0.0-rc.3",
"version": "1.0.0",
"author": "Silverhand Inc. <contact@silverhand.io>",
"homepage": "https://github.com/logto-io/toolkit#readme",
"repository": {

View file

@ -1,5 +1,19 @@
# Change Log
## 1.0.0
### Minor Changes
- 738675a7d: ## Improvements
- Exported seed constants and schemas.
- Add ID generation utilities `buildIdGenerator()` and `generateStandardId()`.
### Patch Changes
- Updated dependencies [738675a7d]
- @logto/language-kit@1.0.0
## 1.0.0-beta.30
### Minor Changes

View file

@ -1,6 +1,6 @@
{
"name": "@logto/core-kit",
"version": "1.0.0-rc.0",
"version": "1.0.0",
"author": "Silverhand Inc. <contact@silverhand.io>",
"homepage": "https://github.com/logto-io/toolkit#readme",
"repository": {

View file

@ -1,5 +1,14 @@
# Change Log
## 1.0.0
### Minor Changes
- 738675a7d: ## Improvements
- Exported seed constants and schemas.
- Add ID generation utilities `buildIdGenerator()` and `generateStandardId()`.
## 1.0.0-beta.30
### Minor Changes

View file

@ -1,6 +1,6 @@
{
"name": "@logto/language-kit",
"version": "1.0.0-rc.0",
"version": "1.0.0",
"author": "Silverhand Inc. <contact@silverhand.io>",
"homepage": "https://github.com/logto-io/toolkit#readme",
"repository": {