diff --git a/sdk/keyvault/azure-security-keyvault-certificates/CHANGELOG.md b/sdk/keyvault/azure-security-keyvault-certificates/CHANGELOG.md index 74d0d396b..2b3ffb8cd 100644 --- a/sdk/keyvault/azure-security-keyvault-certificates/CHANGELOG.md +++ b/sdk/keyvault/azure-security-keyvault-certificates/CHANGELOG.md @@ -1,65 +1,61 @@ -# Release History - -## 4.3.0-beta.1 (Unreleased) - -### Features Added - -### Breaking Changes - -### Bugs Fixed - -### Other Changes - -## 4.2.1 (2024-01-16) - -### Bugs Fixed - -- [[#4754]](https://github.com/Azure/azure-sdk-for-cpp/issues/4754) Thread safety for authentication policy. - -## 4.2.0 (2023-05-09) - -### Features Added - -- Added support for challenge-based and multi-tenant authentication. - -## 4.2.0-beta.1 (2023-04-11) - -### Features Added - -- Added support for challenge-based and multi-tenant authentication. - -## 4.1.0 (2022-10-11) - -### Features Added - -- Keyvault 7.3 support added for Certificates. - -## 4.1.0-beta.1 (2022-07-07) - -### Features Added - -- Keyvault 7.3 support added for Certificates. - -### Breaking Changes - -- Removed ServiceVersion type, replaced with ApiVersion field in the CertificateClientOptions type. - -## 4.0.0 (2022-06-07) - -### Breaking Changes - -- Renamed `keyvault_certificates.hpp` to `certificates.hpp`. - -## 4.0.0-beta.2 (2022-03-08) - -### Breaking Changes -- Updated `CreateCertificateOperation.PollUntilDone()` (returned from `StartCreateCertificate()`) to return the operation status instead of the newly created certificate. - -## 4.0.0-beta.1 (2021-11-09) - -### New Features - -- Initial beta release of Azure Security Key Vault Certificates API for CPP. - - Added `Azure::Security::KeyVault::Certificates::CertificateClient` for get, create, list, delete, backup, restore, and import certificate operations. - - Added high-level and simplified `keyvault_certificates.hpp` file for simpler include experience for customers. - - Added model types which are returned from the `CertificateClient` operations, such as `Azure::Security::KeyVault::Certificates::KeyVaultCertificate`. +# Release History + +## 4.3.0-beta.1 (2024-04-09) + +### Features Added + +- Updated to API version 7.5. + +## 4.2.1 (2024-01-16) + +### Bugs Fixed + +- [[#4754]](https://github.com/Azure/azure-sdk-for-cpp/issues/4754) Thread safety for authentication policy. + +## 4.2.0 (2023-05-09) + +### Features Added + +- Added support for challenge-based and multi-tenant authentication. + +## 4.2.0-beta.1 (2023-04-11) + +### Features Added + +- Added support for challenge-based and multi-tenant authentication. + +## 4.1.0 (2022-10-11) + +### Features Added + +- Keyvault 7.3 support added for Certificates. + +## 4.1.0-beta.1 (2022-07-07) + +### Features Added + +- Keyvault 7.3 support added for Certificates. + +### Breaking Changes + +- Removed ServiceVersion type, replaced with ApiVersion field in the CertificateClientOptions type. + +## 4.0.0 (2022-06-07) + +### Breaking Changes + +- Renamed `keyvault_certificates.hpp` to `certificates.hpp`. + +## 4.0.0-beta.2 (2022-03-08) + +### Breaking Changes +- Updated `CreateCertificateOperation.PollUntilDone()` (returned from `StartCreateCertificate()`) to return the operation status instead of the newly created certificate. + +## 4.0.0-beta.1 (2021-11-09) + +### New Features + +- Initial beta release of Azure Security Key Vault Certificates API for CPP. + - Added `Azure::Security::KeyVault::Certificates::CertificateClient` for get, create, list, delete, backup, restore, and import certificate operations. + - Added high-level and simplified `keyvault_certificates.hpp` file for simpler include experience for customers. + - Added model types which are returned from the `CertificateClient` operations, such as `Azure::Security::KeyVault::Certificates::KeyVaultCertificate`. diff --git a/sdk/keyvault/azure-security-keyvault-keys/CHANGELOG.md b/sdk/keyvault/azure-security-keyvault-keys/CHANGELOG.md index a71010fb3..9316c8b39 100644 --- a/sdk/keyvault/azure-security-keyvault-keys/CHANGELOG.md +++ b/sdk/keyvault/azure-security-keyvault-keys/CHANGELOG.md @@ -1,165 +1,161 @@ -# Release History - -## 4.5.0-beta.1 (Unreleased) - -### Features Added - -### Breaking Changes - -### Bugs Fixed - -### Other Changes - -## 4.4.1 (2024-01-16) - -### Bugs Fixed - -- [[#4754]](https://github.com/Azure/azure-sdk-for-cpp/issues/4754) Thread safety for authentication policy. - -### Other Changes - -- Fixed GCC 13 compilation error. (A community contribution, courtesy of _[adamdebreceni](https://github.com/adamdebreceni)_) -- Use well-formed URL for the HTTP request made in `KeyClient::GetRandomBytes()`. - -### Acknowledgments - -Thank you to our developer community members who helped to make Azure Key Vault Keys better with their contributions to this release: - -- adamdebreceni _([GitHub](https://github.com/adamdebreceni))_ - -## 4.4.0 (2023-05-09) - -### Features Added - -- Added support for challenge-based and multi-tenant authentication. - -### Bugs Fixed - -- [3366](https://github.com/Azure/azure-sdk-for-cpp/issues/4466) Fixed the user-agent string sent to the service to include the "keys" suffix in the value, when using `CryptographyClient`. - -## 4.4.0-beta.1 (2023-04-11) - -### Features Added - -- Added support for challenge-based and multi-tenant authentication. - -### Bugs Fixed - -- [3366](https://github.com/Azure/azure-sdk-for-cpp/issues/4466) Fixed the user-agent string sent to the service to include the "keys" suffix in the value, when using `CryptographyClient`. - -## 4.3.0 (2022-10-11) - -### Features Added - -- Keyvault 7.3 support added for Keys. - -## 4.3.0-beta.1 (2022-07-07) - -### Features Added - -- Keyvault 7.3 support added for Keys. - -### Breaking Changes - -- Removed ServiceVersion type, replaced with ApiVersion field in the KeyClientOptions type. - - -## 4.2.0 (2021-10-05) - -### Features Added - -- [2833](https://github.com/Azure/azure-sdk-for-cpp/issues/2833) Added `GetCryptographyClient()` to `KeyClient` to return a `CryptographyClient` that uses the same options, policies, and pipeline as the `KeyClient` that created it. - -## 4.1.0 (2021-09-08) - -### Features Added - -- Added `GetUrl()` to `KeyClient`. - -### Bugs Fixed - -- [2750](https://github.com/Azure/azure-sdk-for-cpp/issues/2750) Support for Azure `managedhsm` cloud and any other non-public Azure cloud. - -## 4.0.0 (2021-08-10) - -### Other Changes - -- Consolidated keyvault and cryptography client options and model files into single headers. - -## 4.0.0-beta.4 (2021-07-20) - -### Features Added - -- Added `GetIv()` to `EncryptParameters` and `DecryptParameters`. -- Added `BackupKeyResult` for `BackupKey()` return type. - -### Breaking Changes - -- Removed `Azure::Security::KeyVault::Keys::ServiceVersion::V7_0` and `V7_1`. -- Removed `Azure::Security::KeyVault::Keys::Cryptography::ServiceVersion::V7_0` and `V7_1`. -- Removed `CryptographyClient::RemoteClient()` and `CryptographyClient::LocalOnly()`. -- Removed the general constructor from `EncryptParameters` and `DecryptParameters`. -- Removed access to `Iv` field member from `EncryptParameters` and `DecryptParameters`. -- Removed `Encrypt(EncryptionAlgorithm, std::vector, context)`. -- Removed `Decrypt(DecryptAlgorithm, std::vector, context)`. -- Removed `JsonWebKey::HasPrivateKey()`. -- Removed the `MaxPageResults` field from `GetPropertiesOfKeysOptions`, `GetPropertiesOfKeyVersionsOptions`, and `GetDeletedKeysOptions`. -- Renamed header `list_keys_single_page_result.hpp` to `list_keys_responses.hpp`. -- Updated `BackupKey()` API return type to `BackupKeyResult` model type. -- Renamed `KeyPropertiesPageResult` to `KeyPropertiesPagedResponse`. -- Renamed `DeletedKeyPageResult` to `DeletedKeyPagedResponse`. -- Changed the container for `KeyOperations` from `std::list` to `std::vector` within `CreateKeyOptions` and `UpdateKeyProperties()`. -- Changed the return type of `CrytographyClient` APIs like `Encrypt()` to return `Response` rather than the `T` directly. -- Renamed high-level header from `key_vault_keys.hpp` to `keyvault_keys.hpp`. - -## 4.0.0-beta.3 (2021-06-08) - -### Breaking Changes - -- Updated `MaxPageResults` type to `int32_t`, from `uint32_t`, affecting: - - `GetDeletedKeysOptions()`. - - `GetPropertiesOfKeysOptions()`. - - `GetPropertiesOfKeyVersionsOptions()`. -- Updated `CreateRsaKeyOptions::KeySize` type from `uint64_t` to `int64_t`. -- Updated `CreateRsaKeyOptions::PublicExponent` type from `uint64_t` to `int64_t`. -- Updated `CreateOctKeyOptions::KeySize` type from `uint64_t` to `int64_t`. - -## 4.0.0-beta.2 (2021-05-18) - -### New Features - -- Added support for importing and deserializing EC and OCT keys. -- Added cryptography client. -- Added `CreateFromResumeToken()` to `DeletedKeyOperation` and `RecoverKeyOperation`. - -### Breaking Changes - -- Added `final` specifier to classes and structures that are are not expected to be inheritable at the moment. -- Renamed `GetPropertiesOfKeysSinglePage()` to `GetPropertiesOfKeys()`. -- Renamed `GetPropertiesOfKeyVersionsSinglePage()` to `GetPropertiesOfKeyVersions()`. -- Renamed `GetDeletedKeysSinglePage()` to `GetDeletedKeys()`. -- Renamed `KeyPropertiesSinglePage` to `KeyPropertiesPageResult`. -- Renamed `DeletedKeySinglePage` to `DeletedKeyPageResult`. -- Renamed `GetPropertiesOfKeysSinglePageOptions` to `GetPropertiesOfKeysOptions`. -- Renamed `GetPropertiesOfKeyVersionsSinglePageOptions` to `GetPropertiesOfKeyVersionsOptions`. -- Renamed `GetDeletedKeysSinglePageOptions` to `GetDeletedKeysOptions`. -- Removed `Azure::Security::KeyVault::Keys::JsonWebKey::to_json`. -- Replaced static functions from `KeyOperation` and `KeyCurveName` with static const members. -- Replaced the enum `JsonWebKeyType` for a class with static const members as an extensible enum called `KeyVaultKeyType`. -- Renamed `MaxResults` to `MaxPageResults` for `GetSinglePageOptions`. -- Changed the returned type for list keys, key versions, and deleted keys from `Response` to `PagedResponse` affecting: - - `GetPropertiesOfKeysSinglePage()` and `GetPropertiesOfKeyVersionsSinglePage()` now returns `KeyProperties`. - - `GetDeletedKeysSinglePage()` now returns `DeletedKey`. -- Removed `ResumeDeleteKeyOperation()` and `ResumeRecoverKeyOperation()`. - -### Bug Fixes - -- Fix getting a resume token from delete and recover key operations. - -## 4.0.0-beta.1 (2021-04-07) - -### New Features - -- Added `Azure::Security::KeyVault::Keys::KeyClient` for get, create, list, delete, backup, restore, and import key operations. -- Added high-level and simplified `key_vault.hpp` file for simpler include experience for customers. -- Added model types which are returned from the `KeyClient` operations, such as `Azure::Security::KeyVault::Keys::KeyVaultKey`. +# Release History + +## 4.5.0-beta.1 (2024-04-09) + +### Features Added + +- Updated to API version 7.5. + +## 4.4.1 (2024-01-16) + +### Bugs Fixed + +- [[#4754]](https://github.com/Azure/azure-sdk-for-cpp/issues/4754) Thread safety for authentication policy. + +### Other Changes + +- Fixed GCC 13 compilation error. (A community contribution, courtesy of _[adamdebreceni](https://github.com/adamdebreceni)_) +- Use well-formed URL for the HTTP request made in `KeyClient::GetRandomBytes()`. + +### Acknowledgments + +Thank you to our developer community members who helped to make Azure Key Vault Keys better with their contributions to this release: + +- adamdebreceni _([GitHub](https://github.com/adamdebreceni))_ + +## 4.4.0 (2023-05-09) + +### Features Added + +- Added support for challenge-based and multi-tenant authentication. + +### Bugs Fixed + +- [3366](https://github.com/Azure/azure-sdk-for-cpp/issues/4466) Fixed the user-agent string sent to the service to include the "keys" suffix in the value, when using `CryptographyClient`. + +## 4.4.0-beta.1 (2023-04-11) + +### Features Added + +- Added support for challenge-based and multi-tenant authentication. + +### Bugs Fixed + +- [3366](https://github.com/Azure/azure-sdk-for-cpp/issues/4466) Fixed the user-agent string sent to the service to include the "keys" suffix in the value, when using `CryptographyClient`. + +## 4.3.0 (2022-10-11) + +### Features Added + +- Keyvault 7.3 support added for Keys. + +## 4.3.0-beta.1 (2022-07-07) + +### Features Added + +- Keyvault 7.3 support added for Keys. + +### Breaking Changes + +- Removed ServiceVersion type, replaced with ApiVersion field in the KeyClientOptions type. + + +## 4.2.0 (2021-10-05) + +### Features Added + +- [2833](https://github.com/Azure/azure-sdk-for-cpp/issues/2833) Added `GetCryptographyClient()` to `KeyClient` to return a `CryptographyClient` that uses the same options, policies, and pipeline as the `KeyClient` that created it. + +## 4.1.0 (2021-09-08) + +### Features Added + +- Added `GetUrl()` to `KeyClient`. + +### Bugs Fixed + +- [2750](https://github.com/Azure/azure-sdk-for-cpp/issues/2750) Support for Azure `managedhsm` cloud and any other non-public Azure cloud. + +## 4.0.0 (2021-08-10) + +### Other Changes + +- Consolidated keyvault and cryptography client options and model files into single headers. + +## 4.0.0-beta.4 (2021-07-20) + +### Features Added + +- Added `GetIv()` to `EncryptParameters` and `DecryptParameters`. +- Added `BackupKeyResult` for `BackupKey()` return type. + +### Breaking Changes + +- Removed `Azure::Security::KeyVault::Keys::ServiceVersion::V7_0` and `V7_1`. +- Removed `Azure::Security::KeyVault::Keys::Cryptography::ServiceVersion::V7_0` and `V7_1`. +- Removed `CryptographyClient::RemoteClient()` and `CryptographyClient::LocalOnly()`. +- Removed the general constructor from `EncryptParameters` and `DecryptParameters`. +- Removed access to `Iv` field member from `EncryptParameters` and `DecryptParameters`. +- Removed `Encrypt(EncryptionAlgorithm, std::vector, context)`. +- Removed `Decrypt(DecryptAlgorithm, std::vector, context)`. +- Removed `JsonWebKey::HasPrivateKey()`. +- Removed the `MaxPageResults` field from `GetPropertiesOfKeysOptions`, `GetPropertiesOfKeyVersionsOptions`, and `GetDeletedKeysOptions`. +- Renamed header `list_keys_single_page_result.hpp` to `list_keys_responses.hpp`. +- Updated `BackupKey()` API return type to `BackupKeyResult` model type. +- Renamed `KeyPropertiesPageResult` to `KeyPropertiesPagedResponse`. +- Renamed `DeletedKeyPageResult` to `DeletedKeyPagedResponse`. +- Changed the container for `KeyOperations` from `std::list` to `std::vector` within `CreateKeyOptions` and `UpdateKeyProperties()`. +- Changed the return type of `CrytographyClient` APIs like `Encrypt()` to return `Response` rather than the `T` directly. +- Renamed high-level header from `key_vault_keys.hpp` to `keyvault_keys.hpp`. + +## 4.0.0-beta.3 (2021-06-08) + +### Breaking Changes + +- Updated `MaxPageResults` type to `int32_t`, from `uint32_t`, affecting: + - `GetDeletedKeysOptions()`. + - `GetPropertiesOfKeysOptions()`. + - `GetPropertiesOfKeyVersionsOptions()`. +- Updated `CreateRsaKeyOptions::KeySize` type from `uint64_t` to `int64_t`. +- Updated `CreateRsaKeyOptions::PublicExponent` type from `uint64_t` to `int64_t`. +- Updated `CreateOctKeyOptions::KeySize` type from `uint64_t` to `int64_t`. + +## 4.0.0-beta.2 (2021-05-18) + +### New Features + +- Added support for importing and deserializing EC and OCT keys. +- Added cryptography client. +- Added `CreateFromResumeToken()` to `DeletedKeyOperation` and `RecoverKeyOperation`. + +### Breaking Changes + +- Added `final` specifier to classes and structures that are are not expected to be inheritable at the moment. +- Renamed `GetPropertiesOfKeysSinglePage()` to `GetPropertiesOfKeys()`. +- Renamed `GetPropertiesOfKeyVersionsSinglePage()` to `GetPropertiesOfKeyVersions()`. +- Renamed `GetDeletedKeysSinglePage()` to `GetDeletedKeys()`. +- Renamed `KeyPropertiesSinglePage` to `KeyPropertiesPageResult`. +- Renamed `DeletedKeySinglePage` to `DeletedKeyPageResult`. +- Renamed `GetPropertiesOfKeysSinglePageOptions` to `GetPropertiesOfKeysOptions`. +- Renamed `GetPropertiesOfKeyVersionsSinglePageOptions` to `GetPropertiesOfKeyVersionsOptions`. +- Renamed `GetDeletedKeysSinglePageOptions` to `GetDeletedKeysOptions`. +- Removed `Azure::Security::KeyVault::Keys::JsonWebKey::to_json`. +- Replaced static functions from `KeyOperation` and `KeyCurveName` with static const members. +- Replaced the enum `JsonWebKeyType` for a class with static const members as an extensible enum called `KeyVaultKeyType`. +- Renamed `MaxResults` to `MaxPageResults` for `GetSinglePageOptions`. +- Changed the returned type for list keys, key versions, and deleted keys from `Response` to `PagedResponse` affecting: + - `GetPropertiesOfKeysSinglePage()` and `GetPropertiesOfKeyVersionsSinglePage()` now returns `KeyProperties`. + - `GetDeletedKeysSinglePage()` now returns `DeletedKey`. +- Removed `ResumeDeleteKeyOperation()` and `ResumeRecoverKeyOperation()`. + +### Bug Fixes + +- Fix getting a resume token from delete and recover key operations. + +## 4.0.0-beta.1 (2021-04-07) + +### New Features + +- Added `Azure::Security::KeyVault::Keys::KeyClient` for get, create, list, delete, backup, restore, and import key operations. +- Added high-level and simplified `key_vault.hpp` file for simpler include experience for customers. +- Added model types which are returned from the `KeyClient` operations, such as `Azure::Security::KeyVault::Keys::KeyVaultKey`. diff --git a/sdk/keyvault/azure-security-keyvault-secrets/CHANGELOG.md b/sdk/keyvault/azure-security-keyvault-secrets/CHANGELOG.md index cf7acaad2..a3a663937 100644 --- a/sdk/keyvault/azure-security-keyvault-secrets/CHANGELOG.md +++ b/sdk/keyvault/azure-security-keyvault-secrets/CHANGELOG.md @@ -1,60 +1,56 @@ -# Release History - -## 4.3.0-beta.1 (Unreleased) - -### Features Added - -### Breaking Changes - -### Bugs Fixed - -### Other Changes - -## 4.2.1 (2024-01-16) - -### Bugs Fixed - -- [[#4754]](https://github.com/Azure/azure-sdk-for-cpp/issues/4754) Thread safety for authentication policy. - -## 4.2.0 (2023-05-09) - -### Features Added - -- Added support for challenge-based and multi-tenant authentication. - -## 4.2.0-beta.1 (2023-04-11) - -### Features Added - -- Added support for challenge-based and multi-tenant authentication. - -## 4.1.0 (2022-10-11) - -### Features Added - -- Keyvault 7.3 support added for Secrets. - -## 4.1.0-beta.1 (2022-07-07) - -### Features Added - -- Keyvault 7.3 support added for Secrets. - -### Breaking Changes - -- Removed ServiceVersion type, replaced with ApiVersion field in the SecretClientOptions type. - -## 4.0.0 (2022-06-07) - -### Breaking Changes - -- Renamed `keyvault_secrets.hpp` to `secrets.hpp`. - -## 4.0.0-beta.2 (2022-03-08) - -- Second preview. - - Internal improvements. - -## 4.0.0-beta.1 (2021-09-08) - -- initial preview +# Release History + +## 4.3.0-beta.1 (2024-04-09) + +### Features Added + +- Updated to API version 7.5. + +## 4.2.1 (2024-01-16) + +### Bugs Fixed + +- [[#4754]](https://github.com/Azure/azure-sdk-for-cpp/issues/4754) Thread safety for authentication policy. + +## 4.2.0 (2023-05-09) + +### Features Added + +- Added support for challenge-based and multi-tenant authentication. + +## 4.2.0-beta.1 (2023-04-11) + +### Features Added + +- Added support for challenge-based and multi-tenant authentication. + +## 4.1.0 (2022-10-11) + +### Features Added + +- Keyvault 7.3 support added for Secrets. + +## 4.1.0-beta.1 (2022-07-07) + +### Features Added + +- Keyvault 7.3 support added for Secrets. + +### Breaking Changes + +- Removed ServiceVersion type, replaced with ApiVersion field in the SecretClientOptions type. + +## 4.0.0 (2022-06-07) + +### Breaking Changes + +- Renamed `keyvault_secrets.hpp` to `secrets.hpp`. + +## 4.0.0-beta.2 (2022-03-08) + +- Second preview. + - Internal improvements. + +## 4.0.0-beta.1 (2021-09-08) + +- initial preview