-
Notifications
You must be signed in to change notification settings - Fork 47
V7.0.x prepare for release #49
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
Changes from 11 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
364bd4e
Added @CompileStatic to services, and enhanced typing as a result
sbglasius 85552e8
Documentation moved to AsciiDocs
sbglasius 4adf0e6
Adding grails-gradle.-grails-publish and supporting files
sbglasius 74c15f4
Replace travis with github actions
sbglasius b2d855c
Cleanup (remove obsolete files)
sbglasius f73b4cd
Added correct contributors
sbglasius 767c512
Moved integration tests in to example subproject, dependent on root p…
sbglasius 69f5250
Removed obsolete dependency from example project, that is now api in …
sbglasius 4a630d4
Fixed word missing in sentence
sbglasius 3c96c96
Cleanup .gitignore files
sbglasius b24ebb1
Made sure, that there are not traces of itext, but instead OpenPDF is…
sbglasius 82f9489
Gradle Github Workflow fixed to only run ./gradlew check
sbglasius File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,134 @@ | ||
| 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: 'improvement' | ||
| branch: | ||
| - '/improv\/.+/' | ||
| title: | ||
| - '/improv/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)\/.+/' | ||
| title: | ||
| - '/(chore|refactor|style|test|ci|perf|build)/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: | ||
| - 'feature' | ||
| - "type: enhancement" | ||
| - "type: new feature" | ||
| - "type: major" | ||
| - "type: minor" | ||
| - title: '💡 Improvements' | ||
| labels: | ||
| - 'improvement' | ||
| - "type: improvement" | ||
|
|
||
| - title: '🐛 Bug Fixes' | ||
| labels: | ||
| - 'fix' | ||
| - 'bug' | ||
| - "type: bug" | ||
| - title: '📚 Documentation' | ||
| labels: | ||
| - 'docs' | ||
| - title: '🔧 Maintenance' | ||
| labels: | ||
| - 'maintenance' | ||
| - 'chore' | ||
| - 'refactor' | ||
| - 'style' | ||
| - 'test' | ||
| - 'ci' | ||
| - 'perf' | ||
| - 'build' | ||
| - "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 hidden or 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 @@ | ||
| { | ||
| "extends": [ | ||
| "config:base" | ||
| ], | ||
| "labels": ["type: dependency upgrade"], | ||
| "packageRules": [ | ||
| { | ||
| "matchUpdateTypes": ["major"], | ||
| "enabled": false | ||
| }, | ||
| { | ||
| "matchPackagePatterns": ["*"], | ||
| "allowedVersions": "!/SNAPSHOT$/" | ||
| }, | ||
| { | ||
| "matchPackagePatterns": [ | ||
| "^org\\.codehaus\\.groovy" | ||
| ], | ||
| "groupName": "groovy 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 hidden or 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,71 @@ | ||
| name: "Java CI" | ||
| on: | ||
| push: | ||
| branches: | ||
| - '[4-9]+.[0-9]+.x' | ||
| pull_request: | ||
| branches: | ||
| - '[4-9]+.[0-9]+.x' | ||
| workflow_dispatch: | ||
| jobs: | ||
| test_project: | ||
| name: "Test Project" | ||
| runs-on: ubuntu-24.04 | ||
| strategy: | ||
| fail-fast: true | ||
| matrix: | ||
| java: [17, 21] | ||
| steps: | ||
| - name: "📥 Checkout repository" | ||
| uses: actions/checkout@v4 | ||
| - name: "☕️ Setup JDK" | ||
| uses: actions/setup-java@v4 | ||
| with: | ||
| java-version: ${{ matrix.java }} | ||
| distribution: liberica | ||
| - name: "🐘 Setup Gradle" | ||
| uses: gradle/actions/setup-gradle@v4 | ||
| with: | ||
| develocity-access-key: ${{ secrets.DEVELOCITY_ACCESS_KEY }} | ||
| - name: "🏃 Run tests" | ||
| run: ./gradlew check | ||
| - name: "🏃 Run integration tests" | ||
| working-directory: ./examples/testapp1 | ||
| run: ./gradlew integrationTest | ||
| publish_snapshot: | ||
| if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' | ||
| name: "Build Project and Publish Snapshot release" | ||
| needs: test_project | ||
| runs-on: ubuntu-24.04 | ||
| permissions: | ||
| contents: write # updates gh-pages branch | ||
| packages: write # publishes snapshot to GitHub Packages | ||
| steps: | ||
| - name: "📥 Checkout repository" | ||
| uses: actions/checkout@v4 | ||
| - name: "☕️ Setup JDK" | ||
| uses: actions/setup-java@v4 | ||
| with: | ||
| java-version: 17 | ||
| distribution: liberica | ||
| - name: "🐘 Setup Gradle" | ||
| uses: gradle/actions/setup-gradle@v4 | ||
| with: | ||
| develocity-access-key: ${{ secrets.DEVELOCITY_ACCESS_KEY }} | ||
| - name: "🔨 Build Project" | ||
| run: ./gradlew build | ||
| - name: "📤 Publish Snapshot version to Artifactory (repo.grails.org)" | ||
| env: | ||
| GRAILS_PUBLISH_RELEASE: 'false' | ||
| MAVEN_PUBLISH_USERNAME: ${{ secrets.MAVEN_PUBLISH_USERNAME }} | ||
| MAVEN_PUBLISH_PASSWORD: ${{ secrets.MAVEN_PUBLISH_PASSWORD }} | ||
| MAVEN_PUBLISH_URL: 'https://repo.grails.org/artifactory/plugins3-snapshots-local' | ||
| run: ./gradlew publish | ||
| - name: "📖 Generate Snapshot Documentation" | ||
| run: ./gradlew docs | ||
| - name: "📤 Publish Snapshot Documentation to Github Pages" | ||
| uses: apache/grails-github-actions/deploy-github-pages@asf | ||
| env: | ||
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
| GRADLE_PUBLISH_RELEASE: 'false' | ||
| SOURCE_FOLDER: build/docs | ||
This file contains hidden or 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,23 @@ | ||
| name: "Release Drafter" | ||
| on: | ||
| issues: | ||
| types: [closed, reopened] | ||
| push: | ||
| branches: | ||
| - master | ||
| - '[4-9]+.[0-9]+.x' | ||
| pull_request: | ||
| types: [opened, reopened, synchronize] | ||
| pull_request_target: | ||
| types: [opened, reopened, synchronize] | ||
| jobs: | ||
| update_release_draft: | ||
| permissions: | ||
| contents: write | ||
| pull-requests: write | ||
| runs-on: ubuntu-24.04 | ||
| steps: | ||
| - name: "📝 Update Release Draft" | ||
| uses: release-drafter/release-drafter@v6 | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.