Skip to content
This repository was archived by the owner on Feb 5, 2024. It is now read-only.

Commit a413a38

Browse files
authored
Merge pull request #88 from akunzai/update-dependencies
Update dependencies
2 parents 093a392 + 720bb07 commit a413a38

File tree

9 files changed

+24
-10
lines changed

9 files changed

+24
-10
lines changed

.config/dotnet-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"isRoot": true,
44
"tools": {
55
"dotnet-reportgenerator-globaltool": {
6-
"version": "5.1.10",
6+
"version": "5.1.12",
77
"commands": [
88
"reportgenerator"
99
]

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ jobs:
2727
uses: actions/setup-dotnet@v3
2828
with:
2929
dotnet-version: |
30-
3.1.x
3130
6.0.x
3231
- name: Build
3332
run: |

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## 3.1.1 (2022-12-08)
6+
7+
- Bump Spring.Core from 3.0.0 to 3.0.1
8+
- [The `System.Drawing.Common` before 4.7.2 is vulnerable](https://github.com/advisories/GHSA-rxg9-xrhp-64gj)
9+
510
## 3.1.0 (2022-04-20)
611

712
- [Use the ASP.NET Core shared framework](https://docs.microsoft.com/aspnet/core/fundamentals/target-aspnetcore#use-the-aspnet-core-shared-framework)

DependencyInjection.sln

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ EndProject
3030
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "samples", "samples", "{B1FFCB66-AA48-45C8-A4C4-D6E0BFB551DE}"
3131
ProjectSection(SolutionItems) = preProject
3232
samples\Directory.Build.props = samples\Directory.Build.props
33+
samples\Directory.Packages.props = samples\Directory.Packages.props
3334
EndProjectSection
3435
EndProject
3536
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AspNetCoreWebSample", "samples\AspNetCoreWebSample\AspNetCoreWebSample.csproj", "{AD50418F-0F72-4738-9B60-E035F1730193}"

samples/AspNetCoreWebSample/AspNetCoreWebSample.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
</ItemGroup>
1818

1919
<ItemGroup>
20-
<PackageReference Include="NodaTime" Version="3.1.6"/>
21-
<PackageReference Include="NodaTime.Testing" Version="3.1.6"/>
20+
<PackageReference Include="NodaTime"/>
21+
<PackageReference Include="NodaTime.Testing"/>
2222
</ItemGroup>
2323

2424
<ItemGroup>

samples/ConsoleSample/ConsoleSample.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
</ItemGroup>
1919

2020
<ItemGroup>
21-
<PackageReference Include="NodaTime" Version="3.1.6"/>
22-
<PackageReference Include="NodaTime.Testing" Version="3.1.6"/>
21+
<PackageReference Include="NodaTime"/>
22+
<PackageReference Include="NodaTime.Testing"/>
2323
</ItemGroup>
2424

2525
<ItemGroup>

samples/Directory.Packages.props

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<Project>
2+
<PropertyGroup>
3+
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
4+
</PropertyGroup>
5+
<ItemGroup>
6+
<PackageVersion Include="NodaTime" Version="3.1.6"/>
7+
<PackageVersion Include="NodaTime.Testing" Version="3.1.6"/>
8+
</ItemGroup>
9+
</Project>

src/Spring.Extensions.DependencyInjection/Spring.Extensions.DependencyInjection.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
<TargetFrameworks>netstandard2.0;netcoreapp3.1</TargetFrameworks>
55
<Description>Integrate Spring.NET with Microsoft.Extensions.DependencyInjection</Description>
66
<NoWarn>$(NoWarn);NU1701</NoWarn>
7-
<Version>3.1.0</Version>
7+
<Version>3.1.1</Version>
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="Spring.Core" Version="3.0.0"/>
11+
<PackageReference Include="Spring.Core" Version="3.0.1"/>
1212
</ItemGroup>
1313

1414
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
@@ -17,7 +17,7 @@
1717

1818
<ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp3.1' ">
1919
<FrameworkReference Include="Microsoft.AspNetCore.App"/>
20-
<PackageReference Include="System.Drawing.Common" Version="4.7.3" />
20+
<PackageReference Include="System.Drawing.Common" Version="4.7.3"/>
2121
</ItemGroup>
2222

2323
</Project>

test/Spring.Extensions.DependencyInjection.Tests/Spring.Extensions.DependencyInjection.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net6.0;netcoreapp3.1;net48</TargetFrameworks>
4+
<TargetFrameworks>net6.0;net48</TargetFrameworks>
55
<IsTestProject>true</IsTestProject>
66
<IsPackable>false</IsPackable>
77
</PropertyGroup>

0 commit comments

Comments
 (0)