Skip to content

Commit

Permalink
Update to 3.22.12
Browse files Browse the repository at this point in the history
Replace the Third-party dependence and update the README file.
  • Loading branch information
redabc committed Feb 2, 2023
1 parent de3172b commit 0512c23
Show file tree
Hide file tree
Showing 8 changed files with 70 additions and 41 deletions.
22 changes: 6 additions & 16 deletions README-Android.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,3 @@
Version 3.22.3
Third-party dependence:
1. Replace log4j2 2.17.0 with log4j2 2.17.1
2. Replace okhttp 4.9.1 with okhttp 4.9.3
3. Replace okio 2.7.0 with okio 2.10.0
4. Replace jackson-core 2.12.5 with jackson-core 2.13.0
5. Replace jackson-databind 2.12.5 with jackson-databind 2.13.0
6. Replace jackson-annotations 2.12.5 with jackson-annotations 2.13.0
-----------------------------------------------------------------------------------

Version 3.21.12
Third-party dependence:
1. Replace log4j2 2.16.0 with log4j2 2.17.0
Expand All @@ -16,19 +6,19 @@ Third-party dependence:
Version 3.21.11
New features:
1. Allowed you to add any custom header field in a request.

Third-party dependence:
1. Replace jackson-core 2.11.1 with jackson-core 2.12.5
2. Replace jackson-databind 2.11.1 with jackson-databind 2.12.5
3. Replace jackson-annotations 2.11.1 with jackson-annotations 2.12.5
4. Replace okhttp 4.8.0 with okhttp 4.9.1
5. Replace log4j2 2.14.1 with log4j2 2.16.0
1. Replace jackson-core 2.12.5 with jackson-core 2.11.1
2. Replace jackson-databind 2.12.5 with jackson-databind 2.11.1
3. Replace jackson-annotations 2.12.5 with jackson-annotations 2.11.1
4. Replace okhttp 4.9.1 with okhttp 4.8.0
5. Replace log4j2 2.16.0 with log4j2 2.14.1
-----------------------------------------------------------------------------------

Version 3.21.8

1. Replace okhttp 3.14.9 with okhttp 4.8.0.
2. Adding original headers to Response object

-----------------------------------------------------------------------------------

Version 3.21.4
Expand Down
13 changes: 13 additions & 0 deletions README-Java.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
Version 3.22.12
New features:
1. Added the Deep Archive storage class in the Java SDK.
2. Implemented the APIs related to posix accesslable int the Java SDK.

Third-party dependence:
1. Replace log4j2 2.17.1 with log4j2 2.18.0
2. Replace okhttp 4.9.3 with okhttp 4.10.0
4. Replace jackson-core 2.13.0 with jackson-core 2.13.3
5. Replace jackson-databind 2.13.0 with jackson-databind 2.13.4.1
6. Replace jackson-annotations 2.13.0 with jackson-annotations 2.13.3
-----------------------------------------------------------------------------------

Version 3.22.3
Third-party dependence:
1. Replace log4j2 2.17.0 with log4j2 2.17.1
Expand Down
13 changes: 13 additions & 0 deletions README.MD
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
Version 3.22.12
New features:
1. Added the Deep Archive storage class in the Java SDK.
2. Implemented the APIs related to posix accesslable int the Java SDK.

Third-party dependence:
1. Replace log4j2 2.17.1 with log4j2 2.18.0
2. Replace okhttp 4.9.3 with okhttp 4.10.0
4. Replace jackson-core 2.13.0 with jackson-core 2.13.3
5. Replace jackson-databind 2.13.0 with jackson-databind 2.13.4.1
6. Replace jackson-annotations 2.13.0 with jackson-annotations 2.13.3
-----------------------------------------------------------------------------------

Version 3.22.3
Third-party dependence:
1. Replace log4j2 2.17.0 with log4j2 2.17.1
Expand Down
13 changes: 13 additions & 0 deletions README_CN.MD
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
Version 3.22.12
New features:
1. Java SDK支持深度归档
2. Java SDK实现posix accesslable相关接口

Third-party dependence:
1. 使用 log4j2 2.18.0 替代 log4j2 2.17.1
2. 使用 okhttp 4.10.0 替代 okhttp 4.9.3
4. 使用 jackson-core 2.13.3 替代 jackson-core 2.13.0
5. 使用 jackson-databind 2.13.4.1 替代 jackson-databind 2.13.0
6. 使用 jackson-annotations 2.13.3 替代 jackson-annotations 2.13.0
-----------------------------------------------------------------------------------

Version 3.22.3
Third-party dependence:
1. 使用 log4j2 2.17.1 替代 log4j2 2.17.0
Expand Down
10 changes: 5 additions & 5 deletions pom-android.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.huaweicloud</groupId>
<artifactId>esdk-obs-android</artifactId>
<version>3.22.3</version>
<version>3.22.12</version>
<packaging>jar</packaging>

<name>OBS SDK for Android</name>
Expand All @@ -30,7 +30,7 @@
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>4.9.3</version>
<version>4.10.0</version>
</dependency>
<dependency>
<groupId>com.squareup.okio</groupId>
Expand All @@ -41,17 +41,17 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.13.0</version>
<version>2.13.3</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.13.0</version>
<version>2.13.4.1</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>2.13.0</version>
<version>2.13.3</version>
</dependency>
</dependencies>

Expand Down
12 changes: 6 additions & 6 deletions pom-java-optimization.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.huaweicloud</groupId>
<artifactId>esdk-obs-java-optimised</artifactId>
<version>3.22.3</version>
<version>3.22.12.1</version>
<packaging>jar</packaging>

<name>OBS SDK for Java</name>
Expand Down Expand Up @@ -40,28 +40,28 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.13.0</version>
<version>2.13.3</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.13.0</version>
<version>2.13.4.1</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>2.13.0</version>
<version>2.13.3</version>
</dependency>

<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.17.1</version>
<version>2.18.0</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.17.1</version>
<version>2.18.0</version>
</dependency>
</dependencies>

Expand Down
14 changes: 7 additions & 7 deletions pom-java.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.huaweicloud</groupId>
<artifactId>esdk-obs-java</artifactId>
<version>3.22.3</version>
<version>3.22.12</version>
<packaging>jar</packaging>

<name>OBS SDK for Java</name>
Expand All @@ -29,7 +29,7 @@
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>4.9.3</version>
<version>4.10.0</version>
</dependency>
<dependency>
<groupId>com.squareup.okio</groupId>
Expand All @@ -40,28 +40,28 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.13.0</version>
<version>2.13.3</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.13.0</version>
<version>2.13.4.1</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>2.13.0</version>
<version>2.13.3</version>
</dependency>

<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.17.1</version>
<version>2.18.0</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.17.1</version>
<version>2.18.0</version>
</dependency>


Expand Down
14 changes: 7 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.huaweicloud</groupId>
<artifactId>esdk-obs-java</artifactId>
<version>3.22.3</version>
<version>3.22.12</version>
<packaging>jar</packaging>

<name>OBS SDK for Java</name>
Expand All @@ -30,7 +30,7 @@
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>4.9.3</version>
<version>4.10.0</version>
</dependency>
<dependency>
<groupId>com.squareup.okio</groupId>
Expand All @@ -41,28 +41,28 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.13.0</version>
<version>2.13.3</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.13.0</version>
<version>2.13.4.1</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>2.13.0</version>
<version>2.13.3</version>
</dependency>

<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.17.1</version>
<version>2.18.0</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.17.1</version>
<version>2.18.0</version>
</dependency>

<dependency>
Expand Down

0 comments on commit 0512c23

Please sign in to comment.