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.4.0] - 2025-08-27
12
13### Added
14
15- `Atex.Lexicon` module that provides the `deflexicon` macro, taking in a JSON
16 Lexicon definition and converts it into a series of schemas for each
17 definition within it.
18- `mix atex.lexicons` for converting lexicon JSON files into modules using
19 `deflexicon` easily.
20
21## [0.3.0] - 2025-06-29
22
23### Changed
24
25- `Atex.XRPC.Adapter` renamed to `Atex.HTTP.Adapter`.
26
27### Added
28
29- `Atex.HTTP` module that delegates to the currently configured adapter.
30- `Atex.HTTP.Response` struct to be returned by `Atex.HTTP.Adapter`.
31- `Atex.IdentityResolver` module for resolving and validating an identity,
32 either by DID or a handle.
33 - Also has a pluggable cache (with a default ETS implementation) for keeping
34 some data locally.
35
36## [0.2.0] - 2025-06-09
37
38### Added
39
40- `Atex.TID` module for manipulating ATProto TIDs.
41- `Atex.Base32Sortable` module for encoding/decoding numbers as
42 `base32-sortable` strings.
43- Basic XRPC client.
44
45## [0.1.0] - 2025-06-07
46
47Initial release.
48
49[unreleased]: https://github.com/cometsh/atex/compare/v0.4.0...HEAD
50[0.4.0]: https://github.com/cometsh/atex/releases/tag/v0.4.0
51[0.3.0]: https://github.com/cometsh/atex/releases/tag/v0.3.0
52[0.2.0]: https://github.com/cometsh/atex/releases/tag/v0.2.0
53[0.1.0]: https://github.com/cometsh/atex/releases/tag/v0.1.0