Skip to content

Commit

Permalink
create 5.6.0 changelog and update versions
Browse files Browse the repository at this point in the history
  • Loading branch information
rkm authored and jas88 committed Apr 16, 2024
1 parent 3bb3765 commit 98b57b9
Show file tree
Hide file tree
Showing 10 changed files with 35 additions and 23 deletions.
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,37 @@ A raw git diff can be seen [here][unreleased].

<!--next-->

## [5.6.0] 2024-04-16

## Feature

- [#1735](https://github.com/SMI/SmiServices/pull/1735) by rkm. Add support for CohortPackager to process ExtractedFileVerificationMessages in batches
- Enabled with `CohortPackagerOptions.VerificationMessageQueueProcessBatches`
- Process rate configured with `CohortPackagerOptions.VerificationMessageQueueFlushTimeSeconds`. Defaults to 5 seconds if not set
- [#1746](https://github.com/SMI/SmiServices/pull/1746) by rkm. Start to refactor `RabbitMqAdapter` logic into generic interface
- Rename IRabbitMqAdapter -> IMessageBroker
- Move into `Smi.Common.Messaging` namespace
- Add `MessageBrokerType` and `MessageBrokerFactory`
- Create ConnectionFactory directly in `RabbitMQBroker`
- Tidy unused variables and naming
- [#1749](https://github.com/SMI/SmiServices/pull/1749) by rkm. Refactor and simplify extraction reports
- Generate a single `FailureStoreReport` which can be further processed depending on the need
- Removed `ReportFormat` and `ReporterType` from `CohortPackagerOptions`
- Merge `JobReporterBase` and `FileReporter` into `JobReporter`

## Bugfix

- [#1703](https://github.com/SMI/SmiServices/pull/1703) by jas88. Update to fix issues in installation script in docs

## Change

- [#1729](https://github.com/SMI/SmiServices/pull/1729) by rkm. Rename branch references from `master` to `main`

## Removal

- [#1730](https://github.com/SMI/SmiServices/pull/1730) by rkm. Disable services from Windows CI
- [#1747](https://github.com/SMI/SmiServices/pull/1747) by rkm. Remove unused `JetBrains.Annotations` package

## [5.5.0] 2024-01-18

## Feature
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[![codecov](https://codecov.io/gh/SMI/SmiServices/branch/main/graph/badge.svg?token=O6G26DHLEY)](https://codecov.io/gh/SMI/SmiServices)
![GitHub](https://img.shields.io/github/license/SMI/SmiServices)

Version: `5.5.0`
Version: `5.6.0`

# SMI Services

Expand Down
1 change: 0 additions & 1 deletion news/1703-bugfix.md

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion news/1730-removal.md

This file was deleted.

4 changes: 0 additions & 4 deletions news/1735-feature.md

This file was deleted.

6 changes: 0 additions & 6 deletions news/1746-feature.md

This file was deleted.

1 change: 0 additions & 1 deletion news/1747-removal.md

This file was deleted.

5 changes: 0 additions & 5 deletions news/1749-feature.md

This file was deleted.

6 changes: 3 additions & 3 deletions src/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.5.0")]
[assembly: AssemblyFileVersion("5.5.0")]
[assembly: AssemblyInformationalVersion("5.5.0")] // This one can have the extra build info after it
[assembly: AssemblyVersion("5.6.0")]
[assembly: AssemblyFileVersion("5.6.0")]
[assembly: AssemblyInformationalVersion("5.6.0")] // This one can have the extra build info after it

0 comments on commit 98b57b9

Please sign in to comment.