This is an automated email from the ASF dual-hosted git repository.
borinquenkid pushed a change to branch fix/groovydoc-links
in repository https://gitbox.apache.org/repos/asf/grails-core.git
omit 45a938c8c1 Address jdaugherty and Copilot review feedback on groovydoc
link audit
omit 978a57123d Decouple auditGroovydocLinks from the default docs build
and add test coverage
omit b168d32ffb refactor: rename groovydoc link check to audit task and
remove property control
omit 2c6c661fdd docs: fix broken external and internal links in Groovydocs
and add audit mode
add 876db2e1a5 Prevent multiple publishing from running at the same time
add 7eb9a5e98d Merge pull request #15988 from
apache/ci/document-publishing-limit
add ee4d85d65f Bump org.testcontainers:postgresql in /grails-forge
add 8f2f6cf1e6 Merge pull request #15639 from
apache/dependabot/gradle/grails-forge/7.0.x/org.testcontainers-postgresql-1.21.4
add 23c2c586af Update Log4j to 2.25.5 and document unfixed Jansi CVE
add ac08770cff Merge pull request #16043 from
apache/deps/cve-log4j-jansi-7.0.x
add b8df2131e9 Remove push trigger due to api limits
add e8f9cf8b49 Bump com.gradle.develocity from 4.2.2 to 4.5.0 in
/grails-forge
add 8ef28e0a43 Merge pull request #15802 from
apache/dependabot/gradle/grails-forge/7.0.x/com.gradle.develocity-4.5.0
add d700945343 Fix bootWar NPE from stray CLI WebApplicationInitializer
(#15377)
add 4a7af94651 Add positive-path coverage and tidy manifest test data
(#15377)
add 22866b7dfb Merge pull request #16041 from
apache/fix/7.0.x-dbmigration-bootwar-npe-15377
add 811faed161 Align Log4j across published BOMs
add 3307fb44e9 Merge pull request #16045 from
apache/deps/align-log4j-boms-7.0.x
add 4b15e03e6a fix(deps): Bump Groovy to 4.0.33
add d9c79260b5 docs: Point Groovy 4 doc links at the version selector
add a35474f878 Merge pull request #16081 from
apache/deps/groovy-4.0.33-7.0.x
add 0e0f815e23 backport: reproducability fix
add fe1827cf67 Merge pull request #16090 from apache/backport-15978
add 8c6476c17e [skip ci] Release v7.0.15
add 8e3df14775 [skip ci] Bump version to 7.0.16-SNAPSHOT
add fe87c67c28 Merge pull request #16105 from apache/merge-back-7.0.15
add ea9d6a63ce Add opt-in Forge feature for MongoDB testing support.
add 0c78c458fc Merge pull request #15339 from
sanjana2505006/feature/15007-mongodb-testing-forge
add 15c7420731 docs: fix broken external and internal links in Groovydocs
and add audit mode
add c0bc0ef20c refactor: rename groovydoc link check to audit task and
remove property control
add 06caab3551 Decouple auditGroovydocLinks from the default docs build
and add test coverage
add 4912fc3623 Address jdaugherty and Copilot review feedback on groovydoc
link audit
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (45a938c8c1)
\
N -- N -- N refs/heads/fix/groovydoc-links (4912fc3623)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.agents/skills/grails-developer/SKILL.md | 2 +-
.agents/skills/groovy-developer/SKILL.md | 2 +-
.github/workflows/gradle.yml | 6 ++
.github/workflows/release.yml | 6 ++
.github/workflows/vulnerability-scan.yml | 5 --
AGENTS.md | 2 +-
.../grails/buildsrc/VulnerabilityScanPlugin.groovy | 5 ++
dependencies.gradle | 22 ++++-
gradle.properties | 2 +-
grails-bom/base/build.gradle | 1 +
grails-bom/hibernate5/build.gradle | 1 +
grails-bom/micronaut/build.gradle | 1 +
.../test/groovy/grails/util/GrailsUtilTests.java | 2 +-
.../src/en/guide/testing/testingMongodb.adoc | 74 +++++++++++++++++
grails-doc/src/en/guide/toc.yml | 1 +
.../MongoDBTestingSupport.java} | 39 +++++----
.../MongoDBTestingSupportValidator.java} | 15 ++--
.../database/MongoDBTestingSupportSpec.groovy | 76 +++++++++++++++++
grails-forge/settings.gradle | 2 +-
grails-gradle/bom/build.gradle | 1 +
.../profiles/tasks/ProfileCompilerTask.groovy | 4 +-
.../profiles/tasks/ProfileCompilerTaskSpec.groovy | 75 +++++++++++++++++
grails-shell-cli/build.gradle | 5 ++
...SpringApplicationWebApplicationInitializer.java | 15 +++-
...ApplicationWebApplicationInitializerSpec.groovy | 97 ++++++++++++++++++++++
.../build.gradle | 4 +-
settings.gradle | 2 +-
27 files changed, 421 insertions(+), 46 deletions(-)
create mode 100644 grails-doc/src/en/guide/testing/testingMongodb.adoc
copy
grails-forge/grails-forge-core/src/main/java/org/grails/forge/feature/{test/Mockito.java
=> database/MongoDBTestingSupport.java} (70%)
copy
grails-forge/grails-forge-core/src/main/java/org/grails/forge/feature/{test/MockitoValidator.java
=> database/MongoDBTestingSupportValidator.java} (72%)
create mode 100644
grails-forge/grails-forge-core/src/test/groovy/org/grails/forge/feature/database/MongoDBTestingSupportSpec.groovy
create mode 100644
grails-gradle/plugins/src/test/groovy/org/grails/gradle/plugin/profiles/tasks/ProfileCompilerTaskSpec.groovy
create mode 100644
grails-shell-cli/src/test/groovy/org/grails/cli/boot/SpringApplicationWebApplicationInitializerSpec.groovy