This is an automated email from the ASF dual-hosted git repository.

dependabot[bot] pushed a change to branch 
dependabot/github_actions/actions/checkout-7
in repository https://gitbox.apache.org/repos/asf/grails-core.git


    omit 7f36665f97 build(deps): bump actions/checkout from 6 to 7
     add b18355711d Make precompiled GSP classes byte-reproducible
     add 41bb9354a4 Record a source checksum in precompiled GSPs instead of a 
modification time
     add 81f8cdafb5 Cover checksum precedence over a recorded modification time
     add e55dd6e5f7 Keep the -1 timestamp sentinel able to self-heal
     add 0126081f56 Take the checksum over bytes rather than a stream
     add b782f2eb9c Target the 7.1 line and document the change in its upgrade 
guide
     add c0cdbbde39 Skip re-hashing a page whose source stamp has not moved
     add 7dbea7d626 Record a checksum for pages compiled at runtime too
     add e6b65f13a8 Correct two statements the runtime-path checksum invalidated
     add b4064c9628 Document the development-mode reload change
     add a3d0871f79 Parse from the decoded source rather than wrapping the 
bytes in a stream
     add 894266cb5b Move to the 8.0 line
     add f39a7f6e1e Remove the recorded modification time entirely
     add 437b489e05 Say plainly that the granularity setting is gone
     add bf7e0a03d1 test: cleanup
     add 370a6e644b Merge branch '8.0.x' of 
https://github.com/apache/grails-core into fix/16131-gsp-source-checksum-7.0.x
     add 32f1eaf935 Correct a spec comment that outlived the timestamp
     add 1c005d7fae Merge pull request #16142 from 
codeconsole/fix/16131-gsp-source-checksum-7.0.x
     add 87a359ff50 fix(deps): Manage bnd.annotation 7.1.0 for Log4j 2.25.5
     add cebe9c687b Merge pull request #16084 from 
apache/fix/bnd-annotation-7.1.x
     add 299d7f2008 Merge branch '7.1.x' into 7.2.x
     add b4b29e10f2 [skip ci] Release v7.2.2
     add 05cfc88fb2 [skip ci] Bump version to 7.2.3-SNAPSHOT
     add 42c903f451 Merge pull request #16108 from apache/merge-back-7.2.2
     add 8009781474 [skip ci] Release v7.1.5
     add ed463e9fe3 [skip ci] Bump version to 7.1.6-SNAPSHOT
     add 959af4200f Merge pull request #16109 from apache/merge-back-7.1.5
     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 63479045c8 Run the vulnerability scan on pull requests labeled 
"vulnerability scan"
     add a4c54d42b4 Merge branch '7.0.x' into 7.1.x
     add ed2e1c378e Merge branch '7.1.x' into 7.2.x
     add 446a12ba31 Merge branch '7.2.x' into 8.0.x
     add 7d741cafee build(deps): bump actions/checkout from 6 to 7

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   (7f36665f97)
            \
             N -- N -- N   
refs/heads/dependabot/github_actions/actions/checkout-7 (7d741cafee)

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:
 .github/scripts/ossIndexReport.sh                  |  94 ++++++++++++
 .github/scripts/postStickyComment.sh               |  60 ++++++++
 .github/workflows/vulnerability-scan.yml           | 135 +++++++++++++----
 .../src/en/guide/testing/testingMongodb.adoc       |  74 ++++++++++
 .../gsp/makingChangesToADeployedApplication.adoc   |   5 +-
 grails-doc/src/en/guide/toc.yml                    |   1 +
 .../src/en/guide/upgrading/upgrading80x.adoc       |  34 +++++
 .../MongoDBTestingSupport.java}                    |  39 +++--
 .../MongoDBTestingSupportValidator.java}           |  15 +-
 .../database/MongoDBTestingSupportSpec.groovy      |  76 ++++++++++
 .../groovy/org/grails/gsp/GroovyPageMetaInfo.java  | 117 +++++++++++++--
 .../org/grails/gsp/GroovyPagesTemplateEngine.java  |  12 +-
 .../grails/gsp/compiler/GroovyPageCompiler.groovy  |  54 ++++---
 .../org/grails/gsp/compiler/GroovyPageParser.java  |  58 +++++++-
 .../grails/gsp/GroovyPageMetaInfoReloadSpec.groovy | 162 +++++++++++++++++++++
 .../GroovyPagesTemplateEngineChecksumSpec.groovy   |  52 +++++++
 .../GroovyPageCompilerReproducibilitySpec.groovy   | 107 ++++++++++++++
 .../DefaultGroovyPageLocatorPrecompiledSpec.groovy |   5 -
 .../GrailsConventionGroovyPageLocatorSpec.groovy   |   1 -
 .../groovy/org/grails/web/pages/ParseSpec.groovy   |   2 +-
 20 files changed, 990 insertions(+), 113 deletions(-)
 create mode 100755 .github/scripts/ossIndexReport.sh
 create mode 100755 .github/scripts/postStickyComment.sh
 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-gsp/core/src/test/groovy/org/grails/gsp/GroovyPageMetaInfoReloadSpec.groovy
 create mode 100644 
grails-gsp/core/src/test/groovy/org/grails/gsp/GroovyPagesTemplateEngineChecksumSpec.groovy
 create mode 100644 
grails-gsp/core/src/test/groovy/org/grails/gsp/compiler/GroovyPageCompilerReproducibilitySpec.groovy

Reply via email to