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
2 changes: 2 additions & 0 deletions src/Storage/Storage.Management/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@
* Updated Azure.Core to 1.34.0.
* Added support for encryption context
- `New-AzDataLakeGen2Item`
* Updated warning messages for an upcoming breaking change when creating a storage account
- `New-AzStorageAccount`


## Version 5.9.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@

namespace Microsoft.Azure.Commands.Management.Storage
{
[GenericBreakingChangeWithVersion("Default value of AllowBlobPublicAccess and AllowCrossTenantReplication will be changed from True to False in a future release. \n" +
"When AllowBlobPublicAccess is False on a storage account, it is not permitted to configure container ACLs to allow anonymous access to blobs within the storage account. \n" +
"When AllowCrossTenantReplication is False on a storage account, cross AAD tenant object replication is not allowed.",
[GenericBreakingChangeWithVersion("Default value of AllowBlobPublicAccess and AllowCrossTenantReplication settings on storage account will be changed to False in the future release. \n" +
"When AllowBlobPublicAccess is False on a storage account, container ACLs cannot be configured to allow anonymous access to blobs within the storage account. \n" +
"When AllowCrossTenantReplication is False on a storage account, cross AAD tenant object replication is not allowed when setting up Object Replication policies.",
"11.0.0", "6.0.0",
OldWay = "AllowBlobPublicAccess and AllowCrossTenantReplication are set to True by defult.",
NewWay = "AllowBlobPublicAccess and AllowCrossTenantReplication are set to False by default.")]
Expand Down