Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
plugins {
id 'java'
id 'io.freefair.lombok' version '8.14.4'
id 'org.springframework.boot' version '3.3.8'
id 'io.spring.dependency-management' version '1.1.6'
id 'org.springframework.boot' version '3.5.8'
id 'io.spring.dependency-management' version '1.1.7'
id 'jacoco'
id 'org.sonarqube' version '6.3.1.5724'
id 'maven-publish'
Expand Down Expand Up @@ -61,7 +61,7 @@ dependencies {
implementation 'com.h2database:h2:2.2.224'

// Spring Doc
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.6.0'
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.8.17'

// ssl
implementation 'org.apache.httpcomponents.client5:httpclient5'
Expand Down
2 changes: 1 addition & 1 deletion iexec-sms-library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

dependencies {
implementation platform("org.springframework.boot:spring-boot-dependencies:3.3.8")
implementation platform("org.springframework.boot:spring-boot-dependencies:3.5.8")

implementation "com.iexec.commons:iexec-commons-poco:$iexecCommonsPocoVersion"
implementation "com.iexec.common:iexec-common:$iexecCommonVersion"
Expand Down
28 changes: 0 additions & 28 deletions src/main/resources/logback-spring.xml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2022-2025 IEXEC BLOCKCHAIN TECH
* Copyright 2022-2026 IEXEC BLOCKCHAIN TECH
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -260,7 +260,7 @@ private DatasetOrder createDatasetOrderForBulk(final BigInteger datasetPrice,
.apprestrict(BytesUtils.EMPTY_ADDRESS)
.requesterrestrict(BytesUtils.EMPTY_ADDRESS)
.workerpoolrestrict(BytesUtils.EMPTY_ADDRESS)
.salt(Hash.sha3String(RandomStringUtils.randomAlphanumeric(20)))
.salt(Hash.sha3String(RandomStringUtils.secure().nextAlphanumeric(20)))
.build();
return (DatasetOrder) signerService.signOrderForDomain(datasetOrder, pocoDomain);
}
Expand Down
Loading