-
-
Notifications
You must be signed in to change notification settings - Fork 586
release: version packages #7646
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
silverhand-bot
wants to merge
1
commit into
master
Choose a base branch
from
changeset-release/master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
+75
−47
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
COMPARE TO
|
Name | Diff |
---|---|
.changeset/add-pbkdf2-support.md | 📈 +941 Bytes |
.changeset/olive-maps-wave.md | 📈 +67 Bytes |
packages/api/CHANGELOG.md | 📈 +11 Bytes |
packages/api/package.json | 0 Bytes |
packages/cli/CHANGELOG.md | 📈 +55 Bytes |
packages/cli/package.json | 0 Bytes |
packages/connectors/connector-http-sms/CHANGELOG.md | 📈 +94 Bytes |
packages/connectors/connector-http-sms/package.json | 0 Bytes |
packages/core/CHANGELOG.md | 📈 +1.1 KB |
packages/core/package.json | 0 Bytes |
packages/create/CHANGELOG.md | 📈 +51 Bytes |
packages/create/package.json | 0 Bytes |
packages/schemas/CHANGELOG.md | 📈 +11 Bytes |
packages/schemas/alterations/1.31.0-1753689065-add-forgot-password-methods-to-sie-table.ts | 📈 +481 Bytes |
packages/schemas/alterations/next-1753689065-add-forgot-password-methods-to-sie-table.ts | 📈 +481 Bytes |
packages/schemas/package.json | 0 Bytes |
pnpm-lock.yaml | 📈 +1.36 KB |
959bba9
to
7f00ee1
Compare
7f00ee1
to
b833556
Compare
1064a59
to
3a86845
Compare
3a86845
to
0db045a
Compare
0db045a
to
efff2d1
Compare
efff2d1
to
6990889
Compare
6990889
to
1935b18
Compare
1935b18
to
8846fc2
Compare
8846fc2
to
a1556ae
Compare
a1556ae
to
dde3d49
Compare
dde3d49
to
d34536a
Compare
d34536a
to
9b85aa1
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and publish to npm yourself or setup this action to publish automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to master, this PR will be updated.
Releases
@logto/[email protected]
Minor Changes
@logto/[email protected]
Patch Changes
@logto/[email protected]
Patch Changes
@logto/[email protected]
@logto/[email protected]
@logto/[email protected]
Minor Changes
3168400: Add PBKDF2 support for legacy password verification
Added support for PBKDF2 (Password-Based Key Derivation Function 2) algorithm in legacy password verification. This enhancement allows the system to properly verify passwords that were hashed using PBKDF2 methods, improving compatibility with existing password systems during migration.
Example usage for user migration with PBKDF2-hashed passwords:
Where the arguments are:
salt
: user-defined salt valueiterations
: number of iterations (e.g., 1000)keylen
: key length (e.g., 20)digest
: hash algorithm (e.g., 'sha512')@
: placeholder for the input passwordPatch Changes