Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NO_SNOW Upgrade dependency versions #800

Merged
merged 15 commits into from
Aug 26, 2024
8 changes: 4 additions & 4 deletions e2e-jar-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,19 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.14.0</version>
<version>2.17.2</version>
</dependency>

<dependency>
<groupId>net.snowflake</groupId>
<artifactId>snowflake-ingest-sdk</artifactId>
<version>2.1.2</version>
<version>2.2.0-SNAPSHOT</version>
sfc-gh-xhuang marked this conversation as resolved.
Show resolved Hide resolved
</dependency>

<dependency>
<groupId>net.snowflake</groupId>
<artifactId>snowflake-jdbc-fips</artifactId>
<version>3.16.1</version>
<version>3.18.0</version>
</dependency>
<dependency>
<groupId>net.snowflake.snowflake-ingest-java-e2e-jar-test</groupId>
Expand All @@ -46,7 +46,7 @@
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bc-fips</artifactId>
<version>1.0.2.4</version>
<version>1.0.2.5</version>
</dependency>

<dependency>
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<!-- Arifact name and version information -->
<groupId>net.snowflake</groupId>
<artifactId>snowflake-ingest-sdk</artifactId>
<version>2.1.2</version>
<version>2.2.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Snowflake Ingest SDK</name>
<description>Snowflake Ingest SDK</description>
Expand Down Expand Up @@ -43,9 +43,9 @@
<commonsconfiguration2.version>2.10.1</commonsconfiguration2.version>
<commonsio.version>2.15.1</commonsio.version>
<commonslang3.version>3.14.0</commonslang3.version>
<commonslogging.version>1.3.1</commonslogging.version>
<commonslogging.version>1.3.3</commonslogging.version>
<commonstext.version>1.11.0</commonstext.version>
<fasterxml.version>2.17.0</fasterxml.version>
<fasterxml.version>2.17.2</fasterxml.version>
<guava.version>32.0.1-jre</guava.version>
<hadoop.version>3.3.6</hadoop.version>
<jacoco.skip.instrument>true</jacoco.skip.instrument>
Expand All @@ -67,7 +67,7 @@
<shadeBase>net.snowflake.ingest.internal</shadeBase>
<slf4j.version>1.7.36</slf4j.version>
<snappy.version>1.1.10.5</snappy.version>
<snowjdbc.version>3.16.1</snowjdbc.version>
<snowjdbc.version>3.18.0</snowjdbc.version>
<yetus.version>0.13.0</yetus.version>
</properties>

Expand Down
2 changes: 1 addition & 1 deletion public_pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<dependency>
<groupId>net.snowflake</groupId>
<artifactId>snowflake-jdbc</artifactId>
<version>3.16.1</version>
<version>3.18.0</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public class RequestBuilder {
// Don't change!
public static final String CLIENT_NAME = "SnowpipeJavaSDK";

public static final String DEFAULT_VERSION = "2.1.2";
public static final String DEFAULT_VERSION = "2.2.0-SNAPSHOT";

public static final String JAVA_USER_AGENT = "JAVA";

Expand Down
Loading