Skip to content

Commit

Permalink
Merge pull request #1370 from SMI/release/v5.3.0
Browse files Browse the repository at this point in the history
Release v5.3.0
  • Loading branch information
rkm authored Nov 8, 2022
2 parents 16e8e63 + 2070aa8 commit 12de66e
Show file tree
Hide file tree
Showing 9 changed files with 44 additions and 15 deletions.
9 changes: 6 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ updates:
target-branch: master
reviewers:
- rkm
- tznind
- jas88
- package-ecosystem: maven
directory: "/src/common/com.smi.microservices.parent"
Expand All @@ -18,27 +17,31 @@ updates:
target-branch: master
reviewers:
- rkm
- tznind
- jas88
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: daily
reviewers:
- rkm
- tznind
- jas88
- package-ecosystem: "pip"
directory: "/src/common/Smi_Common_Python"
schedule:
interval: daily
allow:
- dependency-type: "all"
reviewers:
- rkm
- jas88
- package-ecosystem: "pip"
directory: "/src/applications/SRAnonTool"
schedule:
interval: daily
allow:
- dependency-type: "all"
reviewers:
- rkm
- jas88


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-->

## [5.3.0] 2022-11-08

## Feature

- [#1259](https://github.com/SMI/SmiServices/pull/1259) by rkm. Add support
for extraction processing failures
- Remove `IsIdentifiable` field from `ExtractedFileVerificationMessage`
and replace with new `VerifiedFileStatus` enum
- Update extraction job classes in `CohortPackager` to store this new
field, and handle backwards-incompatibility when reading older
extraction logs

## Bugfix

- [#1285](https://github.com/SMI/SmiServices/pull/1285) by howff. Improve the
removal of HTML tags from StructuredReport (SR) text
- [#1314](https://github.com/SMI/SmiServices/pull/1314) by jas88. Replace
SharpCompress usage due to buggy LZMA handling to fix issue #1313
- [#1350](https://github.com/SMI/SmiServices/pull/1350) by tznind. Fix
DicomRelationalMapper when running with a YamlRepository backend

## Change

- [#1270](https://github.com/SMI/SmiServices/pull/1270) by tznind. Rename yaml
config file `IsIdentifiableBaseOptions` to `IsIdentifiableOptions` and
removed unused CLI verbs in `smi`

## Meta

- [#1261](https://github.com/SMI/SmiServices/pull/1261) by jas88. Update
caching strategy in CI

## [5.2.0] 2022-08-10

## Feature
Expand Down Expand Up @@ -1142,7 +1174,8 @@ First stable release after importing the repository from the private
- Anonymous `MappingTableName` must now be fully specified to pass validation
(e.g. `mydb.mytbl`). Previously skipping database portion was supported.

[unreleased]: https://github.com/SMI/SmiServices/compare/v5.2.0...master
[unreleased]: https://github.com/SMI/SmiServices/compare/v5.3.0...master
[5.3.0]: https://github.com/SMI/SmiServices/compare/v5.2.0...v5.3.0
[5.2.0]: https://github.com/SMI/SmiServices/compare/v5.1.3...v5.2.0
[5.1.3]: https://github.com/SMI/SmiServices/compare/v5.1.2...v5.1.3
[5.1.2]: https://github.com/SMI/SmiServices/compare/v5.1.1...v5.1.2
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 @@
![GitHub](https://img.shields.io/github/license/SMI/SmiServices)
[![Total alerts](https://img.shields.io/lgtm/alerts/g/SMI/SmiServices.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/SMI/SmiServices/alerts/)

Version: `5.2.0`
Version: `5.3.0`

# SMI Services

Expand Down
3 changes: 0 additions & 3 deletions news/1259-feature.md

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion news/1350-bugfix.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.2.0")]
[assembly: AssemblyFileVersion("5.2.0")]
[assembly: AssemblyInformationalVersion("5.2.0")] // This one can have the extra build info after it
[assembly: AssemblyVersion("5.3.0")]
[assembly: AssemblyFileVersion("5.3.0")]
[assembly: AssemblyInformationalVersion("5.3.0")] // This one can have the extra build info after it

0 comments on commit 12de66e

Please sign in to comment.