Cut new release 3.3.3#1434
Merged
vikrantpuppala merged 3 commits intomainfrom Apr 29, 2026
Merged
Conversation
Recovers from the broken 3.3.2 release on Maven Central (#1431). PR #1432 fixed the source-side cause; this PR carries that fix to consumers via a new release. Changes: - Bump version 3.3.2 → 3.3.3 across all POMs, DriverUtil, and version assertions in tests. - Move NEXT_CHANGELOG entries into CHANGELOG under v3.3.3. - Reset NEXT_CHANGELOG to empty template. - Flip release freeze off (was on for 3.3.2). - Bump README install snippet. Validation: - Built locally and verified assembly-uber/.flattened-pom.xml has zero <dependencies> and no <parent> — same shape as the working 3.3.1 POM. - End-to-end staging dry-run via v3.3.3-rc1: peco-databricks-jdbc workflow ran in staging-only mode, Sonatype validated the bundle on attempt 2, deployment a83f922f-9750-4a14-b697-a6005a6fc858 dropped after validation. - Live JDBC probe against the staged rc1 bundle resolved via Maven, loaded the driver, connected to dogfood, and round-tripped a SELECT — PROBE_OK. Co-authored-by: Isaac Signed-off-by: Vikrant Puppala <vikrant.puppala@databricks.com>
gopalldb
approved these changes
Apr 29, 2026
Missed in the version bump pass — DATABASE_PATCH_VERSION (used by DatabaseMetaData.getDatabaseProductVersion) is a separate constant from DRIVER_VERSION. Caught by a coverage-job test failure on #1434: DatabricksDatabaseMetaDataTest.testGetDatabaseProductVersion:831 expected: <3.3.3> but was: <3.3.2> Co-authored-by: Isaac Signed-off-by: Vikrant Puppala <vikrant.puppala@databricks.com>
3.3.2's published Maven Central POM is unresolvable (#1431). 3.3.3 recovers from this. Annotates the v3.3.2 heading with the same "DEPRECATED, Use vX.Y.Z instead" pattern used for prior unusable releases (v3.0.4, v3.0.1, v1.0.11-oss, v1.0.10-oss). Co-authored-by: Isaac Signed-off-by: Vikrant Puppala <vikrant.puppala@databricks.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Recovers from the broken 3.3.2 Maven Central release (#1431) by cutting 3.3.3 with the source-side fix from #1432.
3.3.2 published a POM that declared an unresolvable transitive dependency on
com.databricks:databricks-jdbc-core:3.3.2(an internal coordinate that is not published to Maven Central). Downstream consumers bumping to 3.3.2 sawCould not find artifact com.databricks:databricks-jdbc-core:jar:3.3.2. Yanking from Maven Central is not possible, so 3.3.3 is the recovery release.Changes
DRIVER_VERSIONconstant inDriverUtil, and assertion strings inDriverUtilTest,DatabricksDatabaseMetaDataTest,DatabricksDriverFeatureFlagsContextTest.NEXT_CHANGELOG.mdentries intoCHANGELOG.mdunder[v3.3.3]. ResetNEXT_CHANGELOG.mdto empty template.development/.release-freeze.jsonfromfreeze: true→freeze: false.README.md.Validation
The post-#1432 release artifacts have been pre-validated end-to-end via a staging dry-run:
v3.3.3-rc1off the same commit pool as this release.peco-databricks-jdbcworkflow withstaging-only=true(USER_MANAGED upload to Sonatype Central Portal).<parent>, all required Maven Central metadata present. Byte-shape-equivalent to the working 3.3.1 POM.databricks-jdbc-core, nodatabricks-jdbc-parentreferences. Same shape as published 3.3.1 thin.mvn dependency:resolveofcom.databricks:databricks-jdbc:3.3.3-rc1succeeds — exactly the resolution that fails for 3.3.2.SELECTquery. Output:a83f922f-9750-4a14-b697-a6005a6fc858) — never reachedrepo1.maven.org.After merge
v3.3.3on this commit.peco-databricks-jdbcworkflow offmainofdatabricks/secure-public-registry-releases-engwithref=v3.3.3,dry-run=false,staging-only=false.Test plan
git grep "3\.3\.2"returning only CHANGELOG hits).assembly-uber/.flattened-pom.xmlconfirmed to have 0<dependencies>after build.This pull request and its description were written by Isaac.