Skip to content

Az.Storage v4.4.1 #17735

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 1 commit into from
Apr 8, 2022
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
21 changes: 4 additions & 17 deletions src/Storage/Storage.Management/Az.Storage.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
# Generated on: 3/31/2022
# Generated on: 4/7/2022
#

@{
Expand All @@ -12,7 +12,7 @@
# RootModule = ''

# Version number of this module.
ModuleVersion = '4.4.0'
ModuleVersion = '4.4.1'

# Supported PSEditions
CompatiblePSEditions = 'Core', 'Desktop'
Expand Down Expand Up @@ -236,21 +236,8 @@ PrivateData = @{
# IconUri = ''

# ReleaseNotes of this module
ReleaseNotes = '* Updated examples in reference documentation for ''Close-AzStorageFileHandle''
* Supported create storage context with customized blob, queue, file, table service endpoint
- ''New-AzStorageContext''
* Fixed copy blob failure on Premium Storage account, or account enabled hierarchical namespace
- ''Copy-AzStorageBlob''
* Supported create account SAS token, container SAS token, blob SAS token with EncryptionScope
- ''New-AzStorageAccountSASToken''
- ''New-AzStorageContainerSASToken''
- ''New-AzStorageBlobSASToken''
* Supported asynchronous blob copy run on new API version
- ''Start-AzStorageBlobCopy''
* Fixed IpRule examples in help
- ''Add-AzStorageAccountNetworkRule''
- ''Remove-AzStorageAccountNetworkRule''
- ''Update-AzStorageAccountNetworkRuleSet'''
ReleaseNotes = '* Fixed get blob by tag failure on Powershell 7.2.2
- ''Get-AzStorageBlobByTag'''

# Prerelease string of this module
# Prerelease = ''
Expand Down
2 changes: 2 additions & 0 deletions src/Storage/Storage.Management/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
- Additional information about change #1
-->
## Upcoming Release

## Version 4.4.1
* Fixed get blob by tag failure on Powershell 7.2.2
- `Get-AzStorageBlobByTag`

Expand Down
4 changes: 2 additions & 2 deletions src/Storage/Storage.Management/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,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.4.0")]
[assembly: AssemblyFileVersion("4.4.0")]
[assembly: AssemblyVersion("4.4.1")]
[assembly: AssemblyFileVersion("4.4.1")]
4 changes: 2 additions & 2 deletions src/Storage/Storage/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.0")]
[assembly: AssemblyVersion("4.4.0")]
[assembly: AssemblyFileVersion("4.4.0")]
[assembly: AssemblyVersion("4.4.1")]
[assembly: AssemblyFileVersion("4.4.1")]
[assembly: CLSCompliant(false)]
#if !SIGN
[assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Storage.Test")]
Expand Down
2 changes: 1 addition & 1 deletion tools/Az/Az.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.7.5'; },
@{ModuleName = 'Az.Sql'; RequiredVersion = '3.8.0'; },
@{ModuleName = 'Az.SqlVirtualMachine'; RequiredVersion = '1.1.0'; },
@{ModuleName = 'Az.StackHCI'; RequiredVersion = '1.1.0'; },
@{ModuleName = 'Az.Storage'; RequiredVersion = '4.4.0'; },
@{ModuleName = 'Az.Storage'; RequiredVersion = '4.4.1'; },
@{ModuleName = 'Az.StorageSync'; RequiredVersion = '1.7.0'; },
@{ModuleName = 'Az.StreamAnalytics'; RequiredVersion = '2.0.0'; },
@{ModuleName = 'Az.Support'; RequiredVersion = '1.0.0'; },
Expand Down
Loading