diff --git a/menu/menu.yaml b/menu/menu.yaml index 6af22b20834..980026d50f8 100644 --- a/menu/menu.yaml +++ b/menu/menu.yaml @@ -287,6 +287,8 @@ Url: nservicebus/upgrades/azure-deprecation - Title: Azure BlobStorage Data Bus Articles: + - Url: nservicebus/upgrades/absdatabus-6to7 + Title: Version 6 to 7 - Url: nservicebus/upgrades/absdatabus-3to4 Title: Version 3 to 4 - Url: nservicebus/upgrades/absdatabus-2to3 diff --git a/nservicebus/upgrades/absdatabus-6to7.md b/nservicebus/upgrades/absdatabus-6to7.md new file mode 100644 index 00000000000..6412731da62 --- /dev/null +++ b/nservicebus/upgrades/absdatabus-6to7.md @@ -0,0 +1,27 @@ +--- +title: Azure Blob Storage Databus Upgrade Version 6 to 7 +summary: Instructions on how to upgrade Azure Blob Storage Databus from version 6 to 7. +reviewed: 2025-09-15 +component: ABSDataBus +isUpgradeGuide: true +upgradeGuideCoreVersions: + - 9 + - 10 +--- + +## Changes due to ClaimCheck been released as a separate package + +In order to incorporate the changes related to the creation of the new NServiceBus.ClaimCheck package, the classes and interface that mention `DataBus` have been obsoleted in favor of their new `ClaimCheck` counterparts. + +Their usage and APIs remains the same. + + +|Obsolete|Replace with| +|---|---| +|class AzureDataBus| class AzureClaimCheck| +|class class ConfigureAzureDataBus| class ConfigureAzureClaimCheck| +|interface NServiceBus.DataBus.AzureBlobStorage.IProvideBlobServiceClient| interface NServiceBus.ClaimCheck.AzureBlobStorage.IProvideBlobServiceClient| + + +For more details about the migration to the new package, visit the [ClaimCheck section of the NServiceBus upgrade guide from 9 to 10](/nservicebus/upgrades/9to10/#databus-feature-moved-to-separate-nservicebus-claimcheck-package). +