Skip to content

Commit 8e85be3

Browse files
Merge branch 'master' into SNOW-2019041-joda-time
2 parents 65f580a + 4f049d0 commit 8e85be3

File tree

8 files changed

+18
-6
lines changed

8 files changed

+18
-6
lines changed

.github/workflows/jira_issue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
summary: '${{ github.event.issue.title }}'
3838
description: |
3939
${{ github.event.issue.body }} \\ \\ _Created from GitHub Action_ for ${{ github.event.issue.html_url }}
40-
fields: '{ "customfield_11401": {"id": "14723"}, "assignee": {"id": "712020:e1f41916-da57-4fe8-b317-116d5229aa51"}, "components":[{"id":"19281"}], "labels": ["oss"], "priority": {"id": "10001"} }'
40+
fields: '{ "customfield_11401": {"id": "14723"}, "assignee": {"id": "712020:e527ae71-55cc-4e02-9217-1ca4ca8028a2"}, "components":[{"id":"19281"}], "labels": ["oss"], "priority": {"id": "10001"} }'
4141

4242
- name: Update GitHub Issue
4343
uses: ./jira/gajira-issue-update

CHANGELOG.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
**JDBC Driver 3.23.2**
2+
3+
- \||Please Refer to Release Notes at https://docs.snowflake.com/en/release-notes/clients-drivers/jdbc
4+
15
**JDBC Driver 3.23.1**
26

37
- \||Please Refer to Release Notes at https://docs.snowflake.com/en/release-notes/clients-drivers/jdbc

FIPS/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
<parent>
66
<groupId>net.snowflake</groupId>
77
<artifactId>snowflake-jdbc-parent</artifactId>
8-
<version>3.23.2-SNAPSHOT</version>
8+
<version>3.23.2</version>
99
<relativePath>../parent-pom.xml</relativePath>
1010
</parent>
1111

1212
<artifactId>snowflake-jdbc-fips</artifactId>
13-
<version>3.23.2-SNAPSHOT</version>
13+
<version>3.23.2</version>
1414
<packaging>jar</packaging>
1515

1616
<name>snowflake-jdbc-fips</name>

parent-pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>net.snowflake</groupId>
77
<artifactId>snowflake-jdbc-parent</artifactId>
8-
<version>3.23.2-SNAPSHOT</version>
8+
<version>3.23.2</version>
99
<packaging>pom</packaging>
1010

1111
<modules>

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
<parent>
77
<groupId>net.snowflake</groupId>
88
<artifactId>snowflake-jdbc-parent</artifactId>
9-
<version>3.23.2-SNAPSHOT</version>
9+
<version>3.23.2</version>
1010
<relativePath>./parent-pom.xml</relativePath>
1111
</parent>
1212

1313
<!-- Maven complains about using property here, but it makes install and deploy process easier to override final package names and localization -->
1414
<artifactId>${artifactId}</artifactId>
15-
<version>3.23.2-SNAPSHOT</version>
15+
<version>3.23.2</version>
1616
<packaging>jar</packaging>
1717

1818
<name>${artifactId}</name>

src/test/java/net/snowflake/client/jdbc/ConnectionIT.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,7 @@ public void testLoginTimeoutViaDataSource() throws SQLException {
139139
* password but correct url Expectation is receiving incorrect username or password response from
140140
* server
141141
*/
142+
@Disabled("Disable due to changed error response in backend. Follow up: SNOW-2021007")
142143
@Test
143144
public void testProdConnectivity() throws SQLException {
144145
String[] deploymentUrls = {
@@ -566,6 +567,7 @@ public void testDifferentKeyLength() throws Exception {
566567
}
567568

568569
/** Test production connectivity with insecure mode enabled. */
570+
@Disabled("Disable due to changed error response in backend. Follow up: SNOW-2021007")
569571
@ParameterizedTest
570572
@ValueSource(booleans = {true, false})
571573
public void testInsecureMode(boolean insecureModeInProperties) {

src/test/java/net/snowflake/client/jdbc/ConnectionLatestIT.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1653,6 +1653,7 @@ public void shouldFailOnSslExceptionWithLinkToTroubleShootingGuide() throws Inte
16531653
* Test production connectivity with disableOCSPChecksMode enabled. This test applies to driver
16541654
* versions after 3.21.0
16551655
*/
1656+
@Disabled("Disable due to changed error response in backend. Follow up: SNOW-2021007")
16561657
@Test
16571658
public void testDisableOCSPChecksMode() throws SQLException {
16581659

src/test/java/net/snowflake/client/jdbc/ConnectionWithDisableOCSPModeLatestIT.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
import net.snowflake.client.core.SFTrustManager;
1313
import org.junit.jupiter.api.AfterEach;
1414
import org.junit.jupiter.api.BeforeEach;
15+
import org.junit.jupiter.api.Disabled;
1516
import org.junit.jupiter.api.Tag;
1617
import org.junit.jupiter.api.Test;
1718

@@ -36,6 +37,7 @@ public void tearDown() {
3637
* Test connectivity with disableOCSPChecksMode and insecure mode enabled. This test applies to
3738
* driver versions after 3.21.0
3839
*/
40+
@Disabled("Disable due to changed error response in backend. Follow up: SNOW-2021007")
3941
@Test
4042
public void testDisableOCSPChecksModeAndInsecureModeSet() throws SQLException {
4143

@@ -50,6 +52,7 @@ public void testDisableOCSPChecksModeAndInsecureModeSet() throws SQLException {
5052
* Test production connectivity with only disableOCSPChecksMode enabled. This test applies to
5153
* driver versions after 3.21.0
5254
*/
55+
@Disabled("Disable due to changed error response in backend. Follow up: SNOW-2021007")
5356
@Test
5457
public void testDisableOCSPChecksModeSet() throws SQLException {
5558
boolean disableOCSPChecks = true;
@@ -62,6 +65,7 @@ public void testDisableOCSPChecksModeSet() throws SQLException {
6265
* Test production connectivity with only insecureMode enabled. This test applies to driver
6366
* versions after 3.21.0
6467
*/
68+
@Disabled("Disable due to changed error response in backend. Follow up: SNOW-2021007")
6569
@Test
6670
public void testInsecureModeSet() throws SQLException {
6771
boolean insecureMode = true;
@@ -74,6 +78,7 @@ public void testInsecureModeSet() throws SQLException {
7478
* Test production connectivity with disableOCSPChecksMode enabled AND insecureMode disabled. This
7579
* test applies to driver versions after 3.21.0
7680
*/
81+
@Disabled("Disable due to changed error response in backend. Follow up: SNOW-2021007")
7782
@Test
7883
public void testDisableOCSPChecksModeAndInsecureModeMismatched() throws SQLException {
7984
boolean disableOCSPChecks = true;

0 commit comments

Comments
 (0)