Skip to content

Commit dd5c41b

Browse files
authoredOct 28, 2022
Vulnerability Patch (#83)
1 parent 36dec88 commit dd5c41b

File tree

4 files changed

+14
-11
lines changed

4 files changed

+14
-11
lines changed
 

‎CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
### 0.4.2 / 2021-01-29 ###
1+
### 0.4.3 / 2022-10-28 ###
2+
* Includes a vulnerability patch in the used socket-io implementation
3+
4+
### 0.4.2 / 2022-02-03 ###
25
* Added possibility for SDKs using this SDK to send their own version number to the server in the Transloadit-Client header.
36
* Resolved some file-name conflicts with the tus-java-client library.
47

‎README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Existing users should take note of the [JCenter shutdown](https://jfrog.com/blog
2020
**Gradle:**
2121

2222
```groovy
23-
implementation 'com.transloadit.sdk:transloadit:0.4.2'
23+
implementation 'com.transloadit.sdk:transloadit:0.4.3'
2424
```
2525

2626
**Maven:**
@@ -29,7 +29,7 @@ implementation 'com.transloadit.sdk:transloadit:0.4.2'
2929
<dependency>
3030
<groupId>com.transloadit.sdk</groupId>
3131
<artifactId>transloadit</artifactId>
32-
<version>0.4.2</version>
32+
<version>0.4.3</version>
3333
</dependency>
3434
```
3535

‎build.gradle

+7-7
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,16 @@ allprojects {
2222
}
2323

2424
dependencies {
25-
implementation 'org.jetbrains:annotations:22.0.0'
25+
implementation 'org.jetbrains:annotations:23.0.0'
2626
implementation 'io.tus.java.client:tus-java-client:0.4.5'
27-
implementation 'joda-time:joda-time:2.10.13'
28-
implementation 'com.squareup.okhttp3:okhttp:4.9.3'
29-
implementation 'org.json:json:20211205'
27+
implementation 'joda-time:joda-time:2.12.0'
28+
implementation 'com.squareup.okhttp3:okhttp:4.10.0'
29+
implementation 'org.json:json:20220924'
3030
implementation 'commons-codec:commons-codec:1.15'
31-
implementation 'io.socket:socket.io-client:1.0.1'
31+
implementation 'io.socket:socket.io-client:1.0.2'
3232
testImplementation 'junit:junit:4.13.2'
33-
testImplementation 'org.mock-server:mockserver-junit-rule:5.11.2'
34-
testImplementation 'org.mockito:mockito-core:3.11.1'
33+
testImplementation 'org.mock-server:mockserver-junit-rule:5.14.0'
34+
testImplementation 'org.mockito:mockito-core:4.8.0'
3535

3636

3737

Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
versionNumber='0.4.2'
1+
versionNumber='0.4.3'

0 commit comments

Comments
 (0)
Please sign in to comment.