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

github-bot pushed a change to branch 
dependabot/gradle/com.github.jk1.dependency-license-report-3.0.1
in repository https://gitbox.apache.org/repos/asf/groovy.git


 discard 7afae21da7 Bump com.github.jk1.dependency-license-report from 2.9 to 
3.0.1
     add fc8b34aaa7 GROOVY-11795: Let groovysh startup time not depend on 
contents of CWD
     add 8c3de9b224 GROOVY-11798: `@Log4j2`: use API type 
org.apache.logging.log4j.Logger
     add 3ae0acc3e3 Bump org.jfrog.buildinfo:build-info-extractor-gradle from 
6.0.2 to 6.0.3
     add b6df8a13ec GROOVY-11800: logging transform within closure adds 
`getThisObject()`
     add f27407ceed minor refactor
     add 961370ce43 GROOVY-11775: `ExpandoMetaClass`: prevent mixin metaclass 
duplication
     add b3ae1cfb90 Merge pull request #2335 from apache/GROOVY-11775
     add fd43443ca9 GROOVY-11775: add test case
     add 788aee161d minor refactor
     add 4e73de37ee GROOVY-11803: index stray property methods for interface 
with default
     add 57fbc8517b Merge pull request #2338 from apache/GROOVY-11803
     add e9bbd6b157 GROOVY-11805: parameterized type initialization array guard
     add efcca24792 GROOVY-11806: non-static star imports required if any 
unresolved type
     add ad7623a03b fewer delegate interactions for get; support null for 
auto-shrink put
     add 60b25db902 minor refactor
     add 240e31518a GROOVY-11762: field hides getter of super class for 
callable property
     add 1b560f5794 Merge pull request #2339 from apache/GROOVY-11762
     add 46ed821ccd `org.spockframework:spock-core:2.4-M7-groovy-5.0` for test 
case
     add d1485430e3 GROOVY-11764: do not visit super class field if it is 
package-private
     add 3070309007 Merge pull request #2342 from apache/GROOVY-11764
     add 277f1a1d97 JUnit 5.14.1
     add 4ba6bb20fe Bump actions/checkout from 5 to 6
     add 6ff66b4b6f Bump org.apache.commons:commons-lang3 from 3.19.0 to 3.20.0
     add 5b22bb6ae2 Bump commons-io:commons-io from 2.20.0 to 2.21.0
     add eaeac2a9b2 Bump org.jfrog.buildinfo:build-info-extractor-gradle from 
6.0.3 to 6.0.4
     add 013978da4a Bump org.sonarqube from 6.2.0.5505 to 7.0.1.6134
     add 2759b6a9aa Bump com.github.jk1.dependency-license-report from 2.9 to 
3.0.1

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   (7afae21da7)
            \
             N -- N -- N   
refs/heads/dependabot/gradle/com.github.jk1.dependency-license-report-3.0.1 
(2759b6a9aa)

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/workflows/codeql-analysis.yml              |   2 +-
 .github/workflows/gradle-wrapper-validation.yml    |   2 +-
 .github/workflows/grails-joint-validation.yml      |   2 +-
 .github/workflows/groovy-build-artifacts.yml       |   2 +-
 .github/workflows/groovy-build-coverage.yml        |   2 +-
 .github/workflows/groovy-build-dist.yml            |   2 +-
 .github/workflows/groovy-build-test.yml            |   4 +-
 .github/workflows/groovy-rat-check.yml             |   2 +-
 .github/workflows/micronaut-joint-validation.yml   |   2 +-
 build-logic/build.gradle                           |   4 +-
 build.gradle                                       |   5 +-
 src/main/java/groovy/lang/ExpandoMetaClass.java    |  15 +-
 src/main/java/groovy/lang/MapWithDefault.java      |  79 +++---
 src/main/java/groovy/lang/MetaClassImpl.java       | 128 ++++-----
 src/main/java/groovy/util/logging/Log4j2.java      |  30 +-
 .../groovy/classgen/AsmClassGenerator.java         |   7 +-
 .../groovy/reflection/MixinInMetaClass.java        |  61 ++---
 .../tools/javac/JavaAwareResolveVisitor.java       |   3 +-
 .../groovy/tools/javac/JavaStubGenerator.java      |   7 +
 .../groovy/transform/LogASTTransformation.java     |  77 +++---
 .../org/codehaus/groovy/vmplugin/v8/Java8.java     |  19 +-
 .../bugs/{Groovy9906.groovy => Groovy11762.groovy} |  31 ++-
 .../bugs/{Groovy9906.groovy => Groovy11764.groovy} |  26 +-
 .../groovy/gls/generics/GenericsUsageTest.groovy   | 301 ++++++++++++---------
 src/test/groovy/groovy/InterfaceTest.groovy        |  33 +++
 src/test/groovy/groovy/lang/MixinTest.groovy       | 295 +++++++++++---------
 .../groovy/groovy/util/logging/Log4j2Test.groovy   | 213 +++++++--------
 .../groovy/groovy/util/logging/Slf4jTest.groovy    |  32 ++-
 .../{Groovy10607.groovy => Groovy11806.groovy}     |  38 ++-
 .../groovy/tools/stubgenerator/StubTestCase.groovy |   2 +-
 .../traitx/TraitASTTransformationTest.groovy       |   2 +-
 .../apache/groovy/groovysh/jline/GroovyEngine.java |  54 ++--
 versions.properties                                |   4 +-
 33 files changed, 818 insertions(+), 668 deletions(-)
 copy src/test/groovy/bugs/{Groovy9906.groovy => Groovy11762.groovy} (54%)
 copy src/test/groovy/bugs/{Groovy9906.groovy => Groovy11764.groovy} (66%)
 copy 
src/test/groovy/org/codehaus/groovy/tools/stubgenerator/{Groovy10607.groovy => 
Groovy11806.groovy} (61%)

Reply via email to