Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .changeset/seamless-sdks-passkey-skip.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
'seamless-templates': minor
---

Move the templates onto the Seamless SDK releases that let a user finish registration without a
passkey.

Registration used to end on a screen with one control on it. A user who did not want a passkey, or
whose device could not make one, had no way forward. `@seamless-auth/react` 0.8.0 offers a skip when
the instance has a login method other than `passkey` enabled, and says plainly when it does not.

The web and API templates have to move together for that to work. The skip is gated on reading
`GET /system-config/public` from the auth server, and the adapters serve routes from an explicit
list, so the React templates on 0.8.0 need an API template that proxies the new route. A web
template upgraded on its own would read nothing, and fall back to showing no skip at all.

- `@seamless-auth/react` 0.7.0 to 0.8.0 in both React templates
- `@seamless-auth/express` 0.11.0 to 0.12.0
- `@seamless-auth/fastify` 0.2.0 to 0.3.0
16 changes: 8 additions & 8 deletions templates/api/express/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion templates/api/express/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"lint": "npx eslint src"
},
"dependencies": {
"@seamless-auth/express": "^0.11.0",
"@seamless-auth/express": "^0.12.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.6.1",
Expand Down
16 changes: 8 additions & 8 deletions templates/api/fastify/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion templates/api/fastify/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"dependencies": {
"@fastify/cookie": "^11.1.2",
"@fastify/cors": "^11.3.0",
"@seamless-auth/fastify": "^0.2.0",
"@seamless-auth/fastify": "^0.3.0",
"dotenv": "^16.6.1",
"fastify": "^5.11.0",
"pg": "^8.16.3",
Expand Down
16 changes: 8 additions & 8 deletions templates/web/react-oauth/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion templates/web/react-oauth/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
},
"author": "Fells Code LLC",
"dependencies": {
"@seamless-auth/react": "^0.7.0",
"@seamless-auth/react": "^0.8.0",
"@tailwindcss/vite": "^4.1.17",
"lucide-react": "^0.554.0",
"react": "^19.1.1",
Expand Down
16 changes: 8 additions & 8 deletions templates/web/react-vite/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion templates/web/react-vite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
},
"author": "Fells Code LLC",
"dependencies": {
"@seamless-auth/react": "^0.7.0",
"@seamless-auth/react": "^0.8.0",
"@tailwindcss/vite": "^4.1.17",
"lucide-react": "^0.554.0",
"react": "^19.1.1",
Expand Down
Loading