Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
pilcrowOnPaper committed Jan 28, 2024
1 parent 075eb8b commit 34a39c6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions packages/lucia/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# lucia

## 3.0.1

- Fix `LegacyScrypt` generating malformed hash (see [#1370](https://github.com/lucia-auth/lucia/pull/1370)) - no security concerns

## 3.0.0

See the [migration guide](https://v3.lucia-auth.com/upgrade-v3).
Expand Down
2 changes: 1 addition & 1 deletion packages/lucia/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lucia",
"version": "3.0.0",
"version": "3.0.1",
"description": "A simple and flexible authentication library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/lucia/src/crypto.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ test("LegacyScrypt", async () => {
await expect(scrypt.verify(hash, password)).resolves.toBe(true);
const falsePassword = encodeHex(crypto.getRandomValues(new Uint8Array(32)));
await expect(scrypt.verify(hash, falsePassword)).resolves.toBe(false);
})
});

0 comments on commit 34a39c6

Please sign in to comment.