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
17## [0.3.0] - 2025-06-29
18
19### Changed
20
21- `Atex.XRPC.Adapter` renamed to `Atex.HTTP.Adapter`.
22
23### Added
24
25- `Atex.HTTP` module that delegates to the currently configured adapter.
26- `Atex.HTTP.Response` struct to be returned by `Atex.HTTP.Adapter`.
27- `Atex.IdentityResolver` module for resolving and validating an identity,
28 either by DID or a handle.
29 - Also has a pluggable cache (with a default ETS implementation) for keeping
30 some data locally.
31
32## [0.2.0] - 2025-06-09
33
34### Added
35
36- `Atex.TID` module for manipulating ATProto TIDs.
37- `Atex.Base32Sortable` module for encoding/decoding numbers as
38 `base32-sortable` strings.
39- Basic XRPC client.
40
41## [0.1.0] - 2025-06-07
42
43Initial release.
44
45[unreleased]: https://github.com/cometsh/atex/compare/v0.3.0...HEAD
46[0.3.0]: https://github.com/cometsh/atex/releases/tag/v0.3.0
47[0.2.0]: https://github.com/cometsh/atex/releases/tag/v0.2.0
48[0.1.0]: https://github.com/cometsh/atex/releases/tag/v0.1.0