Skip to content
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
52 changes: 30 additions & 22 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: 7/9/2020
# Generated on: 2020/7/27
#

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

# Version number of this module.
ModuleVersion = '2.3.0'
ModuleVersion = '2.3.1'

# Supported PSEditions
CompatiblePSEditions = 'Core', 'Desktop'
Expand Down Expand Up @@ -176,9 +176,8 @@ CmdletsToExport = 'Get-AzStorageAccount', 'Get-AzStorageAccountKey',
'New-AzStorageObjectReplicationPolicyRule',
'Set-AzStorageObjectReplicationPolicy',
'Get-AzStorageObjectReplicationPolicy',
'Remove-AzStorageObjectReplicationPolicy',
'Set-AzStorageBlobTag', 'Get-AzStorageBlobTag',
'Get-AzStorageBlobByTag'
'Remove-AzStorageObjectReplicationPolicy', 'Set-AzStorageBlobTag',
'Get-AzStorageBlobTag', 'Get-AzStorageBlobByTag'

# Variables to export from this module
# VariablesToExport = @()
Expand Down Expand Up @@ -222,23 +221,32 @@ PrivateData = @{
# IconUri = ''

# ReleaseNotes of this module
ReleaseNotes = '* Fixed the issue that UserAgent is not added for some data plane cmdlets.
* Supported create/update Storage account with MinimumTlsVersion and AllowBlobPublicAccess
- ''New-AzStorageAccount''
- ''Set-AzStorageAccount''
* Support enable/disable versioning on Blob Service of a Storage account
- ''Update-AzStorageBlobServiceProperty''
* Support list blobs with blob versions
- ''Get-AzStorageBlob''
* Support get/remove single blob snapshot or blob version
- ''Get-AzStorageBlob''
- ''Remove-AzStorageBlob''
* Support pipeline from blob object generated from Azure.Storage.Blobs V12
- ''Get-AzStorageBlobContent''
- ''New-AzStorageBlobSASToken''
- ''Remove-AzStorageBlob''
- ''Set-AzStorageBlobContent''
- ''Start-AzStorageBlobCopy'''
ReleaseNotes = '* Supported create container/blob Sas token with new permission x,t
- ''New-AzStorageBlobSASToken''
- ''New-AzStorageContainerSASToken''
* support create account Sas token with new permission x,t,f
- ''New-AzStorageAccountSASToken''
* Support get single file share usage
- ''Get-AzRmStorageShare''
* support get/set blob tags on a specific blob
- ''Get-AzStorageBlobTag''
- ''Set-AzStorageBlobTag''
* support create destination blob with specific blob tags while upload/copy Blob
- ''Set-AzStorageBlobContent''
- ''Start-AzStorageBlobCopy''
* support list blobs across containers with a blob tag filter sql expression
- ''Get-AzStorageBlobByTag''
* support list blobs inside a container and include Blob Tags
- ''Get-AzStorageBlob''
* support run blob operation with blob tag condition, and fail the cmdlet when blob tag condition not match
- ''Get-AzStorageBlob''
- ''Get-AzStorageBlobContent''
- ''Get-AzStorageBlobTag''
- ''Remove-AzStorageBlob''
- ''Set-AzStorageBlobContent''
- ''Set-AzStorageBlobTag''
- ''Start-AzStorageBlobCopy''
- ''Stop-AzStorageBlobCopy'''

# Prerelease string of this module
Prerelease = 'preview'
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 2.3.1
* Supported create container/blob Sas token with new permission x,t
- `New-AzStorageBlobSASToken`
- `New-AzStorageContainerSASToken`
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("2.3.0")]
[assembly: AssemblyFileVersion("2.3.0")]
[assembly: AssemblyVersion("2.3.1")]
[assembly: AssemblyFileVersion("2.3.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("2.3.0")]
[assembly: AssemblyFileVersion("2.3.0")]
[assembly: AssemblyVersion("2.3.1")]
[assembly: AssemblyFileVersion("2.3.1")]
[assembly: CLSCompliant(false)]
#if !SIGN
[assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Storage.Test")]
Expand Down