Skip to content

Update to JADNC v5.4.0 #23

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 3 additions & 9 deletions .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,19 @@
"isRoot": true,
"tools": {
"jetbrains.resharper.globaltools": {
"version": "2023.1.2",
"version": "2023.2.1",
"commands": [
"jb"
]
},
"regitlint": {
"version": "6.3.11",
"version": "6.3.12",
"commands": [
"regitlint"
]
},
"codecov.tool": {
"version": "1.13.0",
"commands": [
"codecov"
]
},
"dotnet-reportgenerator-globaltool": {
"version": "5.1.20",
"version": "5.1.25",
"commands": [
"reportgenerator"
]
Expand Down
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.{config,csproj,css,js,json,props,ruleset,xslt}]
[*.{config,csproj,css,js,json,props,ruleset,xslt,html}]
indent_size = 2

[*.{cs}]
Expand Down
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
github: json-api-dotnet
21 changes: 0 additions & 21 deletions .github/ISSUE_TEMPLATE.md

This file was deleted.

32 changes: 32 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: 'bug'
assignees: ''

---

<!-- Please read our [Contributing Guides](https://github.com/json-api-dotnet/JsonApiDotNetCore/blob/master/.github/CONTRIBUTING.md) before submitting a bug. -->

#### DESCRIPTION
<!-- A clear and concise description of what the bug is. -->

#### STEPS TO REPRODUCE
<!-- 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._ -->

1.
2.
3.

#### EXPECTED BEHAVIOR
<!-- A clear and concise description of what you expected to happen. -->

#### ACTUAL BEHAVIOR
<!-- A clear and concise description of what happens instead. -->

#### VERSIONS USED
- JsonApiDotNetCore.MongoDb version:
- JsonApiDotNetCore version:
- ASP.NET Core version:
- MongoDB version:
22 changes: 22 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: 'enhancement'
assignees: ''

---

<!-- Please read our [Contributing Guides](https://github.com/json-api-dotnet/JsonApiDotNetCore/blob/master/.github/CONTRIBUTING.md) before suggesting an idea. -->

**Is your feature request related to a problem? Please describe.**
<!-- A clear and concise description of what the problem is. For example: I'm always frustrated when... -->

**Describe the solution you'd like**
<!-- A clear and concise description of what you want to happen. -->

**Describe alternatives you've considered**
<!-- A clear and concise description of any alternative solutions or features you've considered. -->

**Additional context**
<!-- Add any other context or screenshots about the feature request here. -->
39 changes: 39 additions & 0 deletions .github/ISSUE_TEMPLATE/question.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
---
name: Question
about: Ask a question
title: ''
labels: 'question'
assignees: ''

---

<!--
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.
-->

#### SUMMARY
<!--
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.
-->

#### DETAILS
<!--
What details can you include that will help us identify and solve your problem?
If your program produces different results from what you expected, state what you expected, why you expected it, and the actual results.
-->


#### STEPS TO REPRODUCE
<!--
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.
-->

1.
2.
3.

#### VERSIONS USED
- JsonApiDotNetCore.MongoDb version:
- JsonApiDotNetCore version:
- ASP.NET Core version:
- MongoDB version:
21 changes: 21 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
pull-request-branch-name:
separator: "-"
- package-ecosystem: nuget
directory: "/"
schedule:
interval: daily
pull-request-branch-name:
separator: "-"
open-pull-requests-limit: 25
ignore:
# Block updates to all exposed dependencies of the NuGet packages we produce, as updating them would be a breaking change.
- dependency-name: 'JsonApiDotNetCore*'
# Block major updates of packages that require a matching .NET version.
- dependency-name: 'Microsoft.AspNetCore*'
update-types: ["version-update:semver-major"]
Loading