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 v6.0.0 #2078

Merged
merged 3 commits into from
Jan 8, 2025
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
35 changes: 34 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,38 @@ A raw git diff can be seen [here][unreleased].

<!--next-->

## [6.0.0] 2025-01-08

### Feature

- [#2018](https://github.com/SMI/SmiServices/pull/2018) by rkm. Bump .NET SDK to 9.0.100
- [#2024](https://github.com/SMI/SmiServices/pull/2024) by rkm. Target net9.0 / C# 13.0
- [#2041](https://github.com/SMI/SmiServices/pull/2041) by rkm. Support restricting which extraction keys are allowed
- [#2042](https://github.com/SMI/SmiServices/pull/2042) by rkm. Add options for pooled extractions (not used yet)
- [#2053](https://github.com/SMI/SmiServices/pull/2053) by rkm. Finish dicom-anonymiser CTP implementation and expand tests
- [#2068](https://github.com/SMI/SmiServices/pull/2068) by rkm. Refactor message Ack/Nack using events
- [#2069](https://github.com/SMI/SmiServices/pull/2069) by rkm. Delete IModel from Consumer and update usage in tests
- [#2072](https://github.com/SMI/SmiServices/pull/2072) by rkm. Refactor message deserialization from RabbitMQ

### Bugfix

- [#2012](https://github.com/SMI/SmiServices/pull/2012) by rkm. Add dependency on System.Private.Uri to resolve CVE
- [#2013](https://github.com/SMI/SmiServices/pull/2013) by rkm. Require RID in dotnet clean script to workaround lack of `--use-current-runtime`
- [#2025](https://github.com/SMI/SmiServices/pull/2025) by rkm. Add `DisableImplicitNuGetFallbackFolder` to work around https://github.com/NuGet/Home/issues/7921
- [#2044](https://github.com/SMI/SmiServices/pull/2044) by rkm. Add missing IsPooledExtraction property to ExtractMessage.java

### Change

- [#2023](https://github.com/SMI/SmiServices/pull/2023) by rkm. Centralise test logging setup into LoggingFixture
- [#2045](https://github.com/SMI/SmiServices/pull/2045) by rkm. Make modality required for all extractions

### Meta

- [#2007](https://github.com/SMI/SmiServices/pull/2007) by rkm. Enable Dependabot updates for dotnet-sdk
- [#2015](https://github.com/SMI/SmiServices/pull/2015) by rkm. Fix runtime selection in helper scripts
- [#2022](https://github.com/SMI/SmiServices/pull/2022) by rkm. Add pre-commit python hooks & tidy helper scripts
- [#2072](https://github.com/SMI/SmiServices/pull/2072) by rkm. Tidy-up code & add style rules

## [5.10.3] 2024-11-18

### Bugfix
Expand Down Expand Up @@ -1481,4 +1513,5 @@ First stable release after importing the repository from the private
[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
[5.9.0]: https://github.com/SMI/SmiServices/compare/v5.8.0...v5.9.0
[unreleased]: https://github.com/SMI/SmiServices/compare/v5.10.3...main
[6.0.0]: https://github.com/SMI/SmiServices/compare/v5.10.3...v6.0.0
[unreleased]: https://github.com/SMI/SmiServices/compare/v6.0.0...main
8 changes: 4 additions & 4 deletions SharedAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
using System.Reflection;

[assembly: AssemblyCompany("Universities of Dundee and Edinburgh")]
[assembly: AssemblyCopyright("Copyright © SMI Project 2018-2024")]
[assembly: AssemblyCopyright("Copyright © SMI Project 2018-2025")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

// These should be overwritten by release builds
[assembly: AssemblyVersion("5.10.3")]
[assembly: AssemblyFileVersion("5.10.3")]
[assembly: AssemblyInformationalVersion("5.10.3")] // This one can have the extra build info after it
[assembly: AssemblyVersion("6.0.0")]
[assembly: AssemblyFileVersion("6.0.0")]
[assembly: AssemblyInformationalVersion("6.0.0")] // This one can have the extra build info after it
3 changes: 2 additions & 1 deletion bin/release/updateChangelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,8 @@ def main(argv: Sequence[str] | None = None) -> int:
for fragment_file in fragment_files:
with open(fragment_file) as f:
contents = f.read()
pr_ref, _, frag_type = os.path.splitext(fragment_file)[0].partition("-")
split = os.path.splitext(os.path.basename(fragment_file))
pr_ref, _, frag_type = split[0].partition("-")
fragments[frag_type][int(pr_ref)] = contents

# Write-out the new CHANGELOG
Expand Down
1 change: 0 additions & 1 deletion news/2007-meta.md

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.