forked from
nonbinary.computer/jacquard
A better Rust ATProto crate
1# Changelog
2
3## [0.9.0] - 2025-11-03
4
5### Added
6
7**Runtime schema validation** (`jacquard-lexicon`)
8- `SchemaValidator` for validating `Data` values against lexicon schemas
9- CID-based validation caching for efficient repeated validation
10- `ValidationResult` with structural and constraint error separation
11- Comprehensive error types: `StructuralError` (type mismatches, missing fields, union errors) and `ConstraintError` (length, grapheme, numeric bounds)
12- `ValidationPath` for precise error location reporting
13- Ref cycle detection with configurable max depth
14- Support for validating partial/malformed data without full deserialization
15
16**Value query DSL** (`jacquard-common`)
17- Pattern-based querying of nested `Data` structures
18- `data.query(pattern)` with expressive syntax:
19 - `field.nested` - exact path navigation
20 - `[..]` - wildcard over collections (array elements or object values)
21 - `field..nested` - scoped recursion (find nested within field, expect one)
22 - `...field` - global recursion (find all occurrences anywhere)
23- `QueryResult` enum with `Single`, `Multiple`, and `None` variants
24- `QueryMatch` with path tracking for multiple results
25- Iterator support via `.values()`, `.first()`, `.single()`, `.multiple()`
26
27**Data value enhancements** (`jacquard-common`)
28- `get_at_path()` for simple path-based field access on `Data` and `RawData`
29- Path syntax: `embed.images[0].alt` for navigating nested structures
30- `type_discriminator()` helper methods for AT Protocol union discrimination
31- Returns `$type` field value for objects with type discriminators
32- Added on `Data`, `Object`, and `RawData` types
33- Collection helper methods: `get()`, `contains_key()`, `len()`, `is_empty()`, `iter()`, `keys()`, `values()`
34- Index operator support: `obj["key"]` and `arr[0]`
35
36**Lexicon resolution** (`jacquard-identity`)
37- `LexiconResolver` for fetching lexicon schemas from AT Protocol services
38- Resolves lexicons from PDS instances and lexicon hosts
39- `resolve_lexicon()` fetches and parses lexicon schemas
40- `resolve_lexicon_raw()` fetches raw schema JSON
41- New example: `resolve_lexicon.rs`
42
43**Identity resolver caching** (`jacquard-identity`)
44- Optional `cache` feature with configurable in-memory caching
45- `JacquardResolver::with_cache()` constructor for cached resolver
46- Separate TTLs for handle→DID, DID→doc, and lexicon resolution
47
48**XRPC client improvements** (`jacquard-common`, `jacquard`, `jacquard-oauth`)
49- `set_options()` and `set_endpoint()` methods on `XrpcClient` trait
50- Default no-op implementations for stateless clients
51- Enables runtime reconfiguration of stateful clients
52- Better support for custom endpoint and option overrides
53
54**Lexicon schema generation from Rust types** (`jacquard-derive`, `jacquard-lexicon`)
55- New `#[derive(LexiconSchema)]` macro for generating lexicon schemas from Rust structs
56- New `#[lexicon_union]` attribute macro for lexicon union types (tagged enums)
57- Automatic schema generation for custom lexicons without writing JSON manually
58- Field-level attributes: `ref` for explicit type references, `union` for union fields
59- Fragment support for multi-def lexicons via `fragment = "..."` attribute
60- Generates `LexiconDoc` at compile time for runtime validation
61- Enables type-safe custom lexicon development
62
63**Lexicon codegen improvements** (`jacquard-lexicon`, `jacquard-api`)
64- Vendored in an implementation of the typed builder pattern from `bon` to **substantially** improve compile times
65- Feature-gated heavy code generation features so `jacquard-api` and other consumers of the validation capabilities don't pay the `syn` tax as badly.
66- LexiconSchema trait generated implementations for runtime validation
67
68**Session store improvements** (`jacquard`)
69- Improved trait bounds for `SessionStore` implementations
70- Better ergonomics for credential session types
71- Memory-based credential session helpers
72
73**New crate: `jacquard-lexgen`**
74- Lexicon code generation tooling extracted from `jacquard-lexicon`
75- Separates binary/CLI tools from library code
76- Contains lexicon fetching and code generation binaries
77- `jacquard-lexicon` remains as pure library for lexicon parsing, code generation, and validation
78
79**Examples**
80- `app_password_create_post.rs`: App password authentication example
81
82### Changed
83
84**Feature gating** (`jacquard-identity`)
85- Better conditional compilation for platform-specific features
86- Improved WASM target support
87
88**Dependency updates**
89- Updated to latest lexicons from atproto/bluesky
90- Added workspace dependencies: sha2, multihash, dashmap, cid
91- Various minor dependency version updates
92
93### Fixed
94
95**File auth store** (`jacquard`)
96- Fixed serialization/deserialization bugs in `FileAuthStore` implementation
97
98**Packaging** (`jacquard-lexgen`)
99- Added Nix flake apps for lexicon tools
100
101## [0.8.0] - 2025-10-23
102
103### Breaking Changes
104
105**Error type refactor** (`jacquard-common`, `jacquard-identity`, `jacquard-oauth`, `jacquard`)
106- Better error messages with contextual information and help text
107- Breaking: Error variant names and structures changed across all crates
108
109### Added
110
111**New crate: `jacquard-repo`**
112- AT Protocol repository primitives for working with atproto data structures
113- **MST (Merkle Search Tree)**: Immutable, deterministic tree operations with proper fanout
114 - Optimized block allocation (4.5% oversupply, validated against retr0id's test suite)
115 - Diff operations with protocol limit enforcement
116 - Cursor-based traversal
117- **Commits**:
118 - Proof generation and validation for Sync v1 and v1.1 Relay protocol
119- **CAR I/O**:
120 - Proof CAR validation with MST path verification
121- **Storage**: Pluggable block storage abstraction
122 - `MemoryBlockStore`: In-memory storage for testing
123 - `FileBlockStore`: Persistent file-based storage
124 - `LayeredBlockStore`: Layered read-through cache (memory over file, etc.)
125
126### Changed
127
128- Dependency updates (upgraded various crypto and serialization dependencies)
129- Documentation improvements throughout
130- Made handle parsing a bit more permissive for a common case ('handle.invalid' when someone has a messed up handle), added a method to confirm syntactic validity (the correct way to confirm validity is resolve_handle() from IdentityResolver, and comparing to the DID document).
131
132## [0.7.0] - 2025-10-19
133
134### Added
135
136**Bluesky-style rich text utilities** (`jacquard`)
137- Rich text parsing with automatic facet detection (mentions, links, hashtags)
138- Compatible with Bluesky, with the addition of support for markdown-style links (`[display](url)` syntax)
139- Embed candidate detection from URLs and at-URIs
140 - Record embeds (posts, lists, starter packs, feeds)
141 - External embeds with optional OpenGraph metadata fetching
142- Configurable embed domains for at-URI extraction (default: bsky.app, deer.social, blacksky.community, catsky.social)
143- Overlap detection and validation for facet byte ranges
144
145**Moderation/labeling client utilities** (`jacquard`)
146- Trait-based content moderation with `Labeled` and `Moderateable` traits
147- Generic moderation decision making via `moderate()` and `moderate_all()`
148- User preference handling (`ModerationPrefs`) with global and per-labeler overrides
149- `ModerationIterExt` trait for filtering/mapping moderation over iterators
150- `Labeled` implementations for Bluesky types (PostView, ProfileView, ListView, Generator, Notification, etc.)
151- `Labeled` implementations for community lexicons (net.anisota, social.grain)
152- `fetch_labels()` and `fetch_labeled_record()` helpers for retrieving labels via XRPC
153- `fetch_labeler_defs()` and `fetch_labeler_defs_direct()` for fetching labeler definitions
154
155**Subscription control** (`jacquard-common`)
156- `SubscriptionControlMessage` trait for dynamic subscription configuration
157- `SubscriptionController` for sending control messages to active WebSocket subscriptions
158- Enables runtime reconfiguration of subscriptions (e.g., Jetstream filtering)
159
160**Lexicons** (`jacquard-api`)
161- teal.fm alpha lexicons for music sharing (fm.teal.alpha.*)
162 - Actor profiles with music service status
163 - Feed generation from play history
164 - Statistics endpoints (top artists, top releases, user stats)
165
166**Examples**
167- Updated `create_post.rs` to demonstrate richtext parsing with automatic facet detection
168- New `moderated_timeline.rs` to demonstrate fetching timeline with labelers enabled and applying moderation decisions
169
170### Fixed
171
172**Data deserialization** (`jacquard-common`)
173- Fixed `Option<Vec<T>>` deserialization from `Data` values
174- Implemented explicit `deserialize_option` for `Data` and `RawData` deserializers
175- Properly handles null vs present array values when deserializing into optional fields
176
177
178## [0.6.0] - 2025-10-18
179
180### Added
181
182**HTTP streaming support** (`jacquard-common`, `jacquard`)
183- `HttpClientExt` trait for streaming HTTP requests/responses
184- `send_http_streaming()` for streaming response bodies
185- `send_http_bidirectional()` for streaming both request and response
186- `StreamingResponse` wrapper type with parts + `ByteStream`
187- `XrpcResponseStream<R>` for typed XRPC streaming responses
188- `ByteStream` / `ByteSink` platform-agnostic stream wrappers (uses n0-future)
189- `StreamError` concrete error type with kind enum (Transport, Closed, Protocol)
190- Native support via reqwest's `bytes_stream()` and `Body::wrap_stream()`
191- WASM compatibility via n0-future (no Send bounds required)
192
193
194**WebSocket subscription support** (`jacquard-common`)
195- Full XRPC WebSocket subscription infrastructure
196- `SubscriptionResp` trait for defining subscription message/error types
197- `XrpcSubscription` trait for subscription parameters
198- `SubscriptionStream<S>` typed wrapper with automatic message decoding
199- `SubscriptionClient` stateful trait + `TungsteniteSubscriptionClient` implementation
200- `SubscriptionExt` for stateless subscription calls
201- Support for both JSON and DAG-CBOR message encodings
202- Custom path support via `CUSTOM_PATH` constant for non-XRPC endpoints
203- WebSocket integration into `Agent` struct (agents can now subscribe)
204- `into_stream()`, `into_raw_data_stream()`, `into_data_stream()` methods for different deserialization modes
205
206**Framed DAG-CBOR message decoding** (`jacquard-common`, `jacquard-api`, `jacquard-lexicon`)
207- Two-stage deserialization for AT Protocol event streams (header + body)
208- `EventHeader` struct and `parse_event_header()` function
209- `decode_framed()` methods generated for all DAG-CBOR subscription message enums
210- `decode_message()` override in `SubscriptionResp` trait for custom decoding
211- `UnknownEventType` variant in `DecodeError` for unknown discriminators
212- Fixes "TrailingData" errors when consuming subscribeRepos and subscribeLabels
213
214**Jetstream support** (`jacquard-common`)
215- Full typed support for Jetstream JSON firehose
216- `JetstreamMessage` enum with `Commit`, `Identity`, `Account` variants
217- `JetstreamCommit`, `JetstreamIdentity`, `JetstreamAccount` detail structs
218- `CommitOperation` enum for create/update/delete operations
219- `JetstreamParams` with filtering options (collections, DIDs, cursor, compression)
220- Uses proper AT Protocol types (`Did`, `Handle`, `Datetime`, `Data`)
221
222**Zstd compression** (`jacquard-common`)
223- Optional `zstd` feature for Jetstream message decompression
224- Automatic detection and decompression of zstd-compressed binary frames
225- Includes official Bluesky Jetstream zstd dictionary
226- Transparent fallback to uncompressed when zstd unavailable
227- Works across all JSON stream methods (`into_stream()`, `into_raw_data_stream()`, `into_data_stream()`)
228
229**Typed AT URI wrapper** (`jacquard-common`, `jacquard-api`, `jacquard-lexicon`)
230- `AtUri<'a>` newtype wrapper for `at://` URIs with proper validation
231- Generated `fetch_uri()` method on all record types for fetching by AT URI
232- `AtUri::from_parts()` constructor for building URIs from components
233- Proper Display and FromStr implementations
234
235**Memory-based credential session helpers** (`jacquard`) (ty [@vielle.dev](https://tangled.org/@vielle.dev))
236
237**Axum improvements** (`jacquard-axum`)
238- `XrpcError` now implements `IntoResponse` for better error handling
239- Proper typed error responses without manual conversion
240- Better integration with Axum's response system
241
242**Examples**
243- `subscribe_repos.rs`: Subscribe to PDS firehose with typed DAG-CBOR messages
244- `subscribe_jetstream.rs`: Subscribe to Jetstream with typed JSON messages and optional compression
245- `stream_get_blob.rs`: Download blobs using HTTP streaming
246- `app_password_example.rs`: App password authentication example (ty [@vielle.dev](https://tangled.org/@vielle.dev))
247
248**CID deserialization improvements** (`jacquard-common`)
249- Fixed `Cid` type to properly deserialize CBOR tag 42 via `IpldCid::deserialize`
250- Separate handling for JSON (string) vs CBOR (tag 42) formats
251- `CidLink` correctly delegates to `Cid` for both formats
252
253### Changed
254
255**Default features** (`jacquard-common`)
256- Added `zstd` to default features for better Jetstream experience
257- Jetstream compression enabled by default when using the full feature set
258
259**Generated code** (`jacquard-lexicon`, `jacquard-api`)
260- All DAG-CBOR subscriptions (subscribeRepos, subscribeLabels) now use framed decoding
261- Generated `decode_framed()` implementations match on event type discriminator
262- Override `decode_message()` in trait impls to use framed decoding
263- All record types now have `fetch_uri()` and `fetch_record()` methods generated
264
265**Dependencies** (`jacquard-axum`) (ty [@thoth.ptnote.dev](https://tangled.org/@thoth.ptnote.dev))
266- Disabled default features for `jacquard` dependency to reduce bloat
267
268### Fixed
269
270**Blob upload** (`jacquard`) (ty [@vielle.dev](https://tangled.org/@vielle.dev) for reporting this one)
271- Fixed `upload_blob()` authentication issues
272- Properly authenticates while allowing custom Content-Type headers
273
274**XRPC client** (`jacquard-common`, `jacquard-oauth`, `jacquard`)
275- Added `send_with_options()` method for per-request option overrides
276- Stateful clients can now override options while preserving internal auth
277
278
279---
280
281## `jacquard-api` [0.5.5], `jacquard-lexicon` [0.5.4] - 2025-10-16
282
283### Fixed
284
285- events.smokesignal.invokeWebhook lexicon now generates valid code
286- lexicon code generation now uses `Data` for blank objects, rather than naming and then failing to generate a struct
287
288## [0.5.4] - 2025-10-16
289
290### Added
291
292**Initial streaming client support** (`jacquard-common`)
293- First primitives for streamed requests and responses
294
295**`send_with_options()` method on XrpcClient** (`jacquard-common`, `jacquard-oauth`, `jacquard`)
296- allows setting custom options per request in stateful client
297- updated oauth and credential session clients to use it
298- implementations should generally override provided auth with own internal auth
299
300**Prelude providing common traits into scope**
301
302### Fixed
303
304**`AgentSessionExt::upload_blob()` failed to authenticate** (`jacquard`)
305- new `XrpcClient::send_with_options()` method now allows properly overriding the content-type header while still handling auth internally
306
307## [0.5.3] - 2025-10-15
308
309### Added
310
311**Experimental WASM Support** (`jacquard-common`, `jacquard-api`, `jacquard-identity`, `jacquard-oauth`)
312- Core crates now compile for `wasm32-unknown-unknown` target
313- Traits use `trait-variant` to conditionally exclude `Send` bounds on WASM
314- Platform-specific trait method implementations for methods with `Self: Sync` bounds
315- DNS-based handle resolution remains gated behind `dns` feature (unavailable on WASM)
316- HTTPS well-known and PDS resolution work on all platforms
317
318### Fixed
319
320**OAuth client** (`jacquard-oauth`)
321- Fixed tokio runtime detection for non-WASM targets
322- Conditional compilation for tokio-specific features
323
324
325---
326
327## [0.5.2] - 2025-10-14
328
329### Added
330
331**Value type deserialization** (`jacquard-common`)
332- `from_json_value()`: Deserialize typed data directly from `serde_json::Value` without borrowing
333- `from_data_owned()`, `from_raw_data_owned()`: Owned deserialization helpers
334- `Data::from_json_owned()`: Parse JSON into owned `Data<'static>`
335- `IntoStatic` implementation for `RawData` enabling owned conversions
336- Re-exported value types from crate root for easier imports
337- `Deserializer` trait implementations for `Data<'static>` and `RawData<'static>`
338- Owned deserializer helpers: `OwnedArrayDeserializer`, `OwnedObjectDeserializer`, `OwnedBlobDeserializer`
339
340**Service Auth** (`jacquard-axum`, `jacquard-common`)
341- Full service authentication implementation for inter-service JWT verification
342- `ExtractServiceAuth` Axum extractor for validating service auth tokens
343- Axum service auth middleware
344- JWT parsing and signature verification (ES256, ES256K)
345- Service auth claims validation (issuer, audience, expiration, method binding)
346- DID document resolution for signing key verification
347
348**XrpcRequest derive macro** (`jacquard-derive`)
349- `#[derive(XrpcRequest)]` for custom XRPC endpoints
350- Automatically generates response marker struct and trait implementations
351- Supports both client-side (`XrpcRequest`) and server-side (`XrpcEndpoint`) with `server` flag
352- Simplifies defining custom XRPC endpoints outside of generated API
353
354**Builder integration** (`jacquard-derive`)
355- `#[lexicon]` macro now detects `bon::Builder` derive
356- Automatically adds `#[builder(default)]` to `extra_data` field when Builder is present
357- Makes `extra_data` optional in generated builders
358
359### Fixed
360
361**String deserialization** (`jacquard-common`)
362- All string types (Did, Handle, Nsid, etc.) now properly handle URL-encoded values
363- `serde_html_form` correctly decodes percent-encoded characters during deserialization
364- Fixes issues with DIDs and other identifiers containing colons in query parameters
365
366**Axum extractor** (`jacquard-axum`)
367- Removed unnecessary URL-decoding workaround (now handled by improved string deserialization)
368- Added comprehensive tests for URL-encoded query parameters
369- Cleaner implementation with proper delegation to serde
370
371### Changed
372
373**Dependencies**
374- Moved `clap` to dev-dependencies in `jacquard` (only used in examples)
375- Moved `axum-macros` and `tracing-subscriber` to dev-dependencies in `jacquard-axum` (only used in examples)
376- Removed unused dependencies: `urlencoding` (jacquard, jacquard-axum), `uuid` (jacquard-oauth), `serde_with` (jacquard-common)
377- Removed `fancy` feature from `jacquard` (design smell for library crates)
378- Moved various proc-macro crate dependencies to dev-dependencies in `jacquard-derive`
379
380**Development tooling**
381- Improved justfile with dynamic example discovery
382- `just examples` now auto-discovers all examples
383- `just example <name>` auto-detects package without manual configuration
384- Better error messages when examples not found
385
386**Documentation** (`jacquard`, `jacquard-common`)
387- Improved lifetime pattern explanations
388- Better documentation of zero-copy deserialization approach
389- Links to docs.rs for generated documentation
390
391---
392
393## [0.5.1] - 2025-10-13
394
395### Fixed
396
397**Trait bounds** (`jacquard-common`)
398- Removed lifetime parameter from `XrpcRequest` trait, simplifying trait bounds
399- Lifetime now only appears on `XrpcEndpoint::Request<'de>` associated type
400- Fixes issues with using XRPC types in async contexts like Axum extractors
401
402### Changed
403
404- Updated all workspace crates to 0.5.1 for consistency
405- `jacquard-axum` remains at 0.5.1 (unchanged)
406
407---
408
409## `jacquard-axum` [0.5.1] - 2025-10-13
410
411### Fixed
412
413- Axum extractor now sets the correct Content-Type header during error path.
414
415---
416
417## [0.5.0] - 2025-10-13
418
419### Added
420
421**Agent convenience methods** (`jacquard`)
422- New `AgentSessionExt` trait automatically implemented for `AgentSession + IdentityResolver`
423- **Basic CRUD**: `create_record()`, `get_record()`, `put_record()`, `delete_record()`
424- **Update patterns**: `update_record()` (fetch-modify-put), `update_vec()`, `update_vec_item()`
425- **Blob operations**: `upload_blob()`
426- All methods auto-fill repo from session or URI parameter as relevant, and collection from type's `Collection::NSID`
427
428**VecUpdate trait** (`jacquard`)
429- `VecUpdate` trait for fetch-modify-put patterns on array-based endpoints
430- `PreferencesUpdate` implementation for updating Bluesky user preferences
431- Enables simpler updates to preferences and other 'array of union' types
432
433**Typed record retrieval** (`jacquard-api`, `jacquard-common`, `jacquard-lexicon`)
434- Each collection generates `{Type}Record` marker struct implementing `XrpcResp`
435- `Collection::Record` associated type points to the marker
436- `get_record::<R>()` returns `Response<R::Record>` with zero-copy `.parse()`
437- Response transmutation enables type-safe record operations
438
439**Examples**
440- `create_post.rs`: Creating posts with Agent convenience methods
441- `update_profile.rs`: Updating profile with fetch-modify-put
442- `post_with_image.rs`: Uploading images and creating posts with embeds
443- `update_preferences.rs`: Using VecUpdate for preferences
444- `create_whitewind_post.rs`, `read_whitewind_post.rs`: Third-party lexicons
445- `read_tangled_repo.rs`: Reading git repo metadata from tangled.org
446- `resolve_did.rs`: Identity resolution examples
447- `public_atproto_feed.rs`: Unauthenticated feed access
448- `axum_server.rs`: Server-side XRPC handler
449
450
451**Documentation** (`jacquard`)
452- A whole host of examples added, as well as a lengthy explainer of the trait patterns.
453
454## [0.4.1] - 2025-10-13
455
456### Added
457
458**Collection trait improvements** (`jacquard-api`)
459- Generated `{Type}Record` marker structs for all record types
460- Each implements `XrpcResp` with `Output<'de> = {Type}<'de>` and `Err<'de> = RecordError<'de>`
461- Enables typed `get_record` returning `Response<R::Record>`
462
463### Changed
464
465- Minor improvements to derive macros (`jacquard-derive`)
466- Identity resolution refinements (`jacquard-identity`)
467- OAuth client improvements (`jacquard-oauth`)
468
469---
470
471## [0.4.0] - 2025-10-11
472
473### Breaking Changes
474
475**Zero-copy deserialization** (`jacquard-common`, `jacquard-api`)
476- `XrpcRequest` now takes a `'de` lifetime parameter and requires `Deserialize<'de>`
477- For raw data, `Response::parse_data()` gives validated loosely-typed atproto data, while `Response::parse_raw()` gives the raw values, with minimal validation.
478
479**XRPC module moved** (`jacquard-common`)
480- `xrpc.rs` is now top-level instead of under `types`
481- Import from `jacquard_common::xrpc::*` not `jacquard_common::types::xrpc::*`
482
483**Response API changes** (`jacquard-common`)
484- `XrpcRequest::Output` and `XrpcRequest::Err` are associated types with lifetimes
485- Split response and request traits: `XrpcRequest<'de>` for client, `XrpcEndpoint` for server
486- Added `XrpcResp` marker trait
487
488**Various traits** (`jacquard`, `jacquard-common`, `jacquard-lexicon`, `jacquard-oauth`)
489- Removed #[async_trait] attribute macro usage in favour of `impl Future` return types with manual bounds.
490- Boxing imposed by asyc_trait negatively affected borrowing modes in async methods.
491- Currently no semver guarantees on API trait bounds, if they need to tighten, they will.
492
493### Added
494
495**New crate: `jacquard-axum`**
496- Server-side XRPC handlers for Axum
497- `ExtractXrpc<R>` deserializes incoming requests (query params for Query, body for Procedure)
498- Automatic error responses
499
500**Lexicon codegen fixes** (`jacquard-lexicon`)
501- Union variant collision detection: when multiple namespaces have similar type names, foreign ones get prefixed (e.g., `Images` vs `BskyImages`)
502- Token types generate unit structs with `Display` instead of being skipped
503- Namespace dependency tracking during union generation
504- `generate_cargo_features()` outputs Cargo.toml features with correct deps
505- `sanitize_name()` ensures valid Rust identifiers
506
507**Lexicons** (`jacquard-api`)
508
509Added 646 lexicon schemas. Highlights:
510
511Core ATProto:
512- `com.atproto.*`
513- `com.bad-example.*` for identity resolution
514
515Bluesky:
516- `app.bsky.*` bluesky app
517- `chat.bsky.*` chat client
518- `tools.ozone.*` moderation
519
520Third-party:
521- `sh.tangled.*` - git forge
522- `sh.weaver.*` - orual's WIP markdown blog platform
523- `pub.leaflet.*` - longform publishing
524- `net.anisota.*` - gamified and calming take on bluesky
525- `network.slices.*` - serverless atproto hosting
526- `tools.smokesignal.*` - automation
527- `com.whtwnd.*` - markdown blogging
528- `place.stream.*` - livestreaming
529- `blue.2048.*` - 2048 game
530- `community.lexicon.*` - community extensions (bookmarks, calendar, location, payments)
531- `my.skylights.*` - media tracking
532- `social.psky.*` - social extensions
533- `blue.linkat.*` - link boards
534
535Plus 30+ more experimental/community namespaces.
536
537**Value types** (`jacquard-common`)
538- `RawData` to `Data` conversion with type inference
539- `from_data`, `from_raw_data`, `to_data`, and `to_raw_data` to serialize to and deserialize from the loosely typed value data formats. Particularly useful for second-stage deserialization of type "unknown" fields in lexicons, such as `PostView.record`.
540
541### Changed
542
543- `generate_union()` takes current NSID for dependency tracking
544- Generated code uses `sanitize_name()` for identifiers more consistently
545- Added derive macro for IntoStatic trait implementation
546
547### Fixed
548
549- Methods to extract the output from an XRPC response now behave well with respect to lifetimes and borrowing.
550- Now possible to use jacquard types in places like axum extractors due to lifetime improvements
551- Union variants don't collide when multiple namespaces define similar types and another namespace includes them
552
553---