Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

This project uses [Semantic Versioning 2.0.0](http://semver.org/), the format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## main

### Removed

- **BREAKING**: Removed the deprecated `from` and `to` fields from the `EmailForward` defstruct. Use `alias_email` and `destination_email` instead.

## 8.3.0 - 2026-04-15

### Added
Expand Down
2 changes: 1 addition & 1 deletion lib/dnsimple/email_forward.ex
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ defmodule Dnsimple.EmailForward do
updated_at: String.t,
}

defstruct ~w(id domain_id from to alias_email destination_email active created_at updated_at)a
defstruct ~w(id domain_id alias_email destination_email active created_at updated_at)a

end