Skip to content

Commit

Permalink
Bump version to 3.1.0
Browse files Browse the repository at this point in the history
Version 3.10 introduces

  - Support for Spring Boot:
    - a Spring Boot Starter for autoconfiguration
    - configuration via application.yml
    - provide metrics via Spring Boot actuator and Promtheus

  - Improved exception handling:
    - new exception types that are easier to understand
      (StopProcessingException and RetryProcessingException)
    - new exception types now require error descriptions in any case
    - convenience API for error handling, esp. in combination with
      Java's Optional

  - Simplified custom messages:
    - new base class for ready to go custom message implementations
    - a new API to implement custom messages: Implementing
      FlusswerMessage is now all you need
    - Custom Jackson mixins are now optional

  - new API for collecting metrics
  - minor fixes and improvements

Version 3.1.0 prepares:

  - The control exception types of previous versions are deprecated now
    and will be removed in version 4.0.0
  • Loading branch information
bitzl committed Mar 11, 2020
1 parent e3824fb commit 7081fd1
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion engine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>de.digitalcollections.flusswerk</groupId>
<artifactId>dc-flusswerk-parent</artifactId>
<version>3.1.0-SNAPSHOT</version>
<version>3.1.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion examples-plain/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>de.digitalcollections.flusswerk</groupId>
<artifactId>dc-flusswerk-parent</artifactId>
<version>3.1.0-SNAPSHOT</version>
<version>3.1.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion examples-spring-boot/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>dc-flusswerk-parent</artifactId>
<groupId>de.digitalcollections.flusswerk</groupId>
<version>3.1.0-SNAPSHOT</version>
<version>3.1.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion integration-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>dc-flusswerk-parent</artifactId>
<groupId>de.digitalcollections.flusswerk</groupId>
<version>3.1.0-SNAPSHOT</version>
<version>3.1.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>de.digitalcollections.flusswerk</groupId>
<artifactId>dc-flusswerk-parent</artifactId>
<version>3.1.0-SNAPSHOT</version>
<version>3.1.0</version>
<packaging>pom</packaging>

<name>Flusswerk</name>
Expand Down
2 changes: 1 addition & 1 deletion spring-boot-starter-flusswerk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>dc-flusswerk-parent</artifactId>
<groupId>de.digitalcollections.flusswerk</groupId>
<version>3.1.0-SNAPSHOT</version>
<version>3.1.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down

0 comments on commit 7081fd1

Please sign in to comment.