All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
- Update reqwest to 0.12.12
- Update reqwest-middleware to 0.4.0
- Update reqwest-retry to 0.7.0
0.6.0 - 2023-08-31
- Add
Tenant::creator_name
,Tenant::creator_email
,TenantRequest::creator_name
, andTenantRequest::creator_email
.
0.5.0 - 2023-08-22
- Add the
Client::set_tenant_metadata
andClient::delete_tenant_metadata
methods to mutate tenant metadata.
0.4.0 - 2023-06-27
- Automatically retry read-only HTTP requests.
0.3.0 - 2023-02-26
-
Add the
Client::get_tenant
method to get a tenant by ID. -
Uniformly derive
Serialize
andDeserialize
on all API types, even if the type is not serialized or deserialized byClient
. The idea is to allow downstream users to serialize and deserialize these types for their own purposes (e.g., to store them on disk).
0.2.0 - 2023-02-18
- Add the
WebhookUser
andWebhookTenantBinding
to represent the user object delivered by thefrontegg.user.*
webhook events types.
0.1.1 - 2022-12-23
- Imbue
Error
andApiError
with anstd::error::Error
implementation. - Handle API responses that do not include the
metadata
field inTenant
,User
, andCreatedUser
responses.
Initial release.