Skip to content

Commit

Permalink
dep: update dotnet-ef and fluent validation
Browse files Browse the repository at this point in the history
  • Loading branch information
kirinnee committed Nov 24, 2023
1 parent 05891bf commit 17d3d10
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"isRoot": true,
"tools": {
"dotnet-ef": {
"version": "7.0.5",
"version": "8.0.0",
"commands": ["dotnet-ef"]
},
"dotnet-outdated-tool": {
Expand Down
2 changes: 1 addition & 1 deletion .gitlint
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ contrib=CT1
ignore=B6

[contrib-title-conventional-commits]
types = amend,build,ci,config,docs,feat,fix,perf,refactor,style,test
types = amend,build,ci,config,dep,docs,feat,fix,perf,refactor,style,test
4 changes: 2 additions & 2 deletions App/App.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
<PackageReference Include="Asp.Versioning.Mvc.ApiExplorer" Version="7.1.0" />
<PackageReference Include="CSharp-Result" Version="0.2.0" />
<PackageReference Include="EntityFrameworkCore.Exceptions.PostgreSQL" Version="6.0.3" />
<PackageReference Include="FluentValidation" Version="11.8.0" />
<PackageReference Include="FluentValidation" Version="11.8.1" />
<PackageReference Include="FluentValidation.AspNetCore" Version="11.3.0" />
<PackageReference Include="FluentValidation.DependencyInjectionExtensions" Version="11.8.0" />
<PackageReference Include="FluentValidation.DependencyInjectionExtensions" Version="11.8.1" />
<PackageReference Include="Flurl" Version="4.0.0-pre4" />
<PackageReference Include="Humanizer" Version="2.14.1" />
<PackageReference Include="Kirinnee.Helper" Version="1.2.0" />
Expand Down
14 changes: 7 additions & 7 deletions App/packages.lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@
},
"FluentValidation": {
"type": "Direct",
"requested": "[11.8.0, )",
"resolved": "11.8.0",
"contentHash": "TiEaaYqSIAS+wXQv46LRm8Mca092XYNePD0n231Hqlkmm5FuToZoWnjI1ef/vJUxBzqR7/k2vaVQXxijNgVKRQ=="
"requested": "[11.8.1, )",
"resolved": "11.8.1",
"contentHash": "N72rnlE99XYB7EGA1u9y7m7kNTTynqOPBhZqDE8zr1Y0aSR4t5si94LRA7UVdAV09GaXWCErW+EiFhfbg3DSbg=="
},
"FluentValidation.AspNetCore": {
"type": "Direct",
Expand All @@ -54,11 +54,11 @@
},
"FluentValidation.DependencyInjectionExtensions": {
"type": "Direct",
"requested": "[11.8.0, )",
"resolved": "11.8.0",
"contentHash": "fNfH9XEwevXb1JKCWGEkmkIKDYK3+gaAG8ugeOggd0oc8hdwsl3SNC59qAM1tcKVUhcD+AEDCI4hXX5WWshpWg==",
"requested": "[11.8.1, )",
"resolved": "11.8.1",
"contentHash": "Yyme2uCHnf+HawEHUEj7PguR54TPkx1HJT93/POvHT4xONvUrNfLg3Zt2NUAmIbhMjplb6TPLN8DD9AA7B/3QA==",
"dependencies": {
"FluentValidation": "11.8.0",
"FluentValidation": "11.8.1",
"Microsoft.Extensions.Dependencyinjection.Abstractions": "2.1.0"
}
},
Expand Down
18 changes: 12 additions & 6 deletions atomi_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,14 @@ types:
desc: Update CI configuration
release: false
- type: docs
section: Documentation Updates
section: πŸ“œ Documentation πŸ“œ
desc: Documentation only changes
scopes:
default:
desc: Update documentation such as README file
release: false
- type: feat
section: New Features
section: ✨ Features ✨
desc: A new feature
vae:
verb: add
Expand All @@ -75,7 +75,7 @@ types:
desc: Release a new features
release: minor
- type: fix
section: Bug Fixes
section: πŸ› Bug Fixes πŸ›
desc: A bug fix
vae:
verb: fix
Expand All @@ -86,7 +86,7 @@ types:
desc: Generic fixes
release: patch
- type: perf
section: Performance Improvement
section: πŸš€ Performance Improvement πŸš€
desc: A code change that improves performance
vae:
verb: improve
Expand All @@ -97,7 +97,6 @@ types:
desc: Generic improvement statement
release: patch
- type: refactor
section: Refactored Code
desc: A code change that neither fixes a bug nor adds a feature
vae:
verb: refactor
Expand All @@ -118,7 +117,7 @@ types:
desc: Generic improvement statement
release: patch
- type: test
section: Update test
section: πŸ§ͺ Tests πŸ§ͺ
desc: Adding missing tests or correcting existing tests
vae:
verb: test
Expand All @@ -134,3 +133,10 @@ types:
default:
desc: amendments
release: false
- type: dep
desc: Dependency updates from upstream
section: πŸ”Ό Dependency Upstreams πŸ”Ό
scopes:
default:
desc: Dependency updates
release: false

0 comments on commit 17d3d10

Please sign in to comment.