Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[main] Update dependencies from 10 repositories #87125

Merged
merged 14 commits into from
Jun 8, 2023

Conversation

dotnet-maestro[bot]
Copy link
Contributor

@dotnet-maestro dotnet-maestro bot commented Jun 5, 2023

This pull request updates the following dependencies

From https://github.com/dotnet/icu

  • Subscription: 4247a230-8931-4538-5b64-08d8d8feb47e
  • Build: 20230605.2
  • Date Produced: June 5, 2023 2:16:43 PM UTC
  • Commit: 74e3b00bfeba3c0081a109f9b71a8fdc8fe24e80
  • Branch: refs/heads/dotnet/main

From https://github.com/dotnet/runtime

  • Subscription: 3db4b8c8-0fae-4f82-086c-08dad31ae87d
  • Build: 20230604.2
  • Date Produced: June 4, 2023 11:55:12 PM UTC
  • Commit: 2bf8f1a
  • Branch: refs/heads/main

From https://github.com/dotnet/sdk

  • Subscription: 736b3d22-d45c-4c36-de26-08db63374d9b
  • Build: 20230608.2
  • Date Produced: June 8, 2023 1:13:01 PM UTC
  • Commit: f8831a640e1876655e44dbf87a6e2f74f9c308a2
  • Branch: refs/heads/main

From https://github.com/dotnet/hotreload-utils

  • Subscription: bfe6dacf-8231-4ea1-e2fe-08d962847885
  • Build: 20230605.2
  • Date Produced: June 5, 2023 4:12:53 PM UTC
  • Commit: a13c0d0864977b704596741439b402f7405f658a
  • Branch: refs/heads/main

From https://github.com/dotnet/cecil

  • Subscription: bb5d2106-9fd3-425f-0abc-08daad65778c
  • Build: 20230606.1
  • Date Produced: June 6, 2023 10:29:30 AM UTC
  • Commit: 76f3f2033523a66f24a82654457779d7e113c3b0
  • Branch: refs/heads/main

From https://github.com/dotnet/llvm-project

  • Subscription: a7d541fc-4d59-4f09-2997-08d96284e872
  • Build: 20230607.1
  • Date Produced: June 7, 2023 5:45:12 PM UTC
  • Commit: be77bdd536a2883984b37bf4f1169a6ea73d39c7
  • Branch: refs/heads/dotnet/main

Coherency Updates

The following updates ensure that dependencies with a CoherentParentDependency
attribute were produced in a build used as input to the parent dependency's build.
See Dependency Description Format

  • Coherency Updates:
    • Microsoft.DotNet.XliffTasks: from 1.0.0-beta.23279.1 to 1.0.0-beta.23305.1 (parent: Microsoft.DotNet.Arcade.Sdk)

From https://github.com/dotnet/arcade

  • Subscription: c32383ee-d79c-4435-5b63-08d8d8feb47e
  • Build: 20230607.2
  • Date Produced: June 7, 2023 9:20:27 PM UTC
  • Commit: a178d756de78f9fd55339cb92665e791a3ba6535
  • Branch: refs/heads/main

From https://github.com/dotnet/xharness

  • Subscription: be30ac4f-4b72-4287-1eb6-08d8d8fef0ea
  • Build: 20230607.1
  • Date Produced: June 7, 2023 2:33:19 PM UTC
  • Commit: 98cbe592ee7494c5813d0e5173bc7a160fbcce70
  • Branch: refs/heads/main

From https://github.com/dotnet/runtime-assets

  • Subscription: 0c5a34f5-504e-413b-9376-08d8d8ff2d75
  • Build: 20230607.1
  • Date Produced: June 7, 2023 2:16:19 PM UTC
  • Commit: dd24bedc8b3911238274036dda611a16bb850545
  • Branch: refs/heads/main

From https://github.com/dotnet/emsdk

  • Subscription: c22d5069-447c-4252-29fd-08d90a7bb4bc
  • Build: 20230607.1
  • Date Produced: June 7, 2023 2:26:25 PM UTC
  • Commit: 116fc0fea5482fb88618eb96d7b00c1d65e6cea4
  • Branch: refs/heads/main

Microsoft.NETCore.Runtime.ICU.Transport
 From Version 8.0.0-preview.6.23280.1 -> To Version 8.0.0-preview.6.23305.1
@dotnet-issue-labeler dotnet-issue-labeler bot added the area-codeflow for labeling automated codeflow label Jun 5, 2023
dotnet-maestro bot added 2 commits June 5, 2023 14:29
…0604.2

Microsoft.NET.ILLink.Tasks , Microsoft.NET.Sdk.IL , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.ILAsm , runtime.native.System.IO.Ports , System.Text.Json
 From Version 8.0.0-preview.5.23279.2 -> To Version 8.0.0-preview.6.23304.2
Microsoft.DotNet.ApiCompat.Task
 From Version 8.0.100-preview.6.23303.2 -> To Version 8.0.100-preview.6.23305.4
@dotnet-maestro dotnet-maestro bot changed the title [main] Update dependencies from dotnet/icu [main] Update dependencies from dotnet/icu dotnet/runtime dotnet/sdk Jun 5, 2023
@ViktorHofer
Copy link
Member

@agocke @vitek-karas are these ILLink errors due to a recent change in the linker tooling? Can you please take a look?

@vitek-karas
Copy link
Member

This is probably caused by my change - I'll look into it.

Recent changes modified the behavior of trimmer where it will now report warnings for all marked methods which have RUC. Previously it tried to avoid duplicate warnings by only doing this for base methods in virtual hierarchies. But that had bugs and the behavior was very complex and hard to predict. So now it warns always.

The DbConnectionStringBuilder class implement ICustomTypeDescriptor interface which has several methods marked with RUC - so the trimmer reported 2113 on all of these. But it didn't warn on the implementation. Now it warns on the implementation as well, with 2112.

The suppression has the same reason as previously, so no functional change.
@vitek-karas
Copy link
Member

@sbomer, could you please review 472b161

The reasoning is in the commit's description.

@sbomer
Copy link
Member

sbomer commented Jun 5, 2023

I left a comment here: 472b161#r116596233

@radical radical closed this Jun 6, 2023
@radical radical reopened this Jun 6, 2023
@ViktorHofer ViktorHofer closed this Jun 6, 2023
@ViktorHofer ViktorHofer reopened this Jun 6, 2023
Microsoft.NETCore.Runtime.ICU.Transport
 From Version 8.0.0-preview.6.23280.1 -> To Version 8.0.0-preview.6.23305.2
@dotnet-maestro dotnet-maestro bot changed the title [main] Update dependencies from dotnet/icu dotnet/runtime dotnet/sdk [main] Update dependencies from dotnet/runtime dotnet/sdk dotnet/icu Jun 6, 2023
dotnet-maestro bot added 2 commits June 6, 2023 14:28
…ild 20230605.2

Microsoft.DotNet.HotReload.Utils.Generator.BuildTool
 From Version 8.0.0-alpha.0.23280.2 -> To Version 8.0.0-alpha.0.23305.2
…06.1

Microsoft.DotNet.Cecil
 From Version 0.11.4-alpha.23301.1 -> To Version 0.11.4-alpha.23306.1
@dotnet-maestro dotnet-maestro bot changed the title [main] Update dependencies from dotnet/runtime dotnet/sdk dotnet/icu [main] Update dependencies from dotnet/runtime dotnet/icu dotnet/hotreload-utils dotnet/cecil dotnet/sdk Jun 6, 2023
@radical radical closed this Jun 7, 2023
@radical radical reopened this Jun 7, 2023
@dotnet-maestro dotnet-maestro bot changed the title [main] Update dependencies from dotnet/runtime dotnet/icu dotnet/hotreload-utils dotnet/cecil dotnet/sdk [main] Update dependencies from dotnet/runtime dotnet/hotreload-utils dotnet/cecil dotnet/sdk dotnet/icu Jun 7, 2023
@dotnet-maestro dotnet-maestro bot changed the title [main] Update dependencies from dotnet/runtime dotnet/hotreload-utils dotnet/cecil dotnet/sdk dotnet/icu [main] Update dependencies from dotnet/runtime dotnet/cecil dotnet/sdk dotnet/icu dotnet/hotreload-utils Jun 7, 2023
@dotnet-maestro dotnet-maestro bot changed the title [main] Update dependencies from dotnet/runtime dotnet/cecil dotnet/sdk dotnet/icu dotnet/hotreload-utils [main] Update dependencies from dotnet/runtime dotnet/sdk dotnet/icu dotnet/hotreload-utils dotnet/cecil Jun 7, 2023
Microsoft.DotNet.ApiCompat.Task
 From Version 8.0.100-preview.6.23303.2 -> To Version 8.0.100-preview.6.23307.9
@dotnet-maestro dotnet-maestro bot changed the title [main] Update dependencies from dotnet/runtime dotnet/sdk dotnet/icu dotnet/hotreload-utils dotnet/cecil [main] Update dependencies from dotnet/runtime dotnet/icu dotnet/hotreload-utils dotnet/cecil dotnet/sdk Jun 7, 2023
… 20230607.1

runtime.linux-arm64.Microsoft.NETCore.Runtime.JIT.Tools , runtime.linux-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk , runtime.linux-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools , runtime.linux-arm64.Microsoft.NETCore.Runtime.ObjWriter , runtime.linux-musl-arm64.Microsoft.NETCore.Runtime.JIT.Tools , runtime.linux-musl-arm64.Microsoft.NETCore.Runtime.ObjWriter , runtime.linux-musl-x64.Microsoft.NETCore.Runtime.JIT.Tools , runtime.linux-musl-x64.Microsoft.NETCore.Runtime.ObjWriter , runtime.linux-x64.Microsoft.NETCore.Runtime.JIT.Tools , runtime.linux-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk , runtime.linux-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools , runtime.linux-x64.Microsoft.NETCore.Runtime.ObjWriter , runtime.osx-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk , runtime.osx-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools , runtime.osx-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk , runtime.osx-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools , runtime.win-arm64.Microsoft.NETCore.Runtime.JIT.Tools , runtime.win-arm64.Microsoft.NETCore.Runtime.ObjWriter , runtime.win-x64.Microsoft.NETCore.Runtime.JIT.Tools , runtime.win-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk , runtime.win-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools , runtime.win-x64.Microsoft.NETCore.Runtime.ObjWriter
 From Version 14.0.0-alpha.1.23301.2 -> To Version 14.0.0-alpha.1.23307.1
@dotnet-maestro dotnet-maestro bot changed the title [main] Update dependencies from dotnet/runtime dotnet/icu dotnet/hotreload-utils dotnet/cecil dotnet/sdk [main] Update dependencies from dotnet/runtime dotnet/icu dotnet/hotreload-utils dotnet/cecil dotnet/sdk dotnet/llvm-project Jun 7, 2023
…607.2

Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Archives , Microsoft.DotNet.Build.Tasks.Feed , Microsoft.DotNet.Build.Tasks.Installers , Microsoft.DotNet.Build.Tasks.Packaging , Microsoft.DotNet.Build.Tasks.TargetFramework , Microsoft.DotNet.Build.Tasks.Templating , Microsoft.DotNet.Build.Tasks.Workloads , Microsoft.DotNet.CodeAnalysis , Microsoft.DotNet.GenAPI , Microsoft.DotNet.GenFacades , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.PackageTesting , Microsoft.DotNet.RemoteExecutor , Microsoft.DotNet.SharedFramework.Sdk , Microsoft.DotNet.VersionTools.Tasks , Microsoft.DotNet.XUnitConsoleRunner , Microsoft.DotNet.XUnitExtensions
 From Version 8.0.0-beta.23302.3 -> To Version 8.0.0-beta.23307.2

Dependency coherency updates

Microsoft.DotNet.XliffTasks
 From Version 1.0.0-beta.23279.1 -> To Version 1.0.0-beta.23305.1 (parent: Microsoft.DotNet.Arcade.Sdk
@dotnet-maestro dotnet-maestro bot changed the title [main] Update dependencies from dotnet/runtime dotnet/icu dotnet/hotreload-utils dotnet/cecil dotnet/sdk dotnet/llvm-project [main] Update dependencies from dotnet/runtime dotnet/icu dotnet/hotreload-utils dotnet/cecil dotnet/sdk dotnet/llvm-project dotnet/arcade Jun 8, 2023
dotnet-maestro bot added 3 commits June 8, 2023 13:03
…30607.1

Microsoft.DotNet.XHarness.CLI , Microsoft.DotNet.XHarness.TestRunners.Common , Microsoft.DotNet.XHarness.TestRunners.Xunit
 From Version 8.0.0-prerelease.23279.1 -> To Version 8.0.0-prerelease.23307.1
…ld 20230607.1

Microsoft.DotNet.CilStrip.Sources , System.ComponentModel.TypeConverter.TestData , System.Data.Common.TestData , System.Drawing.Common.TestData , System.Formats.Tar.TestData , System.IO.Compression.TestData , System.IO.Packaging.TestData , System.Net.TestData , System.Private.Runtime.UnicodeData , System.Runtime.Numerics.TestData , System.Runtime.TimeZoneData , System.Security.Cryptography.X509Certificates.TestData , System.Text.RegularExpressions.TestData , System.Windows.Extensions.TestData
 From Version 8.0.0-beta.23280.1 -> To Version 8.0.0-beta.23307.1
…07.1

Microsoft.NET.Workload.Emscripten.Current.Manifest-8.0.100.Transport
 From Version 8.0.0-preview.6.23301.1 -> To Version 8.0.0-preview.6.23307.1
@dotnet-maestro dotnet-maestro bot changed the title [main] Update dependencies from dotnet/runtime dotnet/icu dotnet/hotreload-utils dotnet/cecil dotnet/sdk dotnet/llvm-project dotnet/arcade [main] Update dependencies from 10 repositories Jun 8, 2023
Microsoft.DotNet.ApiCompat.Task
 From Version 8.0.100-preview.6.23303.2 -> To Version 8.0.100-preview.6.23308.2
@jkoritzinsky
Copy link
Member

All failures are known, merging.

@jkoritzinsky jkoritzinsky merged commit 0747dce into main Jun 8, 2023
@jkoritzinsky jkoritzinsky deleted the darc-main-6cda314e-ff9a-425d-8c8b-92c37f8b251b branch June 8, 2023 23:37
@ghost ghost locked as resolved and limited conversation to collaborators Jul 9, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
area-codeflow for labeling automated codeflow
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants