Skip to content

Releases: mattbertolini/spring-annotated-web-data-binder

0.6.0 - 2023-12-01

01 Dec 13:32
Compare
Choose a tag to compare
  • Restructured Gradle build files to more convention based approach.
  • Started using type-safe dependency notation in build files.
  • Fix an issue where servlet api version was not being set correctly in published artifacts in Maven Central (#11).
  • Upgrade Spring Framework to 5.3.28.
  • Upgrade Spring Boot to 2.7.13
  • Update build to Gradle 8.5

0.5.0 - 2022-05-22

22 May 14:43
Compare
Choose a tag to compare
  • Add preliminary support for binding to Java record types.
  • JDK 17 is now required to build this project. The production artifacts are still compiled to Java 1.8 bytecode.
  • Upgrade to Spring Framework 5.3.13
  • Upgrade to Spring Boot 2.4.13
  • Upgraded to equals verifier 3.10
  • Moved the Gradle build from Groovy DSL to Kotlin DSL

0.4.0 - 2021-06-20

20 Jun 22:45
Compare
Choose a tag to compare
  • New Spring Boot starter modules for both Web MVC and WebFlux implementations. Allows quick and easy use of the data
    binder in Spring Boot applications with no configuration.
  • Add basic support for Multipart request data in WebFlux.
  • Minimum supported Spring version: 5.3.8
  • Minimum supported Spring Boot version: 2.4.7

0.3.0 - 2021-03-24

24 Mar 23:42
Compare
Choose a tag to compare
  • Add support for binding MultipartFile and Servlet API Part objects using @FormParamter and @RequestParamter
    annotations. MultipartFile and Part are only for Spring MVC and do not work in Spring WebFlux.

0.2.0 - 2020-09-02

03 Sep 01:29
Compare
Choose a tag to compare
  • Add support for binding request payloads using the @RequestBody annotation.