You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGES.md
+7-3Lines changed: 7 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,16 +4,20 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
5
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
7
-
## Unreleased
7
+
## [6.0.0]
8
8
9
9
### Fixed
10
10
11
-
- The Counter `flusswerk_messages_seconds` now records the processing time in seconds
11
+
- The Counter `flusswerk_messages_seconds` now records the processing time in seconds ([#444](https://github.com/dbmdz/flusswerk/pull/444))
12
+
- Flusswerk default metrics names now follow best practices ([#420](https://github.com/dbmdz/flusswerk/pull/420))
12
13
13
14
### Changed
14
15
16
+
- The DefaultProcessReport now supports common defaults and sensible structured fields so that most applications don't need to implement their own ProcessReport anymore ([DefaultProcessReport](https://github.com/dbmdz/flusswerk/blob/main/framework/src/main/java/com/github/dbmdz/flusswerk/framework/reporting/DefaultProcessReport.java))
15
17
- Migrated to SpringBoot 3 / JDK17
16
-
-`flowInfo.duration()` returns a `Duration` object instead of `long`
18
+
-`flowInfo.duration()` returns a `Duration` object instead of `long` ([#444](https://github.com/dbmdz/flusswerk/pull/444))
19
+
- Support for partial retries: When a workload is split in smaller chunks, then part of these can be successful and part can be retried (e.g. when sending all images of a book individually to cloud services). See [RetryProcessingException.send()](https://github.com/dbmdz/flusswerk/blob/main/framework/src/main/java/com/github/dbmdz/flusswerk/framework/exceptions/RetryProcessingException.java#L61-L69) for details.
20
+
- Flusswerk can now deserialize messages without `@JsonName` annotations.
0 commit comments