Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v5.9.0 #1955

Merged
merged 1 commit into from
Oct 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.

Loading