Skip to content

Commit b72223a

Browse files
committed
merge with upstream/preview and resolve conflict
2 parents 6ba28ec + 6b5fd47 commit b72223a

File tree

493 files changed

+54759
-62628
lines changed

Some content is hidden

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

493 files changed

+54759
-62628
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66

77
## Checklist
88

9-
- [ ] I have read the [_Submitting Changes_](https://github.com/Azure/azure-powershell/blob/preview/CONTRIBUTING.md#making-changes) section of [`CONTRIBUTING.md`](https://github.com/Azure/azure-powershell/blob/preview/CONTRIBUTING.md)
9+
- [ ] I have read the [_Submitting Changes_](https://github.com/Azure/azure-powershell/blob/preview/CONTRIBUTING.md#submitting-changes) section of [`CONTRIBUTING.md`](https://github.com/Azure/azure-powershell/blob/preview/CONTRIBUTING.md)
1010
- [ ] The title of the PR is clear and informative
1111
- [ ] The appropriate [change log has been updated](https://github.com/Azure/azure-powershell/blob/preview/CONTRIBUTING.md#updating-the-change-log)
1212
- [ ] The PR does not introduce [breaking changes](https://github.com/Azure/azure-powershell/blob/preview/documentation/breaking-changes/breaking-changes-definition.md)
1313
- [ ] If applicable, the changes made in the PR have proper test coverage
1414
- [ ] For public API changes to cmdlets:
1515
- [ ] the changes have gone through a [cmdlet design review](https://github.com/Azure/azure-powershell-cmdlet-review-pr)
16-
- [ ] the cmdlet markdown files were [generated using the `platyPS` module](https://github.com/Azure/azure-powershell/blob/preview/documentation/development-docs/help-generation.md)
16+
- [ ] the cmdlet markdown files were [generated using the `platyPS` module](https://github.com/Azure/azure-powershell/blob/preview/documentation/development-docs/help-generation.md)

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,10 @@ FakesAssemblies/
215215
*.GhostDoc.xml
216216
pingme.txt
217217
groupMapping*.json
218+
219+
*.msi
220+
*.wixpdb
221+
218222
.vscode/
219223
/tools/AutomationTestFramework/RunBooks
220224
/tools/AutomationTestFramework/TestHelpers/TestHelpers.zip

AzurePowershell.Test.targets

Lines changed: 0 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,6 @@
8181
DiagnosticMessages="false"
8282
ContinueOnError="false"
8383
Condition=" @(XUnitTests) != '' "/>
84-
85-
<CallTarget Targets="TestSetup" />
8684
</Target>
8785

8886
<Target Name="InvokeXUnitAll" DependsOnTargets="DeclareXunitTests">
@@ -101,8 +99,6 @@
10199
DiagnosticMessages="false"
102100
ContinueOnError="false"
103101
Condition=" @(XUnitTests) != '' "/>
104-
105-
<CallTarget Targets="TestSetup" />
106102
</Target>
107103

108104
<Target Name="TimeoutErrorHandler">
@@ -112,54 +108,6 @@
112108
<Target Name="BeforeRunTests">
113109
<MakeDir Directories="$(TestOutputDirectory)" ContinueOnError="false" />
114110
</Target>
115-
116-
<Target Name="TestSetup">
117-
<Message Importance="high" Text="Setup XUnit tests" />
118-
<MakeDir Directories="$(TestOutputDirectory)" ContinueOnError="false" />
119-
120-
<Message Text="Copying test assets" />
121-
<!-- We copy this file right after we build setup test for signing, so now copying the signed copy back where it is needed for the test -->
122-
<Copy SourceFiles="$(PackageDirectory)\$(Configuration)\PowerShellSetup.Test.dll"
123-
DestinationFolder="$(LibraryRoot)\setup\PowerShellSetup.Test\bin\$(Configuration)" Condition="Exists('$(PackageDirectory)\$(Configuration)\PowerShellSetup.Test.dll')" />
124-
125-
<Copy SourceFiles="$(SignedOutputRootDir)\AzurePowerShell.msi"
126-
DestinationFolder="$(LibraryRoot)\setup\PowerShellSetup.Test\bin\$(Configuration)" Condition="Exists('$(SignedOutputRootDir)\AzurePowerShell.msi')" />
127-
128-
<ItemGroup Condition=" '$(scope)' == 'all' AND '$(CodeSign)' != 'true' ">
129-
<SetupDebugTests Include=".\setup\PowerShellSetup.Test\bin\Debug\PowerShellSetup.Test.dll" />
130-
</ItemGroup>
131-
132-
<ItemGroup Condition=" '$(Configuration)' == 'Release' AND '$(scope)' == 'all' AND '$(CodeSign)' == 'true' ">
133-
<!-- We want to run setup tests related to signing that can only be run on signed bits -->
134-
<SetupReleaseTests Include=".\setup\PowerShellSetup.Test\bin\Release\PowerShellSetup.Test.dll" />
135-
</ItemGroup>
136-
<xunit
137-
Assemblies="@(SetupDebugTests)"
138-
AppDomains="true"
139-
ShadowCopy="false"
140-
ParallelizeTestCollections="false"
141-
ParallelizeAssemblies="true"
142-
IncludeTraits="AcceptanceType=CheckIn"
143-
ExcludeTraits="SignedBuild=BVT"
144-
Html="$(TestOutputDirectory)\AzPsSetupTest.html"
145-
MaxParallelThreads="10"
146-
DiagnosticMessages="false"
147-
ContinueOnError="false"
148-
Condition=" '$(scope)' == 'all' "/>
149-
150-
<xunit
151-
Assemblies="@(SetupReleaseTests)"
152-
AppDomains="true"
153-
ShadowCopy="false"
154-
ParallelizeTestCollections="false"
155-
ParallelizeAssemblies="true"
156-
IncludeTraits="SignedBuild=BVT"
157-
Html="$(TestOutputDirectory)\AzPsSetupTestSigned.html"
158-
MaxParallelThreads="10"
159-
DiagnosticMessages="false"
160-
ContinueOnError="false"
161-
Condition=" '$(Configuration)' == 'Release' AND '$(scope)' == 'all' AND '$(CodeSign)' == 'true' "/>
162-
</Target>
163111

164112
<Target Name="TestManagement">
165113
<Xunit.Runner.MSBuild.xunit Assemblies="$(ManagementTestDebug)" Html="$(TestOutputDirectory)\ManagementDebug.xunit.dll.html" Verbose="false"

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ In the Azure Developer Experience, you are at Step 5:
2121

2222
[Filing Issues](#filing-issues)
2323

24-
[Making Changes](#making-changes)
24+
[Submitting Changes](#submitting-changes)
2525
- [Pull Requests](#pull-requests)
2626
- [SDK for .NET](#sdk-for-net)
2727
- [Pull Request Guidelines](#pull-request-guidelines)

ChangeLog.md

Lines changed: 93 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,96 @@
1-
## 5.4.1 - February 2018
1+
## 5.5.0 - March 2018
2+
#### AzureRM.Profile
3+
* Fixed issue with importing aliases
4+
* Load version 10.0.3 of Newtonsoft.Json side-by-side with version 6.0.8
5+
6+
#### Azure.Storage
7+
* Support Soft-Delete feature
8+
- Enable-AzureStorageDeleteRetentionPolicy
9+
- Disable-AzureStorageDeleteRetentionPolicy
10+
- Get-AzureStorageBlob
11+
12+
#### AzureRM.AnalysisServices
13+
* Fixed issue with importing aliases
14+
* Add support of firewall and query scaleout feature, as well as support of 2017-08-01 api version.
15+
16+
#### AzureRM.Automation
17+
* Fixed issue with importing aliases
18+
19+
#### AzureRM.Cdn
20+
* Fixed issue with importing aliases
21+
22+
#### AzureRM.CognitiveServices
23+
* Update notice.txt and notice message.
24+
25+
#### AzureRM.Compute
26+
* 'New-AzureRmVMSS' prints connection strings in verbose mode.
27+
* 'New-AzureRmVmss' supports public IP address, load balancing rules, inbound NAT rules.
28+
* WriteAccelerator feature
29+
- Added WriteAccelerator switch parameter to the following cmdlets:
30+
Set-AzureRmVMOSDisk
31+
Set-AzureRmVMDataDisk
32+
Add-AzureRmVMDataDisk
33+
Add-AzureRmVmssDataDisk
34+
- Added OsDiskWriteAccelerator switch parameter to the following cmdlet:
35+
Set-AzureRmVmssStorageProfile.
36+
- Added OsDiskWriteAccelerator Boolean parameter to the following cmdlets:
37+
Update-AzureRmVM
38+
Update-AzureRmVmss
39+
40+
#### AzureRM.DataFactories
41+
* Fix credential encryption issue that caused no meaningful error for some encryption operations
42+
* Enable integration runtime to be shared across data factory
43+
44+
#### AzureRM.DataFactoryV2
45+
* Add parameter "SetupScriptContainerSasUri" and "Edition" for "Set-AzureRmDataFactoryV2IntegrationRuntime" cmd to enable custom setup and edition selection functionality
46+
* Fix credential encryption issue that caused no meaningful error for some encryption operations.
47+
* Enable integration runtime to be shared across data factory
48+
49+
#### AzureRM.HDInsight
50+
* Fixed issue with importing aliases
51+
52+
#### AzureRM.KeyVault
53+
* Fixed example for Set-AzureRmKeyVaultAccessPolicy
54+
55+
#### AzureRM.Network
56+
* Fixed issue with importing aliases
57+
58+
#### AzureRM.OperationalInsights
59+
* Fixed issue with importing aliases
60+
61+
#### AzureRM.RecoveryServices
62+
* Fixed issue with importing aliases
63+
64+
#### AzureRM.RecoveryServices.SiteRecovery
65+
* Fixed issue with importing aliases
66+
67+
#### AzureRM.Resources
68+
* Fixed issue with importing aliases
69+
70+
#### AzureRM.ServiceBus
71+
* Added EnableBatchedOperations property to Queue
72+
* Added DeadLetteringOnFilterEvaluationExceptions property to Subscriptions
73+
74+
#### AzureRM.ServiceFabric
75+
* Service Fabric cmdlet refresh
76+
- Updated ARM templates
77+
- Failed operations no longer rollback
78+
- Add-AzureRmServiceFabricNodeType
79+
- VMs default to managed disks
80+
- Existing VMSS subnet used
81+
- All operations are idempotent
82+
- Remove-AzureRmServiceFabricNodeType cleans up partially created VMSS and/or cluster node types
83+
- Fixed output of PSCluster object for complex property types
84+
85+
#### AzureRM.Sql
86+
* Fixed issue with importing aliases
87+
* Get-AzureRmSqlServer, New-AzureRmSqlServer, and Remove-AzureRmSqlServer response now includes FullyQualifiedDomainName property.
88+
89+
#### AzureRM.Websites
90+
* Fixed issue with importing aliases
91+
* New-AzureRMWebApp - added parameter set for simplified WebApp creation, with local git repository support.
92+
93+
## 5.4.1 - February 2018
294
#### AzureRM.Profile
395
* Fix concurrent module import issue in PowerShell Workflow and Azure Automation
496

TestMappings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,8 @@
113113
".\\src\\ResourceManager\\Network\\Commands.Network.Test\\bin\\Debug\\Microsoft.Azure.Commands.Network.Test.dll",
114114
".\\src\\ResourceManager\\RecoveryServices.Backup\\Commands.RecoveryServices.Backup.Test\\bin\\Debug\\Microsoft.Azure.Commands.RecoveryServices.Backup.Test.dll",
115115
".\\src\\ResourceManager\\ServiceFabric\\Commands.ServiceFabric.Test\\bin\\Debug\\Microsoft.Azure.Commands.ServiceFabric.Test.dll",
116-
".\\src\\ResourceManager\\Sql\\Commands.Sql.Test\\bin\\Debug\\Microsoft.Azure.Commands.Sql.Test.dll"
116+
".\\src\\ResourceManager\\Sql\\Commands.Sql.Test\\bin\\Debug\\Microsoft.Azure.Commands.Sql.Test.dll",
117+
".\\src\\ResourceManager\\Dns\\Commands.Dns.Test\\bin\\Debug\\Microsoft.Azure.Commands.Dns.Test.dll"
117118
],
118119
"src/ResourceManager/NotificationHubs /": [
119120
".\\src\\ResourceManager\\NotificationHubs\\Commands.NotificationHubs.Test\\bin\\Debug\\Microsoft.Azure.Commands.NotificationHubs.Test.dll"

0 commit comments

Comments
 (0)