Skip to content

Commit 4065b50

Browse files
authored
Bump version to 3.3.2-SNAPSHOT (#1292)
## Summary - Bumps version from 3.3.1 to 3.3.2-SNAPSHOT across all POM files, DriverUtil, README, and tests for the next development cycle. NO_CHANGELOG=true ## Test plan - [ ] CI passes (version references updated consistently in all 11 files) - [ ] `mvn clean install -DskipTests` succeeds This pull request was AI-assisted by Isaac. --------- Signed-off-by: Madhavendra Rathore <madhavendra.rathore@databricks.com>
1 parent a52a68d commit 4065b50

13 files changed

Lines changed: 21 additions & 20 deletions

File tree

.github/workflows/coverageReport.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ jobs:
4545
is-fork: ${{ steps.fork-check.outputs.is_fork }}
4646

4747
- name: Run tests with coverage
48-
run: mvn -pl jdbc-core clean test -Dgroups='!Jvm17PlusAndArrowToNioReflectionDisabled' jacoco:report
48+
run: mvn -pl jdbc-core clean test -Dgroups='!Jvm17PlusAndArrowToNioReflectionDisabled' jacoco:report -Ddependency-check.skip=true
49+
4950

5051
- name: Check for coverage override
5152
id: override

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Add the following dependency to your `pom.xml`:
2020
<dependency>
2121
<groupId>com.databricks</groupId>
2222
<artifactId>databricks-jdbc</artifactId>
23-
<version>3.3.1</version>
23+
<version>3.3.2-SNAPSHOT</version>
2424
</dependency>
2525
```
2626

assembly-thin/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>com.databricks</groupId>
99
<artifactId>databricks-jdbc-parent</artifactId>
10-
<version>3.3.1</version>
10+
<version>3.3.2-SNAPSHOT</version>
1111
</parent>
1212

1313
<artifactId>databricks-jdbc-thin</artifactId>
@@ -51,7 +51,7 @@
5151
<dependency>
5252
<groupId>com.databricks</groupId>
5353
<artifactId>databricks-jdbc-core</artifactId>
54-
<version>3.3.1</version>
54+
<version>3.3.2-SNAPSHOT</version>
5555
</dependency>
5656
</dependencies>
5757

assembly-uber/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>com.databricks</groupId>
99
<artifactId>databricks-jdbc-parent</artifactId>
10-
<version>3.3.1</version>
10+
<version>3.3.2-SNAPSHOT</version>
1111
</parent>
1212

1313
<artifactId>databricks-jdbc</artifactId>
@@ -51,7 +51,7 @@
5151
<dependency>
5252
<groupId>com.databricks</groupId>
5353
<artifactId>databricks-jdbc-core</artifactId>
54-
<version>3.3.1</version>
54+
<version>3.3.2-SNAPSHOT</version>
5555
</dependency>
5656
</dependencies>
5757

jdbc-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.databricks</groupId>
88
<artifactId>databricks-jdbc-parent</artifactId>
9-
<version>3.3.1</version>
9+
<version>3.3.2-SNAPSHOT</version>
1010
</parent>
1111

1212
<artifactId>databricks-jdbc-core</artifactId>

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>com.databricks</groupId>
66
<artifactId>databricks-jdbc-parent</artifactId>
77
<!-- This value may be modified by a release script to reflect the current version of the driver. -->
8-
<version>3.3.1</version>
8+
<version>3.3.2-SNAPSHOT</version>
99
<packaging>pom</packaging>
1010
<name>Databricks JDBC Parent</name>
1111
<description>Parent POM for Databricks JDBC Driver.</description>
@@ -63,7 +63,7 @@
6363
<build-helper-maven-plugin.version>3.6.1</build-helper-maven-plugin.version>
6464

6565
<!-- Dependency Versions -->
66-
<databricks-jdbc-version>3.3.1</databricks-jdbc-version>
66+
<databricks-jdbc-version>3.3.2-SNAPSHOT</databricks-jdbc-version>
6767
<arrow.version>18.3.0</arrow.version>
6868
<commons-lang3.version>3.18.0</commons-lang3.version>
6969
<commons-configuration.version>2.10.1</commons-configuration.version>

src/main/java/com/databricks/jdbc/api/impl/DatabricksDatabaseMetaData.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public class DatabricksDatabaseMetaData implements DatabaseMetaData {
2828
public static final String PRODUCT_NAME = "SparkSQL";
2929
public static final int DATABASE_MAJOR_VERSION = 3;
3030
public static final int DATABASE_MINOR_VERSION = 3;
31-
public static final int DATABASE_PATCH_VERSION = 1;
31+
public static final int DATABASE_PATCH_VERSION = 2;
3232
public static final Integer MAX_NAME_LENGTH = 128;
3333
public static final String NUMERIC_FUNCTIONS =
3434
"ABS,ACOS,ASIN,ATAN,ATAN2,CEILING,COS,COT,DEGREES,EXP,FLOOR,LOG,LOG10,MOD,PI,POWER,RADIANS,RAND,ROUND,SIGN,SIN,SQRT,TAN,TRUNCATE";

src/main/java/com/databricks/jdbc/common/util/DriverUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
public class DriverUtil {
2121

2222
private static final JdbcLogger LOGGER = JdbcLoggerFactory.getLogger(DriverUtil.class);
23-
private static final String DRIVER_VERSION = "3.3.1";
23+
private static final String DRIVER_VERSION = "3.3.2-SNAPSHOT";
2424
private static final String DRIVER_NAME = "oss-jdbc";
2525
private static final String JDBC_VERSION = "4.3";
2626

src/test/java/com/databricks/jdbc/api/impl/DatabricksDatabaseMetaDataTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -828,7 +828,7 @@ public void testNullsAreSortedAtEnd() throws SQLException {
828828
@Test
829829
public void testGetDatabaseProductVersion() throws SQLException {
830830
String result = metaData.getDatabaseProductVersion();
831-
assertEquals("3.3.1", result);
831+
assertEquals("3.3.2", result);
832832
}
833833

834834
@Test
@@ -840,7 +840,7 @@ public void testGetDriverName() throws SQLException {
840840
@Test
841841
public void testGetDriverVersion() throws SQLException {
842842
String result = metaData.getDriverVersion();
843-
assertEquals("3.3.1", result);
843+
assertEquals("3.3.2-SNAPSHOT", result);
844844
}
845845

846846
@Test

src/test/java/com/databricks/jdbc/common/safe/DatabricksDriverFeatureFlagsContextTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class DatabricksDriverFeatureFlagsContextTest {
3737
@Mock private ObjectMapper objectMapperMock;
3838
private static final String FEATURE_FLAG_NAME = "featureFlagName";
3939
private static final String FEATURE_FLAGS_ENDPOINT =
40-
"https://test-host/api/2.0/connector-service/feature-flags/OSS_JDBC/3.3.1";
40+
"https://test-host/api/2.0/connector-service/feature-flags/OSS_JDBC/3.3.2-SNAPSHOT";
4141

4242
private DatabricksDriverFeatureFlagsContext context;
4343

0 commit comments

Comments
 (0)