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### Changed 12 13- `Atex.XRPC.Adapter` renamed to `Atex.HTTP.Adapter`. 14 15### Added 16 17- `Atex.HTTP` module that delegates to the currently configured adapter. 18- `Atex.HTTP.Response` struct to be returned by `Atex.HTTP.Adapter`. 19- `Atex.IdentityResolver` module for resolving and validating an identity, 20 either by DID or a handle. 21 22## [0.2.0] - 2025-06-09 23 24### Added 25 26- `Atex.TID` module for manipulating ATProto TIDs. 27- `Atex.Base32Sortable` module for encoding/decoding numbers as 28 `base32-sortable` strings. 29- Basic XRPC client. 30 31## [0.1.0] - 2025-06-07 32 33Initial release. 34 35[unreleased]: https://github.com/cometsh/atex/compare/v0.2.0...HEAD 36[0.2.0]: https://github.com/cometsh/atex/releases/tag/v0.2.0 37[0.1.0]: https://github.com/cometsh/atex/releases/tag/v0.1.0