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
2 changes: 1 addition & 1 deletion eng/versioning/version_client.txt
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ com.azure:azure-communication-messages;1.1.9;1.2.0-beta.2
com.azure:azure-communication-phonenumbers;1.4.3;1.5.0-beta.1
com.azure:azure-communication-rooms;1.2.6;1.3.0-beta.1
com.azure:azure-communication-sms;1.1.38;1.2.0-beta.1
com.azure:azure-compute-batch;1.0.0-beta.4;1.0.0-beta.5
com.azure:azure-compute-batch;1.0.0-beta.5;1.0.0-beta.6
com.azure:azure-containers-containerregistry;1.2.22;1.3.0-beta.1
com.azure:azure-containers-containerregistry-perf;1.0.0-beta.1;1.0.0-beta.1
com.azure:azure-core;1.57.1;1.58.0-beta.1
Expand Down
56 changes: 56 additions & 0 deletions sdk/batch/azure-compute-batch/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,61 @@
# Release History

## 1.0.0-beta.6 (2026-03-04)

### Features Added

- Added Models:
- Added `BatchJobDefaultOrder`
- Added `BatchPoolIdentityReference`
- Added `DiskCustomerManagedKey`
- Added `DiskEncryptionSetParameters`
- Added `HostEndpointSettings`
- Added `HostEndpointSettingsModeTypes`
- Added `IPFamily`
- Added `IpTag`
- Added `ProxyAgentSettings`

- Added Properties:
- Added `ipv6Address` to `BatchNode`
- Added `Ipv6RemoteLoginIpAddress` and `Ipv6RemoteLoginPort` to `BatchNodeRemoteLoginSettings`
- Added `IpFamilies` and `IpTags` to `BatchPublicAddressConfiguration`
- Added `JobDefaultOder` to `BatchTaskSchedulingPolicy`
- Added `ManagedDisk` to `DataDisk`
- Added `CustomerManagedKey` to `DiskEncryptionConfiguration`
- Added `DiskEncryptionSet` to `ManagedDisk`
- Added `DiskWithVMGuestStateValue` to `SecurityEncryptionTypes`
- Added `ProxyAgentSetting` to `SecurityProfile`

### Breaking Changes

- Removed Certificate operations and properties
- `createCertificate`
- `getCertificate`
- `listCertificates`
- `beginDeleteCertificate`
- `cancelCertificateDeletion`
Please migrate to use Azure Key Vault. For more information, see [Migrate Batch account certificates to Azure Key Vault](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide)

- Removed models:
- `BatchCertificate`
- `BatchCertificateDeleteError`
- `BatchCertificateFormat`
- `BatchCertificateReference`
- `BatchCertificateState`
- `BatchCertificateStoreLocation`
- `BatchCertificateVisibility`
- `BatchNodeCommunicationMode`
Transition Batch pools to the Simplified compute node communication model

- Removed properties:
- Removed `CertificateReferences` from `BatchNode`
- Removed `ResourceTags` and `CertificateReferences` from `BatchPool`
- Removed `CertificateReferences`, `ResourceTags`, and `TargetNodeCommunicationMode` from `BatchPoolCreateOptions`
- Removed `CertificateReferences` and `TargetNodeCommunicationMode` from `BatchPoolReplaceOptions`
- Removed `CertificateReferences`, `ResourceTags`, and `TargetNodeCommunicationMode` from `BatchPoolSpecifications`
- Removed `CertificateReferences`, `ResourceTags`, and `TargetNodeCommunicationMode` from `BatchPoolUpdateOptions`
- Removed `CertificateReferences`, `ResourceTags`, and `TargetNodeCommunicationMode` from `ComputeBatchModelFactory`

## 1.0.0-beta.5 (2025-09-15)

### Breaking Changes
Expand Down
2 changes: 1 addition & 1 deletion sdk/batch/azure-compute-batch/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ Various documentation is available to help you get started
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-compute-batch</artifactId>
<version>1.0.0-beta.5</version>
<version>1.0.0-beta.6</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion sdk/batch/azure-compute-batch/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

<groupId>com.azure</groupId>
<artifactId>azure-compute-batch</artifactId>
<version>1.0.0-beta.5</version> <!-- {x-version-update;com.azure:azure-compute-batch;current} -->
<version>1.0.0-beta.6</version> <!-- {x-version-update;com.azure:azure-compute-batch;current} -->
<packaging>jar</packaging>

<name>Microsoft Azure SDK for Batch Client</name>
Expand Down
Loading