Skip to content

Releases: mkjeff/secs4net

v2.4.3

20 Jan 11:52
Compare
Choose a tag to compare
  • Added Item.ASCIIEncoding static property, default is Encoding.ASCII. You can set the custom encoding if you want.

Full Changelog: v2.4.2...v2.4.3

v2.4.2

04 Jan 10:50
Compare
Choose a tag to compare

Break changes

  • HsmsConnection no longer inherits from BackgroundService. that means you need to wrap it into a BackgroundService implementation and start it by yourself. sample
  • Hidden some inappropriate members from ISecsConnection.

Full Changelog: v2.4.1...v2.4.2

v2.4.1

03 Jan 13:01
Compare
Choose a tag to compare
  • net8.0 target framework support
  • AOT compatible

Break changes

Secs4Net is no longer bundled with extra encoding code pages, e.q. JIS8.
If you need JIS8 encoding,

  1. Add package reference System.Text.Encoding.CodePages to your project
  2. Setup the encoding by following code
Encoding.RegisterProvider(CodePagesEncodingProvider.Instance);
Secs4Net.Item.JIS8Encoding = Encoding.GetEncoding(50222);

Full Changelog: v2.2.1...v2.4.1

v2.2.1

20 Oct 04:26
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.2.0...v2.2.1

v2.2.0

09 Oct 11:59
Compare
Choose a tag to compare

bug fix #88

v2.1.1

05 Sep 07:33
Compare
Choose a tag to compare

fix LinkTest timer not working after reconnect #68

v2.1.0

12 Aug 14:27
Compare
Choose a tag to compare

bug fixes

#64 incorrect message total length encoding due to misusing ArrayPoolBufferWriter<T>.GetSpan(..)

2.0

09 Nov 06:29
Compare
Choose a tag to compare
2.0

final release version starts from 2.0.2

2.0.0-rc5.0: upgrade to net6.0 rc1.

20 Sep 14:53
Compare
Choose a tag to compare
Pre-release

(this should be the final RC version before the final #release)

  • upgrade to net6.0 rc1.
  • fix netstandard2.0 WithCancellation extension method(#57)

2.0.0-rc4.3

19 Aug 10:58
Compare
Choose a tag to compare
2.0.0-rc4.3 Pre-release
Pre-release

improve debugging experience.
support nuget package 'SourceLink'.
keep List item API compatible with v1.