Skip to content

Commit 4ea59bc

Browse files
authored
Merge branch 'main' into release/2.0.1
Signed-off-by: Neil South <[email protected]>
2 parents e9ff61e + 4a1ca65 commit 4ea59bc

10 files changed

+69
-43
lines changed

GitVersion.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@ ignore:
5757
sha: []
5858
merge-message-formats: {}
5959
next-version: 2.0.1
60+
6061
major-version-bump-message: '\+semver:\s?(breaking|major)'
6162
minor-version-bump-message: '\+semver:\s?(feature|minor)'
6263
patch-version-bump-message: '\+semver:\s?(fix|patch)'
64+
update-build-number: false

doc/dependency_decisions.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
- :who: mocsharp
55
:why: MIT (https://github.com/ardalis/GuardClauses.Analyzers/raw/master/LICENSE)
66
:versions:
7-
- 4.2.0
7+
- 4.3.0
88
:when: 2022-08-16 21:39:30.077666354 Z
99
- - :approve
1010
- Castle.Core
@@ -754,7 +754,7 @@
754754
- :who: mocsharp
755755
:why: Apache-2.0 ( https://raw.githubusercontent.com/xunit/xunit/master/license.txt)
756756
:versions:
757-
- 2.6.3
757+
- 2.6.4
758758
:when: 2022-08-16 21:40:29.166018542 Z
759759
- - :approve
760760
- xunit.abstractions
@@ -768,35 +768,35 @@
768768
- :who: mocsharp
769769
:why: Apache-2.0 ( https://raw.githubusercontent.com/xunit/xunit.analyzers/master/LICENSE)
770770
:versions:
771-
- 1.7.0
771+
- 1.8.0
772772
:when: 2022-08-16 21:40:30.047067134 Z
773773
- - :approve
774774
- xunit.assert
775775
- :who: mocsharp
776776
:why: Apache-2.0 ( https://raw.githubusercontent.com/xunit/xunit/master/license.txt)
777777
:versions:
778-
- 2.6.3
778+
- 2.6.4
779779
:when: 2022-08-16 21:40:30.526718458 Z
780780
- - :approve
781781
- xunit.core
782782
- :who: mocsharp
783783
:why: Apache-2.0 ( https://raw.githubusercontent.com/xunit/xunit/master/license.txt)
784784
:versions:
785-
- 2.6.3
785+
- 2.6.4
786786
:when: 2022-08-16 21:40:30.973515441 Z
787787
- - :approve
788788
- xunit.extensibility.core
789789
- :who: mocsharp
790790
:why: Apache-2.0 ( https://raw.githubusercontent.com/xunit/xunit/master/license.txt)
791791
:versions:
792-
- 2.6.3
792+
- 2.6.4
793793
:when: 2022-08-16 21:40:31.401607230 Z
794794
- - :approve
795795
- xunit.extensibility.execution
796796
- :who: mocsharp
797797
:why: Apache-2.0 ( https://raw.githubusercontent.com/xunit/xunit/master/license.txt)
798798
:versions:
799-
- 2.6.3
799+
- 2.6.4
800800
:when: 2022-08-16 21:40:31.845685693 Z
801801
- - :approve
802802
- xunit.runner.visualstudio

src/Messaging/Events/ExportRequestEvent.cs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,11 @@ public class ExportRequestEvent : EventBase
8787
[JsonPropertyName("error_messages")]
8888
public List<string> ErrorMessages { get; private set; }
8989

90-
[JsonProperty(PropertyName = "file_id")]
91-
[JsonPropertyName("file_id")]
90+
/// <summary>
91+
/// Gets or set the payloadId for external apps sending data back
92+
/// </summary>
93+
[JsonProperty(PropertyName = "payload_id")]
94+
[JsonPropertyName("payload_id")]
9295
public string? PayloadId { get; set; }
9396

9497
/// <summary>

src/Messaging/Events/WorkflowRequestEvent.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ public class DataOrigin
5858
[JsonPropertyName("artifactType")]
5959
public ArtifactType ArtifactType { get; set; } = ArtifactType.Unset;
6060

61+
6162
public override int GetHashCode()
6263
{
6364
return HashCode.Combine(Source, Destination, DataService);
@@ -78,7 +79,7 @@ public enum DataService
7879
/// Unknown data service
7980
/// </summary>
8081
Unknown,
81-
82+
8283
/// <summary>
8384
/// Data received via DIMSE services
8485
/// </summary>

src/Messaging/Monai.Deploy.Messaging.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!--
1+
<!--
22
~ Copyright 2021-2022 MONAI Consortium
33
~
44
~ Licensed under the Apache License, Version 2.0 (the "License");
@@ -65,7 +65,7 @@
6565
</None>
6666
</ItemGroup>
6767
<ItemGroup>
68-
<PackageReference Include="Ardalis.GuardClauses" Version="4.2.0" />
68+
<PackageReference Include="Ardalis.GuardClauses" Version="4.3.0" />
6969
<PackageReference Include="System.IO.Abstractions" Version="20.0.4" />
7070
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks" Version="8.0.0" />
7171
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />

src/Messaging/Tests/IServiceCollectionExtensionsTests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,6 @@ internal class GoodSubscriberService : IMessageBrokerSubscriberService
207207

208208
// event used by users of this library
209209
public event ConnectionErrorHandler? OnConnectionError;
210-
211210
#pragma warning restore CS0067 // The event 'GoodSubscriberService.OnConnectionError' is never used
212211

213212
public void Acknowledge(MessageBase message) => throw new NotImplementedException();

src/Messaging/Tests/Monai.Deploy.Messaging.Tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!--
1+
<!--
22
~ Copyright 2022 MONAI Consortium
33
~
44
~ Licensed under the Apache License, Version 2.0 (the "License");
@@ -28,7 +28,7 @@
2828
<ItemGroup>
2929
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
3030
<PackageReference Include="Moq" Version="4.20.70" />
31-
<PackageReference Include="xunit" Version="2.6.3" />
31+
<PackageReference Include="xunit" Version="2.6.4" />
3232
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.6">
3333
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
3434
<PrivateAssets>all</PrivateAssets>

src/Messaging/Tests/WorkflowRequestMessageTest.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ public void ConvertsJsonMessageToMessage()
4949
DataService = DataService.DicomWeb,
5050
Source = Guid.NewGuid().ToString(),
5151
Destination = Guid.NewGuid().ToString(),
52+
5253
});
5354
input.DataOrigins.Add(new DataOrigin
5455
{

src/Plugins/RabbitMQ/Tests/Monai.Deploy.Messaging.RabbitMQ.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
3434
<PackageReference Include="Moq" Version="4.20.70" />
3535
<PackageReference Include="System.IO.Abstractions.TestingHelpers" Version="20.0.4" />
36-
<PackageReference Include="xunit" Version="2.6.3" />
36+
<PackageReference Include="xunit" Version="2.6.4" />
3737
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.6">
3838
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
3939
<PrivateAssets>all</PrivateAssets>

third-party-licenses.md

Lines changed: 47 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,13 @@ SOFTWARE.
6060

6161

6262
<details>
63-
<summary>Ardalis.GuardClauses 4.2.0</summary>
6463

64+
<summary>Ardalis.GuardClauses 4.3.0</summary>
6565
## Ardalis.GuardClauses
66-
67-
- Version: 4.2.0
66+
- Version: 4.3.0
6867
- Authors: Steve Smith (@ardalis)
6968
- Project URL: https://github.com/ardalis/guardclauses
70-
- Source: [NuGet](https://www.nuget.org/packages/Ardalis.GuardClauses/4.2.0)
69+
- Source: [NuGet](https://www.nuget.org/packages/Ardalis.GuardClauses/4.3.0)
7170
- License: [MIT](https://github.com/ardalis/GuardClauses.Analyzers/raw/master/LICENSE)
7271

7372

@@ -5537,6 +5536,8 @@ SOFTWARE.
55375536

55385537
```
55395538
.NET Library License Terms | .NET
5539+
MICROSOFT SOFTWARE LICENSE
5540+
TERMS
55405541

55415542

55425543

@@ -12648,7 +12649,6 @@ Insights
1264812649

1264912650
Additional navigation options
1265012651

12651-
1265212652

1265312653

1265412654

@@ -12658,6 +12658,8 @@ Additional navigation options
1265812658

1265912659

1266012660

12661+
Code
12662+
1266112663

1266212664
Code
1266312665

@@ -12670,6 +12672,8 @@ Additional navigation options
1267012672

1267112673

1267212674

12675+
Pull requests
12676+
1267312677
Pull requests
1267412678

1267512679

@@ -12680,6 +12684,9 @@ Additional navigation options
1268012684

1268112685

1268212686

12687+
Security
12688+
12689+
1268312690

1268412691
Security
1268512692

@@ -12723,8 +12730,8 @@ Footer
1272312730

1272412731

1272512732

12733+
© 2024 GitHub, Inc.
1272612734

12727-
© 2023 GitHub, Inc.
1272812735

1272912736

1273012737

@@ -12752,9 +12759,17 @@ Contact
1275212759

1275312760

1275412761

12762+
Manage cookies
12763+
12764+
12765+
1275512766

1275612767

1275712768

12769+
Do not share my personal information
12770+
12771+
12772+
1275812773

1275912774

1276012775

@@ -17243,13 +17258,14 @@ consequential or other damages.
1724317258

1724417259

1724517260
<details>
17246-
<summary>xunit 2.6.3</summary>
17261+
17262+
<summary>xunit 2.6.4</summary>
1724717263

1724817264
## xunit
1724917265

17250-
- Version: 2.6.3
17266+
- Version: 2.6.4
1725117267
- Authors: jnewkirk,bradwilson
17252-
- Source: [NuGet](https://www.nuget.org/packages/xunit/2.6.3)
17268+
- Source: [NuGet](https://www.nuget.org/packages/xunit/2.6.4)
1725317269
- License: [Apache-2.0]( https://raw.githubusercontent.com/xunit/xunit/master/license.txt)
1725417270

1725517271

@@ -17375,13 +17391,14 @@ Both sets of code are covered by the following license:
1737517391

1737617392

1737717393
<details>
17378-
<summary>xunit.analyzers 1.7.0</summary>
17394+
17395+
<summary>xunit.analyzers 1.8.0</summary>
1737917396

1738017397
## xunit.analyzers
1738117398

17382-
- Version: 1.7.0
17399+
- Version: 1.8.0
1738317400
- Authors: jnewkirk,bradwilson,marcind
17384-
- Source: [NuGet](https://www.nuget.org/packages/xunit.analyzers/1.7.0)
17401+
- Source: [NuGet](https://www.nuget.org/packages/xunit.analyzers/1.8.0)
1738517402
- License: [Apache-2.0]( https://raw.githubusercontent.com/xunit/xunit.analyzers/master/LICENSE)
1738617403

1738717404

@@ -17406,13 +17423,13 @@ limitations under the License.
1740617423

1740717424

1740817425
<details>
17409-
<summary>xunit.assert 2.6.3</summary>
17426+
<summary>xunit.assert 2.6.4</summary>
1741017427

1741117428
## xunit.assert
1741217429

17413-
- Version: 2.6.3
17430+
- Version: 2.6.4
1741417431
- Authors: jnewkirk,bradwilson
17415-
- Source: [NuGet](https://www.nuget.org/packages/xunit.assert/2.6.3)
17432+
- Source: [NuGet](https://www.nuget.org/packages/xunit.assert/2.6.4)
1741617433
- License: [Apache-2.0]( https://raw.githubusercontent.com/xunit/xunit/master/license.txt)
1741717434

1741817435

@@ -17471,13 +17488,14 @@ Both sets of code are covered by the following license:
1747117488

1747217489

1747317490
<details>
17474-
<summary>xunit.core 2.6.3</summary>
17491+
17492+
<summary>xunit.core 2.6.4</summary>
1747517493

1747617494
## xunit.core
1747717495

17478-
- Version: 2.6.3
17496+
- Version: 2.6.4
1747917497
- Authors: jnewkirk,bradwilson
17480-
- Source: [NuGet](https://www.nuget.org/packages/xunit.core/2.6.3)
17498+
- Source: [NuGet](https://www.nuget.org/packages/xunit.core/2.6.4)
1748117499
- License: [Apache-2.0]( https://raw.githubusercontent.com/xunit/xunit/master/license.txt)
1748217500

1748317501

@@ -17536,13 +17554,14 @@ Both sets of code are covered by the following license:
1753617554

1753717555

1753817556
<details>
17539-
<summary>xunit.extensibility.core 2.6.3</summary>
17557+
17558+
<summary>xunit.extensibility.core 2.6.4</summary>
1754017559

1754117560
## xunit.extensibility.core
1754217561

17543-
- Version: 2.6.3
17562+
- Version: 2.6.4
1754417563
- Authors: jnewkirk,bradwilson
17545-
- Source: [NuGet](https://www.nuget.org/packages/xunit.extensibility.core/2.6.3)
17564+
- Source: [NuGet](https://www.nuget.org/packages/xunit.extensibility.core/2.6.4)
1754617565
- License: [Apache-2.0]( https://raw.githubusercontent.com/xunit/xunit/master/license.txt)
1754717566

1754817567

@@ -17601,13 +17620,13 @@ Both sets of code are covered by the following license:
1760117620

1760217621

1760317622
<details>
17604-
<summary>xunit.extensibility.execution 2.6.3</summary>
17623+
<summary>xunit.extensibility.execution 2.6.4</summary>
1760517624

1760617625
## xunit.extensibility.execution
1760717626

17608-
- Version: 2.6.3
17627+
- Version: 2.6.4
1760917628
- Authors: jnewkirk,bradwilson
17610-
- Source: [NuGet](https://www.nuget.org/packages/xunit.extensibility.execution/2.6.3)
17629+
- Source: [NuGet](https://www.nuget.org/packages/xunit.extensibility.execution/2.6.4)
1761117630
- License: [Apache-2.0]( https://raw.githubusercontent.com/xunit/xunit/master/license.txt)
1761217631

1761317632

@@ -17666,13 +17685,14 @@ Both sets of code are covered by the following license:
1766617685

1766717686

1766817687
<details>
17669-
<summary>xunit.runner.visualstudio 2.5.5</summary>
17688+
17689+
<summary>xunit.runner.visualstudio 2.5.6</summary>
1767017690

1767117691
## xunit.runner.visualstudio
1767217692

17673-
- Version: 2.5.5
17693+
- Version: 2.5.6
1767417694
- Authors: jnewkirk,bradwilson
17675-
- Source: [NuGet](https://www.nuget.org/packages/xunit.runner.visualstudio/2.5.5)
17695+
- Source: [NuGet](https://www.nuget.org/packages/xunit.runner.visualstudio/2.5.6)
1767617696
- License: [MIT]( https://licenses.nuget.org/MIT)
1767717697

1767817698

0 commit comments

Comments
 (0)