📦 v5.0.18 - https://docs.rxresu.me/changelog (Passkeys Support)

This commit is contained in:
Amruth Pillai
2026-04-14 10:51:04 +02:00
parent 4ed6177aee
commit c19b9746c8
70 changed files with 4758 additions and 622 deletions
+9
View File
@@ -4,6 +4,15 @@ description: "List of all notable changes and updates to Reactive Resume"
rss: true
---
<Update label="v5.0.18" description="14th April 2026">
## Features & Improvements
- Re-enabled **Passkeys** across authentication flows, including passkey sign-in on the login page and passkey management in account settings.
## Maintenance
- Updated dependencies and lockfile.
- Synced translation catalogs from Crowdin.
</Update>
<Update label="v5.0.17" description="9th April 2026">
## Features & Improvements
- Added **Resume Analysis** in the resume builder right sidebar: run an on-demand AI review for an overall score (0 to 100), a dimension scorecard, strengths, and prioritized suggestions. Results are saved per resume and reload after refresh.
+3 -3
View File
@@ -126,7 +126,7 @@ Here are the most commonly used scripts during development:
| `pnpm run build` | Build the application for production |
| `pnpm run start` | Start the production server |
| `pnpm run lint` | Run Oxlint linter and formatter |
| `pnpm run fmt` | Run Oxfmt formatter |
| `pnpm run format` | Run Oxfmt formatter |
| `pnpm run typecheck` | Run TypeScript type checking |
### Database
@@ -252,8 +252,8 @@ Uses [Oxlint](https://oxlint.dev/) for linting and [Oxfmt](https://oxfmt.dev/) f
```bash
# Check and auto-fix issues
pnpm run lint
pnpm run fmt
pnpm run lint:fix
pnpm run format:fix
```
### Type Checking
+6 -12
View File
@@ -3,15 +3,6 @@ title: "Setting up passkeys"
description: "Learn how to register passkeys (WebAuthn) to sign in securely using biometrics or your device PIN"
---
<Warning>
<strong>Passkeys Temporarily Disabled:</strong> Passkey registration and sign-in are currently unavailable in Reactive Resume due to an upstream issue with our authentication provider. We are closely monitoring the situation and will re-enable passkeys once it is resolved.
For more details and technical updates, see the <a href="https://github.com/better-auth/better-auth/issues/7463" target="_blank" rel="noopener">GitHub issue #7463</a>.
</Warning>
---
<Steps>
<Step title="Sign in to the dashboard">
Head over to [https://rxresu.me](https://rxresu.me) and sign in with your account credentials.
@@ -27,8 +18,7 @@ For more details and technical updates, see the <a href="https://github.com/bett
</Step>
<Step title="Name your passkey">
You'll be prompted to enter a name for the passkey. Use something descriptive so you can recognize it later (for
example, “MacBook Touch ID” or “iPhone Face ID”).
Enter a descriptive name so you can recognize it later (for example, "MacBook Touch ID" or "iPhone Face ID").
</Step>
<Step title="Complete the passkey prompt">
@@ -41,11 +31,15 @@ For more details and technical updates, see the <a href="https://github.com/bett
</Step>
<Step title="Manage passkeys (optional)">
After registering, your passkey will show up in the list. You can delete a passkey using the trash icon next to it.
After registering, your passkey will show up in the list. You can rename it or delete it from the same section.
<Warning>
Deleting a passkey cannot be undone. After deletion, you won't be able to sign in using that passkey anymore.
</Warning>
</Step>
<Step title="Sign in with a passkey">
On the login page, click <Badge>Sign in with Passkey</Badge> to authenticate without entering your password.
</Step>
</Steps>