Skip to content

Commit 06fd156

Browse files
committed
release notes for 2.1.28; enable deterministic builds in release
1 parent 84bce91 commit 06fd156

2 files changed

Lines changed: 14 additions & 0 deletions

File tree

Directory.Build.props

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@
2626
<PublishRepositoryUrl>true</PublishRepositoryUrl>
2727
<IsPackable>false</IsPackable>
2828
</PropertyGroup>
29+
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
30+
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
31+
<Deterministic>true</Deterministic>
32+
</PropertyGroup>
2933
<ItemGroup>
3034
<PackageReference Include="Nerdbank.GitVersioning" Version="3.0.50" PrivateAssets="all" />
3135
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="all"/>

docs/ReleaseNotes.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Release Notes
22

3+
## 2.1.28
4+
5+
- fix: stability in new sentinel APIs
6+
- fix: include `SslProtocolos` in `ConfigurationOptions.ToString()` (#1408 via vksampath and Sampath Vuyyuru
7+
- fix: clarify messaging around disconnected multiplexers (#1396)
8+
- change: tweak methods of new sentinel API (this is technically a breaking change, but since this is a new API that was pulled quickly, we consider this to be acceptable)
9+
- add: new thread`SocketManager` mode (opt-in) to always use the regular thread-pool instead of the dedicated pool
10+
- add: improved counters in/around error messages
11+
- build: enable deterministic builds
12+
313
## 2.1.0
414

515
- fix: ensure active-message is cleared (#1374 via hamish-omny)

0 commit comments

Comments
 (0)