Skip to content

Commit 19a021f

Browse files
committedFeb 26, 2025·
beta release
1 parent bf616e2 commit 19a021f

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed
 

‎e2e-jar-test/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<dependency>
3333
<groupId>net.snowflake</groupId>
3434
<artifactId>snowflake-ingest-sdk</artifactId>
35-
<version>4.0.0-beta.unshaded</version>
35+
<version>3.1.2-beta.unshaded</version>
3636
</dependency>
3737

3838
<dependency>

‎pom.xml

+9-9
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<!-- Arifact name and version information -->
1010
<groupId>net.snowflake</groupId>
1111
<artifactId>snowflake-ingest-sdk</artifactId>
12-
<version>4.0.0-beta.unshaded</version>
12+
<version>3.1.2-beta.unshaded</version>
1313
<packaging>jar</packaging>
1414
<name>Snowflake Ingest SDK</name>
1515
<description>Snowflake Ingest SDK</description>
@@ -1117,8 +1117,8 @@
11171117
<ignoreNonCompile>true</ignoreNonCompile>
11181118
<ignoredDependencies>
11191119
<!-- We defined these as direct dependencies (as opposed to just declaring it in dependencyManagement)
1120-
to workaround https://issues.apache.org/jira/browse/MNG-7982. Now the dependency analyzer complains that
1121-
the dependency is unused, so we ignore it here-->
1120+
to workaround https://issues.apache.org/jira/browse/MNG-7982. Now the dependency analyzer complains that
1121+
the dependency is unused, so we ignore it here-->
11221122
<ignoredDependency>org.apache.commons:commons-compress</ignoredDependency>
11231123
<ignoredDependency>org.apache.commons:commons-configuration2</ignoredDependency>
11241124
</ignoredDependencies>
@@ -1214,9 +1214,9 @@
12141214
<configuration>
12151215
<errorRemedy>failFast</errorRemedy>
12161216
<!--
1217-
The list of allowed licenses. If you see the build failing due to "There are some forbidden licenses used, please
1218-
check your dependencies", verify the conditions of the license and add the reference to it here.
1219-
-->
1217+
The list of allowed licenses. If you see the build failing due to "There are some forbidden licenses used, please
1218+
check your dependencies", verify the conditions of the license and add the reference to it here.
1219+
-->
12201220
<includedLicenses>
12211221
<includedLicense>Apache License 2.0</includedLicense>
12221222
<includedLicense>BSD 2-Clause License</includedLicense>
@@ -1621,9 +1621,9 @@
16211621
</executions>
16221622
</plugin>
16231623
<!--
1624-
Plugin executes license processing Python script, which copies third party license files into the directory
1625-
target/generated-licenses-info/META-INF/third-party-licenses, which is then included in the shaded JAR.
1626-
-->
1624+
Plugin executes license processing Python script, which copies third party license files into the directory
1625+
target/generated-licenses-info/META-INF/third-party-licenses, which is then included in the shaded JAR.
1626+
-->
16271627
<plugin>
16281628
<groupId>org.codehaus.mojo</groupId>
16291629
<artifactId>exec-maven-plugin</artifactId>

‎src/main/java/net/snowflake/ingest/connection/RequestBuilder.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ public class RequestBuilder {
110110
// Don't change!
111111
public static final String CLIENT_NAME = "SnowpipeJavaSDK";
112112

113-
public static final String DEFAULT_VERSION = "4.0.0-beta.unshaded";
113+
public static final String DEFAULT_VERSION = "3.1.2-beta.unshaded";
114114

115115
public static final String JAVA_USER_AGENT = "JAVA";
116116

0 commit comments

Comments
 (0)
Please sign in to comment.