Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

#### `CertificateServiceVersion` was modified

* `V2025_06_01_PREVIEW` was added
* `V2025_07_01` was added

## 4.8.6 (2026-03-23)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,6 @@ public enum CertificateServiceVersion implements ServiceVersion {
* Service version {@code 7.6}.
*/
V7_6("7.6"),
/**
* Service version {@code 2025-06-01-preview}.
*/
V2025_06_01_PREVIEW("2025-06-01-preview"),
/**
* Service version {@code 2025-07-01}.
*/
Expand All @@ -67,6 +63,6 @@ public String getVersion() {
* @return The latest {@link CertificateServiceVersion}.
*/
public static CertificateServiceVersion getLatest() {
return V7_6;
return V2025_07_01;
}
}
Loading