This is an automated email from the ASF dual-hosted git repository.
jamesfredley pushed a change to branch fix/forge-logback-withjansi-devtools
in repository https://gitbox.apache.org/repos/asf/grails-core.git
from ab395d688a Merge branch '7.0.x' into
fix/forge-logback-withjansi-devtools
add 134abe7a23 fix: Order milestone and release candidate versions in
VersionComparator
add edf2dda0f1 fix: Treat unknown version qualifiers as final release and
correct ordering docs
add 953c93ec16 Merge branch '7.0.x' into
fix/14058-plugin-compatibility-milestone-snapshot
add 839efa484d Merge branch '7.0.x' into
fix/14058-plugin-compatibility-milestone-snapshot
add cd75a0fec7 fix: Restore InvalidVersionException for malformed versions
in VersionComparator
add f27b079e9c Fix bindData binding id/version when extending a
@DirtyCheck base
add da3d88c5ef Add comprehensive test coverage for issue 15681
add 77734c8420 Merge branch '7.0.x' into
fix/15681-bindData-id-version-dirtycheck-base
add bca8bdcc48 Address review feedback for #15681 bindData fix
add a7bcdfd67f Merge branch '7.0.x' into
fix/15681-bindData-id-version-dirtycheck-base
add 69a6a0230b Merge pull request #15699 from
apache/fix/15681-bindData-id-version-dirtycheck-base
add d4608a4b65 fix(ci): comprehensive overhaul of release-drafter setup
add 182a751d58 Merge branch '7.0.x' into fix/release-drafter-overhaul
add 345a86fb8c Merge branch '7.0.x' into fix/release-drafter-overhaul
add 90c4924c8c Merge remote-tracking branch 'origin/7.0.x' into
fix/release-drafter-overhaul
add b8707158d1 Merge branch '7.0.x' into fix/release-drafter-overhaul
add 8296024d15 Merge pull request #15623 from
apache/fix/release-drafter-overhaul
add 0c61ec0e42 Add test coverage for Map-based multi-field sort
add ede2cef728 Merge branch '7.0.x' into test/map-sort-coverage
add 74da0f2739 Merge branch '7.0.x' into test/map-sort-coverage
add b834c178af Merge pull request #15691 from apache/test/map-sort-coverage
add d01e3002a1 Set up default protection ruleset for default and release
branches
add 4f2953b097 [INFRA] Use Grails *.x version branch pattern for branch
protection
add c4cf1ea57d Merge pull request #15665 from
apache/infrastructure-ruleset-bot/default-branch-protection
add 6f0861bd70 Merge branch '7.0.x' into
fix/14058-plugin-compatibility-milestone-snapshot
add 9fb955f3ed Merge pull request #15696 from
apache/fix/14058-plugin-compatibility-milestone-snapshot
add 2241b12890 Update Spring Boot to 3.5.15
add 5c21bd0d8c Merge pull request #15728 from
apache/deps/spring-boot-3.5.15
add 448d435be0 Merge branch '7.0.x' into
fix/forge-logback-withjansi-devtools
No new revisions were added by this update.
Summary of changes:
.asf.yaml | 12 ++
.github/release-drafter.yml | 20 ++
.github/workflows/release-notes.yml | 136 ++++++++++++-
dependencies.gradle | 4 +-
.../groovy/grails/plugins/VersionComparator.groovy | 225 +++++++++++++++------
.../plugins/DefaultGrailsPluginManagerSpec.groovy | 32 ++-
.../grails/plugins/VersionComparatorSpec.groovy | 70 +++++++
.../org/grails/datastore/gorm/OrderBySpec.groovy | 36 ++++
grails-test-examples/gorm/build.gradle | 1 +
.../gorm/DirtyCheckBindingController.groovy} | 14 +-
.../domain/gorm/DirtyCheckedRecord.groovy} | 16 +-
.../groovy/gorm/DirtyCheckBindingSpec.groovy | 67 ++++++
.../groovy/gorm/AbstractDirtyCheckedRecord.groovy | 22 +-
...ngHelperDomainClassSpecialPropertiesSpec.groovy | 128 ++++++++++++
.../web/binding/DirtyCheckBaseBindDataSpec.groovy | 138 +++++++++++++
.../databinding/DefaultASTDatabindingHelper.java | 11 +-
16 files changed, 821 insertions(+), 111 deletions(-)
copy grails-test-examples/gorm/grails-app/{domain/gorm/Product.groovy =>
controllers/gorm/DirtyCheckBindingController.groovy} (61%)
copy
grails-test-examples/{app1/grails-app/domain/functionaltests/binding/Project.groovy
=> gorm/grails-app/domain/gorm/DirtyCheckedRecord.groovy} (72%)
create mode 100644
grails-test-examples/gorm/src/integration-test/groovy/gorm/DirtyCheckBindingSpec.groovy
copy
grails-data-graphql/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/helpers/Describable.groovy
=>
grails-test-examples/gorm/src/main/groovy/gorm/AbstractDirtyCheckedRecord.groovy
(60%)
create mode 100644
grails-test-suite-web/src/test/groovy/org/grails/web/binding/DirtyCheckBaseBindDataSpec.groovy