Skip to content

Commit c8695d4

Browse files
committed
Changelog and version
Updated version
1 parent a7b811e commit c8695d4

File tree

3 files changed

+22
-2
lines changed

3 files changed

+22
-2
lines changed

eng/Packages.Data.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
-->
1313
<ItemGroup Condition="'$(IsClientLibrary)' != 'true'">
1414
<PackageReference Update="Microsoft.Azure.Amqp" Version="2.4.11" />
15-
<PackageReference Update="Microsoft.Azure.Batch" Version="11.0.0" />
15+
<PackageReference Update="Microsoft.Azure.Batch" Version="15.0.0" />
1616
<PackageReference Update="Microsoft.Azure.Devices.Client" Version="1.23.2" />
1717
<PackageReference Update="Microsoft.Azure.Devices" Version="1.19.0" />
1818
<PackageReference Update="Microsoft.Azure.KeyVault.Core" Version="3.0.3" />

sdk/batch/Microsoft.Azure.Batch/CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
# Release History
22

3+
## 15.0.0 (2021-06-01)
4+
5+
### Features
6+
7+
- Add ability to assign user-assigned managed identities to `CloudPool`. These identities will be made available on each node in the pool, and can be used to access various resources.
8+
- Added `IdentityReference` property to the following models to support accessing resources via managed identity:
9+
- `AzureBlobFileSystemConfiguration`
10+
- `OutputFileBlobContainerDestination`
11+
- `ContainerRegistry`
12+
- `ResourceFile`
13+
- `UploadBatchServiceLogsConfiguration`
14+
- Added new `ComputeNodeExtension` operations to `BatchServiceClient` for getting/listing VM extensions on a node
15+
- Added new `extensions` property to `VirtualMachineConfiguration` on `CloudPool` to specify virtual machine extensions for nodes
16+
- Added the ability to specify availability zones using a new property `NodePlacementConfiguration` on `VirtualMachineConfiguration`
17+
- Added new `OSDisk` property to `VirtualMachineConfiguration`, which contains settings for the operating system disk of the Virtual Machine.
18+
- The `placement` property on `DiffDiskSettings` specifies the ephemeral disk placement for operating system disks for all VMs in the pool. Setting it to "CacheDisk" will store the ephemeral OS disk on the VM cache.
19+
- Added `MaxParallelTasks` property on `CloudJob` to control the maximum allowed tasks per job (defaults to -1, meaning unlimited).
20+
- Added `VirtualMachineInfo` property on `ComputeNode` which contains information about the current state of the virtual machine, including the exact version of the marketplace image the VM is using.
21+
- Added `RecurrenceInterval` property to `Schedule` to control the interval between the start times of two successive job under a job schedule.
22+
323
## 14.1.0-beta.1 (Unreleased)
424

525
### Bug fixes

sdk/batch/Microsoft.Azure.Batch/src/Microsoft.Azure.Batch.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<Description>This client library provides access to the Microsoft Azure Batch service.</Description>
4-
<Version>14.1.0-beta.1</Version>
4+
<Version>15.0.0</Version>
55
<DefineConstants>$(DefineConstants);CODESIGN</DefineConstants>
66
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
77
<AssemblyTitle>Microsoft Azure Batch</AssemblyTitle>

0 commit comments

Comments
 (0)