Framework-agnostic OAuth integration for AT Protocol (Bluesky) applications.

Update oauth-client-deno to 4.1.0 for auth server URL support

+9 -2
+7
CHANGELOG.md
··· 2 2 3 3 All notable changes to this project will be documented in this file. 4 4 5 + ## [2.6.1] - 2026-02-15 6 + 7 + ### Fixed 8 + 9 + - **Update oauth-client-deno to 4.1.0**: The underlying OAuth client now also 10 + accepts authorization server URLs, completing the full flow. 11 + 5 12 ## [2.6.0] - 2026-02-15 6 13 7 14 ### Added
+2 -2
deno.json
··· 1 1 { 2 2 "$schema": "https://jsr.io/schema/config-file.v1.json", 3 3 "name": "@tijs/atproto-oauth", 4 - "version": "2.6.0", 4 + "version": "2.6.1", 5 5 "license": "MIT", 6 6 "exports": "./mod.ts", 7 7 "publish": { ··· 16 16 }, 17 17 "imports": { 18 18 "@std/assert": "jsr:@std/assert@1.0.16", 19 - "@tijs/oauth-client-deno": "jsr:@tijs/oauth-client-deno@4.0.2", 19 + "@tijs/oauth-client-deno": "jsr:@tijs/oauth-client-deno@4.1.0", 20 20 "@tijs/atproto-sessions": "jsr:@tijs/atproto-sessions@2.1.0", 21 21 "@tijs/atproto-storage": "jsr:@tijs/atproto-storage@0.1.1", 22 22 "@atproto/syntax": "npm:@atproto/syntax@0.3.0"