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## [0.5.0] - 2025-10-11 12 13### Breaking Changes 14 15- Remove `Atex.HTTP` and associated modules as the abstraction caused a bit too 16 much complexities for how early atex is. It may come back in the future as 17 something more fleshed out once we're more stable. 18- Rename `Atex.XRPC.Client` to `Atex.XRPC.LoginClient` 19 20### Added 21 22- `Atex.OAuth` module with utilites for handling some OAuth functionality. 23- `Atex.OAuth.Plug` module (if Plug is loaded) which provides a basic but 24 complete OAuth flow, including storing the tokens in `Plug.Session`. 25- `Atex.XRPC.Client` behaviour for implementing custom client variants. 26- `Atex.XRPC` now supports using different client implementations. 27- `Atex.XRPC.OAuthClient` to make XRPC calls on the behalf of a user who has 28 authenticated with ATProto OAuth. 29 30## [0.4.0] - 2025-08-27 31 32### Added 33 34- `Atex.Lexicon` module that provides the `deflexicon` macro, taking in a JSON 35 Lexicon definition and converts it into a series of schemas for each 36 definition within it. 37- `mix atex.lexicons` for converting lexicon JSON files into modules using 38 `deflexicon` easily. 39 40## [0.3.0] - 2025-06-29 41 42### Changed 43 44- `Atex.XRPC.Adapter` renamed to `Atex.HTTP.Adapter`. 45 46### Added 47 48- `Atex.HTTP` module that delegates to the currently configured adapter. 49- `Atex.HTTP.Response` struct to be returned by `Atex.HTTP.Adapter`. 50- `Atex.IdentityResolver` module for resolving and validating an identity, 51 either by DID or a handle. 52 - Also has a pluggable cache (with a default ETS implementation) for keeping 53 some data locally. 54 55## [0.2.0] - 2025-06-09 56 57### Added 58 59- `Atex.TID` module for manipulating ATProto TIDs. 60- `Atex.Base32Sortable` module for encoding/decoding numbers as 61 `base32-sortable` strings. 62- Basic XRPC client. 63 64## [0.1.0] - 2025-06-07 65 66Initial release. 67 68[unreleased]: https://github.com/cometsh/atex/compare/v0.5.0...HEAD 69[0.5.0]: https://github.com/cometsh/atex/releases/tag/v0.5.0 70[0.4.0]: https://github.com/cometsh/atex/releases/tag/v0.4.0 71[0.3.0]: https://github.com/cometsh/atex/releases/tag/v0.3.0 72[0.2.0]: https://github.com/cometsh/atex/releases/tag/v0.2.0 73[0.1.0]: https://github.com/cometsh/atex/releases/tag/v0.1.0