Skip to content

Commit

Permalink
v5.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rkm authored and jas88 committed Oct 4, 2024
1 parent 19d40a9 commit 9778e76
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 10 deletions.
18 changes: 17 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,21 @@ A raw git diff can be seen [here][unreleased].

<!--next-->

## [5.9.0] 2024-10-03

### Feature

- [#1945](https://github.com/SMI/SmiServices/pull/1945) by rkm. Add a publish timeout backoff mechanism to ProducerModel, allowing control over message publishing timeout behaviour. This can be enabled by setting `BackoffProviderType` in any `ProducerOptions` config. Currently implemented types are:

- StaticBackoffProvider (1 minute flat timeout)
- ExponentialBackoffProvider (1 minute initial, doubling after each timeout)

- [#1952](https://github.com/SMI/SmiServices/pull/1952) by rkm. Enable pausing of message publishing based on monitoring downstream queue message count

### Bugfix

- [#1954](https://github.com/SMI/SmiServices/pull/1954) by rkm. Fix program names in MessageHeader and logging setup

## [5.8.0] 2024-09-19

### Feature
Expand Down Expand Up @@ -1415,4 +1430,5 @@ First stable release after importing the repository from the private
[5.7.1]: https://github.com/SMI/SmiServices/compare/v5.7.0...v5.7.1
[5.7.2]: https://github.com/SMI/SmiServices/compare/v5.7.1...v5.7.2
[5.8.0]: https://github.com/SMI/SmiServices/compare/v5.7.2...v5.8.0
[unreleased]: https://github.com/SMI/SmiServices/compare/v5.8.0...main
[5.9.0]: https://github.com/SMI/SmiServices/compare/v5.8.0...v5.9.0
[unreleased]: https://github.com/SMI/SmiServices/compare/v5.9.0...main
6 changes: 3 additions & 3 deletions SharedAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
[assembly: AssemblyCulture("")]

// These should be overwritten by release builds
[assembly: AssemblyVersion("5.8.0")]
[assembly: AssemblyFileVersion("5.8.0")]
[assembly: AssemblyInformationalVersion("5.8.0")] // This one can have the extra build info after it
[assembly: AssemblyVersion("5.9.0")]
[assembly: AssemblyFileVersion("5.9.0")]
[assembly: AssemblyInformationalVersion("5.9.0")] // This one can have the extra build info after it
4 changes: 0 additions & 4 deletions news/1945-feature.md

This file was deleted.

1 change: 0 additions & 1 deletion news/1952-feature.md

This file was deleted.

1 change: 0 additions & 1 deletion news/1954-bugfix.md

This file was deleted.

0 comments on commit 9778e76

Please sign in to comment.