From 08b2bba636f8560cdfdd5ee4bf1a1ca0fb548961 Mon Sep 17 00:00:00 2001 From: Benjamin Petit Date: Thu, 2 Nov 2023 16:38:09 +0100 Subject: [PATCH] Squashed commit of upgrade to dotnet 8 rc2 commit 7a4aa3966ddb2e82a46095924e6cc6730694c33c Author: Benjamin Petit Date: Thu Nov 2 15:31:44 2023 +0100 Merge and fix build commit 54f8a67051ee7d3ba32ee035c5ea944d39e9e222 Merge: 8146138f4 2a0996c63 Author: Benjamin Petit Date: Thu Nov 2 15:14:43 2023 +0100 Merge branch 'main' of github.com:dotnet/orleans into upgrade/dotnet8-rc2 commit 8146138f456ee929fd92b33b66b317cd841f137f Author: Benjamin Petit Date: Thu Nov 2 15:05:02 2023 +0100 fake commit commit 2a0996c63894072712cae82b50e32fc0a08ae276 Author: Reuben Bond <203839+ReubenBond@users.noreply.github.com> Date: Thu Nov 2 06:04:30 2023 -0700 Improve grain directory cache consistency (#8696) commit b4ef03e97b720272bebeafe3d7089519c91148d1 Author: Reuben Bond <203839+ReubenBond@users.noreply.github.com> Date: Tue Oct 31 08:42:10 2023 -0700 Cosmos DB: support custom partition key value providers (#8694) commit b5bb0b7d81ff6e330863dd1734c06fc82d41a297 Author: Reuben Bond <203839+ReubenBond@users.noreply.github.com> Date: Tue Oct 31 08:41:46 2023 -0700 Cosmos DB: allow customization of retry logic and partition key path (#8693) commit d3e7d94e3a2ae7818fe8693802c0254c31d621cb Author: Reuben Bond <203839+ReubenBond@users.noreply.github.com> Date: Tue Oct 31 08:40:28 2023 -0700 Close connection when invalid framing is detected (#8692) * Ensure message is always set to null before deframing/deserializing to ensure that corruption triggers connection shutdown. * Close connection when invalid framing is detected * Fix tests * Avoid complex exception filters * Update src/Orleans.Core/Messaging/InvalidMessageFrameException.cs Co-authored-by: David Pine --------- Co-authored-by: David Pine --- src/Orleans.Core/Messaging/InvalidMessageFrameException.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Orleans.Core/Messaging/InvalidMessageFrameException.cs b/src/Orleans.Core/Messaging/InvalidMessageFrameException.cs index 28eb9ce971..60f66c63f5 100644 --- a/src/Orleans.Core/Messaging/InvalidMessageFrameException.cs +++ b/src/Orleans.Core/Messaging/InvalidMessageFrameException.cs @@ -35,6 +35,7 @@ public InvalidMessageFrameException(string message, Exception innerException) : { } + [Obsolete] protected InvalidMessageFrameException(SerializationInfo info, StreamingContext context) : base(info, context) { }