Skip to content

Commit

Permalink
bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mookid8000 committed Nov 15, 2024
1 parent 11bca81 commit 7344f05
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -1149,6 +1149,9 @@
## 8.6.1
* Fix regression that caused encrypted messages to end up unencrypted when dead-lettered

## 8.7.0
* Add additional compile targets and bump System.Text.Json dependency to at least 8.0.5 because almost all the previous versions have weaknesses

---

[AndreaCuneo]: https://github.com/AndreaCuneo
Expand Down
6 changes: 3 additions & 3 deletions Rebus.Tests/Rebus.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFrameworks>net8.0</TargetFrameworks>
<LangVersion>12</LangVersion>
<TargetFrameworks>net9.0</TargetFrameworks>
<LangVersion>13</LangVersion>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\ClassLibraryWithCustomName\ClassLibraryWithCustomName.csproj" />
Expand All @@ -11,7 +11,7 @@
<ItemGroup>
<PackageReference Include="AutoFixture.AutoMoq" Version="4.18.1" />
<PackageReference Include="AutoFixture.NUnit3" Version="4.18.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="NUnit" Version="3.14.0" />
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
Expand Down
6 changes: 3 additions & 3 deletions Rebus/Rebus.csproj
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks>
<LangVersion>11</LangVersion>
<TargetFrameworks>netstandard2.0;net6.0;net7.0;net8.0;net9.0</TargetFrameworks>
<LangVersion>13</LangVersion>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<Authors>mookid8000</Authors>
<PackageProjectUrl>https://rebus.fm/what-is-rebus/</PackageProjectUrl>
Expand All @@ -27,7 +27,7 @@
<PackageReference Include="Newtonsoft.Json" Version="[13.0.1,14)" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="system.text.json" Version="[6,9)" />
<PackageReference Include="system.text.json" Version="[8.0.5,10)" />
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
</ItemGroup>
<ItemGroup>
Expand Down

0 comments on commit 7344f05

Please sign in to comment.