Skip to content

Releases: VirtoCommerce/vc-module-azureblob-assets

3.805.0

05 Jul 10:10
Compare
Choose a tag to compare

🐞 Bug fixes

  • (Resolves issue with External link encoded after saving)

3.804.0

20 Jun 13:29
Compare
Choose a tag to compare

🎯 Development

  • remove blob by full path only (#22)

3.803.0

01 Mar 11:42
Compare
Choose a tag to compare

🎯 Development

  • Add the ability to connect Azure blob storage with SAS (#20)

Description

  • Add the ability to connect Azure blob storage with shared access signatures (SAS)
  • Refactor getting absolute and relative URI

References

https://learn.microsoft.com/en-us/azure/storage/common/storage-configure-connection-string#configure-a-connection-string-for-an-azure-storage-account
https://learn.microsoft.com/en-us/rest/api/storageservices/create-account-sas

3.802.0

22 Feb 19:43
Compare
Choose a tag to compare

🎯 Development

Two new events, BlobCreatedEvent and BlobDeletedEvent, have been added to enhance event-driven functionality within the system.

🔥 Breaking Changes

AzureBlobProvider constructor changed. The constructor signature for AzureBlobProvider has been modified to AzureBlobProvider(IOptions options, IFileExtensionService fileExtensionService, IEventPublisher eventPublisher) to address the VC0008 warning.

🎬 Action Required:
To resolve this breaking change, it is necessary to update the VirtoCommerce.FileSystemAssets to 3.801 and VirtoCommerce.Content to 3.801.

3.801.0

01 Feb 10:39
Compare
Choose a tag to compare

🎯 Development

  • Allow creating non-public containers (#19)

Added new setting AllowBlobPublicAccess. Default value is true.

appsettings.json:

{
  "Assets": {
    "AzureBlobStorage": {
      "AllowBlobPublicAccess": true
    }
  },
  "Content": {
    "AzureBlobStorage": {
      "AllowBlobPublicAccess": true
    }
  }
}

3.800.1

01 Feb 11:07
Compare
Choose a tag to compare

🎯 Development

  • Allow creating non-public containers (#19)

3.211.1

01 Feb 11:30
Compare
Choose a tag to compare

🎯 Development

  • Allow creating non-public containers (#19)

3.800.0

11 Jan 16:40
Compare
Choose a tag to compare

🎯 Development

  • (Update to .NET 8)
  • change variable name (#17)

3.211.0

17 Mar 10:51
Compare
Choose a tag to compare

🐞 Bug fixes

  • Fix breaking changes in 3.210

3.210.0

02 Mar 14:57
Compare
Choose a tag to compare

🔥 Breaking change

  • RootPath settings is required for Assets/AzureBlobStorage; otherwise you will get error: System.ArgumentNullException: Value cannot be null.\r\n at VirtoCommerce.Platform.Core.Common.StringExtensions.IsAbsoluteUrl(String URL); We are working under the fix and planning to fix it in the next release.