Skip to content
Open
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 menu/menu.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
27 changes: 27 additions & 0 deletions nservicebus/upgrades/absdatabus-6to7.md
Original file line number Diff line number Diff line change
@@ -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).

Loading