Skip to content

Commit e1d6fb9

Browse files
authored
Merge pull request Azure#4778 from Azure/release-4.4.1
[Release 4.4.1] Merge release --> master
2 parents 9ae3103 + ed6d327 commit e1d6fb9

File tree

834 files changed

+853593
-4982
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

834 files changed

+853593
-4982
lines changed

ChangeLog.md

Lines changed: 35 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,37 @@
1-
## 2017.09.25 - Version 4.4.0
1+
## 2017.10.12 - Version 4.4.1
2+
* AzureBatch
3+
- Marked cmdlet parameters and type properties obsolete in
4+
preparation for upcoming breaking change release (Version 4.0.0)
5+
* HDInsight
6+
* Added support for Data Disks property in cluster creation
7+
- Added parameter 'WorkerNodeDataDisksGroups' to the New-AzureHDInsightCluster cmdlet
8+
* Insights
9+
* Add-AzureRmLogAlertRule
10+
- Adding details to deprecation warning introduced in April 2017: the cmdlet will stop having effect: its functionality is moved to the "ActivityLogAlerts" cmdlets.
11+
- Help file modified to include the deprecation warning and the details.
12+
* Disable-AzureRmActivityLogAlert, Disable-AzureRmActivityLogAlert, Remove-AzureRmActivityLogAlert, Set-AzureRmActivityLogAlert
13+
- Help file modified: removed text stating that the Force arguments was accepted since that argument is not accepted.
14+
* KeyVault
15+
* Deprecating the PurgeDisabled flag from Key, Secret and Certificate attributes, respectively.
16+
* The flag is being superseded by the RecoveryLevel attribute.
17+
* MachineLearningCompute
18+
* Added initial set of cmdlets for MachineLearningCompute
19+
- Get-AzureRmMlOpCluster
20+
- Get-AzureRmMlOpClusterKey
21+
- New-AzureRmMlOpCluster
22+
- Remove-AzureRmMlOpCluster
23+
- Test-AzureRmMlOpClusterSystemServicesUpdateAvailability
24+
- Update-AzureRmMlOpClusterSystemService
25+
* MarketplaceOrdering
26+
* New Cmdlet Get-AzureRmMarketplaceTerms
27+
- Get the agreement terms of a given publisher id, offer id and plan id.
28+
* New Cmdlet Set-AzureRmMarketplaceTerms
29+
- Accept or reject agreement terms of a give publisher id, offer id and plan id. Please use Get-AzureRmMarketplaceTerms to get the agreement terms.
30+
* Profile
31+
* LocationCompleterAttribute added and available for cmdlets which use the -Location parameter
32+
- Use this feature by adding LocationCompleter(string[] validResourceTypes) onto the Location parameter
33+
34+
## 2017.09.25 - Version 4.4.0
235
* AnalysisServices
336
* Added a new dataplane commandlet to allow synchronization of databases from read-write instance to read-only instances
437
- Included help file for the commandlet
@@ -3741,4 +3774,4 @@ Virtual Network cmdlets
37413774
* iisnode 0.1.13
37423775

37433776
2011.12.09 Version 0.5.0
3744-
* Initial Release
3777+
* Initial Release

TestMappings.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,9 @@
7070
".\\src\\ResourceManager\\LogicApp\\Commands.LogicApp.Test\\bin\\Debug\\Microsoft.Azure.Commands.LogicApp.Test.dll"
7171
],
7272
"src/ResourceManager/MachineLearning/": [],
73+
"src/ResourceManager/MachineLearningCompute/" : [
74+
".\\src\\ResourceManager\\MachineLearningCompute\\Commands.MachineLearningCompute.Test\\bin\\Debug\\Microsoft.Azure.Commands.MachineLearningCompute.Test.dll"
75+
],
7376
"src/ResourceManager/Media/": [],
7477
"src/ResourceManager/Network/": [
7578
".\\src\\ResourceManager\\Network\\Commands.Network.Test\\bin\\Debug\\Microsoft.Azure.Commands.Network.Test.dll"
@@ -167,5 +170,8 @@
167170
],
168171
"src/ResourceManager/Profile/Commands.Profile.Test/": [
169172
".\\src\\ResourceManager\\Profile\\Commands.Profile.Test\\bin\\Debug\\Microsoft.Azure.Commands.Profile.Test.dll"
173+
],
174+
"src/ResourceManager/MarketplaceOrdering/Commands.MarketplaceOrdering.Test/": [
175+
".\\src\\ResourceManager\\MarketplaceOrdering\\Commands.MarketplaceOrdering.Test\\bin\\Debug\\Microsoft.Azure.Commands.MarketplaceOrdering.Test.dll"
170176
]
171177
}

documentation/Repo-Tasks-Module.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
3. As long as you have exported all the functions that you need from your ps1 file using export-modulemember -function <name of function>. We deliberately do this to avoid polluting list of commands available (when you use Get-Command)
1111
3. Currently Repo-Tasks module supports following tasks:
1212
1. Set-TestEnvironment
13-
1. Will allow you create a test connection string required to setup test environment in order to run tests. More information about Test environment can be found [here](https://github.com/Azure/azure-powershell/blob/dev/documentation/Using-Azure-TestFramework.md "here")
13+
1. Will allow you create a test connection string required to setup test environment in order to run tests. More information about Test environment can be found [here](https://github.com/Azure/azure-powershell/blob/preview/documentation/Using-Azure-TestFramework.md "here")
1414
2. Start-Build
1515
1. Will allow you to kick off full build
1616
2. Or will allow you build for a particular scope (e.g. Start-Build -BuildScope ResourceManagment\Compute)

setup/azurecmd.wxs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension" xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension">
33

4-
<?define productName="Microsoft Azure PowerShell - September 2017" ?>
4+
<?define productName="Microsoft Azure PowerShell - October 2017" ?>
55
<?define sourceDir="$(var.SolutionDir)..\src\Package\$(var.Configuration)" ?>
66
<?define caSourceDir="$(var.SolutionDir)setup\bin\$(var.Configuration)" ?>
77

8-
<?define version="4.4.0" ?>
8+
<?define version="4.4.1" ?>
99

1010
<Product Id="*"
1111
Name="$(var.productName)"

0 commit comments

Comments
 (0)