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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ This project uses [Semantic Versioning 2.0.0](http://semver.org/), the format is

### Removed

- **BREAKING**: Removed the deprecated `contact_id` field from the `Certificate` struct. The field was deprecated on 2022-05-17 and is no longer required for certificate operations.
- **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
Expand Down
3 changes: 1 addition & 2 deletions lib/dnsimple/certificate.ex
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ defmodule Dnsimple.Certificate do
@type t :: %__MODULE__{
id: integer,
domain_id: integer,
contact_id: integer,
common_name: String.t,
alternate_names: List.t,
years: integer,
Expand All @@ -35,7 +34,7 @@ defmodule Dnsimple.Certificate do
chain: String.t,
}

defstruct ~w(id domain_id contact_id
defstruct ~w(id domain_id
common_name alternate_names years csr state authority_identifier auto_renew
created_at updated_at expires_at
server root chain private_key)a
Expand Down
1 change: 0 additions & 1 deletion test/dnsimple/certificates_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ defmodule Dnsimple.CertificatesTest do
assert data.__struct__ == Dnsimple.Certificate
assert data.id == 101967
assert data.domain_id == 289333
assert data.contact_id == 2511
assert data.common_name == "www.bingo.pizza"
assert data.alternate_names == []
assert data.auto_renew == false
Expand Down