forked from Azure/azure-databricks-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathReleaseNotes.props
30 lines (30 loc) · 1.74 KB
/
ReleaseNotes.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<Project>
<PropertyGroup>
<PackageReleaseNotes Condition="'$(VersionPrefix)' == '2.0.0'">
- The v2 library targets .NET 6 runtime.
- The v2 library migrated the underlying JSON parsing library from [Newtonsoft.Json](https://www.nuget.org/packages/Newtonsoft.Json/) to [System.Text.Json](https://www.nuget.org/packages/System.Text.Json/).
- The Jobs API was redesigned to support the version 2.1 of the REST API.
- Added support for ClusterPolicies API.
- Added support for Global Init Scripts API.
- Added support for creating clusters with credential pass-through.
- Added support for configuring the HttpClient object used by DatabricksClient.
- Added unit tests.
</PackageReleaseNotes>
<PackageReleaseNotes Condition="'$(VersionPrefix)' == '2.1.0'">
- Add support for create Azure Key Vault backed secret scope.
- Add support for changing cluster owner.
- Add support for listing and getting policy family
- Add support for creating and editing cluster policy with policy family.
</PackageReleaseNotes>
<PackageReleaseNotes Condition="'$(VersionPrefix)' == '2.3.0'">
- Add support for Pipelines (Delta Live Tables) API.
- Add support for webhook and email notification to JobApi.RunSubmit
- Add support for job_parameters during job run
- Add support for Unity Catalog API.
</PackageReleaseNotes>
<PackageReleaseNotes>
Changes in $(VersionPrefix): $(PackageReleaseNotes)
</PackageReleaseNotes>
<PackageReleaseNotes>$(PackageReleaseNotes.Trim())</PackageReleaseNotes>
</PropertyGroup>
</Project>