Skip to content

Commit

Permalink
Merge branch 'release/5.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
GeertvanHorrik committed Dec 14, 2023
2 parents fc4bf46 + 093d61c commit 6848178
Show file tree
Hide file tree
Showing 94 changed files with 9,991 additions and 8,918 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": {
"cake.tool": {
"version": "2.1.0",
"version": "3.2.0",
"commands": [
"dotnet-cake"
]
Expand Down
17 changes: 6 additions & 11 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,38 +1,33 @@
### Description of Change ###

<!-- Describe your changes here. -->
<!-- Describe your changes here -->

### Issues Resolved ###

<!-- Please use the format "fixes #xxxx" for each issue this PR addresses -->

- fixes #

### API Changes ###

<!-- List all API changes here (or just put None) -->

None

### Platforms Affected ###
<!-- Please list all platforms affected by these changes -->

- All
- WPF
- UWP
- iOS
- Android

### Behavioral Changes ###

<!-- Describe any changes that may change how a user's app behaves or appears when upgrading to this version of the codebase. -->

None

### Testing Procedure ###

<!-- Please list the steps that should be taken to properly test these changes on each relevant platform. If you were unable to test these changes yourself on any or all platforms, please let us know. Also, if you are able to attach a video of your test run, you will be our personal hero. -->

### PR Checklist ###

- [ ] I have included examples or tests
- [ ] I have updated the change log
- [ ] I am listed in the CONTRIBUTORS file
- [ ] Rebased on top of the target branch at time of PR
- [ ] Changes adhere to coding standard
- [ ] I checked the licenses of Third Party software and discussed new dependencies with at least 1 other team member
14 changes: 13 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
version: 2
registries:
nuget-feed-default:
type: nuget-feed
url: https://api.nuget.org/v3/index.json

updates:
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: weekly

- package-ecosystem: nuget
directory: "/"
schedule:
Expand All @@ -8,4 +18,6 @@ updates:
ignore:
- dependency-name: "*Analyzers"
versions:
- ">= 0"
- ">= 0"
registries:
- nuget-feed-default
8 changes: 5 additions & 3 deletions .github/workflows/dependabot-auto-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
steps:
- name: Dependabot metadata
id: dependabot-metadata
uses: dependabot/fetch-metadata@v1.1.1
uses: dependabot/fetch-metadata@c9c4182bf1b97f5224aee3906fd373f6b61b4526 #1.6.0
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Approve Dependabot PR
Expand All @@ -21,14 +21,16 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Enable auto-merge for Dependabot PRs
if: |
(startsWith(steps.dependabot-metadata.outputs.dependency-names, 'catel.') ||
(startsWith(steps.dependabot-metadata.outputs.dependency-names, 'approvaltests.') ||
startsWith(steps.dependabot-metadata.outputs.dependency-names, 'catel.') ||
startsWith(steps.dependabot-metadata.outputs.dependency-names, 'fody') ||
endsWith(steps.dependabot-metadata.outputs.dependency-names, '.fody') ||
startsWith(steps.dependabot-metadata.outputs.dependency-names, 'microsoft.') ||
startsWith(steps.dependabot-metadata.outputs.dependency-names, 'nunit') ||
startsWith(steps.dependabot-metadata.outputs.dependency-names, 'nunit3testadapter') ||
startsWith(steps.dependabot-metadata.outputs.dependency-names, 'orc.') ||
startsWith(steps.dependabot-metadata.outputs.dependency-names, 'orchestra.')) &&
startsWith(steps.dependabot-metadata.outputs.dependency-names, 'orchestra.') ||
startsWith(steps.dependabot-metadata.outputs.dependency-names, 'verify.')) &&
(steps.dependabot-metadata.outputs.update-type == 'version-update:semver-minor' ||
steps.dependabot-metadata.outputs.update-type == 'version-update:semver-patch')
run: gh pr merge --auto --merge "$PR_URL"
Expand Down
11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -135,10 +135,17 @@ TestResults
.github/
BundleArtifacts/

# docker / tye
.tye

# editors
.idea
.vscode

# Binaries
*.dll
*.exe

# fody
FodyWeavers.xsd

Expand All @@ -148,3 +155,7 @@ FodyWeavers.xsd
# ANTLR
data/dsl/*.class
data/dsl/*.java

# Nodejs / NPM
node_modules
package-lock.json
2 changes: 1 addition & 1 deletion GitVersion.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
mode: ContinuousDeployment
assembly-versioning-scheme: MajorMinorPatch
next-version: 4.0.0
next-version: 5.0.0
9 changes: 8 additions & 1 deletion cake.config
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
; The configuration file for Cake.

[Settings]
SkipVerification=true
SkipVerification=true

[Settings]
EnableScriptCache=true

[Paths]
; Cache=%temp%/cake-build/cache/
; Note: cache-path is set via environment variables
Loading

0 comments on commit 6848178

Please sign in to comment.