-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from json-api-dotnet/update-to-jadnc-v5.4.0
Update to JADNC v5.4.0
- Loading branch information
Showing
45 changed files
with
812 additions
and
448 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
github: json-api-dotnet |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] |
Oops, something went wrong.