A set of utilities for working with the AT Protocol in Elixir.
1# Changelog 2 3All notable changes to atex will be documented in this file. 4 5The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), 6and this project adheres to 7[Semantic Versioning](https://semver.org/spec/v2.0.0.html). 8 9## [Unreleased] 10 11### Added 12 13- `Atex.Lexicon` module that provides the `deflexicon` macro, taking in a JSON 14 Lexicon definition and converts it into a series of schemas for each 15 definition within it. 16- `mix atex.lexicons` for converting lexicon JSON files into modules using 17 `deflexicon` easily. 18 19## [0.3.0] - 2025-06-29 20 21### Changed 22 23- `Atex.XRPC.Adapter` renamed to `Atex.HTTP.Adapter`. 24 25### Added 26 27- `Atex.HTTP` module that delegates to the currently configured adapter. 28- `Atex.HTTP.Response` struct to be returned by `Atex.HTTP.Adapter`. 29- `Atex.IdentityResolver` module for resolving and validating an identity, 30 either by DID or a handle. 31 - Also has a pluggable cache (with a default ETS implementation) for keeping 32 some data locally. 33 34## [0.2.0] - 2025-06-09 35 36### Added 37 38- `Atex.TID` module for manipulating ATProto TIDs. 39- `Atex.Base32Sortable` module for encoding/decoding numbers as 40 `base32-sortable` strings. 41- Basic XRPC client. 42 43## [0.1.0] - 2025-06-07 44 45Initial release. 46 47[unreleased]: https://github.com/cometsh/atex/compare/v0.3.0...HEAD 48[0.3.0]: https://github.com/cometsh/atex/releases/tag/v0.3.0 49[0.2.0]: https://github.com/cometsh/atex/releases/tag/v0.2.0 50[0.1.0]: https://github.com/cometsh/atex/releases/tag/v0.1.0