Skip to content

Commit c3cf9e2

Browse files
authored
Merge pull request #534 from iExecBlockchainComputing/hotfix/7.2.2
Hotfix/7.2.2
2 parents a882176 + 5fc0509 commit c3cf9e2

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [[7.2.2]](https://github.com/iExecBlockchainComputing/iexec-core/releases/tag/v7.2.2) 2022-12-20
6+
7+
* Use `iexec-common` version [6.2.0](https://github.com/iExecBlockchainComputing/iexec-common/releases/tag/v6.2.0).
8+
* Use `okhttp` version 4.9.0 to keep it consistent with the one in the web3j dependency imported by `iexec-common`.
9+
510
## [[7.2.1]](https://github.com/iExecBlockchainComputing/iexec-core/releases/tag/v7.2.1) 2022-12-13
611

712
* Replace `sessionId` implementation with a hash of the public configuration. From a consumer point of view, a constant hash received from the `POST /ping` response indicates that the scheduler configuration has not changed. With such constant hash, either the scheduler has restarted or not, the consumer does not need to reboot.

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ dependencies {
7070
implementation "org.springframework.boot:spring-boot-starter-hateoas"
7171

7272
// NoSuchMethodError: 'okhttp3.RequestBody okhttp3.RequestBody.create(java.lang.String, okhttp3.MediaType)'
73-
implementation 'com.squareup.okhttp3:okhttp:4.3.1' // Web3j issue: https://github.com/web3j/web3j/issues/1180
74-
// NoSuchMethodError: 'byte[] kotlin.collections.ArraysKt.copyInto(byte[], byte[], int, int, int)'
75-
implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.3.50' // https://stackoverflow.com/a/57907899
73+
// Spring Boot dependencies BOM enforces okhttp3 3.14.9 in 2.6.X
74+
// It is required to define the dependency version required by web3j until migration to at least Spring Boot 2.7.X
75+
implementation 'com.squareup.okhttp3:okhttp:4.9.0' // Web3j issue: https://github.com/web3j/web3j/issues/1180
7676

7777
testImplementation "org.springframework.boot:spring-boot-starter-test"
7878

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
version=7.2.1
2-
iexecCommonVersion=6.1.0
1+
version=7.2.2
2+
iexecCommonVersion=6.2.0
33
iexecBlockchainAdapterVersion=7.1.1
44
iexecResultVersion=7.1.0
55
iexecSmsVersion=7.1.0

0 commit comments

Comments
 (0)