From 169d82c52c1b430292194a6b2434b1b1663a224b Mon Sep 17 00:00:00 2001 From: Veikko Eeva Date: Sat, 6 Aug 2016 16:25:10 +0300 Subject: [PATCH] Updates release notes about new ADO.NET persistence provider --- changelog.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/changelog.md b/changelog.md index bfcf32a2ea..21e10d9f6b 100644 --- a/changelog.md +++ b/changelog.md @@ -10,7 +10,9 @@ The idea is to track end-user facing changes as they occur.* - Now using Microsoft.Extensions.DepedencyInjection.ServiceProvider as the default service provider if the user does not override it. - Grains are still not being injected automatically unless the user opts in by specifying his own Startup configuration that returns a service provider. - Updated Azure Storage dependency to 7.0.0 #1968 - +- A new ADO.NET storage provider that is significantly easier to setup, which replaces the the previous one. This change is not backwards compatible and does not support sharding + (likely be replaced later with Orleans sharding provider). The most straightforward migration plan is likely to persist the state classes from Orleans application code. + More information in [#1682](https://github.com/dotnet/orleans/pull/1682) and in [#1682 (comment)](https://github.com/dotnet/orleans/pull/1682#issuecomment-234371701). ### [v1.2.3] - Ability to force creation of Orleans serializers for types not marked with [Serializable] by using GenerateSerializer, KnownType or KnownAssembly.TreatTypesAsSerializable #1888 #1864 #1855