Skip to content

Commit

Permalink
Add releasenotes.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jviau committed Apr 30, 2020
1 parent 198ebd4 commit 75af216
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
3 changes: 0 additions & 3 deletions eng/Common.props
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,6 @@
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<PackageReleaseNotes>
- Fix task activity null scope.
</PackageReleaseNotes>
</PropertyGroup>

</Project>
10 changes: 10 additions & 0 deletions eng/Common.targets
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,14 @@
<AdditionalFiles Include="$(RepoRoot)stylecop.json" Visible="false" />
</ItemGroup>

<Target Name="GetReleaseNotes" BeforeTargets="BeforeBuild">
<ReadLinesFromFile File="$(RepoRoot)releasenotes.md">
<Output TaskParameter="Lines" ItemName="_ReleaseNotesLines" />
</ReadLinesFromFile>

<PropertyGroup>
<PackageReleaseNotes>@(_ReleaseNotesLines, '%0D%0A')</PackageReleaseNotes>
</PropertyGroup>
</Target>

</Project>
3 changes: 3 additions & 0 deletions releasenotes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
- Add `TaskHubOptions`. Initial version allows for `CreateIfNotExists`.
* binds to `TaskHub` config section.
- Fix `IServiceScope` disposal during task orchestration.
2 changes: 1 addition & 1 deletion src/DurableTask.Hosting/test/Functional/EndToEndTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public async Task RunOrchestration_Activated(ServiceLifetime serviceLifetime)
payload.Input.Should().Be(input);
executionTracker.Executions.Should().HaveCount(1);
executionTracker.Executions.Single().ExecutedType.Should().Be(typeof(TestOrchestration));
await host.StopAsync();
await TestHelpers.Capture<OperationCanceledException>(() => host.StopAsync());
}

private static IHost CreateHost(
Expand Down

0 comments on commit 75af216

Please sign in to comment.