···55The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7788+## [5.1.0] - 2026-02-15
99+1010+### Added
1111+1212+- **`prompt` option in `AuthorizeOptions`**: Pass `prompt: "create"` to direct
1313+ users to the PDS account registration page instead of login. After
1414+ registration, the normal OAuth callback completes and the user is
1515+ authenticated. This enables seamless "Create account" flows where apps can
1616+ offer PDS selection and users are redirected back after signup.
1717+818## [5.0.1] - 2026-02-15
9191020### Added
+1-1
deno.json
···11{
22 "name": "@tijs/oauth-client-deno",
33- "version": "5.0.1",
33+ "version": "5.1.0",
44 "description": "AT Protocol OAuth client for Deno - handle-focused alternative to @atproto/oauth-client-node with Web Crypto API compatibility",
55 "license": "MIT",
66 "repository": {
···149149 * Login hint for the authorization server
150150 */
151151 loginHint?: string;
152152+153153+ /**
154154+ * OAuth prompt parameter (e.g., "login", "create").
155155+ * Use "create" to direct users to the PDS account registration page
156156+ * instead of login. After registration, the normal OAuth callback
157157+ * completes and the user is authenticated.
158158+ */
159159+ prompt?: string;
152160}
153161154162/**