Skip to content
Closed
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
Original file line number Diff line number Diff line change
@@ -1,14 +1,47 @@
# Release History

## 1.0.0-beta.2 (Unreleased)
## 1.0.0-beta.2 (2025-04-15)

### Features Added
- Azure Resource Manager Trusted Signing client library for Java. This package contains Microsoft Azure SDK for Trusted Signing Management SDK. Code Signing resource provider api. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).

### Breaking Changes

### Bugs Fixed
#### `models.CodeSigningAccountPatch` was modified

* `models.AccountSku sku()` -> `models.AccountSkuPatch sku()`
* `withSku(models.AccountSku)` was removed

#### `models.CodeSigningAccount$Update` was modified

* `withSku(models.AccountSku)` was removed

#### `models.CertificateProfileProperties` was modified

* `organizationUnit()` was removed
* `state()` was removed
* `city()` was removed
* `country()` was removed
* `postalCode()` was removed
* `commonName()` was removed
* `enhancedKeyUsage()` was removed
* `organization()` was removed
* `streetAddress()` was removed

### Features Added

* `models.AccountSkuPatch` was added

#### `models.CodeSigningAccountPatch` was modified

* `withSku(models.AccountSkuPatch)` was added

#### `models.CodeSigningAccount$Update` was modified

* `withSku(models.AccountSkuPatch)` was added

#### `models.Certificate` was modified

### Other Changes
* `enhancedKeyUsage()` was added

## 1.0.0-beta.1 (2024-09-27)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,15 @@ Azure subscription ID can be configured via `AZURE_SUBSCRIPTION_ID` environment
Assuming the use of the `DefaultAzureCredential` credential class, the client can be authenticated using the following code:

```java
AzureProfile profile = new AzureProfile(AzureEnvironment.AZURE);
AzureProfile profile = new AzureProfile(AzureCloud.AZURE_PUBLIC_CLOUD);
TokenCredential credential = new DefaultAzureCredentialBuilder()
.authorityHost(profile.getEnvironment().getActiveDirectoryEndpoint())
.build();
TrustedSigningManager manager = TrustedSigningManager
.authenticate(credential, profile);
```

The sample code assumes global Azure. Please change `AzureEnvironment.AZURE` variable if otherwise.
The sample code assumes global Azure. Please change the `AzureCloud.AZURE_PUBLIC_CLOUD` variable if otherwise.

See [Authentication][authenticate] for more options.

Expand Down Expand Up @@ -100,5 +100,3 @@ This project has adopted the [Microsoft Open Source Code of Conduct][coc]. For m
[cg]: https://github.com/Azure/azure-sdk-for-java/blob/main/CONTRIBUTING.md
[coc]: https://opensource.microsoft.com/codeofconduct/
[coc_faq]: https://opensource.microsoft.com/codeofconduct/faq/


Loading