Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
009d96f
OAK-12287: Update to Apache Parent POM to version 39
reschke Jun 29, 2026
b73a399
OAK-12287: Update to Apache Parent POM to version 39 - revert removal…
reschke Jun 30, 2026
f6cfb14
OAK-12289 : disabled blob id tracking for document node store (#2987)
rishabhdaim Jul 1, 2026
3ce3b66
Merge pull request #2984 from apache/OAK-12287
reschke Jul 1, 2026
386223e
OAK-12259: oak-http: OakServlet mis-parses HTTP Basic credentials
reschke Jul 1, 2026
ebf0597
OAK-12293 : bump commons-io to 2.21.0 (#2997)
rishabhdaim Jul 4, 2026
ac0fa02
OAK-12294 : bump commons-codec to 1.20.0 (#2998)
rishabhdaim Jul 4, 2026
480eb14
OAK-12295 : bump mongo-driver-sync to 5.3.1 (#3001)
rishabhdaim Jul 5, 2026
a71cfa3
OAK-12296 : bump testcontainers version to 2.0.3 (#3002)
rishabhdaim Jul 6, 2026
6cfac19
OAK-12244: index nodes that gain a mixin rule, delete stale docs when…
thomasmueller Jul 7, 2026
045951c
OAK-12282 : defining a fixed bound for the AbstractDiskCache (#2978)
pat-lego Jul 7, 2026
bead8ea
OAK-12303: Update mina-core dependency version to 2.1.15 (#3008) (#3010)
reschke Jul 8, 2026
69a6c68
Revert "OAK-12295 : bump mongo-driver-sync to 5.3.1 (#3001)" (#3012)
rishabhdaim Jul 8, 2026
92ca9d9
OAK-12219: Upgrade Azure SDK V8 to V12 for oak-blob-azure - rework
seropian Jun 25, 2026
4368215
OAK-12219: Upgrade Azure SDK V8 to V12 for oak-blob-azure - rework
seropian Jun 30, 2026
ceb4994
OAK-12219: Upgrade Azure SDK V8 to V12 for oak-blob-azure - rework
seropian Jun 30, 2026
a97d2cd
OAK-12219: Upgrade Azure SDK V8 to V12 for oak-blob-azure - rework
seropian Jun 30, 2026
c22cfe2
OAK-12219: fix Sonar annotations from PR #2989 CI run
seropian Jun 30, 2026
921565e
OAK-12219: raise unit-test coverage on new V12 code to clear Sonar gate
seropian Jun 30, 2026
4f740b3
Oak 12219 upgrade azure sdk v8 to v12 for oak blob azure rework (#…
seropian Jul 1, 2026
781018c
Oak 12219 upgrade azure sdk v8 to v12 for oak blob azure rework (#…
seropian Jul 3, 2026
6bd5f56
OAK-12219: Upgrade Azure SDK V8 to V12 for oak-blob-azure - rework
seropian Jul 1, 2026
6cd7e75
OAK-12219: Upgrade Azure SDK V8 to V12 for oak-blob-azure - rework
seropian Jul 1, 2026
455dee2
Remove internal service reference from comment
seropian Jul 3, 2026
82916d0
OAK-12219: cache HttpClient in AzureBlobContainerProviderV12
seropian Jul 3, 2026
8831888
OAK-12219: replace wildcard imports with explicit imports
seropian Jul 3, 2026
9d8c574
OAK-12219: move retryOptions into provider, drop getBlobContainerFrom…
seropian Jul 3, 2026
20ba36c
OAK-12219: address remaining PR #2982 review comments
seropian Jul 3, 2026
41cc158
OAK-12219: Upgrade Azure SDK V8 to V12 for oak-blob-azure - rework
seropian Jul 8, 2026
143b20a
OAK-12219: Upgrade Azure SDK V8 to V12 for oak-blob-azure - rework
seropian Jul 8, 2026
46f5406
Merge branch 'OAK-12219-test2' into OAK-12219-Upgrade-Azure-SDK-V8-to…
seropian Jul 8, 2026
30d4ae9
OAK-12219: Upgrade Azure SDK V8 to V12 for oak-blob-azure - rework
seropian Jul 8, 2026
444dd33
Merge branch 'OAK-12219-test2' into OAK-12219-Upgrade-Azure-SDK-V8-to…
seropian Jul 8, 2026
f1a7103
OAK-12219: Upgrade Azure SDK V8 to V12 for oak-blob-azure - rework
seropian Jul 8, 2026
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
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,6 @@
import org.osgi.service.component.ComponentContext;

/**
* @deprecated Use {@link AzureDataStoreWrapper} instead.
*/
@Deprecated(since = "2.3", forRemoval = true)
* Kept for binary compatibility with existing callers. Use {@link AzureDataStoreWrapper} instead.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,10 @@ public void initiateDataRecordUpload_threeArg_delegatesToActiveImpl() throws Dat

@Test
public void getDescription_returnsAzureBlobType() {
assertArrayEquals(new String[]{"type=AzureBlob"}, wrapper.getDescription());
String[] desc = wrapper.getDescription();
assertEquals(2, desc.length);
assertEquals("type=AzureBlob", desc[0]);
assertTrue(desc[1].startsWith("sdkVersion="));
}

// -- SharedDataStore delegation --
Expand Down
Loading