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 `contact_id` field from the `Certificate` type. The field was deprecated on 2022-05-17 and is no longer required for certificate operations.

## 12.3.0 - 2026-04-16

### Added
Expand Down
1 change: 0 additions & 1 deletion lib/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,6 @@ export type Push = {
export type Certificate = {
id: number;
domain_id: number;
contact_id: number;
name: string;
common_name: string;
years: number;
Expand Down
1 change: 0 additions & 1 deletion test/certificates.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,6 @@ describe("certificates", () => {
const certificate = response.data;
expect(certificate.id).toBe(101967);
expect(certificate.domain_id).toBe(289333);
expect(certificate.contact_id).toBe(2511);
expect(certificate.common_name).toBe("www.bingo.pizza");
expect(certificate.alternate_names).toEqual([]);
expect(certificate.state).toBe("issued");
Expand Down