Skip to content

Commit 3e02a6a

Browse files
authored
Merge pull request #23 from json-api-dotnet/update-to-jadnc-v5.4.0
Update to JADNC v5.4.0
2 parents d9ad095 + e38b221 commit 3e02a6a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+812
-448
lines changed

Diff for: .config/dotnet-tools.json

+3-9
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,19 @@
33
"isRoot": true,
44
"tools": {
55
"jetbrains.resharper.globaltools": {
6-
"version": "2023.1.2",
6+
"version": "2023.2.1",
77
"commands": [
88
"jb"
99
]
1010
},
1111
"regitlint": {
12-
"version": "6.3.11",
12+
"version": "6.3.12",
1313
"commands": [
1414
"regitlint"
1515
]
1616
},
17-
"codecov.tool": {
18-
"version": "1.13.0",
19-
"commands": [
20-
"codecov"
21-
]
22-
},
2317
"dotnet-reportgenerator-globaltool": {
24-
"version": "5.1.20",
18+
"version": "5.1.25",
2519
"commands": [
2620
"reportgenerator"
2721
]

Diff for: .editorconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ charset = utf-8
88
trim_trailing_whitespace = true
99
insert_final_newline = true
1010

11-
[*.{config,csproj,css,js,json,props,ruleset,xslt}]
11+
[*.{config,csproj,css,js,json,props,ruleset,xslt,html}]
1212
indent_size = 2
1313

1414
[*.{cs}]

Diff for: .github/FUNDING.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: json-api-dotnet

Diff for: .github/ISSUE_TEMPLATE.md

-21
This file was deleted.

Diff for: .github/ISSUE_TEMPLATE/bug_report.md

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: 'bug'
6+
assignees: ''
7+
8+
---
9+
10+
<!-- Please read our [Contributing Guides](https://github.com/json-api-dotnet/JsonApiDotNetCore/blob/master/.github/CONTRIBUTING.md) before submitting a bug. -->
11+
12+
#### DESCRIPTION
13+
<!-- A clear and concise description of what the bug is. -->
14+
15+
#### STEPS TO REPRODUCE
16+
<!-- Consider to include your code here, such as models, controllers, resource services, repositories, resource definitions etc. Please also include the request URL with body (if applicable) and the full exception stack trace (set `options.IncludeExceptionStackTraceInErrors` to `true`) in case of errors._ -->
17+
18+
1.
19+
2.
20+
3.
21+
22+
#### EXPECTED BEHAVIOR
23+
<!-- A clear and concise description of what you expected to happen. -->
24+
25+
#### ACTUAL BEHAVIOR
26+
<!-- A clear and concise description of what happens instead. -->
27+
28+
#### VERSIONS USED
29+
- JsonApiDotNetCore.MongoDb version:
30+
- JsonApiDotNetCore version:
31+
- ASP.NET Core version:
32+
- MongoDB version:

Diff for: .github/ISSUE_TEMPLATE/feature_request.md

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: 'enhancement'
6+
assignees: ''
7+
8+
---
9+
10+
<!-- Please read our [Contributing Guides](https://github.com/json-api-dotnet/JsonApiDotNetCore/blob/master/.github/CONTRIBUTING.md) before suggesting an idea. -->
11+
12+
**Is your feature request related to a problem? Please describe.**
13+
<!-- A clear and concise description of what the problem is. For example: I'm always frustrated when... -->
14+
15+
**Describe the solution you'd like**
16+
<!-- A clear and concise description of what you want to happen. -->
17+
18+
**Describe alternatives you've considered**
19+
<!-- A clear and concise description of any alternative solutions or features you've considered. -->
20+
21+
**Additional context**
22+
<!-- Add any other context or screenshots about the feature request here. -->

Diff for: .github/ISSUE_TEMPLATE/question.md

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
---
2+
name: Question
3+
about: Ask a question
4+
title: ''
5+
labels: 'question'
6+
assignees: ''
7+
8+
---
9+
10+
<!--
11+
Remember that no-one is getting paid to answer your question. You're basically asking other people to give up their time to help you out of the goodness of their heart – it's up to you to do all you can to make that as simple as possible, so read http://tinyurl.com/stack-checklist first.
12+
-->
13+
14+
#### SUMMARY
15+
<!--
16+
Explain what you're trying to accomplish, how you encountered the problem you're trying to solve, and any difficulties that have prevented you from solving it yourself.
17+
-->
18+
19+
#### DETAILS
20+
<!--
21+
What details can you include that will help us identify and solve your problem?
22+
If your program produces different results from what you expected, state what you expected, why you expected it, and the actual results.
23+
-->
24+
25+
26+
#### STEPS TO REPRODUCE
27+
<!--
28+
Not all questions benefit from including code, but if your problem is with the code you've written, you should consider including your models, controllers, resource services, repositories, resource definitions, etc. Include the request URL with the response body (if applicable) and the full exception stack trace (set `options.IncludeExceptionStackTraceInErrors` to `true`) in case of errors.
29+
-->
30+
31+
1.
32+
2.
33+
3.
34+
35+
#### VERSIONS USED
36+
- JsonApiDotNetCore.MongoDb version:
37+
- JsonApiDotNetCore version:
38+
- ASP.NET Core version:
39+
- MongoDB version:

Diff for: .github/dependabot.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"
7+
pull-request-branch-name:
8+
separator: "-"
9+
- package-ecosystem: nuget
10+
directory: "/"
11+
schedule:
12+
interval: daily
13+
pull-request-branch-name:
14+
separator: "-"
15+
open-pull-requests-limit: 25
16+
ignore:
17+
# Block updates to all exposed dependencies of the NuGet packages we produce, as updating them would be a breaking change.
18+
- dependency-name: 'JsonApiDotNetCore*'
19+
# Block major updates of packages that require a matching .NET version.
20+
- dependency-name: 'Microsoft.AspNetCore*'
21+
update-types: ["version-update:semver-major"]

0 commit comments

Comments
 (0)