Skip to content

Commit 2bd9670

Browse files
authored
Merge pull request Azure#4318 from markcowl/release-4.2.1
Update versions and changelog for 4.2.1 release
2 parents a95520a + 50b15bb commit 2bd9670

File tree

252 files changed

+646
-768
lines changed

Some content is hidden

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

252 files changed

+646
-768
lines changed

ChangeLog.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
1-
## 2017.7.11 - Version 4.2.0
1+
## 2017.07.17 - Version 4.2.1
2+
* Compute
3+
- Fix issue with VM DIsk and VM Disk snapshot create and update cmdlets, (link)[https://github.com/azure/azure-powershell/issues/4309]
4+
- New-AzureRmDisk
5+
- New-AzureRmSnapshot
6+
- Update-AzureRmDisk
7+
- Update-AzureRmSnapshot
8+
* Profile
9+
- Fix issue with non-interactive user authentication in RDFE (link)[https://github.com/Azure/azure-powershell/issues/4299]
10+
* ServiceManagement
11+
- Fix issue with non-interactive user authentication (link)[https://github.com/Azure/azure-powershell/issues/4299]
12+
13+
## 2017.7.11 - Version 4.2.0
214
* AnalysisServices
315
* Add new dataplane API
416
- Introduced API to fetch AS server log, Export-AzureAnalysisServicesInstanceLog

setup/azurecmd.wxs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<?define sourceDir="$(var.SolutionDir)..\src\Package\$(var.Configuration)" ?>
66
<?define caSourceDir="$(var.SolutionDir)setup\bin\$(var.Configuration)" ?>
77

8-
<?define version="4.2.0" ?>
8+
<?define version="4.2.1" ?>
99

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

src/Common/Commands.Common/AzurePowerShell.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ public class AzurePowerShell
2626

2727
public const string AssemblyCopyright = "Copyright © Microsoft";
2828

29-
public const string AssemblyVersion = "4.2.0";
29+
public const string AssemblyVersion = "4.2.1";
3030

31-
public const string AssemblyFileVersion = "4.2.0";
31+
public const string AssemblyFileVersion = "4.2.1";
3232

3333
public const string ProfileFile = "AzureProfile.json";
3434

src/ResourceManager/AnalysisServices/AzureRM.AnalysisServices.psd1

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 7/6/2017
6+
# Generated on: 7/14/2017
77
#
88

99
@{
@@ -12,7 +12,7 @@
1212
# RootModule = ''
1313

1414
# Version number of this module.
15-
ModuleVersion = '0.4.1'
15+
ModuleVersion = '0.4.2'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()
@@ -51,7 +51,7 @@ CLRVersion = '4.0'
5151
# ProcessorArchitecture = ''
5252

5353
# Modules that must be imported into the global environment prior to importing this module
54-
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '3.2.0'; })
54+
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '3.2.1'; })
5555

5656
# Assemblies that must be loaded prior to importing this module
5757
# RequiredAssemblies = @()
@@ -86,6 +86,7 @@ CmdletsToExport = 'Resume-AzureRmAnalysisServicesServer',
8686
# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
8787
AliasesToExport = 'Resume-AzureAs', 'Suspend-AzureAs', 'Get-AzureAs', 'Remove-AzureAs',
8888
'Set-AzureAs', 'Test-AzureAs', 'New-AzureAs'
89+
8990
# DSC resources to export from this module
9091
# DscResourcesToExport = @()
9192

@@ -113,8 +114,7 @@ PrivateData = @{
113114
# IconUri = ''
114115

115116
# ReleaseNotes of this module
116-
ReleaseNotes = '* Add new dataplane API
117-
- Introduced API to fetch AS server log, Export-AzureAnalysisServicesInstanceLog'
117+
ReleaseNotes = 'Updated for common code changes'
118118

119119
# External dependent modules of this module
120120
# ExternalModuleDependencies = ''

src/ResourceManager/AnalysisServices/ChangeLog.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919
-->
2020
## Current Release
2121

22+
## Version 0.4.2
23+
2224
## Version 0.4.1
2325
* Add new dataplane API
2426
- Introduced API to fetch AS server log, Export-AzureAnalysisServicesInstanceLog
@@ -47,4 +49,4 @@
4749

4850
## Version 0.0.2
4951
* Fixed bug in Get-AzureRMAnalysisServicesServer
50-
- When this command was run against some resources, it would fail with a null reference exception.
52+
- When this command was run against some resources, it would fail with a null reference exception.

src/ResourceManager/AnalysisServices/Commands.AnalysisServices.Dataplane/Azure.AnalysisServices.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
@{
1010

1111
# Version number of this module.
12-
ModuleVersion = '0.4.1'
12+
ModuleVersion = '0.4.2'
1313

1414
# ID used to uniquely identify this module
1515
GUID = 'c717b5a4-1f1b-4a2f-8aa1-bfd09934626e'

src/ResourceManager/AnalysisServices/Commands.AnalysisServices.Dataplane/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@
3535
// by using the '*' as shown below:
3636

3737

38-
[assembly: AssemblyVersion("0.4.1")]
39-
[assembly: AssemblyFileVersion("0.4.1")]
38+
[assembly: AssemblyVersion("0.4.2")]
39+
[assembly: AssemblyFileVersion("0.4.2")]

src/ResourceManager/AnalysisServices/Commands.AnalysisServices.Test/Properties/AssemblyInfo.cs

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

3333
[assembly: Guid("37af97fd-d603-4d52-a7a6-0885004a57fe")]
3434

35-
[assembly: AssemblyVersion("0.4.1")]
36-
[assembly: AssemblyFileVersion("0.4.1")]
35+
[assembly: AssemblyVersion("0.4.2")]
36+
[assembly: AssemblyFileVersion("0.4.2")]
3737
[assembly: CollectionBehavior(DisableTestParallelization = true)]

src/ResourceManager/AnalysisServices/Commands.AnalysisServices/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@
3535
// by using the '*' as shown below:
3636

3737

38-
[assembly: AssemblyVersion("0.4.1")]
39-
[assembly: AssemblyFileVersion("0.4.1")]
38+
[assembly: AssemblyVersion("0.4.2")]
39+
[assembly: AssemblyFileVersion("0.4.2")]

src/ResourceManager/ApiManagement/AzureRM.ApiManagement.psd1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 7/6/2017
6+
# Generated on: 7/14/2017
77
#
88

99
@{
@@ -12,7 +12,7 @@
1212
# RootModule = ''
1313

1414
# Version number of this module.
15-
ModuleVersion = '4.2.0'
15+
ModuleVersion = '4.2.1'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()
@@ -51,7 +51,7 @@ CLRVersion = '4.0'
5151
# ProcessorArchitecture = ''
5252

5353
# Modules that must be imported into the global environment prior to importing this module
54-
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '3.2.0'; })
54+
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '3.2.1'; })
5555

5656
# Assemblies that must be loaded prior to importing this module
5757
# RequiredAssemblies = @()

src/ResourceManager/ApiManagement/ChangeLog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919
-->
2020
## Current Release
2121

22+
## Version 4.2.1
23+
2224
## Version 4.2.0
2325

2426
## Version 4.1.0

src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,5 @@
4242
// You can specify all the values or you can default the Build and Revision Numbers
4343
// by using the '*' as shown below:
4444

45-
[assembly: AssemblyVersion("4.2.0")]
46-
[assembly: AssemblyFileVersion("4.2.0")]
45+
[assembly: AssemblyVersion("4.2.1")]
46+
[assembly: AssemblyFileVersion("4.2.1")]

src/ResourceManager/ApiManagement/Commands.ApiManagement.Test/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,5 @@
4141
// You can specify all the values or you can default the Build and Revision Numbers
4242
// by using the '*' as shown below:
4343

44-
[assembly: AssemblyVersion("4.2.0")]
45-
[assembly: AssemblyFileVersion("4.2.0")]
44+
[assembly: AssemblyVersion("4.2.1")]
45+
[assembly: AssemblyFileVersion("4.2.1")]

src/ResourceManager/ApiManagement/Commands.ApiManagement/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,5 @@
4141
// You can specify all the values or you can default the Build and Revision Numbers
4242
// by using the '*' as shown below:
4343

44-
[assembly: AssemblyVersion("4.2.0")]
45-
[assembly: AssemblyFileVersion("4.2.0")]
44+
[assembly: AssemblyVersion("4.2.1")]
45+
[assembly: AssemblyFileVersion("4.2.1")]

src/ResourceManager/ApiManagement/Commands.SMAPI.Test/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@
4242
// You can specify all the values or you can default the Build and Revision Numbers
4343
// by using the '*' as shown below:
4444

45-
[assembly: AssemblyVersion("4.2.0")]
46-
[assembly: AssemblyFileVersion("4.2.0")]
45+
[assembly: AssemblyVersion("4.2.1")]
46+
[assembly: AssemblyFileVersion("4.2.1")]
4747
[assembly: CollectionBehavior(DisableTestParallelization = true)]

src/ResourceManager/Automation/AzureRM.Automation.psd1

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 7/6/2017
6+
# Generated on: 7/14/2017
77
#
88

99
@{
@@ -12,7 +12,7 @@
1212
# RootModule = ''
1313

1414
# Version number of this module.
15-
ModuleVersion = '3.2.0'
15+
ModuleVersion = '3.2.1'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()
@@ -51,7 +51,7 @@ CLRVersion = '4.0'
5151
# ProcessorArchitecture = ''
5252

5353
# Modules that must be imported into the global environment prior to importing this module
54-
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '3.2.0'; })
54+
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '3.2.1'; })
5555

5656
# Assemblies that must be loaded prior to importing this module
5757
# RequiredAssemblies = @()
@@ -160,9 +160,7 @@ PrivateData = @{
160160
# IconUri = ''
161161

162162
# ReleaseNotes of this module
163-
ReleaseNotes = '* Properly setting TimeZone value for Weekly and Monthly schedules for New-AzureRmAutomationSchedule
164-
- More information can be found in this issue: https://github.com/Azure/azure-powershell/issues/3043
165-
'
163+
ReleaseNotes = 'Updated for common code changes'
166164

167165
# External dependent modules of this module
168166
# ExternalModuleDependencies = ''

src/ResourceManager/Automation/ChangeLog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919
-->
2020
## Current Release
2121

22+
## Version 3.2.1
23+
2224
## Version 3.2.0
2325
* Properly setting TimeZone value for Weekly and Monthly schedules for New-AzureRmAutomationSchedule
2426
- More information can be found in this issue: https://github.com/Azure/azure-powershell/issues/3043

src/ResourceManager/Automation/Commands.Automation.Test/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
// You can specify all the values or you can default the Build and Revision Numbers
4444
// by using the '*' as shown below:
4545

46-
[assembly: AssemblyVersion("3.2.0")]
47-
[assembly: AssemblyFileVersion("3.2.0")]
46+
[assembly: AssemblyVersion("3.2.1")]
47+
[assembly: AssemblyFileVersion("3.2.1")]
4848
[assembly: CLSCompliant(false)]
4949
[assembly: CollectionBehavior(DisableTestParallelization = true)]

src/ResourceManager/Automation/Commands.Automation/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@
4343
// You can specify all the values or you can default the Build and Revision Numbers
4444
// by using the '*' as shown below:
4545

46-
[assembly: AssemblyVersion("3.2.0")]
47-
[assembly: AssemblyFileVersion("3.2.0")]
46+
[assembly: AssemblyVersion("3.2.1")]
47+
[assembly: AssemblyFileVersion("3.2.1")]
4848
#if SIGN
4949
[assembly: InternalsVisibleTo("Microsoft.Azure.Commands.ResourceManager.Automation.Test, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")]
5050
#else

src/ResourceManager/AzureBackup/AzureRM.Backup.psd1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 7/6/2017
6+
# Generated on: 7/14/2017
77
#
88

99
@{
@@ -12,7 +12,7 @@
1212
# RootModule = ''
1313

1414
# Version number of this module.
15-
ModuleVersion = '3.2.0'
15+
ModuleVersion = '3.2.1'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()
@@ -51,7 +51,7 @@ CLRVersion = '4.0'
5151
# ProcessorArchitecture = ''
5252

5353
# Modules that must be imported into the global environment prior to importing this module
54-
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '3.2.0'; })
54+
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '3.2.1'; })
5555

5656
# Assemblies that must be loaded prior to importing this module
5757
# RequiredAssemblies = @()

src/ResourceManager/AzureBackup/ChangeLog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919
-->
2020
## Current Release
2121

22+
## Version 3.2.1
23+
2224
## Version 3.2.0
2325

2426
## Version 3.1.0

src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,6 @@
4646
// You can specify all the values or you can default the Build and Revision Numbers
4747
// by using the '*' as shown below:
4848

49-
[assembly: AssemblyVersion("3.2.0")]
50-
[assembly: AssemblyFileVersion("3.2.0")]
49+
[assembly: AssemblyVersion("3.2.1")]
50+
[assembly: AssemblyFileVersion("3.2.1")]
5151
[assembly: CollectionBehavior(DisableTestParallelization = true)]

src/ResourceManager/AzureBackup/Commands.AzureBackup/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
[assembly: ComVisible(false)]
3232
[assembly: CLSCompliant(false)]
3333

34-
[assembly: AssemblyVersion("3.2.0")]
35-
[assembly: AssemblyFileVersion("3.2.0")]
34+
[assembly: AssemblyVersion("3.2.1")]
35+
[assembly: AssemblyFileVersion("3.2.1")]

src/ResourceManager/AzureBatch/AzureRM.Batch.psd1

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 7/6/2017
6+
# Generated on: 7/14/2017
77
#
88

99
@{
@@ -12,7 +12,7 @@
1212
# RootModule = ''
1313

1414
# Version number of this module.
15-
ModuleVersion = '3.2.0'
15+
ModuleVersion = '3.2.1'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()
@@ -51,7 +51,7 @@ CLRVersion = '4.0'
5151
# ProcessorArchitecture = ''
5252

5353
# Modules that must be imported into the global environment prior to importing this module
54-
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '3.2.0'; })
54+
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '3.2.1'; })
5555

5656
# Assemblies that must be loaded prior to importing this module
5757
# RequiredAssemblies = @()
@@ -141,9 +141,7 @@ PrivateData = @{
141141
# IconUri = ''
142142

143143
# ReleaseNotes of this module
144-
ReleaseNotes = '- Added new Get-AzureBatchJobPreparationAndReleaseTaskStatus cmdlet.
145-
- Added byte range start and end to Get-AzureBatchNodeFileContent parameters.
146-
'
144+
ReleaseNotes = 'Updated for common code changes'
147145

148146
# External dependent modules of this module
149147
# ExternalModuleDependencies = ''

src/ResourceManager/AzureBatch/ChangeLog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919
-->
2020
## Current Release
2121

22+
## Version 3.2.1
23+
2224
## Version 3.2.0
2325
- Added new Get-AzureBatchJobPreparationAndReleaseTaskStatus cmdlet.
2426
- Added byte range start and end to Get-AzureBatchNodeFileContent parameters.

src/ResourceManager/AzureBatch/Commands.Batch.Test/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@
3333
// You can specify all the values or you can default the Build and Revision Numbers
3434
// by using the '*' as shown below:
3535

36-
[assembly: AssemblyVersion("3.2.0")]
37-
[assembly: AssemblyFileVersion("3.2.0")]
36+
[assembly: AssemblyVersion("3.2.1")]
37+
[assembly: AssemblyFileVersion("3.2.1")]
3838
[assembly: CollectionBehavior(DisableTestParallelization = true)]

src/ResourceManager/AzureBatch/Commands.Batch/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
[assembly: ComVisible(false)]
2626
[assembly: CLSCompliant(false)]
2727
[assembly: Guid("ed102280-3577-49bf-93dd-11b6e3a44a57")]
28-
[assembly: AssemblyVersion("3.2.0")]
29-
[assembly: AssemblyFileVersion("3.2.0")]
28+
[assembly: AssemblyVersion("3.2.1")]
29+
[assembly: AssemblyFileVersion("3.2.1")]
3030
#if SIGN
3131
[assembly: InternalsVisibleTo("Microsoft.Azure.Commands.Batch.Test, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")]
3232
#else

0 commit comments

Comments
 (0)