Packages

Elixir client for the IDVerse IDKit identity verification API

Current section

Files

Jump to
idverse CHANGELOG.md
Raw

CHANGELOG.md

# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [0.3.0] - 2026-04-10
### Added
- Embedded mode for Phoenix integration — mount the mock server router directly in your Phoenix app with `forward "/idverse-mock", Idverse.MockServer.Router`
- `TokenManager.clear_token/1` to reset cached tokens between tests when using Ecto's SQL sandbox
### Fixed
- GitHub URLs in package metadata
## [0.2.0]
### Changed
- Internal version bump (unreleased)
## [0.1.0] - 2024-12-18
### Added
- Initial release of the IDVerse Elixir client library
- OAuth2 authentication with automatic token management
- Transaction API operations:
- Create verification transactions
- Get transaction details (JSON and PDF formats)
- Resend SMS notifications
- Cancel transactions
- Redact transaction data
- Mock server for development and testing:
- Full API simulation without IDVerse access
- Configurable verification outcomes
- Webhook notification support for transaction lifecycle events
- ETS-based in-memory storage (default)
- Optional PostgreSQL persistence using parent app's Ecto repo
- Admin endpoints for test control
- Comprehensive documentation and examples