2.1.0-rc1
Pre-release
Pre-release
ASP.NET Core 2.1.0-rc1 Release Notes
We are pleased to announce the release of ASP.NET Core 2.1.0-rc1.
Known Issues
- ASP.NET Core applications that use SQLite and Libuv may not work correctly when deployed against the new linux-musl-x64 RuntimeIdentitifer
Users may encounter a__memcpy_chk: symbol not found
or__cmsg_nxthdr: symbol not found
error at runtime. See aspnet/libuv-package#23 for additional details.
Workaround: For apps using SQLite, upgrade to SQLitePCLRaw 1.1.11 by adding<PackageReference Include="SQLitePCLRaw.bundle_green" Version="1.1.11" />
to your project file. For apps using Libuv, exclude Libuv from the dependency graph by adding<PackageReference Include="Libuv" Version="1.10.0" ExcludeAssets="Native" />
to your project file. - SignalR: System.ArgumentException: The output byte buffer is too small to contain the encoded data
when sending non-ascii characters using the JSON protocol
This is a known issue that will be addressed before 2.1.0 is released