Skip to content

Commit 4626a50

Browse files
authored
fix: last deprecations mention a wrong version (#304)
1 parent 87f397f commit 4626a50

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

iexec-sms-library/src/main/java/com/iexec/sms/api/SmsClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ ApiResponseBody<TeeSessionGenerationResponse, TeeSessionGenerationError> generat
127127
* @deprecated Use {@link #getTeeServicesPropertiesVersion(TeeFramework, String)} instead.
128128
* This endpoint will be removed in future versions.
129129
*/
130-
@Deprecated(since = "8.7.0", forRemoval = true)
130+
@Deprecated(since = "9.0.0", forRemoval = true)
131131
@RequestLine("GET /tee/properties/{teeFramework}")
132132
<T extends TeeServicesProperties> T getTeeServicesProperties(@Param("teeFramework") TeeFramework teeFramework);
133133

iexec-sms-library/src/main/java/com/iexec/sms/api/config/GramineServicesProperties.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public class GramineServicesProperties extends TeeServicesProperties {
3131
* TEE framework version also now.
3232
* Use {@link GramineServicesProperties(String, TeeAppProperties, TeeAppProperties)} instead.
3333
*/
34-
@Deprecated(since = "8.7.0", forRemoval = true)
34+
@Deprecated(since = "9.0.0", forRemoval = true)
3535
public GramineServicesProperties(@JsonProperty("preComputeProperties") TeeAppProperties preComputeProperties,
3636
@JsonProperty("postComputeProperties") TeeAppProperties postComputeProperties) {
3737
super(TeeFramework.GRAMINE, "", preComputeProperties, postComputeProperties);

iexec-sms-library/src/main/java/com/iexec/sms/api/config/SconeServicesProperties.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public class SconeServicesProperties extends TeeServicesProperties {
3232
* TEE framework version also now.
3333
* Use {@link SconeServicesProperties(String, TeeAppProperties, TeeAppProperties, String)} instead.
3434
*/
35-
@Deprecated(since = "8.7.0", forRemoval = true)
35+
@Deprecated(since = "9.0.0", forRemoval = true)
3636
public SconeServicesProperties(@JsonProperty("preComputeProperties") TeeAppProperties preComputeProperties,
3737
@JsonProperty("postComputeProperties") TeeAppProperties postComputeProperties,
3838
@JsonProperty("lasImage") String lasImage) {

src/main/java/com/iexec/sms/tee/TeeController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public ResponseEntity<TeeFramework> getTeeFramework() {
9494
* and potential TEE framework's specific data.
9595
* </p>
9696
*/
97-
@Deprecated(since = "8.7.0", forRemoval = true)
97+
@Deprecated(since = "9.0.0", forRemoval = true)
9898
@GetMapping("/properties/{teeFramework}")
9999
public ResponseEntity<TeeServicesProperties> getTeeServicesProperties(
100100
@PathVariable TeeFramework teeFramework) {

0 commit comments

Comments
 (0)