- Logger: Changed from (log, warn, error) to (debug, info, warn, error) - Simplified OAuthClient logger adapter since interfaces now match - Updated atproto-sessions dependency to 1.0.0
···23All notable changes to this project will be documented in this file.
400000000000000000000000000000000000000000000005## [0.1.1] - 2025-11-28
67### Added
···23All notable changes to this project will be documented in this file.
45+## [1.0.0] - 2025-11-28
6+7+### Breaking Changes
8+9+- **Logger interface**: Changed from 3 methods (`log`, `warn`, `error`) to 4
10+ methods (`debug`, `info`, `warn`, `error`) for compatibility with
11+ oauth-client-deno. This allows unified logging across all AT Protocol OAuth
12+ libraries.
13+14+### Migration Guide
15+16+**Logger interface:**
17+18+```typescript
19+// Before
20+const oauth = createATProtoOAuth({
21+ // ...
22+ logger: {
23+ log: console.log,
24+ warn: console.warn,
25+ error: console.error,
26+ },
27+});
28+29+// After
30+const oauth = createATProtoOAuth({
31+ // ...
32+ logger: {
33+ debug: console.debug,
34+ info: console.info,
35+ warn: console.warn,
36+ error: console.error,
37+ },
38+});
39+40+// Or simply pass console (which has all 4 methods):
41+const oauth = createATProtoOAuth({
42+ // ...
43+ logger: console,
44+});
45+```
46+47+### Changed
48+49+- Updated `@tijs/atproto-sessions` dependency to 1.0.0
50+51## [0.1.1] - 2025-11-28
5253### Added