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 - Also has a pluggable cache (with a default ETS implementation) for keeping 22 some data locally. 23 24## [0.2.0] - 2025-06-09 25 26### Added 27 28- `Atex.TID` module for manipulating ATProto TIDs. 29- `Atex.Base32Sortable` module for encoding/decoding numbers as 30 `base32-sortable` strings. 31- Basic XRPC client. 32 33## [0.1.0] - 2025-06-07 34 35Initial release. 36 37[unreleased]: https://github.com/cometsh/atex/compare/v0.2.0...HEAD 38[0.2.0]: https://github.com/cometsh/atex/releases/tag/v0.2.0 39[0.1.0]: https://github.com/cometsh/atex/releases/tag/v0.1.0