Skip to content

Commit 0bb9da5

Browse files
committed
update dependencies
1 parent a945a94 commit 0bb9da5

3 files changed

Lines changed: 18 additions & 16 deletions

File tree

docs/release-notes.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@
3232
* Translations now support tokens in their placeholder text.
3333
* Translations now support [gender switch blocks](https://stardewvalleywiki.com/Modding:Dialogue#Gender_switch).
3434
* SMAPI no longer blocks map edits which change the tilesheet order, since that no longer causes crashes in Stardew Valley 1.6.9.
35-
* Updated dependencies, including [FluentHttpClient](https://github.com/Pathoschild/FluentHttpClient#readme) 4.3.0 → 4.4.0 (see [changes](https://github.com/Pathoschild/FluentHttpClient/blob/develop/RELEASE-NOTES.md#440)) and [Pintail](https://github.com/Nanoray-pl/Pintail) 2.3.0 → 2.4.2 (see [changes](https://github.com/Nanoray-pl/Pintail/blob/master/docs/release-notes.md#242)).
35+
* Updated dependencies, including...
36+
* [FluentHttpClient](https://github.com/Pathoschild/FluentHttpClient#readme) 4.3.0 → 4.4.1 (see [changes](https://github.com/Pathoschild/FluentHttpClient/blob/develop/RELEASE-NOTES.md#441));
37+
* [Pintail](https://github.com/Nanoray-pl/Pintail) 2.3.0 → 2.6.0 (see [changes](https://github.com/Nanoray-pl/Pintail/blob/master/docs/release-notes.md#260)).
3638
* The SMAPI log now includes the assembly version of each loaded mod (thanks to spacechase0!).
3739
* Fixed `content.Load` ignoring language override in recent versions.
3840
* Fixed player sprites and building paint masks not always propagated on change.

src/Directory.Packages.props

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -5,35 +5,35 @@
55

66
<ItemGroup>
77
<!-- SMAPI + toolkit -->
8-
<PackageVersion Include="FluentAssertions" Version="6.12.0" />
9-
<PackageVersion Include="HtmlAgilityPack" Version="1.11.61" />
8+
<PackageVersion Include="FluentAssertions" Version="6.12.1" />
9+
<PackageVersion Include="HtmlAgilityPack" Version="1.11.70" />
1010
<PackageVersion Include="Microsoft.Build.Utilities.Core" Version="17.10.4" />
1111
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.9.2" />
12-
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
12+
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
1313
<PackageVersion Include="Microsoft.Win32.Registry" Version="5.0.0" />
1414
<PackageVersion Include="Mono.Cecil" Version="0.11.5" />
1515
<PackageVersion Include="MonoMod.Common" Version="22.3.5.1" />
16-
<PackageVersion Include="Moq" Version="4.20.70" />
16+
<PackageVersion Include="Moq" Version="4.20.72" />
1717
<PackageVersion Include="Newtonsoft.Json" Version="13.0.3" />
18-
<PackageVersion Include="NUnit" Version="4.1.0" />
19-
<PackageVersion Include="NUnit3TestAdapter" Version="4.5.0" />
20-
<PackageVersion Include="Pathoschild.Http.FluentClient" Version="4.4.0" />
21-
<PackageVersion Include="Pintail" Version="2.4.2" />
18+
<PackageVersion Include="NUnit" Version="4.2.2" />
19+
<PackageVersion Include="NUnit3TestAdapter" Version="4.6.0" />
20+
<PackageVersion Include="Pathoschild.Http.FluentClient" Version="4.4.1" />
21+
<PackageVersion Include="Pintail" Version="2.6.0" />
2222
<PackageVersion Include="Platonymous.TMXTile" Version="1.5.9" />
2323
<PackageVersion Include="System.Management" Version="8.0.0" />
2424
<PackageVersion Include="System.Reflection.Emit" Version="4.7.0" />
2525
<PackageVersion Include="VdfConverter" Version="1.0.3" />
2626

2727
<!-- web -->
28-
<PackageVersion Include="Azure.Storage.Blobs" Version="12.20.0" />
29-
<PackageVersion Include="Hangfire.AspNetCore" Version="1.8.12" />
28+
<PackageVersion Include="Azure.Storage.Blobs" Version="12.22.2" />
29+
<PackageVersion Include="Hangfire.AspNetCore" Version="1.8.15" />
3030
<PackageVersion Include="Hangfire.Console" Version="1.4.3" />
3131
<PackageVersion Include="Hangfire.MemoryStorage" Version="1.8.1.1" />
3232
<PackageVersion Include="Humanizer.Core" Version="2.14.1" />
33-
<PackageVersion Include="JetBrains.Annotations" Version="2023.3.0" />
34-
<PackageVersion Include="Markdig" Version="0.37.0" />
35-
<PackageVersion Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="7.0.10" />
36-
<PackageVersion Include="Newtonsoft.Json.Schema" Version="3.0.16" />
33+
<PackageVersion Include="JetBrains.Annotations" Version="2024.3.0" />
34+
<PackageVersion Include="Markdig" Version="0.38.0" />
35+
<PackageVersion Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.10" />
36+
<PackageVersion Include="Newtonsoft.Json.Schema" Version="4.0.1" />
3737
<PackageVersion Include="Pathoschild.FluentNexus" Version="1.0.5" />
3838
</ItemGroup>
3939
</Project>

src/SMAPI.Web/SMAPI.Web.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<AssemblyName>SMAPI.Web</AssemblyName>
44
<RootNamespace>StardewModdingAPI.Web</RootNamespace>
5-
<TargetFramework>net7.0</TargetFramework>
5+
<TargetFramework>net8.0</TargetFramework>
66
<LangVersion>latest</LangVersion>
77
</PropertyGroup>
88

0 commit comments

Comments
 (0)