From b28571bac300844336a2163e4560ffd22ea38d8f Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Wed, 9 Aug 2023 08:10:25 -0400 Subject: [PATCH 1/3] Dependency updates - Add missing comments for some packages. - Pin Moq due to bullshit e-mail scraping: https://github.com/moq/moq/issues/1374 --- build/ControlPanelVersion.props | 2 +- build/TestCommon.props | 10 ++++++++-- build/Version.props | 4 ++-- .../.config/dotnet-tools.json | 2 +- .../Tgstation.Server.Host.csproj | 18 +++++++++--------- tools/Tgstation.Server.ReleaseNotes/Program.cs | 1 - .../Tgstation.Server.ReleaseNotes.csproj | 4 +++- 7 files changed, 24 insertions(+), 17 deletions(-) diff --git a/build/ControlPanelVersion.props b/build/ControlPanelVersion.props index e068787bba..fbfe1438e0 100644 --- a/build/ControlPanelVersion.props +++ b/build/ControlPanelVersion.props @@ -1,6 +1,6 @@ - 4.22.0 + 4.23.1 diff --git a/build/TestCommon.props b/build/TestCommon.props index e0485b3a76..fc25d230d0 100644 --- a/build/TestCommon.props +++ b/build/TestCommon.props @@ -2,17 +2,23 @@ + all runtime; build; native; contentfiles; analyzers; buildtransitive + all runtime; build; native; contentfiles; analyzers; buildtransitive - - + + + + + + diff --git a/build/Version.props b/build/Version.props index 9a9b414cfe..7fbb04ccd2 100644 --- a/build/Version.props +++ b/build/Version.props @@ -17,9 +17,9 @@ netstandard2.0 6 - https://dotnetcli.azureedge.net/dotnet/aspnetcore/Runtime/6.0.20/dotnet-hosting-6.0.20-win.exe + https://dotnetcli.azureedge.net/dotnet/aspnetcore/Runtime/6.0.21/dotnet-hosting-6.0.21-win.exe 11.0.2 - + https://ftp.osuosl.org/pub/mariadb/mariadb-11.0.2/winx64-packages/mariadb-11.0.2-winx64.msi diff --git a/src/Tgstation.Server.Host/.config/dotnet-tools.json b/src/Tgstation.Server.Host/.config/dotnet-tools.json index eef9b429ca..236008e3ee 100644 --- a/src/Tgstation.Server.Host/.config/dotnet-tools.json +++ b/src/Tgstation.Server.Host/.config/dotnet-tools.json @@ -3,7 +3,7 @@ "isRoot": true, "tools": { "dotnet-ef": { - "version": "7.0.9", + "version": "7.0.10", "commands": [ "dotnet-ef" ] diff --git a/src/Tgstation.Server.Host/Tgstation.Server.Host.csproj b/src/Tgstation.Server.Host/Tgstation.Server.Host.csproj index a09479058f..7808673608 100644 --- a/src/Tgstation.Server.Host/Tgstation.Server.Host.csproj +++ b/src/Tgstation.Server.Host/Tgstation.Server.Host.csproj @@ -65,25 +65,25 @@ - + - + - + - + - + runtime; build; native; contentfiles; analyzers; buildtransitive - + - + @@ -91,7 +91,7 @@ - + @@ -113,7 +113,7 @@ - + diff --git a/tools/Tgstation.Server.ReleaseNotes/Program.cs b/tools/Tgstation.Server.ReleaseNotes/Program.cs index 10b207ad9a..ecf049b5f2 100644 --- a/tools/Tgstation.Server.ReleaseNotes/Program.cs +++ b/tools/Tgstation.Server.ReleaseNotes/Program.cs @@ -7,7 +7,6 @@ using System.Threading.Tasks; using System.Xml.Linq; using Octokit; -using Octokit.GraphQL; namespace Tgstation.Server.ReleaseNotes { diff --git a/tools/Tgstation.Server.ReleaseNotes/Tgstation.Server.ReleaseNotes.csproj b/tools/Tgstation.Server.ReleaseNotes/Tgstation.Server.ReleaseNotes.csproj index 4370c105a1..d95f0139e3 100644 --- a/tools/Tgstation.Server.ReleaseNotes/Tgstation.Server.ReleaseNotes.csproj +++ b/tools/Tgstation.Server.ReleaseNotes/Tgstation.Server.ReleaseNotes.csproj @@ -7,7 +7,9 @@ - + + + From 024ab92d25265d1610367930bd88d45d76c6fdeb Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Wed, 9 Aug 2023 08:27:21 -0400 Subject: [PATCH 2/3] Add missing `Usage` comment for Moq --- build/TestCommon.props | 1 + 1 file changed, 1 insertion(+) diff --git a/build/TestCommon.props b/build/TestCommon.props index fc25d230d0..4e1b3add13 100644 --- a/build/TestCommon.props +++ b/build/TestCommon.props @@ -14,6 +14,7 @@ + From e6522b0486f3f680b7fb917f889361ba490c75f5 Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Wed, 9 Aug 2023 18:32:46 -0400 Subject: [PATCH 3/3] Restore a `using` that was accidentally removed --- tools/Tgstation.Server.ReleaseNotes/Program.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/Tgstation.Server.ReleaseNotes/Program.cs b/tools/Tgstation.Server.ReleaseNotes/Program.cs index ecf049b5f2..10b207ad9a 100644 --- a/tools/Tgstation.Server.ReleaseNotes/Program.cs +++ b/tools/Tgstation.Server.ReleaseNotes/Program.cs @@ -7,6 +7,7 @@ using System.Threading.Tasks; using System.Xml.Linq; using Octokit; +using Octokit.GraphQL; namespace Tgstation.Server.ReleaseNotes {