Select the types of activity you want to include in your feed.
1.0.0: Breaking changes - standardize Logger interface and rename SessionData
- Logger: Changed from (log, warn, error) to (debug, info, warn, error) - SessionData renamed to CookieSessionData to avoid collision with oauth-client-deno
···2233All notable changes to this project will be documented in this file.
4455+## [1.0.0] - 2025-11-28
66+77+### Breaking Changes
88+99+- **Logger interface**: Changed from 3 methods (`log`, `warn`, `error`) to 4
1010+ methods (`debug`, `info`, `warn`, `error`) for compatibility with
1111+ oauth-client-deno
1212+- **SessionData renamed**: `SessionData` is now `CookieSessionData` to avoid
1313+ naming collision with oauth-client-deno's `SessionData` (which represents full
1414+ OAuth session state). The old name is available as a deprecated type alias.
1515+1616+### Migration Guide
1717+1818+**Logger interface:**
1919+2020+```typescript
2121+// Before
2222+const logger = {
2323+ log: console.log,
2424+ warn: console.warn,
2525+ error: console.error,
2626+};
2727+2828+// After
2929+const logger = {
3030+ debug: console.debug,
3131+ info: console.info,
3232+ warn: console.warn,
3333+ error: console.error,
3434+};
3535+```
3636+3737+**SessionData type:**
3838+3939+```typescript
4040+// Before
4141+import type { SessionData } from "@tijs/atproto-sessions";
4242+4343+// After
4444+import type { CookieSessionData } from "@tijs/atproto-sessions";
4545+```
4646+547## [0.1.1] - 2025-11-27
648749### Fixed