Skip to content

Release 4.3.1 module and version updates #4449

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Aug 11, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
## 2017.08.07 - Version 4.3.0
## 2017.08.10 - Version 4.3.1
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@markcowl looks like the ## 2017.08.07 - Version 4.3.0 header will be removed and replaced with the new one for 4.3.1. I wasn't sure if this was intended, or if it was an accident.

This should get figured out when removing the duplicate change log entries in this file.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

resolved

* Update to fix assembly signing issue

## 2017.08.07 - Version 4.3.0
* AnalysisServices
* Fixed bug in Set-AzureRmAnalysisServciesServer
- When admin was not provided, the admin will be removed.
Expand Down
2 changes: 1 addition & 1 deletion setup/azurecmd.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<?define sourceDir="$(var.SolutionDir)..\src\Package\$(var.Configuration)" ?>
<?define caSourceDir="$(var.SolutionDir)setup\bin\$(var.Configuration)" ?>

<?define version="4.3.0" ?>
<?define version="4.3.1" ?>

<Product Id="*"
Name="$(var.productName)"
Expand Down
78 changes: 39 additions & 39 deletions setup/azurecmdfiles.wxi

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
<ProjectGuid>{24508E26-154D-47F1-80EE-439BF0710996}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Commands.Common.Authorization</RootNamespace>
<AssemblyName>Commands.Common.Authorization</AssemblyName>
<RootNamespace>Microsoft.Azure.Commands.Common.Authorization</RootNamespace>
<AssemblyName>Microsoft.Azure.Commands.Common.Authorization</AssemblyName>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
using System;
using System.Management.Automation;
using System.Net;
using ProjectResources = Commands.Common.Graph.RBAC.Properties.Resources;
using ProjectResources = Microsoft.Azure.Commands.Common.Graph.RBAC.Properties.Resources;

namespace Microsoft.Azure.Graph.RBAC.Version1_6.ActiveDirectory
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
using System.Linq;
using System.Net;
using System.Net.Http;
using ProjectResources = Commands.Common.Graph.RBAC.Properties.Resources;
using ProjectResources = Microsoft.Azure.Commands.Common.Graph.RBAC.Properties.Resources;

namespace Microsoft.Azure.Graph.RBAC.Version1_6.ActiveDirectory
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
<ProjectGuid>{269ACF73-0A34-42DC-AB9C-4B15931A489D}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Commands.Common.Graph.RBAC</RootNamespace>
<AssemblyName>Commands.Common.Graph.RBAC</AssemblyName>
<RootNamespace>Microsoft.Azure.Commands.Common.Graph.RBAC</RootNamespace>
<AssemblyName>Microsoft.Azure.Commands.Common.Graph.RBAC</AssemblyName>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
<ProjectGuid>{1338F7AE-7111-4ED3-8916-2D0FECC876F4}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Commands.Common.Network</RootNamespace>
<AssemblyName>Commands.Common.Network</AssemblyName>
<RootNamespace>Microsoft.Azure.Commands.Common.Network</RootNamespace>
<AssemblyName>Microsoft.Azure.Commands.Common.Network</AssemblyName>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
Expand Down
4 changes: 2 additions & 2 deletions src/Common/Commands.Common/AzurePowerShell.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ public class AzurePowerShell

public const string AssemblyCopyright = "Copyright © Microsoft";

public const string AssemblyVersion = "4.3.0";
public const string AssemblyVersion = "4.3.1";

public const string AssemblyFileVersion = "4.3.0";
public const string AssemblyFileVersion = "4.3.1";

public const string ProfileFile = "AzureProfile.json";

Expand Down
42 changes: 42 additions & 0 deletions src/ResourceManager.ForRefactoringOnly.sln
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,12 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.ServiceFabric.Test
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Management.CognitiveServices.Test", "ResourceManager\CognitiveServices\CognitiveServices.Test\Commands.Management.CognitiveServices.Test.csproj", "{F6F8A360-F203-4161-98A7-60097AB94193}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Common.Authorization", "Common\Commands.Common.Authorization\Commands.Common.Authorization.csproj", "{24508E26-154D-47F1-80EE-439BF0710996}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Common.Graph.RBAC", "Common\Commands.Common.Graph.RBAC\Commands.Common.Graph.RBAC.csproj", "{269ACF73-0A34-42DC-AB9C-4B15931A489D}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Common.Network", "Common\Commands.Common.Network\Commands.Common.Network.csproj", "{1338F7AE-7111-4ED3-8916-2D0FECC876F4}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -1561,6 +1567,42 @@ Global
{F6F8A360-F203-4161-98A7-60097AB94193}.Release|x64.Build.0 = Release|Any CPU
{F6F8A360-F203-4161-98A7-60097AB94193}.Release|x86.ActiveCfg = Release|Any CPU
{F6F8A360-F203-4161-98A7-60097AB94193}.Release|x86.Build.0 = Release|Any CPU
{24508E26-154D-47F1-80EE-439BF0710996}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{24508E26-154D-47F1-80EE-439BF0710996}.Debug|Any CPU.Build.0 = Debug|Any CPU
{24508E26-154D-47F1-80EE-439BF0710996}.Debug|x64.ActiveCfg = Debug|Any CPU
{24508E26-154D-47F1-80EE-439BF0710996}.Debug|x64.Build.0 = Debug|Any CPU
{24508E26-154D-47F1-80EE-439BF0710996}.Debug|x86.ActiveCfg = Debug|Any CPU
{24508E26-154D-47F1-80EE-439BF0710996}.Debug|x86.Build.0 = Debug|Any CPU
{24508E26-154D-47F1-80EE-439BF0710996}.Release|Any CPU.ActiveCfg = Release|Any CPU
{24508E26-154D-47F1-80EE-439BF0710996}.Release|Any CPU.Build.0 = Release|Any CPU
{24508E26-154D-47F1-80EE-439BF0710996}.Release|x64.ActiveCfg = Release|Any CPU
{24508E26-154D-47F1-80EE-439BF0710996}.Release|x64.Build.0 = Release|Any CPU
{24508E26-154D-47F1-80EE-439BF0710996}.Release|x86.ActiveCfg = Release|Any CPU
{24508E26-154D-47F1-80EE-439BF0710996}.Release|x86.Build.0 = Release|Any CPU
{269ACF73-0A34-42DC-AB9C-4B15931A489D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{269ACF73-0A34-42DC-AB9C-4B15931A489D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{269ACF73-0A34-42DC-AB9C-4B15931A489D}.Debug|x64.ActiveCfg = Debug|Any CPU
{269ACF73-0A34-42DC-AB9C-4B15931A489D}.Debug|x64.Build.0 = Debug|Any CPU
{269ACF73-0A34-42DC-AB9C-4B15931A489D}.Debug|x86.ActiveCfg = Debug|Any CPU
{269ACF73-0A34-42DC-AB9C-4B15931A489D}.Debug|x86.Build.0 = Debug|Any CPU
{269ACF73-0A34-42DC-AB9C-4B15931A489D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{269ACF73-0A34-42DC-AB9C-4B15931A489D}.Release|Any CPU.Build.0 = Release|Any CPU
{269ACF73-0A34-42DC-AB9C-4B15931A489D}.Release|x64.ActiveCfg = Release|Any CPU
{269ACF73-0A34-42DC-AB9C-4B15931A489D}.Release|x64.Build.0 = Release|Any CPU
{269ACF73-0A34-42DC-AB9C-4B15931A489D}.Release|x86.ActiveCfg = Release|Any CPU
{269ACF73-0A34-42DC-AB9C-4B15931A489D}.Release|x86.Build.0 = Release|Any CPU
{1338F7AE-7111-4ED3-8916-2D0FECC876F4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1338F7AE-7111-4ED3-8916-2D0FECC876F4}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1338F7AE-7111-4ED3-8916-2D0FECC876F4}.Debug|x64.ActiveCfg = Debug|Any CPU
{1338F7AE-7111-4ED3-8916-2D0FECC876F4}.Debug|x64.Build.0 = Debug|Any CPU
{1338F7AE-7111-4ED3-8916-2D0FECC876F4}.Debug|x86.ActiveCfg = Debug|Any CPU
{1338F7AE-7111-4ED3-8916-2D0FECC876F4}.Debug|x86.Build.0 = Debug|Any CPU
{1338F7AE-7111-4ED3-8916-2D0FECC876F4}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1338F7AE-7111-4ED3-8916-2D0FECC876F4}.Release|Any CPU.Build.0 = Release|Any CPU
{1338F7AE-7111-4ED3-8916-2D0FECC876F4}.Release|x64.ActiveCfg = Release|Any CPU
{1338F7AE-7111-4ED3-8916-2D0FECC876F4}.Release|x64.Build.0 = Release|Any CPU
{1338F7AE-7111-4ED3-8916-2D0FECC876F4}.Release|x86.ActiveCfg = Release|Any CPU
{1338F7AE-7111-4ED3-8916-2D0FECC876F4}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#
#
# Module manifest for module 'PSGet_AzureRM.AnalysisServices'
#
# Generated by: Microsoft Corporation
Expand All @@ -12,7 +12,7 @@
# RootModule = ''

# Version number of this module.
ModuleVersion = '0.4.3'
ModuleVersion = '0.4.4'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand All @@ -27,7 +27,7 @@ Author = 'Microsoft Corporation'
CompanyName = 'Microsoft Corporation'

# Copyright statement for this module
Copyright = ' Microsoft Corporation. All rights reserved.'
Copyright = '© Microsoft Corporation. All rights reserved.'

# Description of the functionality provided by this module
Description = 'Microsoft Azure PowerShell - Analysis Services'
Expand All @@ -51,7 +51,7 @@ CLRVersion = '4.0'
# ProcessorArchitecture = ''

# Modules that must be imported into the global environment prior to importing this module
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '3.3.0'; })
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '3.3.1'; })

# Assemblies that must be loaded prior to importing this module
# RequiredAssemblies = @()
Expand Down
2 changes: 2 additions & 0 deletions src/ResourceManager/AnalysisServices/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
-->
## Current Release

## Version 0.4.4

## Version 0.4.3
* Fixed bug in Set-AzureRmAnalysisServciesServer
- When admin was not provided, the admin will be removed.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
@{

# Version number of this module.
ModuleVersion = '0.4.3'
ModuleVersion = '0.4.4'

# ID used to uniquely identify this module
GUID = 'c717b5a4-1f1b-4a2f-8aa1-bfd09934626e'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@
// by using the '*' as shown below:


[assembly: AssemblyVersion("0.4.3")]
[assembly: AssemblyFileVersion("0.4.3")]
[assembly: AssemblyVersion("0.4.4")]
[assembly: AssemblyFileVersion("0.4.4")]
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@

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

[assembly: AssemblyVersion("0.4.3")]
[assembly: AssemblyFileVersion("0.4.3")]
[assembly: AssemblyVersion("0.4.4")]
[assembly: AssemblyFileVersion("0.4.4")]
[assembly: CollectionBehavior(DisableTestParallelization = true)]
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:

[assembly: AssemblyVersion("0.4.3")]
[assembly: AssemblyFileVersion("0.4.3")]
[assembly: AssemblyVersion("0.4.4")]
[assembly: AssemblyFileVersion("0.4.4")]
6 changes: 3 additions & 3 deletions src/ResourceManager/ApiManagement/AzureRM.ApiManagement.psd1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#
#
# Module manifest for module 'PSGet_AzureRM.ApiManagement'
#
# Generated by: Microsoft Corporation
Expand All @@ -12,7 +12,7 @@
# RootModule = ''

# Version number of this module.
ModuleVersion = '4.3.0'
ModuleVersion = '4.3.1'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down Expand Up @@ -51,7 +51,7 @@ CLRVersion = '4.0'
# ProcessorArchitecture = ''

# Modules that must be imported into the global environment prior to importing this module
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '3.3.0'; })
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '3.3.1'; })

# Assemblies that must be loaded prior to importing this module
# RequiredAssemblies = @()
Expand Down
2 changes: 2 additions & 0 deletions src/ResourceManager/ApiManagement/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
-->
## Current Release

## Version 4.3.1

## Version 4.3.0

## Version 4.2.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:

[assembly: AssemblyVersion("4.3.0")]
[assembly: AssemblyFileVersion("4.3.0")]
[assembly: AssemblyVersion("4.3.1")]
[assembly: AssemblyFileVersion("4.3.1")]
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:

[assembly: AssemblyVersion("4.3.0")]
[assembly: AssemblyFileVersion("4.3.0")]
[assembly: AssemblyVersion("4.3.1")]
[assembly: AssemblyFileVersion("4.3.1")]
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:

[assembly: AssemblyVersion("4.3.0")]
[assembly: AssemblyFileVersion("4.3.0")]
[assembly: AssemblyVersion("4.3.1")]
[assembly: AssemblyFileVersion("4.3.1")]
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:

[assembly: AssemblyVersion("4.3.0")]
[assembly: AssemblyFileVersion("4.3.0")]
[assembly: AssemblyVersion("4.3.1")]
[assembly: AssemblyFileVersion("4.3.1")]
[assembly: CollectionBehavior(DisableTestParallelization = true)]
6 changes: 3 additions & 3 deletions src/ResourceManager/Automation/AzureRM.Automation.psd1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#
#
# Module manifest for module 'PSGet_AzureRM.Automation'
#
# Generated by: Microsoft Corporation
Expand All @@ -12,7 +12,7 @@
# RootModule = ''

# Version number of this module.
ModuleVersion = '3.3.0'
ModuleVersion = '3.3.1'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down Expand Up @@ -51,7 +51,7 @@ CLRVersion = '4.0'
# ProcessorArchitecture = ''

# Modules that must be imported into the global environment prior to importing this module
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '3.3.0'; })
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '3.3.1'; })

# Assemblies that must be loaded prior to importing this module
# RequiredAssemblies = @()
Expand Down
4 changes: 4 additions & 0 deletions src/ResourceManager/Automation/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,20 @@
-->
## Current Release

## Version 3.3.1

## Version 3.3.0
* Made changes to AutomationDSC* cmdlets to pull more than 100 records
* Resolved the issue where the Verbose streams stop working after calling some Automation cmdlets (for example Get-AzureRmAutomationVariable, Get-AzureRmAutomationJob).
* Support for NodeConfiguration Build versioning added in StartAzureAutomationDscCompilationJob and ImportAzureAutomationDscNodeConfiguration.
* Bug fixes for existing issues - Fixes the alias issue is #3775 and the runOn alias and support for HybridWorkers.

## Version 3.2.1

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

## Version 3.1.0

## Version 3.0.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:

[assembly: AssemblyVersion("3.3.0")]
[assembly: AssemblyFileVersion("3.3.0")]
[assembly: AssemblyVersion("3.3.1")]
[assembly: AssemblyFileVersion("3.3.1")]
[assembly: CLSCompliant(false)]
[assembly: CollectionBehavior(DisableTestParallelization = true)]
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:

[assembly: AssemblyVersion("3.3.0")]
[assembly: AssemblyFileVersion("3.3.0")]
[assembly: AssemblyVersion("3.3.1")]
[assembly: AssemblyFileVersion("3.3.1")]
#if SIGN
[assembly: InternalsVisibleTo("Microsoft.Azure.Commands.ResourceManager.Automation.Test, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")]
#else
Expand Down
6 changes: 3 additions & 3 deletions src/ResourceManager/AzureBackup/AzureRM.Backup.psd1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#
#
# Module manifest for module 'PSGet_AzureRM.Backup'
#
# Generated by: Microsoft Corporation
Expand All @@ -12,7 +12,7 @@
# RootModule = ''

# Version number of this module.
ModuleVersion = '3.3.0'
ModuleVersion = '3.3.1'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down Expand Up @@ -51,7 +51,7 @@ CLRVersion = '4.0'
# ProcessorArchitecture = ''

# Modules that must be imported into the global environment prior to importing this module
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '3.3.0'; })
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '3.3.1'; })

# Assemblies that must be loaded prior to importing this module
# RequiredAssemblies = @()
Expand Down
2 changes: 2 additions & 0 deletions src/ResourceManager/AzureBackup/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
-->
## Current Release

## Version 3.3.1

## Version 3.3.0

## Version 3.2.1
Expand Down
Loading