-
Notifications
You must be signed in to change notification settings - Fork 116
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 #521 from jdaugherty/5.0.x
Updating to Grails 6.1.1
- Loading branch information
Showing
141 changed files
with
1,367 additions
and
797 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
name: Bug Report | ||
description: File a bug report | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for reporting an issue for Grails framework, please review the task list below before submitting the issue. Your issue report will be closed if the issue is incomplete and the below tasks not completed. | ||
NOTE: If you are unsure about something and the issue is more of a question a better place to ask questions is on Stack Overflow (https://stackoverflow.com/tags/grails) or Slack (https://slack-signup.grails.org). DO NOT use the issue tracker to ask questions. | ||
NOTE: if you have questions or issues, [enable debug logging](https://grails-plugins.github.io/grails-spring-security-rest/latest/docs/index.html#_debugging), and include the output in your request. | ||
- type: textarea | ||
attributes: | ||
label: Expected Behavior | ||
description: A concise description of what you expected to happen. | ||
placeholder: Tell us what should happen | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: Actual Behaviour | ||
description: A concise description of what you're experiencing. | ||
placeholder: Tell us what happens instead | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: Steps To Reproduce | ||
description: Steps to reproduce the behavior. | ||
placeholder: | | ||
1. In this environment... | ||
2. With this config... | ||
3. Run '...' | ||
4. See error... | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: Environment Information | ||
description: Environment information where the problem occurs. | ||
placeholder: | | ||
- Operating System: | ||
- JDK Version: | ||
validations: | ||
required: false | ||
- type: input | ||
id: example | ||
attributes: | ||
label: Example Application | ||
description: Example application link. | ||
placeholder: | | ||
Link to GitHub repository with an example that reproduces the issue | ||
validations: | ||
required: false | ||
- type: input | ||
id: version | ||
attributes: | ||
label: Version | ||
description: Grails version | ||
validations: | ||
required: true |
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,7 @@ | ||
contact_links: | ||
- name: Stack Overflow | ||
url: https://stackoverflow.com/tags/grails | ||
about: Ask questions on Stack Overflow | ||
- name: Grails Slack | ||
url: https://grails.slack.com/ | ||
about: Chat with us on Grails Community Slack. |
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,13 @@ | ||
name: Feature request | ||
description: Create a new feature request | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Please describe the feature you want for Grails® framework to implement, before that check if there is already an existing issue to add it. | ||
- type: textarea | ||
attributes: | ||
label: Feature description | ||
placeholder: Tell us more about the feature you would like for Grails® framework to have and what problem is it going to solve | ||
validations: | ||
required: true |
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,8 @@ | ||
name: Other | ||
description: Something different | ||
body: | ||
- type: textarea | ||
attributes: | ||
label: Issue description | ||
validations: | ||
required: true |
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,24 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: gradle | ||
directory: "/" | ||
schedule: | ||
interval: daily | ||
open-pull-requests-limit: 10 | ||
target-branch: 4.0.x | ||
labels: | ||
- "type: dependency upgrade" | ||
ignore: | ||
- dependency-name: "*" | ||
update-types: ["version-update:semver-major", "version-update:semver-minor"] | ||
- package-ecosystem: gradle | ||
directory: "/" | ||
schedule: | ||
interval: daily | ||
open-pull-requests-limit: 10 | ||
target-branch: 3.3.x | ||
labels: | ||
- "type: dependency upgrade" | ||
ignore: | ||
- dependency-name: "*" | ||
update-types: ["version-update:semver-major", "version-update:semver-minor"] |
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,126 @@ | ||
name-template: $RESOLVED_VERSION | ||
tag-template: v$RESOLVED_VERSION | ||
pull-request: | ||
title-templates: | ||
fix: '🐛 $TITLE (#$NUMBER)' | ||
feat: '🚀 $TITLE (#$NUMBER)' | ||
default: '$TITLE (#$NUMBER)' | ||
autolabeler: | ||
- label: 'bug' | ||
branch: | ||
- '/fix\/.+/' | ||
title: | ||
- '/fix/i' | ||
- label: 'feature' | ||
branch: | ||
- '/feature\/.+/' | ||
title: | ||
- '/feat/i' | ||
- label: 'documentation' | ||
branch: | ||
- '/docs\/.+/' | ||
title: | ||
- '/docs/i' | ||
- label: 'maintenance' | ||
branch: | ||
- '/(chore|refactor|style|test|ci|perf|build|deps)\/.+/' | ||
title: | ||
- '/(chore|refactor|style|test|ci|perf|build|deps)/i' | ||
- label: 'chore' | ||
branch: | ||
- '/chore\/.+/' | ||
title: | ||
- '/chore/i' | ||
- label: 'refactor' | ||
branch: | ||
- '/refactor\/.+/' | ||
title: | ||
- '/refactor/i' | ||
- label: 'style' | ||
branch: | ||
- '/style\/.+/' | ||
title: | ||
- '/style/i' | ||
- label: 'test' | ||
branch: | ||
- '/test\/.+/' | ||
title: | ||
- '/test/i' | ||
- label: 'ci' | ||
branch: | ||
- '/ci\/.+/' | ||
title: | ||
- '/ci/i' | ||
- label: 'perf' | ||
branch: | ||
- '/perf\/.+/' | ||
title: | ||
- '/perf/i' | ||
- label: 'build' | ||
branch: | ||
- '/build\/.+/' | ||
title: | ||
- '/build/i' | ||
- label: 'deps' | ||
branch: | ||
- '/deps\/.+/' | ||
title: | ||
- '/deps/i' | ||
- label: 'revert' | ||
branch: | ||
- '/revert\/.+/' | ||
title: | ||
- '/revert/i' | ||
categories: | ||
- title: '🚀 Features' | ||
labels: | ||
- 'feat' | ||
- "type: enhancement" | ||
- "type: new feature" | ||
- "type: major" | ||
- title: '🐛 Bug Fixes' | ||
labels: | ||
- 'fix' | ||
- "type: improvement" | ||
- "type: bug" | ||
- "type: minor" | ||
- title: '📚 Documentation' | ||
labels: | ||
- 'docs' | ||
- title: '🔧 Maintenance' | ||
labels: | ||
- 'chore' | ||
- 'refactor' | ||
- 'style' | ||
- 'test' | ||
- 'ci' | ||
- 'perf' | ||
- 'build' | ||
- 'deps' | ||
- "type: dependency upgrade" | ||
- "dependencies" | ||
- "type: ci" | ||
- "type: build" | ||
- title: '⏪ Reverts' | ||
labels: | ||
- 'revert' | ||
change-template: '- $TITLE @$AUTHOR (#$NUMBER)' | ||
version-resolver: | ||
major: | ||
labels: | ||
- 'type: major' | ||
minor: | ||
labels: | ||
- 'type: minor' | ||
patch: | ||
labels: | ||
- 'type: patch' | ||
default: patch | ||
template: | | ||
## What's Changed | ||
$CHANGES | ||
## Contributors | ||
$CONTRIBUTORS |
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,69 @@ | ||
{ | ||
"extends": [ | ||
"config:base" | ||
], | ||
"labels": ["type: dependency upgrade"], | ||
"packageRules": [ | ||
{ | ||
"matchPackagePatterns": ["*"], | ||
"allowedVersions": "!/SNAPSHOT$/" | ||
}, | ||
{ | ||
"matchPackagePatterns": [ | ||
"^org\\.codehaus\\.groovy" | ||
], | ||
"groupName": "groovy monorepo" | ||
}, | ||
{ | ||
"matchPackagePatterns": [ | ||
"^org\\.seleniumhq" | ||
], | ||
"groupName": "selenium monorepo" | ||
}, | ||
{ | ||
"matchPackagePatterns": [ | ||
"^org\\.spockframework" | ||
], | ||
"groupName": "spock framework monorepo" | ||
}, | ||
{ | ||
"matchPackageNames": [ | ||
"org.grails:grails-bom", | ||
"org.grails:grails-bootstrap", | ||
"org.grails:grails-codecs", | ||
"org.grails:grails-console", | ||
"org.grails:grails-core", | ||
"org.grails:grails-databinding", | ||
"org.grails:grails-dependencies", | ||
"org.grails:grails-docs", | ||
"org.grails:grails-encoder", | ||
"org.grails:grails-gradle-model", | ||
"org.grails:grails-logging", | ||
"org.grails:grails-plugin-codecs", | ||
"org.grails:grails-plugin-controllers", | ||
"org.grails:grails-plugin-databinding", | ||
"org.grails:grails-plugin-datasource", | ||
"org.grails:grails-plugin-domain-class", | ||
"org.grails:grails-plugin-i18n", | ||
"org.grails:grails-plugin-interceptors", | ||
"org.grails:grails-plugin-mimetypes", | ||
"org.grails:grails-plugin-rest", | ||
"org.grails:grails-plugin-services", | ||
"org.grails:grails-plugin-url-mappings", | ||
"org.grails:grails-plugin-url-validation", | ||
"org.grails:grails-shell", | ||
"org.grails:grails-spring", | ||
"org.grails:grails-test", | ||
"org.grails:grails-validation", | ||
"org.grails:grails-web", | ||
"org.grails:grails-web-boot", | ||
"org.grails:grails-web-common", | ||
"org.grails:grails-web-databinding", | ||
"org.grails:grails-web-fileupload", | ||
"org.grails:grails-web-mvc", | ||
"org.grails:grails-web-url-mappings" | ||
], | ||
"groupName": "grails monorepo" | ||
} | ||
] | ||
} |
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
Oops, something went wrong.