Skip to content

Commit 47a4477

Browse files
authored
Merge pull request #8269 from cormacpayne/remove-strategies
Remove Strategies assembly from RequiredAssembly field of non-Account modules
2 parents 8090d9d + 98c878f commit 47a4477

File tree

94 files changed

+3701
-2823
lines changed

Some content is hidden

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

94 files changed

+3701
-2823
lines changed

ChangeLog.md

Lines changed: 58 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,63 @@
1+
## 1.1.0 - January 2019
2+
#### Az.Accounts
3+
* Add 'Local' Scope to Enable-AzureRmAlias
4+
5+
#### Az.Compute
6+
* Name is now optional in ID parameter set for Restart/Start/Stop/Remove/Set-AzVM and Save-AzVMImage
7+
* Updated the description of ID in help files
8+
* Fix backward compatibility issue with Az.Accounts module
9+
10+
#### Az.DataLakeStore
11+
* Update the sdk version of dataplane to 1.1.14 for SDK fixes.
12+
- Fix handling of negative acesstime and modificationtime for getfilestatus and liststatus, Fix async cancellation token
13+
14+
#### Az.EventGrid
15+
* Updated to use the 2019-01-01 API version.
16+
* Update the following cmdlets to support new scenario in 2019-01-01 API version
17+
- New-AzureRmEventGridSubscription: Add new optional parameters for specifying:
18+
- Event Time-To-Live,
19+
- Maximum number of delivery attempts for the events,
20+
- Dead letter endpoint.
21+
- Update-AzureRmEventGridSubscription: Add new optional parameters for specifying:
22+
- Event Time-To-Live,
23+
- Maximum number of delivery attempts for the events,
24+
- Dead letter endpoint.
25+
* Add new enum values (namely, storageQueue and hybridConnection) for EndpointType option in New-AzureRmEventGridSubscription and Update-AzureRmEventGridSubscription cmdlets.
26+
* Show warning message if creating or updating the event subscription is expected to entail manual action from user.
27+
28+
#### Az.IotHub
29+
* Updated to the latest version of the IotHub SDK
30+
31+
#### Az.LogicApp
32+
* Get-AzLogicApp lists all without specified Name
33+
34+
#### Az.Resources
35+
* Fix parameter set issue when providing '-ODataQuery' and '-ResourceId' parameters for 'Get-AzResource'
36+
- More information here: https://github.com/Azure/azure-powershell/issues/7875
37+
* Fix handling of the -Custom parameter in New/Set-AzPolicyDefinition
38+
* Fix typo in New-AzDeployment documentation
39+
* Made '-MailNickname' parameter mandatory for 'New-AzADUser'
40+
- More information here: https://github.com/Azure/azure-powershell/issues/8220
41+
42+
#### Az.SignalR
43+
* Fix backward compatibility issue with Az.Accounts module
44+
45+
#### Az.Sql
46+
* Converted the Storage management client dependency to the common SDK implementation.
47+
48+
#### Az.Storage
49+
* Set the StorageAccountName of Storage context as the real Storage Account Name, when it's created with Sas Token, OAuth or Anonymous
50+
- New-AzStorageContext
51+
* Create Sas Token of Blob Snapshot Object with '-FullUri' parameter, fix the returned Uri to be the sanpshot Uri
52+
- New-AzStorageBlobSASToken
53+
54+
#### Az.Websites
55+
* Fixed a date parsing bug in 'Get-AzDeletedWebApp'
56+
* Fix backward compatibility issue with Az.Accounts module
57+
158
## Version 1.0.0 - December 2018
259

360
#### General
461

562
* General availability of `Az` module
6-
* For more information about the `Az` module, please visit the following: https://aka.ms/azps-announce
63+
* For more information about the `Az` module, please visit the following: https://aka.ms/azps-announce

setup/azurecmd.wxs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
1+
<?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" >
33
<Product Id="*"
44
Name="$(var.productName)"

src/Accounts/Accounts/Az.Accounts.psd1

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#
2-
# Module manifest for module 'Az.Accounts'
2+
# Module manifest for module 'PSGet_Az.Accounts'
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 12/12/2018
6+
# Generated on: 1/8/2019
77
#
88

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

1414
# Version number of this module.
15-
ModuleVersion = '1.0.0'
15+
ModuleVersion = '1.1.0'
1616

1717
# Supported PSEditions
1818
CompatiblePSEditions = 'Core', 'Desktop'
@@ -86,8 +86,7 @@ RequiredAssemblies = '.\Microsoft.Azure.PowerShell.Authentication.Abstractions.d
8686
# TypesToProcess = @()
8787

8888
# Format files (.ps1xml) to be loaded when importing this module
89-
FormatsToProcess = '.\Accounts.format.ps1xml',
90-
'.\Accounts.generated.format.ps1xml'
89+
FormatsToProcess = '.\Accounts.format.ps1xml', '.\Accounts.generated.format.ps1xml'
9190

9291
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
9392
NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Accounts.dll')
@@ -142,7 +141,7 @@ PrivateData = @{
142141
# IconUri = ''
143142

144143
# ReleaseNotes of this module
145-
ReleaseNotes = 'General availability for Az.Accounts module.'
144+
ReleaseNotes = '* Add ''Local'' Scope to Enable-AzureRmAlias'
146145

147146
# Prerelease string of this module
148147
# Prerelease = ''
@@ -154,7 +153,7 @@ PrivateData = @{
154153
# ExternalModuleDependencies = @()
155154

156155
} # End of PSData hashtable
157-
156+
158157
} # End of PrivateData hashtable
159158

160159
# HelpInfo URI of this module

src/Accounts/Accounts/ChangeLog.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@
1818
- Additional information about change #1
1919
-->
2020
## Upcoming Release
21+
22+
## Version 1.1.0
2123
* Add 'Local' Scope to Enable-AzureRmAlias
2224

2325
## Version 1.0.0
24-
* General availability of `Az.Accounts` module
26+
* General availability of `Az.Accounts` module

src/Accounts/Accounts/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("1.0.0")]
47-
[assembly: AssemblyFileVersion("1.0.0")]
46+
[assembly: AssemblyVersion("1.1.0")]
47+
[assembly: AssemblyFileVersion("1.1.0")]
4848
#if SIGN
4949
[assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Accounts.Test, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")]
5050
[assembly: InternalsVisibleTo("Microsoft.WindowsAzure.Commands.Test, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")]

src/Advisor/Advisor/Az.Advisor.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2'
5151
# ProcessorArchitecture = ''
5252

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

5656
# Assemblies that must be loaded prior to importing this module
5757
RequiredAssemblies = '.\Microsoft.Azure.Management.Advisor.dll'

src/Aks/Aks/Az.Aks.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
5353
# ProcessorArchitecture = ''
5454

5555
# Modules that must be imported into the global environment prior to importing this module
56-
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.0.0'; })
56+
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.1.0'; })
5757

5858
# Assemblies that must be loaded prior to importing this module
5959
RequiredAssemblies = '.\YamlDotNet.dll', '.\AutoMapper.dll'

src/AnalysisServices/AnalysisServices/Az.AnalysisServices.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
5353
# ProcessorArchitecture = ''
5454

5555
# Modules that must be imported into the global environment prior to importing this module
56-
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.0.0'; })
56+
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.1.0'; })
5757

5858
# Assemblies that must be loaded prior to importing this module
5959
RequiredAssemblies = '.\Microsoft.Azure.Management.Analysis.dll'

src/ApiManagement/ApiManagement/Az.ApiManagement.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
5353
# ProcessorArchitecture = ''
5454

5555
# Modules that must be imported into the global environment prior to importing this module
56-
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.0.0'; })
56+
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.1.0'; })
5757

5858
# Assemblies that must be loaded prior to importing this module
5959
RequiredAssemblies = '.\AutoMapper.dll',

src/ApplicationInsights/ApplicationInsights/Az.ApplicationInsights.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
5353
# ProcessorArchitecture = ''
5454

5555
# Modules that must be imported into the global environment prior to importing this module
56-
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.0.0'; })
56+
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.1.0'; })
5757

5858
# Assemblies that must be loaded prior to importing this module
5959
RequiredAssemblies = '.\Microsoft.Azure.Management.ApplicationInsights.dll'

src/Automation/Automation/Az.Automation.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
5353
# ProcessorArchitecture = ''
5454

5555
# Modules that must be imported into the global environment prior to importing this module
56-
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.0.0'; })
56+
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.1.0'; })
5757

5858
# Assemblies that must be loaded prior to importing this module
5959
RequiredAssemblies = '.\Microsoft.Azure.Management.Automation.dll'

src/Batch/Batch/Az.Batch.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
5353
# ProcessorArchitecture = ''
5454

5555
# Modules that must be imported into the global environment prior to importing this module
56-
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.0.0'; })
56+
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.1.0'; })
5757

5858
# Assemblies that must be loaded prior to importing this module
5959
RequiredAssemblies = '.\Microsoft.Azure.Batch.dll',

src/Billing/Billing/Az.Billing.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
5353
# ProcessorArchitecture = ''
5454

5555
# Modules that must be imported into the global environment prior to importing this module
56-
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.0.0'; })
56+
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.1.0'; })
5757

5858
# Assemblies that must be loaded prior to importing this module
5959
RequiredAssemblies = '.\Microsoft.Azure.Management.Billing.dll',

src/Cdn/Cdn/Az.Cdn.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
5353
# ProcessorArchitecture = ''
5454

5555
# Modules that must be imported into the global environment prior to importing this module
56-
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.0.0'; })
56+
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.1.0'; })
5757

5858
# Assemblies that must be loaded prior to importing this module
5959
RequiredAssemblies = '.\Microsoft.Azure.Management.Cdn.dll'

src/CognitiveServices/CognitiveServices/Az.CognitiveServices.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
5353
# ProcessorArchitecture = ''
5454

5555
# Modules that must be imported into the global environment prior to importing this module
56-
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.0.0'; })
56+
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.1.0'; })
5757

5858
# Assemblies that must be loaded prior to importing this module
5959
RequiredAssemblies = '.\Microsoft.Azure.Management.CognitiveServices.dll'

src/Compute/Compute/Az.Compute.psd1

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#
2-
# Module manifest for module 'Az.Compute'
2+
# Module manifest for module 'PSGet_Az.Compute'
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 12/12/2018
6+
# Generated on: 1/8/2019
77
#
88

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

1414
# Version number of this module.
15-
ModuleVersion = '1.0.0'
15+
ModuleVersion = '1.1.0'
1616

1717
# Supported PSEditions
1818
CompatiblePSEditions = 'Core', 'Desktop'
@@ -54,11 +54,10 @@ DotNetFrameworkVersion = '4.7.2'
5454
# ProcessorArchitecture = ''
5555

5656
# Modules that must be imported into the global environment prior to importing this module
57-
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.0.0'; })
57+
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.1.0'; })
5858

5959
# Assemblies that must be loaded prior to importing this module
60-
RequiredAssemblies = '.\AutoMapper.dll', '.\Microsoft.Azure.PowerShell.Strategies.dll',
61-
'.\Microsoft.Azure.Management.Compute.dll',
60+
RequiredAssemblies = '.\AutoMapper.dll', '.\Microsoft.Azure.Management.Compute.dll',
6261
'.\Microsoft.WindowsAzure.Storage.dll'
6362

6463
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
@@ -68,8 +67,7 @@ RequiredAssemblies = '.\AutoMapper.dll', '.\Microsoft.Azure.PowerShell.Strategie
6867
# TypesToProcess = @()
6968

7069
# Format files (.ps1xml) to be loaded when importing this module
71-
FormatsToProcess = '.\Compute.format.ps1xml',
72-
'.\Compute.generated.format.ps1xml',
70+
FormatsToProcess = '.\Compute.format.ps1xml', '.\Compute.generated.format.ps1xml',
7371
'.\Compute.Automation.generated.format.ps1xml'
7472

7573
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
@@ -199,7 +197,9 @@ PrivateData = @{
199197
# IconUri = ''
200198

201199
# ReleaseNotes of this module
202-
ReleaseNotes = 'General availability for Az.Compute module.'
200+
ReleaseNotes = '* Name is now optional in ID parameter set for Restart/Start/Stop/Remove/Set-AzVM and Save-AzVMImage
201+
* Updated the description of ID in help files
202+
* Fix backward compatibility issue with Az.Accounts module'
203203

204204
# Prerelease string of this module
205205
# Prerelease = ''
@@ -211,7 +211,7 @@ PrivateData = @{
211211
# ExternalModuleDependencies = @()
212212

213213
} # End of PSData hashtable
214-
214+
215215
} # End of PrivateData hashtable
216216

217217
# HelpInfo URI of this module

src/Compute/Compute/ChangeLog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,11 @@
1919
- Additional information about change #1
2020
-->
2121
## Upcoming Release
22+
23+
## Version 1.1.0
2224
* Name is now optional in ID parameter set for Restart/Start/Stop/Remove/Set-AzVM and Save-AzVMImage
2325
* Updated the description of ID in help files
26+
* Fix backward compatibility issue with Az.Accounts module
2427

2528
## Version 1.0.0
2629
* General availability of `Az.Compute` module

src/Compute/Compute/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("91792853-487B-4DC2-BE6C-DD09A0A1BC10")]
28-
[assembly: AssemblyVersion("1.0.0")]
29-
[assembly: AssemblyFileVersion("1.0.0")]
28+
[assembly: AssemblyVersion("1.1.0")]
29+
[assembly: AssemblyFileVersion("1.1.0")]
3030
#if SIGN
3131
[assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Compute.Test, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")]
3232
#else

src/ContainerInstance/ContainerInstance/Az.ContainerInstance.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
5353
# ProcessorArchitecture = ''
5454

5555
# Modules that must be imported into the global environment prior to importing this module
56-
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.0.0'; })
56+
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.1.0'; })
5757

5858
# Assemblies that must be loaded prior to importing this module
5959
RequiredAssemblies = '.\AutoMapper.dll',

src/ContainerRegistry/ContainerRegistry/Az.ContainerRegistry.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
5353
# ProcessorArchitecture = ''
5454

5555
# Modules that must be imported into the global environment prior to importing this module
56-
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.0.0'; })
56+
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.1.0'; })
5757

5858
# Assemblies that must be loaded prior to importing this module
5959
RequiredAssemblies = '.\Microsoft.Azure.Management.ContainerRegistry.dll'

src/DataFactory/DataFactoryV2/Az.DataFactory.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
5353
# ProcessorArchitecture = ''
5454

5555
# Modules that must be imported into the global environment prior to importing this module
56-
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.0.0'; })
56+
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.1.0'; })
5757

5858
# Assemblies that must be loaded prior to importing this module
5959
RequiredAssemblies = '.\Microsoft.Azure.Management.DataFactory.dll',

src/DataLakeAnalytics/DataLakeAnalytics/Az.DataLakeAnalytics.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
5353
# ProcessorArchitecture = ''
5454

5555
# Modules that must be imported into the global environment prior to importing this module
56-
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.0.0'; })
56+
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.1.0'; })
5757

5858
# Assemblies that must be loaded prior to importing this module
5959
RequiredAssemblies = '.\Microsoft.Azure.Management.DataLake.Analytics.dll'

0 commit comments

Comments
 (0)