diff --git a/CHANGELOG.md b/CHANGELOG.md index 5433f100..d1e6c0ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +#### 1.41.1 - 2023/12/19 +### Changed +- When building a Spring `ResponseEntity` with an explicit status, provide an integer derived from the `HttpStatus` enum, rather than providing the + `HttpStatus` directly, to handle binary incompatibility between Spring 5 and 6 causing NoSuchMethod errors when tw-tasks is used with Spring 6 + #### 1.41.0 - 2023/11/16 ### Added - Added `taskType` and `taskSubType` parameters to management query endpoints. diff --git a/gradle.properties b/gradle.properties index 4ef47a12..03c3f29f 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,2 +1,2 @@ -version=1.41.0 +version=1.41.1 org.gradle.internal.http.socketTimeout=120000 diff --git a/tw-tasks-management/src/main/java/com/transferwise/tasks/management/TasksManagementPortController.java b/tw-tasks-management/src/main/java/com/transferwise/tasks/management/TasksManagementPortController.java index 863683bf..47708cc9 100644 --- a/tw-tasks-management/src/main/java/com/transferwise/tasks/management/TasksManagementPortController.java +++ b/tw-tasks-management/src/main/java/com/transferwise/tasks/management/TasksManagementPortController.java @@ -217,7 +217,7 @@ protected T callWithAuthentication(Set roles, Function