Changelog¶
All notable changes to the Multicloud DB SDK modules.
The format is based on Keep a Changelog, and all modules adhere to Semantic Versioning.
multiclouddb-api¶
[Unreleased]¶
[0.1.0-beta.1] - 2026-04-23¶
Added:
MulticloudDbClientConfig.Builder.userAgentSuffix(String)- optional caller-supplied token appended to the SDK user-agent header sent by all provider clients.MulticloudDbClientConfig.userAgentSuffix()- accessor returning the configured suffix, ornullif unset.com.multiclouddb.spi.SdkUserAgent- SPI helper that builds the canonicalmulticlouddb-sdk-java/<version>user-agent token.MulticloudDbClient- synchronous, provider-agnostic interface for CRUD, query, and schema provisioningMulticloudDbClientFactory- discovers provider adapters viaServiceLoaderMulticloudDbClientConfig- immutable builder-pattern configurationQueryRequest- portable expression or native expression passthrough with named parameters, pagination, partition key scoping, limit, and orderByMulticloudDbKey- portable(partitionKey, sortKey)identityResourceAddress-(database, collection)targeting- Portable expression parser, validator, and translator SPI
CapabilitySet- runtime capability introspectionMulticloudDbException- structured error model with portable categoriesOperationDiagnostics- latency, request charge, request IDDocumentMetadata- last modified, TTL expiry, version/ETag- Document size enforcement (399 KB limit)
Validation:
userAgentSuffix(String)rejects values longer than 256 characters and non-printable US-ASCII, protecting against header injection.
multiclouddb-provider-cosmos¶
[Unreleased]¶
[0.1.0-beta.1] - 2026-04-23¶
Added:
- User-Agent header stamping with
multiclouddb-sdk-java/<version>token and optional user-configured suffix. CosmosProviderAdapter- SPI entry point for Cosmos DBCosmosProviderClient- full implementation backed by Azure Cosmos DB Java SDK v4- Master-key and Azure Identity (Entra ID) authentication
- Gateway and Direct connection modes
- Full CRUD with automatic field injection (
id,partitionKey) - Portable expression translation to Cosmos SQL
- Native SQL passthrough
- Cross-partition query support (capability-gated)
- Schema provisioning (database + container creation)
multiclouddb-provider-dynamo¶
[Unreleased]¶
[0.1.0-beta.1] - 2026-04-23¶
Added:
- User-Agent suffix support via
SdkAdvancedClientOption.USER_AGENT_SUFFIX. DynamoProviderAdapter- SPI entry point for DynamoDBDynamoProviderClient- full implementation backed by AWS SDK for Java 2.25.16- AWS credential authentication (access key + secret key)
- Full CRUD with
attribute_not_exists/attribute_existsguards - Portable expression translation to PartiQL
- Native PartiQL passthrough
- Schema provisioning (table creation with ACTIVE-wait)
multiclouddb-provider-spanner¶
[Unreleased]¶
[0.1.0-beta.1] - 2026-04-23¶
Added:
- User-Agent support via gax
FixedHeaderProvider. SpannerProviderAdapter- SPI entry point for SpannerSpannerProviderClient- full implementation backed by Google Cloud Spanner 6.62.0- GCP credential and emulator authentication
- Full CRUD with mutation-based writes
- Portable expression translation to GoogleSQL
- Native GoogleSQL passthrough
- Schema provisioning (DDL-based table creation)