From 1002b673be5803ba63173ef8a2fdebe3e388a34a Mon Sep 17 00:00:00 2001 From: Brennan Conroy Date: Mon, 12 Aug 2024 16:20:13 +0000 Subject: [PATCH 01/11] Merged PR 41476: Fix Http3 Pipe complete Don't complete the `PipeWriter` when it still might be used by Application code. --- .../src/Internal/Http3/Http3OutputProducer.cs | 33 +++-- .../Core/src/Internal/Http3/Http3Stream.cs | 2 + ...re.Server.Kestrel.Transport.Sockets.csproj | 1 + .../Http3/Http3RequestTests.cs | 132 ++++++++++++++++++ .../DiagnosticMemoryPool.cs | 23 +++ 5 files changed, 181 insertions(+), 10 deletions(-) diff --git a/src/Servers/Kestrel/Core/src/Internal/Http3/Http3OutputProducer.cs b/src/Servers/Kestrel/Core/src/Internal/Http3/Http3OutputProducer.cs index d387d3629662..cd135fa3d319 100644 --- a/src/Servers/Kestrel/Core/src/Internal/Http3/Http3OutputProducer.cs +++ b/src/Servers/Kestrel/Core/src/Internal/Http3/Http3OutputProducer.cs @@ -68,25 +68,21 @@ public void StreamReset() _dataWriteProcessingTask = ProcessDataWrites().Preserve(); } - public void Dispose() + // Called once Application code has exited + // Or on Dispose which also would occur after Application code finished + public void Complete() { lock (_dataWriterLock) { - if (_disposed) - { - return; - } - - _disposed = true; - Stop(); + _pipeWriter.Complete(); + if (_fakeMemoryOwner != null) { _fakeMemoryOwner.Dispose(); _fakeMemoryOwner = null; } - if (_fakeMemory != null) { ArrayPool.Shared.Return(_fakeMemory); @@ -95,6 +91,21 @@ public void Dispose() } } + public void Dispose() + { + lock (_dataWriterLock) + { + if (_disposed) + { + return; + } + + _disposed = true; + + Complete(); + } + } + void IHttpOutputAborter.Abort(ConnectionAbortedException abortReason) { _stream.Abort(abortReason, Http3ErrorCode.InternalError); @@ -285,7 +296,9 @@ public void Stop() _streamCompleted = true; - _pipeWriter.Complete(new OperationCanceledException()); + // Application code could be using this PipeWriter, we cancel the next (or in progress) flush so they can observe this Stop + // Additionally, _streamCompleted will cause any future PipeWriter operations to noop + _pipeWriter.CancelPendingFlush(); } } diff --git a/src/Servers/Kestrel/Core/src/Internal/Http3/Http3Stream.cs b/src/Servers/Kestrel/Core/src/Internal/Http3/Http3Stream.cs index bb42d0e18e6d..61625f180cd2 100644 --- a/src/Servers/Kestrel/Core/src/Internal/Http3/Http3Stream.cs +++ b/src/Servers/Kestrel/Core/src/Internal/Http3/Http3Stream.cs @@ -559,6 +559,8 @@ private void CompleteStream(bool errored) TryClose(); } + _http3Output.Complete(); + // Stream will be pooled after app completed. // Wait to signal app completed after any potential aborts on the stream. _appCompletedTaskSource.SetResult(null); diff --git a/src/Servers/Kestrel/Transport.Sockets/src/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.csproj b/src/Servers/Kestrel/Transport.Sockets/src/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.csproj index 9258e26fcba1..055f5f8e297e 100644 --- a/src/Servers/Kestrel/Transport.Sockets/src/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.csproj +++ b/src/Servers/Kestrel/Transport.Sockets/src/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.csproj @@ -44,5 +44,6 @@ + diff --git a/src/Servers/Kestrel/test/Interop.FunctionalTests/Http3/Http3RequestTests.cs b/src/Servers/Kestrel/test/Interop.FunctionalTests/Http3/Http3RequestTests.cs index 1c71550c2a68..180664d7c136 100644 --- a/src/Servers/Kestrel/test/Interop.FunctionalTests/Http3/Http3RequestTests.cs +++ b/src/Servers/Kestrel/test/Interop.FunctionalTests/Http3/Http3RequestTests.cs @@ -1,6 +1,7 @@ // Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. +using System.Buffers; using System.Diagnostics; using System.Diagnostics.Metrics; using System.Net; @@ -1143,6 +1144,137 @@ public async Task POST_Bidirectional_LargeData_Cancellation_Error(HttpProtocols } } + internal class MemoryPoolFeature : IMemoryPoolFeature + { + public MemoryPool MemoryPool { get; set; } + } + + [ConditionalTheory] + [MsQuicSupported] + [InlineData(HttpProtocols.Http3)] + [InlineData(HttpProtocols.Http2)] + public async Task ApplicationWriteWhenConnectionClosesPreservesMemory(HttpProtocols protocol) + { + // Arrange + var memoryPool = new DiagnosticMemoryPool(new PinnedBlockMemoryPool(), allowLateReturn: true); + + var writingTcs = new TaskCompletionSource(TaskCreationOptions.RunContinuationsAsynchronously); + var cancelTcs = new TaskCompletionSource(TaskCreationOptions.RunContinuationsAsynchronously); + var completionTcs = new TaskCompletionSource(TaskCreationOptions.RunContinuationsAsynchronously); + + var builder = CreateHostBuilder(async context => + { + try + { + var requestBody = context.Request.Body; + + await context.Response.BodyWriter.FlushAsync(); + + // Test relies on Htt2Stream/Http3Stream aborting the token after stopping Http2OutputProducer/Http3OutputProducer + // It's very fragile but it is sort of a best effort test anyways + // Additionally, Http2 schedules it's stopping, so doesn't directly do anything to the PipeWriter when calling stop on Http2OutputProducer + context.RequestAborted.Register(() => + { + cancelTcs.SetResult(); + }); + + while (true) + { + var memory = context.Response.BodyWriter.GetMemory(); + + // Unblock client-side to close the connection + writingTcs.TrySetResult(); + + await cancelTcs.Task; + + // Verify memory is still rented from the memory pool after the producer has been stopped + Assert.True(memoryPool.ContainsMemory(memory)); + + context.Response.BodyWriter.Advance(memory.Length); + var flushResult = await context.Response.BodyWriter.FlushAsync(); + + if (flushResult.IsCanceled || flushResult.IsCompleted) + { + break; + } + } + + completionTcs.SetResult(); + } + catch (Exception ex) + { + writingTcs.TrySetException(ex); + // Exceptions annoyingly don't show up on the client side when doing E2E + cancellation testing + // so we need to use a TCS to observe any unexpected errors + completionTcs.TrySetException(ex); + throw; + } + }, protocol: protocol, + configureKestrel: o => + { + o.Listen(IPAddress.Parse("127.0.0.1"), 0, listenOptions => + { + listenOptions.Protocols = protocol; + listenOptions.UseHttps(TestResources.GetTestCertificate()).Use(@delegate => + { + // Connection middleware for Http/1.1 and Http/2 + return (context) => + { + // Set the memory pool used by the connection so we can observe if memory from the PipeWriter is still rented from the pool + context.Features.Set(new MemoryPoolFeature() { MemoryPool = memoryPool }); + return @delegate(context); + }; + }); + + IMultiplexedConnectionBuilder multiplexedConnectionBuilder = listenOptions; + multiplexedConnectionBuilder.Use(@delegate => + { + // Connection middleware for Http/3 + return (context) => + { + // Set the memory pool used by the connection so we can observe if memory from the PipeWriter is still rented from the pool + context.Features.Set(new MemoryPoolFeature() { MemoryPool = memoryPool }); + return @delegate(context); + }; + }); + }); + }); + + var httpClientHandler = new HttpClientHandler(); + httpClientHandler.ServerCertificateCustomValidationCallback = HttpClientHandler.DangerousAcceptAnyServerCertificateValidator; + + using (var host = builder.Build()) + using (var client = new HttpClient(httpClientHandler)) + { + await host.StartAsync().DefaultTimeout(); + + var cts = new CancellationTokenSource(); + + var request = new HttpRequestMessage(HttpMethod.Post, $"https://127.0.0.1:{host.GetPort()}/"); + request.Version = GetProtocol(protocol); + request.VersionPolicy = HttpVersionPolicy.RequestVersionExact; + + // Act + var responseTask = client.SendAsync(request, HttpCompletionOption.ResponseHeadersRead); + + Logger.LogInformation("Client waiting for headers."); + var response = await responseTask.DefaultTimeout(); + await writingTcs.Task; + + Logger.LogInformation("Client canceled request."); + response.Dispose(); + + // Assert + await host.StopAsync().DefaultTimeout(); + + await completionTcs.Task; + + memoryPool.Dispose(); + + await memoryPool.WhenAllBlocksReturnedAsync(TimeSpan.FromSeconds(15)); + } + } + // Verify HTTP/2 and HTTP/3 match behavior [ConditionalTheory] [MsQuicSupported] diff --git a/src/Shared/Buffers.MemoryPool/DiagnosticMemoryPool.cs b/src/Shared/Buffers.MemoryPool/DiagnosticMemoryPool.cs index 5c7f2cd686ae..32e3ab4b2189 100644 --- a/src/Shared/Buffers.MemoryPool/DiagnosticMemoryPool.cs +++ b/src/Shared/Buffers.MemoryPool/DiagnosticMemoryPool.cs @@ -162,4 +162,27 @@ public async Task WhenAllBlocksReturnedAsync(TimeSpan timeout) await task; } + + public bool ContainsMemory(Memory memory) + { + lock (_syncObj) + { + foreach (var block in _blocks) + { + unsafe + { + fixed (byte* inUseMemoryPtr = memory.Span) + fixed (byte* beginPooledMemoryPtr = block.Memory.Span) + { + byte* endPooledMemoryPtr = beginPooledMemoryPtr + block.Memory.Length; + if (inUseMemoryPtr >= beginPooledMemoryPtr && inUseMemoryPtr < endPooledMemoryPtr) + { + return true; + } + } + } + } + return false; + } + } } From 41f1ec2243c96ee6f316cf6a714bfb2c426ff9b3 Mon Sep 17 00:00:00 2001 From: maestro-prod-Primary Date: Thu, 15 Aug 2024 18:35:58 +0000 Subject: [PATCH 02/11] Merged PR 41364: [internal/release/8.0] Update dependencies from dnceng/internal/dotnet-efcore, dnceng/internal/dotnet-runtime This pull request updates the following dependencies [marker]: <> (Begin:83131e87-e80d-4d5b-f426-08dbd53b3319) ## From https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - **Subscription**: 83131e87-e80d-4d5b-f426-08dbd53b3319 - **Build**: 20240813.10 - **Date Produced**: August 14, 2024 1:49:44 AM UTC - **Commit**: 778f78e8d112bd476109a4e3613eeb8edbfd380d - **Branch**: refs/heads/internal/release/8.0 [DependencyUpdate]: <> (Begin) - **Updates**: - **Microsoft.Extensions.HostFactoryResolver.Sources**: [from 8.0.9-servicing.24413.7 to 8.0.9-servicing.24413.10][10] - **Microsoft.Internal.Runtime.AspNetCore.Transport**: [from 8.0.9-servicing.24413.7 to 8.0.9-servicing.24413.10][10] - **Microsoft.NET.Runtime.MonoAOTCompiler.Task**: [from 8.0.9 to 8.0.9][10] - **Microsoft.NET.Runtime.WebAssembly.Sdk**: [from 8.0.9 to 8.0.9][10] - **Microsoft.NETCore.App.Ref**: [from 8.0.9 to 8.0.9][10] - **Microsoft.NETCore.App.Runtime.AOT.win-x64.Cross.browser-wasm**: [from 8.0.9 to 8.0.9][10] - **Microsoft.NETCore.App.Runtime.win-x64**: [from 8.0.9 to 8.0.9][10] - **Microsoft.NETCore.BrowserDebugHost.Transport**: [from 8.0.9-servicing.24413.7 to 8.0.9-servicing.24413.10][10] - **Microsoft.NETCore.Platforms**: [from 8.0.9-servicing.24413.7 to 8.0.9-servicing.24413.10][10] - **System.Diagnostics.EventLog**: [from 8.0.1 to 8.0.1][10] - **Microsoft.SourceBuild.Intermediate.runtime.linux-x64**: [from 8.0.9-servicing.24413.7 to 8.0.9-servicing.24413.10][10] [10]: https://dev.azure.com/dnceng/internal/_git/dotnet-runtime/branches?baseVersion=GC41657dc0011935cec29391daaa6371ca531bb355&targetVersion=GC778f78e8d112bd476109a4e3613eeb8edbfd380d&_a=files [DependencyUpdate]: <> (End) [marker]: <> (End:83131e87-e80d-4d5b-f426-08dbd53b3319) [marker]: <> (Begin:e179a2a7-bc5d-4498-2467-08dbd53ba9ce) ## From https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - **Subscription**: e179a2a7-bc5d-4498-2467-08dbd53ba9ce - **Build**: 20240815.2 - **Date Produced**: August 15, 2024 6:04:20 PM UTC - **Commit**: b3b11c6372e4738488d477cf532260bd49652c2a - **Branch**: refs/heads/internal/release/8.0 [DependencyUpdate]: <> (Begin) - **Updates**: - **dotnet-ef**: [from 8.0.9 to 8.0.9][12] - **Microsoft.EntityFrameworkCore**: [from 8.0.9 to 8.0.9][12] - **Microsoft.EntityFrameworkCore.Design**: [from 8.0.9 to 8.0.9][12] - **Microsoft.EntityFrameworkCore.InMemory**: [from 8.0.9 to 8.0.9][12] - **Microsoft.EntityFrameworkCore.Relational**: [from 8.0.9 to 8.0.9][12] - **Microsoft.EntityFrameworkCore.Sqlite**: [from 8.0.9 to 8.0.9][12] - **Microsoft.EntityFrameworkCore.SqlServer**: [from 8.0.9 to 8.0.9][12] - **Microsoft.EntityFrameworkCore.Tools**: [from 8.0.9 to 8.0.9][12] [12]: https://dev.azure.com/dnceng/internal/_git/dotnet-efcore/branches?baseVersion=GCbabff9f93b334a5627bafc936aedceb338c13bab&targetVersion=GCb3b11c6372e4738488d477cf532260bd49652c2a&_a=files [Dependenc... --- NuGet.config | 10 +++--- eng/Version.Details.xml | 78 ++++++++++++++++++++--------------------- eng/Versions.props | 38 ++++++++++---------- 3 files changed, 64 insertions(+), 62 deletions(-) diff --git a/NuGet.config b/NuGet.config index 1a455317c69c..e626dc2a10b6 100644 --- a/NuGet.config +++ b/NuGet.config @@ -6,15 +6,16 @@ - + + - + @@ -35,15 +36,16 @@ - + - + + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 92d64fac4478..4482bad0e1b1 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -9,37 +9,37 @@ --> - + https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - 90d079985f33ae91c05b98ecf65e0ce38270ba55 + b3b11c6372e4738488d477cf532260bd49652c2a - + https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - 90d079985f33ae91c05b98ecf65e0ce38270ba55 + b3b11c6372e4738488d477cf532260bd49652c2a - + https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - 90d079985f33ae91c05b98ecf65e0ce38270ba55 + b3b11c6372e4738488d477cf532260bd49652c2a - + https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - 90d079985f33ae91c05b98ecf65e0ce38270ba55 + b3b11c6372e4738488d477cf532260bd49652c2a - + https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - 90d079985f33ae91c05b98ecf65e0ce38270ba55 + b3b11c6372e4738488d477cf532260bd49652c2a - + https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - 90d079985f33ae91c05b98ecf65e0ce38270ba55 + b3b11c6372e4738488d477cf532260bd49652c2a - + https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - 90d079985f33ae91c05b98ecf65e0ce38270ba55 + b3b11c6372e4738488d477cf532260bd49652c2a - + https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - 90d079985f33ae91c05b98ecf65e0ce38270ba55 + b3b11c6372e4738488d477cf532260bd49652c2a https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -121,9 +121,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 08338fcaa5c9b9a8190abb99222fed12aaba956c + 778f78e8d112bd476109a4e3613eeb8edbfd380d https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -185,9 +185,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 08338fcaa5c9b9a8190abb99222fed12aaba956c + 778f78e8d112bd476109a4e3613eeb8edbfd380d https://github.com/dotnet/source-build-externals @@ -207,9 +207,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 2d7eea252964e69be94cb9c847b371b23e4dd470 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5535e31a712343a63f5d7d796cd874e563e5ac14 + 778f78e8d112bd476109a4e3613eeb8edbfd380d https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -225,7 +225,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 08338fcaa5c9b9a8190abb99222fed12aaba956c + 05e0f2d2c881def48961d3b83fa11ae84df8e534 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -275,17 +275,17 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 2aade6beb02ea367fd97c4070a4198802fe61c03 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 08338fcaa5c9b9a8190abb99222fed12aaba956c + 778f78e8d112bd476109a4e3613eeb8edbfd380d - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 08338fcaa5c9b9a8190abb99222fed12aaba956c + 778f78e8d112bd476109a4e3613eeb8edbfd380d - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 08338fcaa5c9b9a8190abb99222fed12aaba956c + 778f78e8d112bd476109a4e3613eeb8edbfd380d https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -316,22 +316,22 @@ Win-x64 is used here because we have picked an arbitrary runtime identifier to flow the version of the latest NETCore.App runtime. All Runtime.$rid packages should have the same version. --> - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 08338fcaa5c9b9a8190abb99222fed12aaba956c + 778f78e8d112bd476109a4e3613eeb8edbfd380d - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 08338fcaa5c9b9a8190abb99222fed12aaba956c + 778f78e8d112bd476109a4e3613eeb8edbfd380d - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 08338fcaa5c9b9a8190abb99222fed12aaba956c + 778f78e8d112bd476109a4e3613eeb8edbfd380d - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 08338fcaa5c9b9a8190abb99222fed12aaba956c + 778f78e8d112bd476109a4e3613eeb8edbfd380d https://github.com/dotnet/xdt @@ -368,9 +368,9 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 08338fcaa5c9b9a8190abb99222fed12aaba956c + 778f78e8d112bd476109a4e3613eeb8edbfd380d https://github.com/dotnet/winforms diff --git a/eng/Versions.props b/eng/Versions.props index 0bad19477ad8..02eda9b286be 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -67,12 +67,12 @@ 8.0.1 - 8.0.8 - 8.0.8 - 8.0.8 - 8.0.8 - 8.0.8 - 8.0.8-servicing.24366.12 + 8.0.9 + 8.0.9 + 8.0.9 + 8.0.9 + 8.0.9 + 8.0.9-servicing.24413.10 8.0.0 8.0.0 8.0.0 @@ -93,7 +93,7 @@ 8.0.0 8.0.0 8.0.0 - 8.0.8-servicing.24366.12 + 8.0.9-servicing.24413.10 8.0.0 8.0.0 8.0.0 @@ -109,10 +109,10 @@ 8.0.0 8.0.2 8.0.0 - 8.0.8-servicing.24366.12 + 8.0.9-servicing.24413.10 8.0.0 8.0.1 - 8.0.0 + 8.0.1 8.0.0 8.0.0-rtm.23520.14 8.0.0 @@ -129,9 +129,9 @@ 8.0.0 8.0.0 8.0.0 - 8.0.8-servicing.24366.12 + 8.0.9-servicing.24413.10 - 8.0.8-servicing.24366.12 + 8.0.9-servicing.24413.10 8.0.0 8.0.1 @@ -143,14 +143,14 @@ 8.1.0-preview.23604.1 8.1.0-preview.23604.1 - 8.0.8 - 8.0.8 - 8.0.8 - 8.0.8 - 8.0.8 - 8.0.8 - 8.0.8 - 8.0.8 + 8.0.9 + 8.0.9 + 8.0.9 + 8.0.9 + 8.0.9 + 8.0.9 + 8.0.9 + 8.0.9 4.8.0-3.23518.7 4.8.0-3.23518.7 From 23b93b402cc7df84a0a21b24d0f542a1dd3d96f2 Mon Sep 17 00:00:00 2001 From: maestro-prod-Primary Date: Fri, 16 Aug 2024 17:07:43 +0000 Subject: [PATCH 03/11] Merged PR 41781: [internal/release/8.0] Update dependencies from dnceng/internal/dotnet-efcore, dnceng/internal/dotnet-runtime This pull request updates the following dependencies [marker]: <> (Begin:83131e87-e80d-4d5b-f426-08dbd53b3319) ## From https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - **Subscription**: 83131e87-e80d-4d5b-f426-08dbd53b3319 - **Build**: 20240815.9 - **Date Produced**: August 16, 2024 2:25:38 AM UTC - **Commit**: 3c8202d88deea14a87c7665190286d2a67e464c0 - **Branch**: refs/heads/internal/release/8.0 [DependencyUpdate]: <> (Begin) - **Updates**: - **Microsoft.Extensions.HostFactoryResolver.Sources**: [from 8.0.9-servicing.24413.10 to 8.0.9-servicing.24415.9][1] - **Microsoft.Internal.Runtime.AspNetCore.Transport**: [from 8.0.9-servicing.24413.10 to 8.0.9-servicing.24415.9][1] - **Microsoft.NET.Runtime.MonoAOTCompiler.Task**: [from 8.0.9 to 8.0.9][1] - **Microsoft.NET.Runtime.WebAssembly.Sdk**: [from 8.0.9 to 8.0.9][1] - **Microsoft.NETCore.App.Ref**: [from 8.0.9 to 8.0.9][1] - **Microsoft.NETCore.App.Runtime.AOT.win-x64.Cross.browser-wasm**: [from 8.0.9 to 8.0.9][1] - **Microsoft.NETCore.App.Runtime.win-x64**: [from 8.0.9 to 8.0.9][1] - **Microsoft.NETCore.BrowserDebugHost.Transport**: [from 8.0.9-servicing.24413.10 to 8.0.9-servicing.24415.9][1] - **Microsoft.NETCore.Platforms**: [from 8.0.9-servicing.24413.10 to 8.0.9-servicing.24415.9][1] - **System.Diagnostics.EventLog**: [from 8.0.1 to 8.0.1][1] - **Microsoft.SourceBuild.Intermediate.runtime.linux-x64**: [from 8.0.9-servicing.24413.10 to 8.0.9-servicing.24415.9][1] [1]: https://dev.azure.com/dnceng/internal/_git/dotnet-runtime/branches?baseVersion=GC778f78e8d112bd476109a4e3613eeb8edbfd380d&targetVersion=GC3c8202d88deea14a87c7665190286d2a67e464c0&_a=files [DependencyUpdate]: <> (End) [marker]: <> (End:83131e87-e80d-4d5b-f426-08dbd53b3319) [marker]: <> (Begin:e179a2a7-bc5d-4498-2467-08dbd53ba9ce) ## From https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - **Subscription**: e179a2a7-bc5d-4498-2467-08dbd53ba9ce - **Build**: 20240816.1 - **Date Produced**: August 16, 2024 4:37:19 PM UTC - **Commit**: c740d3529b04a61639ea47307ad9924d739c73dd - **Branch**: refs/heads/internal/release/8.0 [DependencyUpdate]: <> (Begin) - **Updates**: - **dotnet-ef**: [from 8.0.9 to 8.0.9][2] - **Microsoft.EntityFrameworkCore**: [from 8.0.9 to 8.0.9][2] - **Microsoft.EntityFrameworkCore.Design**: [from 8.0.9 to 8.0.9][2] - **Microsoft.EntityFrameworkCore.InMemory**: [from 8.0.9 to 8.0.9][2] - **Microsoft.EntityFrameworkCore.Relational**: [from 8.0.9 to 8.0.9][2] - **Microsoft.EntityFrameworkCore.Sqlite**: [from 8.0.9 to 8.0.9][2] - **Microsoft.EntityFrameworkCore.SqlServer**: [from 8.0.9 to 8.0.9][2] - **Microsoft.EntityFrameworkCore.Tools**: [from 8.0.9 to 8.0.9][2] [2]: https://dev.azure.com/dnceng/internal/_git/dotnet-efcore/branches?baseVersion=GCb3b11c6372e4738488d477cf532260bd49652c2a&targetVersion=GCc740d3529b04a61639ea47307ad9924d739c73dd&_a=files [DependencyUpdate]: <> (End) [marker]... --- NuGet.config | 8 +++---- eng/Version.Details.xml | 48 ++++++++++++++++++++--------------------- eng/Versions.props | 10 ++++----- 3 files changed, 33 insertions(+), 33 deletions(-) diff --git a/NuGet.config b/NuGet.config index e626dc2a10b6..7bf7ffd67c8e 100644 --- a/NuGet.config +++ b/NuGet.config @@ -6,10 +6,10 @@ - + - + @@ -36,7 +36,7 @@ - + @@ -45,7 +45,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 4482bad0e1b1..cbf3c0963b02 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -11,35 +11,35 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - b3b11c6372e4738488d477cf532260bd49652c2a + c740d3529b04a61639ea47307ad9924d739c73dd https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - b3b11c6372e4738488d477cf532260bd49652c2a + c740d3529b04a61639ea47307ad9924d739c73dd https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - b3b11c6372e4738488d477cf532260bd49652c2a + c740d3529b04a61639ea47307ad9924d739c73dd https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - b3b11c6372e4738488d477cf532260bd49652c2a + c740d3529b04a61639ea47307ad9924d739c73dd https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - b3b11c6372e4738488d477cf532260bd49652c2a + c740d3529b04a61639ea47307ad9924d739c73dd https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - b3b11c6372e4738488d477cf532260bd49652c2a + c740d3529b04a61639ea47307ad9924d739c73dd https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - b3b11c6372e4738488d477cf532260bd49652c2a + c740d3529b04a61639ea47307ad9924d739c73dd https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - b3b11c6372e4738488d477cf532260bd49652c2a + c740d3529b04a61639ea47307ad9924d739c73dd https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -121,9 +121,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 778f78e8d112bd476109a4e3613eeb8edbfd380d + 3c8202d88deea14a87c7665190286d2a67e464c0 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -185,9 +185,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 778f78e8d112bd476109a4e3613eeb8edbfd380d + 3c8202d88deea14a87c7665190286d2a67e464c0 https://github.com/dotnet/source-build-externals @@ -209,7 +209,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 778f78e8d112bd476109a4e3613eeb8edbfd380d + 3c8202d88deea14a87c7665190286d2a67e464c0 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -277,15 +277,15 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 778f78e8d112bd476109a4e3613eeb8edbfd380d + 3c8202d88deea14a87c7665190286d2a67e464c0 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 778f78e8d112bd476109a4e3613eeb8edbfd380d + 3c8202d88deea14a87c7665190286d2a67e464c0 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 778f78e8d112bd476109a4e3613eeb8edbfd380d + 3c8202d88deea14a87c7665190286d2a67e464c0 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -318,20 +318,20 @@ --> https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 778f78e8d112bd476109a4e3613eeb8edbfd380d + 3c8202d88deea14a87c7665190286d2a67e464c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 778f78e8d112bd476109a4e3613eeb8edbfd380d + 3c8202d88deea14a87c7665190286d2a67e464c0 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 778f78e8d112bd476109a4e3613eeb8edbfd380d + 3c8202d88deea14a87c7665190286d2a67e464c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 778f78e8d112bd476109a4e3613eeb8edbfd380d + 3c8202d88deea14a87c7665190286d2a67e464c0 https://github.com/dotnet/xdt @@ -368,9 +368,9 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 778f78e8d112bd476109a4e3613eeb8edbfd380d + 3c8202d88deea14a87c7665190286d2a67e464c0 https://github.com/dotnet/winforms diff --git a/eng/Versions.props b/eng/Versions.props index 02eda9b286be..1ff173a1a502 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -72,7 +72,7 @@ 8.0.9 8.0.9 8.0.9 - 8.0.9-servicing.24413.10 + 8.0.9-servicing.24415.9 8.0.0 8.0.0 8.0.0 @@ -93,7 +93,7 @@ 8.0.0 8.0.0 8.0.0 - 8.0.9-servicing.24413.10 + 8.0.9-servicing.24415.9 8.0.0 8.0.0 8.0.0 @@ -109,7 +109,7 @@ 8.0.0 8.0.2 8.0.0 - 8.0.9-servicing.24413.10 + 8.0.9-servicing.24415.9 8.0.0 8.0.1 8.0.1 @@ -129,9 +129,9 @@ 8.0.0 8.0.0 8.0.0 - 8.0.9-servicing.24413.10 + 8.0.9-servicing.24415.9 - 8.0.9-servicing.24413.10 + 8.0.9-servicing.24415.9 8.0.0 8.0.1 From 928afb3520eef89dcbc52093691933e065408709 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 11 Sep 2024 20:13:56 +0000 Subject: [PATCH 04/11] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-efcore build 20240903.2 dotnet-ef , Microsoft.EntityFrameworkCore , Microsoft.EntityFrameworkCore.Design , Microsoft.EntityFrameworkCore.InMemory , Microsoft.EntityFrameworkCore.Relational , Microsoft.EntityFrameworkCore.Sqlite , Microsoft.EntityFrameworkCore.SqlServer , Microsoft.EntityFrameworkCore.Tools From Version 8.0.9 -> To Version 8.0.10 --- NuGet.config | 24 ++---------------------- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 3 files changed, 26 insertions(+), 46 deletions(-) diff --git a/NuGet.config b/NuGet.config index 0af842312855..c4d8cae5a352 100644 --- a/NuGet.config +++ b/NuGet.config @@ -6,17 +6,7 @@ - - - - - - - - - - - + @@ -46,17 +36,7 @@ - - - - - - - - - - - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 96a0f2a06a84..9e6417dc928f 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -9,37 +9,37 @@ --> - + https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - c740d3529b04a61639ea47307ad9924d739c73dd + 0ec1568e0aafd156ec04fd21f2d0f519b81f1be5 - + https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - c740d3529b04a61639ea47307ad9924d739c73dd + 0ec1568e0aafd156ec04fd21f2d0f519b81f1be5 - + https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - c740d3529b04a61639ea47307ad9924d739c73dd + 0ec1568e0aafd156ec04fd21f2d0f519b81f1be5 - + https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - c740d3529b04a61639ea47307ad9924d739c73dd + 0ec1568e0aafd156ec04fd21f2d0f519b81f1be5 - + https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - c740d3529b04a61639ea47307ad9924d739c73dd + 0ec1568e0aafd156ec04fd21f2d0f519b81f1be5 - + https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - c740d3529b04a61639ea47307ad9924d739c73dd + 0ec1568e0aafd156ec04fd21f2d0f519b81f1be5 - + https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - c740d3529b04a61639ea47307ad9924d739c73dd + 0ec1568e0aafd156ec04fd21f2d0f519b81f1be5 - + https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - c740d3529b04a61639ea47307ad9924d739c73dd + 0ec1568e0aafd156ec04fd21f2d0f519b81f1be5 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 00d51d2c3e50..86bca82d2b3b 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -143,14 +143,14 @@ 8.1.0-preview.23604.1 8.1.0-preview.23604.1 - 8.0.9 - 8.0.9 - 8.0.9 - 8.0.9 - 8.0.9 - 8.0.9 - 8.0.9 - 8.0.9 + 8.0.10 + 8.0.10 + 8.0.10 + 8.0.10 + 8.0.10 + 8.0.10 + 8.0.10 + 8.0.10 4.8.0-3.23518.7 4.8.0-3.23518.7 From ee0cfa4e89a132b31905f8bfba59e852536b17c8 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 11 Sep 2024 20:19:56 +0000 Subject: [PATCH 05/11] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-runtime build 20240909.10 Microsoft.Extensions.DependencyModel , Microsoft.Extensions.HostFactoryResolver.Sources , Microsoft.Internal.Runtime.AspNetCore.Transport , Microsoft.NET.Runtime.MonoAOTCompiler.Task , Microsoft.NET.Runtime.WebAssembly.Sdk , Microsoft.NETCore.App.Ref , Microsoft.NETCore.App.Runtime.AOT.win-x64.Cross.browser-wasm , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.BrowserDebugHost.Transport , Microsoft.NETCore.Platforms , System.Diagnostics.EventLog , System.Text.Json , Microsoft.SourceBuild.Intermediate.runtime.linux-x64 From Version 8.0.1 -> To Version 8.0.2 --- NuGet.config | 4 ++-- eng/Version.Details.xml | 50 ++++++++++++++++++++--------------------- eng/Versions.props | 24 ++++++++++---------- 3 files changed, 39 insertions(+), 39 deletions(-) diff --git a/NuGet.config b/NuGet.config index c4d8cae5a352..f6702eda3288 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,7 +9,7 @@ - + @@ -45,7 +45,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 9e6417dc928f..8f61b34b53f7 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -121,9 +121,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 3c8202d88deea14a87c7665190286d2a67e464c0 + 7dc1560dfb4ff946388512ef439fcb44f294b32a https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -185,9 +185,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 3c8202d88deea14a87c7665190286d2a67e464c0 + 7dc1560dfb4ff946388512ef439fcb44f294b32a https://github.com/dotnet/source-build-externals @@ -209,7 +209,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 3c8202d88deea14a87c7665190286d2a67e464c0 + 7dc1560dfb4ff946388512ef439fcb44f294b32a https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -255,9 +255,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 2aade6beb02ea367fd97c4070a4198802fe61c03 + 7dc1560dfb4ff946388512ef439fcb44f294b32a https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -271,21 +271,21 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 2aade6beb02ea367fd97c4070a4198802fe61c03 + 7dc1560dfb4ff946388512ef439fcb44f294b32a - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 3c8202d88deea14a87c7665190286d2a67e464c0 + 7dc1560dfb4ff946388512ef439fcb44f294b32a - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 3c8202d88deea14a87c7665190286d2a67e464c0 + 7dc1560dfb4ff946388512ef439fcb44f294b32a - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 3c8202d88deea14a87c7665190286d2a67e464c0 + 7dc1560dfb4ff946388512ef439fcb44f294b32a https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -316,22 +316,22 @@ Win-x64 is used here because we have picked an arbitrary runtime identifier to flow the version of the latest NETCore.App runtime. All Runtime.$rid packages should have the same version. --> - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 3c8202d88deea14a87c7665190286d2a67e464c0 + 7dc1560dfb4ff946388512ef439fcb44f294b32a - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 3c8202d88deea14a87c7665190286d2a67e464c0 + 7dc1560dfb4ff946388512ef439fcb44f294b32a - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 3c8202d88deea14a87c7665190286d2a67e464c0 + 7dc1560dfb4ff946388512ef439fcb44f294b32a - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 3c8202d88deea14a87c7665190286d2a67e464c0 + 7dc1560dfb4ff946388512ef439fcb44f294b32a https://github.com/dotnet/xdt @@ -368,9 +368,9 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 3c8202d88deea14a87c7665190286d2a67e464c0 + 7dc1560dfb4ff946388512ef439fcb44f294b32a https://github.com/dotnet/winforms diff --git a/eng/Versions.props b/eng/Versions.props index 86bca82d2b3b..3040716f21ad 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -66,13 +66,13 @@ --> - 8.0.1 - 8.0.9 - 8.0.9 - 8.0.9 - 8.0.9 - 8.0.9 - 8.0.9-servicing.24415.9 + 8.0.2 + 8.0.10 + 8.0.10 + 8.0.10 + 8.0.10 + 8.0.10 + 8.0.10-servicing.24459.10 8.0.0 8.0.0 8.0.0 @@ -93,7 +93,7 @@ 8.0.0 8.0.0 8.0.0 - 8.0.9-servicing.24415.9 + 8.0.10-servicing.24459.10 8.0.0 8.0.0 8.0.0 @@ -109,7 +109,7 @@ 8.0.0 8.0.2 8.0.0 - 8.0.9-servicing.24415.9 + 8.0.10-servicing.24459.10 8.0.0 8.0.1 8.0.1 @@ -125,13 +125,13 @@ 8.0.0 8.0.0 8.0.0 - 8.0.4 + 8.0.5 8.0.0 8.0.0 8.0.0 - 8.0.9-servicing.24415.9 + 8.0.10-servicing.24459.10 - 8.0.9-servicing.24415.9 + 8.0.10-servicing.24459.10 8.0.0 8.0.1 From 6cd9f8d1cf78e8432afe1dd7e4b89b8a1f9b4179 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 11 Sep 2024 23:24:44 +0000 Subject: [PATCH 06/11] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-efcore build 20240911.2 dotnet-ef , Microsoft.EntityFrameworkCore , Microsoft.EntityFrameworkCore.Design , Microsoft.EntityFrameworkCore.InMemory , Microsoft.EntityFrameworkCore.Relational , Microsoft.EntityFrameworkCore.Sqlite , Microsoft.EntityFrameworkCore.SqlServer , Microsoft.EntityFrameworkCore.Tools From Version 8.0.10 -> To Version 8.0.10 --- NuGet.config | 4 ++-- eng/Version.Details.xml | 16 ++++++++-------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/NuGet.config b/NuGet.config index f6702eda3288..9352f6eb1be6 100644 --- a/NuGet.config +++ b/NuGet.config @@ -6,7 +6,7 @@ - + @@ -36,7 +36,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 8f61b34b53f7..2ef27d668384 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -11,35 +11,35 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - 0ec1568e0aafd156ec04fd21f2d0f519b81f1be5 + cd3befe3d90b91bade678755eae670138a7e9745 https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - 0ec1568e0aafd156ec04fd21f2d0f519b81f1be5 + cd3befe3d90b91bade678755eae670138a7e9745 https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - 0ec1568e0aafd156ec04fd21f2d0f519b81f1be5 + cd3befe3d90b91bade678755eae670138a7e9745 https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - 0ec1568e0aafd156ec04fd21f2d0f519b81f1be5 + cd3befe3d90b91bade678755eae670138a7e9745 https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - 0ec1568e0aafd156ec04fd21f2d0f519b81f1be5 + cd3befe3d90b91bade678755eae670138a7e9745 https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - 0ec1568e0aafd156ec04fd21f2d0f519b81f1be5 + cd3befe3d90b91bade678755eae670138a7e9745 https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - 0ec1568e0aafd156ec04fd21f2d0f519b81f1be5 + cd3befe3d90b91bade678755eae670138a7e9745 https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - 0ec1568e0aafd156ec04fd21f2d0f519b81f1be5 + cd3befe3d90b91bade678755eae670138a7e9745 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime From 1774a054e71cba09daa783a025b600e5590846a2 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Thu, 12 Sep 2024 17:43:14 +0000 Subject: [PATCH 07/11] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-runtime build 20240911.12 Microsoft.Extensions.Caching.Memory , Microsoft.Extensions.Configuration.Json , Microsoft.Extensions.Configuration.UserSecrets , Microsoft.Extensions.Configuration.Xml , Microsoft.Extensions.DependencyInjection , Microsoft.Extensions.DependencyInjection.Abstractions , Microsoft.Extensions.DependencyModel , Microsoft.Extensions.Diagnostics , Microsoft.Extensions.Diagnostics.Abstractions , Microsoft.Extensions.HostFactoryResolver.Sources , Microsoft.Extensions.Hosting , Microsoft.Extensions.Hosting.Abstractions , Microsoft.Extensions.Http , Microsoft.Extensions.Logging , Microsoft.Extensions.Logging.Abstractions , Microsoft.Extensions.Logging.Configuration , Microsoft.Extensions.Logging.Console , Microsoft.Extensions.Logging.Debug , Microsoft.Extensions.Logging.EventLog , Microsoft.Extensions.Logging.EventSource , Microsoft.Extensions.Logging.TraceSource , Microsoft.Internal.Runtime.AspNetCore.Transport , Microsoft.NET.Runtime.MonoAOTCompiler.Task , Microsoft.NET.Runtime.WebAssembly.Sdk , Microsoft.NETCore.App.Ref , Microsoft.NETCore.App.Runtime.AOT.win-x64.Cross.browser-wasm , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.BrowserDebugHost.Transport , Microsoft.NETCore.Platforms , System.Configuration.ConfigurationManager , System.Diagnostics.PerformanceCounter , System.Net.Http.Json , System.Reflection.Metadata , System.Runtime.Caching , System.Security.Cryptography.Pkcs , System.Security.Cryptography.Xml , System.ServiceProcess.ServiceController , System.Text.Json , Microsoft.SourceBuild.Intermediate.runtime.linux-x64 From Version 8.0.0 -> To Version 8.0.1 --- NuGet.config | 2 + eng/Version.Details.xml | 142 ++++++++++++++++++++-------------------- eng/Versions.props | 64 +++++++++--------- 3 files changed, 105 insertions(+), 103 deletions(-) diff --git a/NuGet.config b/NuGet.config index 9352f6eb1be6..ae27b12ccb87 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,6 +9,7 @@ + @@ -46,6 +47,7 @@ + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 2ef27d668384..87a1a0cd2778 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -45,9 +45,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5535e31a712343a63f5d7d796cd874e563e5ac14 + a8108c906081c3c0198f250fb210c1dd275b2f01 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -73,37 +73,37 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5535e31a712343a63f5d7d796cd874e563e5ac14 + a8108c906081c3c0198f250fb210c1dd275b2f01 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5535e31a712343a63f5d7d796cd874e563e5ac14 + a8108c906081c3c0198f250fb210c1dd275b2f01 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5535e31a712343a63f5d7d796cd874e563e5ac14 + a8108c906081c3c0198f250fb210c1dd275b2f01 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 9f4b1f5d664afdfc80e1508ab7ed099dff210fbd + a8108c906081c3c0198f250fb210c1dd275b2f01 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5535e31a712343a63f5d7d796cd874e563e5ac14 + a8108c906081c3c0198f250fb210c1dd275b2f01 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5535e31a712343a63f5d7d796cd874e563e5ac14 + a8108c906081c3c0198f250fb210c1dd275b2f01 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5535e31a712343a63f5d7d796cd874e563e5ac14 + a8108c906081c3c0198f250fb210c1dd275b2f01 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -121,53 +121,53 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 7dc1560dfb4ff946388512ef439fcb44f294b32a + a8108c906081c3c0198f250fb210c1dd275b2f01 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5535e31a712343a63f5d7d796cd874e563e5ac14 + a8108c906081c3c0198f250fb210c1dd275b2f01 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5535e31a712343a63f5d7d796cd874e563e5ac14 + a8108c906081c3c0198f250fb210c1dd275b2f01 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5535e31a712343a63f5d7d796cd874e563e5ac14 + a8108c906081c3c0198f250fb210c1dd275b2f01 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 9f4b1f5d664afdfc80e1508ab7ed099dff210fbd + a8108c906081c3c0198f250fb210c1dd275b2f01 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5535e31a712343a63f5d7d796cd874e563e5ac14 + a8108c906081c3c0198f250fb210c1dd275b2f01 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5535e31a712343a63f5d7d796cd874e563e5ac14 + a8108c906081c3c0198f250fb210c1dd275b2f01 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5535e31a712343a63f5d7d796cd874e563e5ac14 + a8108c906081c3c0198f250fb210c1dd275b2f01 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5535e31a712343a63f5d7d796cd874e563e5ac14 + a8108c906081c3c0198f250fb210c1dd275b2f01 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5535e31a712343a63f5d7d796cd874e563e5ac14 + a8108c906081c3c0198f250fb210c1dd275b2f01 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5535e31a712343a63f5d7d796cd874e563e5ac14 + a8108c906081c3c0198f250fb210c1dd275b2f01 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5535e31a712343a63f5d7d796cd874e563e5ac14 + a8108c906081c3c0198f250fb210c1dd275b2f01 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -185,9 +185,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 7dc1560dfb4ff946388512ef439fcb44f294b32a + a8108c906081c3c0198f250fb210c1dd275b2f01 https://github.com/dotnet/source-build-externals @@ -199,9 +199,9 @@ 27e584661980ee6d82c419a2a471ae505b7d122e - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5535e31a712343a63f5d7d796cd874e563e5ac14 + a8108c906081c3c0198f250fb210c1dd275b2f01 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -219,37 +219,37 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5535e31a712343a63f5d7d796cd874e563e5ac14 + a8108c906081c3c0198f250fb210c1dd275b2f01 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 05e0f2d2c881def48961d3b83fa11ae84df8e534 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5535e31a712343a63f5d7d796cd874e563e5ac14 + a8108c906081c3c0198f250fb210c1dd275b2f01 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5535e31a712343a63f5d7d796cd874e563e5ac14 + a8108c906081c3c0198f250fb210c1dd275b2f01 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 2aade6beb02ea367fd97c4070a4198802fe61c03 + a8108c906081c3c0198f250fb210c1dd275b2f01 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5535e31a712343a63f5d7d796cd874e563e5ac14 + a8108c906081c3c0198f250fb210c1dd275b2f01 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -257,7 +257,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 7dc1560dfb4ff946388512ef439fcb44f294b32a + a8108c906081c3c0198f250fb210c1dd275b2f01 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -273,19 +273,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 7dc1560dfb4ff946388512ef439fcb44f294b32a + a8108c906081c3c0198f250fb210c1dd275b2f01 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 7dc1560dfb4ff946388512ef439fcb44f294b32a + a8108c906081c3c0198f250fb210c1dd275b2f01 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 7dc1560dfb4ff946388512ef439fcb44f294b32a + a8108c906081c3c0198f250fb210c1dd275b2f01 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 7dc1560dfb4ff946388512ef439fcb44f294b32a + a8108c906081c3c0198f250fb210c1dd275b2f01 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -300,17 +300,17 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5535e31a712343a63f5d7d796cd874e563e5ac14 + a8108c906081c3c0198f250fb210c1dd275b2f01 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5535e31a712343a63f5d7d796cd874e563e5ac14 + a8108c906081c3c0198f250fb210c1dd275b2f01 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 7dc1560dfb4ff946388512ef439fcb44f294b32a + a8108c906081c3c0198f250fb210c1dd275b2f01 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 7dc1560dfb4ff946388512ef439fcb44f294b32a + a8108c906081c3c0198f250fb210c1dd275b2f01 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 7dc1560dfb4ff946388512ef439fcb44f294b32a + a8108c906081c3c0198f250fb210c1dd275b2f01 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 7dc1560dfb4ff946388512ef439fcb44f294b32a + a8108c906081c3c0198f250fb210c1dd275b2f01 https://github.com/dotnet/xdt @@ -368,9 +368,9 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 7dc1560dfb4ff946388512ef439fcb44f294b32a + a8108c906081c3c0198f250fb210c1dd275b2f01 https://github.com/dotnet/winforms diff --git a/eng/Versions.props b/eng/Versions.props index 3040716f21ad..39260a61309d 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -72,73 +72,73 @@ 8.0.10 8.0.10 8.0.10 - 8.0.10-servicing.24459.10 + 8.0.10-servicing.24461.12 8.0.0 - 8.0.0 + 8.0.1 8.0.0 8.0.2 8.0.0 8.0.0 8.0.1 8.0.0 - 8.0.0 + 8.0.1 8.0.0 - 8.0.0 - 8.0.0 - 8.0.1 - 8.0.0 - 8.0.0 - 8.0.0 + 8.0.1 + 8.0.1 + 8.0.2 + 8.0.1 + 8.0.1 + 8.0.1 8.0.0 8.0.0 8.0.0 8.0.0 - 8.0.10-servicing.24459.10 - 8.0.0 - 8.0.0 - 8.0.0 - 8.0.1 - 8.0.0 - 8.0.0 - 8.0.0 - 8.0.0 - 8.0.0 - 8.0.0 - 8.0.0 + 8.0.10-servicing.24461.12 + 8.0.1 + 8.0.1 + 8.0.1 + 8.0.2 + 8.0.1 + 8.0.1 + 8.0.1 + 8.0.1 + 8.0.1 + 8.0.1 + 8.0.1 8.0.0 8.0.0 8.0.2 8.0.0 - 8.0.10-servicing.24459.10 - 8.0.0 + 8.0.10-servicing.24461.12 + 8.0.1 8.0.1 8.0.1 8.0.0 8.0.0-rtm.23520.14 8.0.0 - 8.0.0 + 8.0.1 8.0.2 - 8.0.0 + 8.0.1 8.0.0 - 8.0.0 - 8.0.1 + 8.0.1 + 8.0.2 8.0.0 - 8.0.0 + 8.0.1 8.0.0 8.0.5 8.0.0 8.0.0 8.0.0 - 8.0.10-servicing.24459.10 + 8.0.10-servicing.24461.12 - 8.0.10-servicing.24459.10 + 8.0.10-servicing.24461.12 8.0.0 8.0.1 8.0.0 - 8.0.0 + 8.0.1 8.0.0 - 8.0.0 + 8.0.1 8.1.0-preview.23604.1 8.1.0-preview.23604.1 From 704e1a15f2dd488d7b80dffc20eae8f76a0061f9 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Thu, 12 Sep 2024 21:56:09 +0000 Subject: [PATCH 08/11] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-efcore build 20240912.5 dotnet-ef , Microsoft.EntityFrameworkCore , Microsoft.EntityFrameworkCore.Design , Microsoft.EntityFrameworkCore.InMemory , Microsoft.EntityFrameworkCore.Relational , Microsoft.EntityFrameworkCore.Sqlite , Microsoft.EntityFrameworkCore.SqlServer , Microsoft.EntityFrameworkCore.Tools From Version 8.0.10 -> To Version 8.0.10 --- NuGet.config | 4 ++-- eng/Version.Details.xml | 16 ++++++++-------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/NuGet.config b/NuGet.config index ae27b12ccb87..67ad9f2c161b 100644 --- a/NuGet.config +++ b/NuGet.config @@ -6,7 +6,7 @@ - + @@ -37,7 +37,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 87a1a0cd2778..e10c3632082c 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -11,35 +11,35 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - cd3befe3d90b91bade678755eae670138a7e9745 + f17955cf503646f41852d32ffab1e41b0d273adc https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - cd3befe3d90b91bade678755eae670138a7e9745 + f17955cf503646f41852d32ffab1e41b0d273adc https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - cd3befe3d90b91bade678755eae670138a7e9745 + f17955cf503646f41852d32ffab1e41b0d273adc https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - cd3befe3d90b91bade678755eae670138a7e9745 + f17955cf503646f41852d32ffab1e41b0d273adc https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - cd3befe3d90b91bade678755eae670138a7e9745 + f17955cf503646f41852d32ffab1e41b0d273adc https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - cd3befe3d90b91bade678755eae670138a7e9745 + f17955cf503646f41852d32ffab1e41b0d273adc https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - cd3befe3d90b91bade678755eae670138a7e9745 + f17955cf503646f41852d32ffab1e41b0d273adc https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - cd3befe3d90b91bade678755eae670138a7e9745 + f17955cf503646f41852d32ffab1e41b0d273adc https://dev.azure.com/dnceng/internal/_git/dotnet-runtime From e21371388879fd8762e0043a825a1ab77901fe66 Mon Sep 17 00:00:00 2001 From: maestro-prod-Primary Date: Tue, 17 Sep 2024 23:35:37 +0000 Subject: [PATCH 09/11] Merged PR 42964: [internal/release/8.0] Update dependencies from dnceng/internal/dotnet-runtime This pull request updates the following dependencies [marker]: <> (Begin:83131e87-e80d-4d5b-f426-08dbd53b3319) ## From https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - **Subscription**: 83131e87-e80d-4d5b-f426-08dbd53b3319 - **Build**: 20240916.10 - **Date Produced**: September 17, 2024 10:28:54 PM UTC - **Commit**: 81cabf2857a01351e5ab578947c7403a5b128ad1 - **Branch**: refs/heads/internal/release/8.0 [DependencyUpdate]: <> (Begin) - **Updates**: - **Microsoft.Extensions.Caching.Memory**: [from 8.0.1 to 8.0.1][1] - **Microsoft.Extensions.Configuration.Json**: [from 8.0.1 to 8.0.1][1] - **Microsoft.Extensions.Configuration.UserSecrets**: [from 8.0.1 to 8.0.1][1] - **Microsoft.Extensions.Configuration.Xml**: [from 8.0.1 to 8.0.1][1] - **Microsoft.Extensions.DependencyInjection**: [from 8.0.1 to 8.0.1][1] - **Microsoft.Extensions.DependencyInjection.Abstractions**: [from 8.0.2 to 8.0.2][1] - **Microsoft.Extensions.DependencyModel**: [from 8.0.2 to 8.0.2][1] - **Microsoft.Extensions.Diagnostics**: [from 8.0.1 to 8.0.1][1] - **Microsoft.Extensions.Diagnostics.Abstractions**: [from 8.0.1 to 8.0.1][1] - **Microsoft.Extensions.HostFactoryResolver.Sources**: [from 8.0.10-servicing.24461.12 to 8.0.10-servicing.24466.10][1] - **Microsoft.Extensions.Hosting**: [from 8.0.1 to 8.0.1][1] - **Microsoft.Extensions.Hosting.Abstractions**: [from 8.0.1 to 8.0.1][1] - **Microsoft.Extensions.Http**: [from 8.0.1 to 8.0.1][1] - **Microsoft.Extensions.Logging**: [from 8.0.1 to 8.0.1][1] - **Microsoft.Extensions.Logging.Abstractions**: [from 8.0.2 to 8.0.2][1] - **Microsoft.Extensions.Logging.Configuration**: [from 8.0.1 to 8.0.1][1] - **Microsoft.Extensions.Logging.Console**: [from 8.0.1 to 8.0.1][1] - **Microsoft.Extensions.Logging.Debug**: [from 8.0.1 to 8.0.1][1] - **Microsoft.Extensions.Logging.EventLog**: [from 8.0.1 to 8.0.1][1] - **Microsoft.Extensions.Logging.EventSource**: [from 8.0.1 to 8.0.1][1] - **Microsoft.Extensions.Logging.TraceSource**: [from 8.0.1 to 8.0.1][1] - **Microsoft.Internal.Runtime.AspNetCore.Transport**: [from 8.0.10-servicing.24461.12 to 8.0.10-servicing.24466.10][1] - **Microsoft.NET.Runtime.MonoAOTCompiler.Task**: [from 8.0.10 to 8.0.10][1] - **Microsoft.NET.Runtime.WebAssembly.Sdk**: [from 8.0.10 to 8.0.10][1] - **Microsoft.NETCore.App.Ref**: [from 8.0.10 to 8.0.10][1] - **Microsoft.NETCore.App.Runtime.AOT.win-x64.Cross.browser-wasm**: [from 8.0.10 to 8.0.10][1] - **Microsoft.NETCore.App.Runtime.win-x64**: [from 8.0.10 to 8.0.10][1] - **Microsoft.NETCore.BrowserDebugHost.Transport**: [from 8.0.10-servicing.24461.12 to 8.0.10-servicing.24466.10][1] - **Microsoft.NETCore.Platforms**: [from 8.0.10-servicing.24461.12 to 8.0.10-servicing.24466.10][1] - **System.Configuration.ConfigurationManager**: [from 8.0.1 to 8.0.1][1] - **System.Diagnostics.EventLog**: [from 8.0.1 to 8.0.1][2] - **System.Diagnostics.PerformanceCounter**... --- NuGet.config | 6 +-- eng/Version.Details.xml | 90 ++++++++++++++++++++--------------------- eng/Versions.props | 10 ++--- 3 files changed, 52 insertions(+), 54 deletions(-) diff --git a/NuGet.config b/NuGet.config index 67ad9f2c161b..61f253a8e436 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,8 +9,7 @@ - - + @@ -46,8 +45,7 @@ - - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index e10c3632082c..fff020b10f55 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -47,7 +47,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -75,15 +75,15 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -91,19 +91,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -121,53 +121,53 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -185,9 +185,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://github.com/dotnet/source-build-externals @@ -201,7 +201,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -209,7 +209,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 7dc1560dfb4ff946388512ef439fcb44f294b32a + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -221,7 +221,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -229,7 +229,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -237,11 +237,11 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -249,7 +249,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -257,7 +257,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -273,19 +273,19 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -302,7 +302,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -310,7 +310,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://github.com/dotnet/xdt @@ -368,9 +368,9 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://github.com/dotnet/winforms diff --git a/eng/Versions.props b/eng/Versions.props index 39260a61309d..02c0d42b1a5d 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -72,7 +72,7 @@ 8.0.10 8.0.10 8.0.10 - 8.0.10-servicing.24461.12 + 8.0.10-servicing.24466.10 8.0.0 8.0.1 8.0.0 @@ -93,7 +93,7 @@ 8.0.0 8.0.0 8.0.0 - 8.0.10-servicing.24461.12 + 8.0.10-servicing.24466.10 8.0.1 8.0.1 8.0.1 @@ -109,7 +109,7 @@ 8.0.0 8.0.2 8.0.0 - 8.0.10-servicing.24461.12 + 8.0.10-servicing.24466.10 8.0.1 8.0.1 8.0.1 @@ -129,9 +129,9 @@ 8.0.0 8.0.0 8.0.0 - 8.0.10-servicing.24461.12 + 8.0.10-servicing.24466.10 - 8.0.10-servicing.24461.12 + 8.0.10-servicing.24466.10 8.0.0 8.0.1 From c2a442982e736e17ae6bcadbfd8ccba278ee1be6 Mon Sep 17 00:00:00 2001 From: maestro-prod-Primary Date: Wed, 18 Sep 2024 18:11:00 +0000 Subject: [PATCH 10/11] Merged PR 42968: [internal/release/8.0] Update dependencies from dnceng/internal/dotnet-efcore This pull request updates the following dependencies [marker]: <> (Begin:e179a2a7-bc5d-4498-2467-08dbd53ba9ce) ## From https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - **Subscription**: e179a2a7-bc5d-4498-2467-08dbd53ba9ce - **Build**: 20240917.8 - **Date Produced**: September 18, 2024 4:20:27 AM UTC - **Commit**: 4315fa43c9573671f8f5be21497d59f9c99cd829 - **Branch**: refs/heads/internal/release/8.0 [DependencyUpdate]: <> (Begin) - **Updates**: - **dotnet-ef**: [from 8.0.10 to 8.0.10][1] - **Microsoft.EntityFrameworkCore**: [from 8.0.10 to 8.0.10][1] - **Microsoft.EntityFrameworkCore.Design**: [from 8.0.10 to 8.0.10][1] - **Microsoft.EntityFrameworkCore.InMemory**: [from 8.0.10 to 8.0.10][1] - **Microsoft.EntityFrameworkCore.Relational**: [from 8.0.10 to 8.0.10][1] - **Microsoft.EntityFrameworkCore.Sqlite**: [from 8.0.10 to 8.0.10][1] - **Microsoft.EntityFrameworkCore.SqlServer**: [from 8.0.10 to 8.0.10][1] - **Microsoft.EntityFrameworkCore.Tools**: [from 8.0.10 to 8.0.10][1] [1]: https://dev.azure.com/dnceng/internal/_git/dotnet-efcore/branches?baseVersion=GCf17955cf503646f41852d32ffab1e41b0d273adc&targetVersion=GC4315fa43c9573671f8f5be21497d59f9c99cd829&_a=files [DependencyUpdate]: <> (End) [marker]: <> (End:e179a2a7-bc5d-4498-2467-08dbd53ba9ce) --- NuGet.config | 4 ++-- eng/Version.Details.xml | 16 ++++++++-------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/NuGet.config b/NuGet.config index 61f253a8e436..1ccd39949f02 100644 --- a/NuGet.config +++ b/NuGet.config @@ -6,7 +6,7 @@ - + @@ -36,7 +36,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index fff020b10f55..830dd83228e5 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -11,35 +11,35 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - f17955cf503646f41852d32ffab1e41b0d273adc + 4315fa43c9573671f8f5be21497d59f9c99cd829 https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - f17955cf503646f41852d32ffab1e41b0d273adc + 4315fa43c9573671f8f5be21497d59f9c99cd829 https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - f17955cf503646f41852d32ffab1e41b0d273adc + 4315fa43c9573671f8f5be21497d59f9c99cd829 https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - f17955cf503646f41852d32ffab1e41b0d273adc + 4315fa43c9573671f8f5be21497d59f9c99cd829 https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - f17955cf503646f41852d32ffab1e41b0d273adc + 4315fa43c9573671f8f5be21497d59f9c99cd829 https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - f17955cf503646f41852d32ffab1e41b0d273adc + 4315fa43c9573671f8f5be21497d59f9c99cd829 https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - f17955cf503646f41852d32ffab1e41b0d273adc + 4315fa43c9573671f8f5be21497d59f9c99cd829 https://dev.azure.com/dnceng/internal/_git/dotnet-efcore - f17955cf503646f41852d32ffab1e41b0d273adc + 4315fa43c9573671f8f5be21497d59f9c99cd829 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime From 45781b9140ac29edcc96327e91eda39b1fd01ad1 Mon Sep 17 00:00:00 2001 From: wtgodbe Date: Tue, 8 Oct 2024 10:56:25 -0700 Subject: [PATCH 11/11] Update baseline, SDK --- eng/Baseline.Designer.props | 602 ++++++++++++++++++------------------ eng/Baseline.xml | 212 ++++++------- eng/Versions.props | 2 +- global.json | 4 +- 4 files changed, 410 insertions(+), 410 deletions(-) diff --git a/eng/Baseline.Designer.props b/eng/Baseline.Designer.props index fdced6323d23..d0138a65e8de 100644 --- a/eng/Baseline.Designer.props +++ b/eng/Baseline.Designer.props @@ -2,117 +2,117 @@ $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - 8.0.8 + 8.0.10 - 8.0.8 + 8.0.10 - 8.0.8 + 8.0.10 - 8.0.8 + 8.0.10 - 8.0.8 + 8.0.10 - 8.0.8 + 8.0.10 - 8.0.8 + 8.0.10 - 8.0.8 + 8.0.10 - 8.0.8 + 8.0.10 - 8.0.8 + 8.0.10 - 8.0.8 + 8.0.10 - 8.0.8 + 8.0.10 - 8.0.8 + 8.0.10 - 8.0.8 + 8.0.10 - 8.0.8 + 8.0.10 - 8.0.8 + 8.0.10 - 8.0.8 + 8.0.10 - + - 8.0.8 + 8.0.10 - 8.0.8 + 8.0.10 - 8.0.8 + 8.0.10 - 8.0.8 + 8.0.10 - 8.0.8 + 8.0.10 - - + + - 8.0.8 + 8.0.10 - 8.0.8 + 8.0.10 - 8.0.8 + 8.0.10 @@ -120,281 +120,281 @@ - 8.0.8 + 8.0.10 - - + + - - + + - - + + - 8.0.8 + 8.0.10 - + - + - 8.0.8 + 8.0.10 - 8.0.8 + 8.0.10 - + - 8.0.8 + 8.0.10 - - + + - 8.0.8 + 8.0.10 - 8.0.8 + 8.0.10 - - + + - 8.0.8 + 8.0.10 - + - 8.0.8 + 8.0.10 - + - 8.0.8 + 8.0.10 - + - 8.0.8 + 8.0.10 - - + + - 8.0.8 + 8.0.10 - - - - + + + + - 8.0.8 + 8.0.10 - - + + - - + + - 8.0.8 + 8.0.10 - - + + - 8.0.8 + 8.0.10 - 8.0.8 + 8.0.10 - 8.0.8 + 8.0.10 - - + + - + - + - 8.0.8 + 8.0.10 - + - 8.0.8 + 8.0.10 - + - + - + - + - 8.0.8 + 8.0.10 - 8.0.8 + 8.0.10 - + - + - + - 8.0.8 + 8.0.10 - - - - - + + + + + - + - - - - - + + + + + - + - - - - - + + + + + - + - 8.0.8 + 8.0.10 - 8.0.8 + 8.0.10 - - + + - 8.0.8 + 8.0.10 - - + + - - + + - - + + - 8.0.8 + 8.0.10 - + - + - + - 8.0.8 + 8.0.10 - + - 8.0.8 + 8.0.10 @@ -403,79 +403,79 @@ - 8.0.8 + 8.0.10 - - + + - 8.0.8 + 8.0.10 - + - 8.0.8 + 8.0.10 - - + + - - + + - - + + - - + + - 8.0.8 + 8.0.10 - - + + - + - - + + - 8.0.8 + 8.0.10 - - + + - 8.0.8 + 8.0.10 - - + + - 8.0.8 + 8.0.10 @@ -491,192 +491,192 @@ - 8.0.8 + 8.0.10 - 8.0.8 + 8.0.10 - + - 8.0.8 + 8.0.10 - + - 8.0.8 + 8.0.10 - + - 8.0.8 + 8.0.10 - - - + + + - 8.0.8 + 8.0.10 - 8.0.8 + 8.0.10 - + - 8.0.8 + 8.0.10 - 8.0.8 + 8.0.10 - - + + - - + + - - + + - 8.0.8 + 8.0.10 - - + + - - + + - - - - + + + + - - + + - - + + - - + + - - + + - 8.0.8 + 8.0.10 - + - + - + - + - + - 8.0.8 + 8.0.10 - + - + - + - 8.0.8 + 8.0.10 - + - + - + - 8.0.8 + 8.0.10 - + - + - + - 8.0.8 + 8.0.10 - - - - + + + + - 8.0.8 + 8.0.10 @@ -685,64 +685,64 @@ - 8.0.8 + 8.0.10 - 8.0.8 + 8.0.10 - 8.0.8 + 8.0.10 - 8.0.8 + 8.0.10 - + - 8.0.8 + 8.0.10 - + - 8.0.8 + 8.0.10 - 8.0.8 + 8.0.10 - 8.0.8 + 8.0.10 - 8.0.8 + 8.0.10 - 8.0.8 + 8.0.10 - 8.0.8 + 8.0.10 - 8.0.8 + 8.0.10 @@ -764,29 +764,29 @@ - 8.0.8 + 8.0.10 - + - + - + - 8.0.8 + 8.0.10 @@ -802,48 +802,48 @@ - 8.0.8 + 8.0.10 - + - - + + - - - + + + - + - - + + - 8.0.8 + 8.0.10 - 8.0.8 + 8.0.10 - - - + + + - 8.0.8 + 8.0.10 - 8.0.8 + 8.0.10 @@ -853,144 +853,144 @@ - 8.0.8 + 8.0.10 - + - 8.0.8 + 8.0.10 - - + + - - + + - - + + - 8.0.8 + 8.0.10 - + - + - + - + - + - + - 8.0.8 + 8.0.10 - - - + + + - - - + + + - - - + + + - 8.0.8 + 8.0.10 - 8.0.8 + 8.0.10 - - - - + + + + - - - - + + + + - - - - + + + + - 8.0.8 + 8.0.10 - 8.0.8 + 8.0.10 - + - + - + - 8.0.8 + 8.0.10 - 8.0.8 + 8.0.10 - + - 8.0.8 + 8.0.10 diff --git a/eng/Baseline.xml b/eng/Baseline.xml index 199a62d5c74a..b69677446aba 100644 --- a/eng/Baseline.xml +++ b/eng/Baseline.xml @@ -4,110 +4,110 @@ This file contains a list of all the packages and their versions which were rele Update this list when preparing for a new patch. --> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/eng/Versions.props b/eng/Versions.props index b1bcc44897c8..0e5104d2ebd0 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -11,7 +11,7 @@ 11 - false + true 7.1.2 7.*