Skip to content

Commit

Permalink
NO_SNOW Upgrade dependency versions (#800)
Browse files Browse the repository at this point in the history
* Update public_pom.xml

* Update pom.xml

* Update pom.xml

* Update RequestBuilder.java

* Update pom.xml

* revert to lower slf4j version

* Update pom.xml

* Update pom.xml

* Update RequestBuilder.java

* enable long running test fips

* enable long running test

* add ignore back

* Update README.md
  • Loading branch information
sfc-gh-xhuang authored Aug 26, 2024
1 parent b4b84b8 commit 66501f9
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 15 deletions.
7 changes: 1 addition & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,10 @@ The Snowflake Ingest Service SDK depends on the following libraries:
These dependencies will be fetched automatically by build systems like Maven or Gradle. If you don't build your project
using a build system, please make sure these dependencies are on the classpath.

# Prerequisites

**If your project depends on the Snowflake JDBC driver, as well, please make sure the JDBC driver version is 3.13.30 to 3.14.5.

## Java 8+

The Snowflake Ingest Service SDK can only be used with Java 8 or higher.
Backwards compatibility with Java 7 and prior is not planned at this
time.
Backwards compatibility with Java 7 and prior is not planned at this time.

## A 2048-bit RSA key pair

Expand Down
6 changes: 3 additions & 3 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.2.0</version>
<version>2.2.1-SNAPSHOT</version>
</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 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.2.0</version>
<version>2.2.1-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.2.0";
public static final String DEFAULT_VERSION = "2.2.1-SNAPSHOT";

public static final String JAVA_USER_AGENT = "JAVA";

Expand Down

0 comments on commit 66501f9

Please sign in to comment.