Skip to content
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

[CosmosDB]OOB release for CosmosDB #18612

Merged
merged 3 commits into from
Jun 28, 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
7 changes: 4 additions & 3 deletions src/CosmosDB/CosmosDB/Az.CosmosDB.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
# Generated on: 5/19/2022
# Generated on: 6/17/2022
#

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

# Version number of this module.
ModuleVersion = '1.8.0'
ModuleVersion = '1.8.1'

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

# ReleaseNotes of this module
ReleaseNotes = '* Introduced support for creating containers with Client Encryption Policy. The current supported version of Client Encryption Policy is 1.'
ReleaseNotes = '* Fixed bug related to Update-AzCosmosDBSqlContainer command on containers with Client Encryption Policy.
* Fixed the optional Location paramater of New-AzCosmosDBAccount cmdlet.'

# Prerelease string of this module
# Prerelease = ''
Expand Down
3 changes: 2 additions & 1 deletion src/CosmosDB/CosmosDB/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
* Added support for partition key and id paths to be part of client encryption policy.
* Fixed bug related to Update-AzCosmosDBSqlContainer command on containers with Client Encryption Policy.

## Version 1.9.0
## Version 1.8.1
* Fixed bug related to Update-AzCosmosDBSqlContainer command on containers with Client Encryption Policy.
* Fixed the optional Location paramater of New-AzCosmosDBAccount cmdlet.

## Version 1.8.0
Expand Down
4 changes: 2 additions & 2 deletions src/CosmosDB/CosmosDB/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@
[assembly: ComVisible(false)]
[assembly: CLSCompliant(false)]
[assembly: Guid("d90791a2-8102-47fc-8150-de25ae796eb1")]
[assembly: AssemblyVersion("1.8.0")]
[assembly: AssemblyFileVersion("1.8.0")]
[assembly: AssemblyVersion("1.8.1")]
[assembly: AssemblyFileVersion("1.8.1")]
2 changes: 1 addition & 1 deletion tools/Az/Az.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.8.0'; },
@{ModuleName = 'Az.Compute'; RequiredVersion = '4.27.0'; },
@{ModuleName = 'Az.ContainerInstance'; RequiredVersion = '3.1.0'; },
@{ModuleName = 'Az.ContainerRegistry'; RequiredVersion = '3.0.0'; },
@{ModuleName = 'Az.CosmosDB'; RequiredVersion = '1.8.0'; },
@{ModuleName = 'Az.CosmosDB'; RequiredVersion = '1.8.1'; },
@{ModuleName = 'Az.DataBoxEdge'; RequiredVersion = '1.1.0'; },
@{ModuleName = 'Az.Databricks'; RequiredVersion = '1.2.0'; },
@{ModuleName = 'Az.DataFactory'; RequiredVersion = '1.16.7'; },
Expand Down
2 changes: 1 addition & 1 deletion tools/AzPreview/AzPreview.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.8.0'; },
@{ModuleName = 'Az.ConnectedNetwork'; RequiredVersion = '0.1.0'; },
@{ModuleName = 'Az.ContainerInstance'; RequiredVersion = '3.1.0'; },
@{ModuleName = 'Az.ContainerRegistry'; RequiredVersion = '3.0.0'; },
@{ModuleName = 'Az.CosmosDB'; RequiredVersion = '1.8.0'; },
@{ModuleName = 'Az.CosmosDB'; RequiredVersion = '1.8.1'; },
@{ModuleName = 'Az.CostManagement'; RequiredVersion = '0.2.0'; },
@{ModuleName = 'Az.CustomLocation'; RequiredVersion = '0.1.0'; },
@{ModuleName = 'Az.CustomProviders'; RequiredVersion = '0.1.0'; },
Expand Down
Loading