Skip to content

Commit b3aacff

Browse files
committed
Bump version of Az.Automation
1 parent 3c70692 commit b3aacff

File tree

8 files changed

+3089
-878
lines changed

8 files changed

+3089
-878
lines changed

src/Automation/Automation.Sdk/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@
2626
[assembly: CLSCompliant(false)]
2727
[assembly: Guid("ca7999e0-ca2f-47fc-9c30-f982d9e3a6ed")]
2828

29-
[assembly: AssemblyVersion("1.7.3")]
30-
[assembly: AssemblyFileVersion("1.7.3")]
29+
[assembly: AssemblyVersion("1.8.0")]
30+
[assembly: AssemblyFileVersion("1.8.0")]

src/Automation/Automation/Az.Automation.psd1

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

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

1414
# Version number of this module.
15-
ModuleVersion = '1.7.4'
15+
ModuleVersion = '1.8.0'
1616

1717
# Supported PSEditions
1818
CompatiblePSEditions = 'Core', 'Desktop'
@@ -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 = '2.10.0'; })
56+
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.10.1'; })
5757

5858
# Assemblies that must be loaded prior to importing this module
5959
RequiredAssemblies = 'Microsoft.Azure.PowerShell.Automation.Sdk.dll'
@@ -74,17 +74,21 @@ NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Automation.dll')
7474
FunctionsToExport = @()
7575

7676
# Cmdlets 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 cmdlets to export.
77-
CmdletsToExport = 'Move-AzAutomationHybridRunbookWorker','Remove-AzAutomationHybridRunbookWorker','New-AzAutomationHybridRunbookWorker','Get-AzAutomationHybridRunbookWorker',
78-
'Remove-AzAutomationHybridRunbookWorkerGroup', 'Set-AzAutomationHybridRunbookWorkerGroup',
79-
'New-AzAutomationHybridRunbookWorkerGroup',
80-
'Get-AzAutomationHybridRunbookWorkerGroup',
81-
'Get-AzAutomationHybridWorkerGroup',
77+
CmdletsToExport = 'Move-AzAutomationHybridRunbookWorker',
78+
'Remove-AzAutomationHybridRunbookWorker',
79+
'New-AzAutomationHybridRunbookWorker',
80+
'Get-AzAutomationHybridRunbookWorker',
81+
'Remove-AzAutomationHybridRunbookWorkerGroup',
82+
'Set-AzAutomationHybridRunbookWorkerGroup',
83+
'New-AzAutomationHybridRunbookWorkerGroup',
84+
'Get-AzAutomationHybridRunbookWorkerGroup',
85+
'Get-AzAutomationHybridWorkerGroup',
8286
'Remove-AzAutomationHybridWorkerGroup',
8387
'Get-AzAutomationJobOutputRecord',
8488
'Import-AzAutomationDscNodeConfiguration',
8589
'Export-AzAutomationDscConfiguration',
86-
'Export-AzAutomationDscNodeReportContent',
87-
'Get-AzAutomationCertificate', 'Get-AzAutomationConnection',
90+
'Export-AzAutomationDscNodeReportContent',
91+
'Get-AzAutomationCertificate', 'Get-AzAutomationConnection',
8892
'Get-AzAutomationCredential', 'Get-AzAutomationDscCompilationJob',
8993
'Get-AzAutomationDscCompilationJobOutput',
9094
'Get-AzAutomationDscNodeConfiguration',
@@ -172,10 +176,7 @@ PrivateData = @{
172176
# IconUri = ''
173177

174178
# ReleaseNotes of this module
175-
ReleaseNotes = '* Fixed bug: Export-AzAutomationRunbook no longer adds extra ''\'' to file names [#11101]
176-
* Fixed bug: Get-AzAutomationDscCompilationJobOutput returns complete summaries [#12322]
177-
* Fixed bug: Get-AzAutomationDscNode [#10404]
178-
* Fixed bug: Get-AzAutomationJob fails for some jobIds'
179+
ReleaseNotes = '* Added cmdlets ''Remove-AzAutomationHybridRunbookWorker'', ''Remove-AzAutomationHybridRunbookWorkerGroup'', ''Set-AzAutomationHybridRunbookWorkerGroup'', ''Get-AzAutomationHybridRunbookWorker'', ''Get-AzAutomationHybridRunbookWorkerGroup'', ''Move-AzAutomationHybridRunbookWorker'', ''New-AzAutomationHybridRunbookWorker'', ''New-AzAutomationHybridRunbookWorkerGroup'' for Hybrid Runbook Worker group management.'
179180

180181
# Prerelease string of this module
181182
# Prerelease = ''

src/Automation/Automation/ChangeLog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
- Additional information about change #1
1919
-->
2020
## Upcoming Release
21+
22+
## Version 1.8.0
2123
* Added cmdlets "Remove-AzAutomationHybridRunbookWorker", "Remove-AzAutomationHybridRunbookWorkerGroup", "Set-AzAutomationHybridRunbookWorkerGroup", "Get-AzAutomationHybridRunbookWorker", "Get-AzAutomationHybridRunbookWorkerGroup", "Move-AzAutomationHybridRunbookWorker", "New-AzAutomationHybridRunbookWorker", "New-AzAutomationHybridRunbookWorkerGroup" for Hybrid Runbook Worker group management.
2224

2325
## Version 1.7.4

src/Automation/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("1.7.4")]
47-
[assembly: AssemblyFileVersion("1.7.4")]
46+
[assembly: AssemblyVersion("1.8.0")]
47+
[assembly: AssemblyFileVersion("1.8.0")]
4848
#if !SIGN
4949
[assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Automation.Test")]
5050
#endif

tools/Az/Az.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.10.1'; },
6060
@{ModuleName = 'Az.AppConfiguration'; RequiredVersion = '1.2.0'; },
6161
@{ModuleName = 'Az.ApplicationInsights'; RequiredVersion = '2.1.0'; },
6262
@{ModuleName = 'Az.Attestation'; RequiredVersion = '1.0.0'; },
63-
@{ModuleName = 'Az.Automation'; RequiredVersion = '1.7.4'; },
63+
@{ModuleName = 'Az.Automation'; RequiredVersion = '1.8.0'; },
6464
@{ModuleName = 'Az.Batch'; RequiredVersion = '3.2.1'; },
6565
@{ModuleName = 'Az.Billing'; RequiredVersion = '2.0.0'; },
6666
@{ModuleName = 'Az.Cdn'; RequiredVersion = '2.1.0'; },

tools/AzPreview/AzPreview.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.10.1'; },
6363
@{ModuleName = 'Az.AppConfiguration'; RequiredVersion = '1.2.0'; },
6464
@{ModuleName = 'Az.ApplicationInsights'; RequiredVersion = '2.1.0'; },
6565
@{ModuleName = 'Az.Attestation'; RequiredVersion = '1.0.0'; },
66-
@{ModuleName = 'Az.Automation'; RequiredVersion = '1.7.4'; },
66+
@{ModuleName = 'Az.Automation'; RequiredVersion = '1.8.0'; },
6767
@{ModuleName = 'Az.BareMetal'; RequiredVersion = '0.1.0'; },
6868
@{ModuleName = 'Az.Batch'; RequiredVersion = '3.2.1'; },
6969
@{ModuleName = 'Az.Billing'; RequiredVersion = '2.0.0'; },

tools/Docs/az-ps-latest.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ pac7,[ps=true;customSource=https://www.powershellgallery.com/api/v2/]Az.App,0.1.
99
pac8,[ps=true;customSource=https://www.powershellgallery.com/api/v2/]Az.AppConfiguration,1.2.0
1010
pac9,[ps=true;customSource=https://www.powershellgallery.com/api/v2/]Az.ApplicationInsights,2.1.0
1111
pac10,[ps=true;customSource=https://www.powershellgallery.com/api/v2/]Az.Attestation,1.0.0
12-
pac11,[ps=true;customSource=https://www.powershellgallery.com/api/v2/]Az.Automation,1.7.4
12+
pac11,[ps=true;customSource=https://www.powershellgallery.com/api/v2/]Az.Automation,1.8.0
1313
pac12,[ps=true;customSource=https://www.powershellgallery.com/api/v2/]Az.BareMetal,0.1.0
1414
pac13,[ps=true;customSource=https://www.powershellgallery.com/api/v2/]Az.Batch,3.2.1
1515
pac14,[ps=true;customSource=https://www.powershellgallery.com/api/v2/]Az.Billing,2.0.0

0 commit comments

Comments
 (0)