This is an automated email from the ASF dual-hosted git repository.
sunlan pushed a change to branch GROOVY-9381_3
in repository https://gitbox.apache.org/repos/asf/groovy.git
discard 9124f638b7 GROOVY-9381: Support async/await like ES7
add d99e5fd4d5 GROOVY-11870: STC: read type after setter checks
add e16c9fb618 GROOVY-6526: compute annotation targets and retention
lazily (#2388)
add c383a5da19 minor refactor: future proofing by replacing constructor
deprecated in JDK20
add 328e49118c Bump actions/upload-artifact from 6 to 7 (#2389)
add 2090d3cbbb Bump org.apache.maven:maven-core from 3.9.12 to 3.9.13
(#2394)
add a97e1da5a9 refactor setup
add 05bc2c2535 minor items
add 959b138810 minor items
add 03bd50c0bb minor items
add 8cea3c883d bump groovy version
add 8790de32ff Bump com.fasterxml.jackson:jackson-bom from 2.21.0 to
2.21.1 (#2384)
add a2a7da6fc0 junit params
new 5df6414f91 GROOVY-9381: Add native async/await support
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 (9124f638b7)
\
N -- N -- N refs/heads/GROOVY-9381_3 (5df6414f91)
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.
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.github/workflows/groovy-build-artifacts.yml | 2 +-
.github/workflows/groovy-build-dist.yml | 10 +-
.github/workflows/groovy-build-performance.yml | 2 +-
.github/workflows/groovy-build-test.yml | 2 +-
.github/workflows/groovy-jmh-classic.yml | 2 +-
.github/workflows/groovy-jmh.yml | 2 +-
build-logic/build.gradle | 4 +-
build.gradle | 2 +-
gradle/eclipse.gradle | 2 +-
.../org/codehaus/groovy/ast/AnnotationNode.java | 134 +++++++++++++--------
.../groovy/ast/decompiled/Annotations.java | 3 +-
.../codehaus/groovy/classgen/ExtendedVerifier.java | 31 +----
.../groovy/runtime/ResourceGroovyMethods.java | 12 +-
.../transform/stc/StaticTypeCheckingVisitor.java | 9 +-
.../org/codehaus/groovy/vmplugin/VMPlugin.java | 14 ++-
.../org/codehaus/groovy/vmplugin/v16/Java16.java | 6 -
.../org/codehaus/groovy/vmplugin/v8/Java8.java | 85 ++-----------
.../org/codehaus/groovy/vmplugin/v9/Java9.java | 7 --
.../groovy/transform/stc/STCAssignmentTest.groovy | 24 ++++
.../codehaus/groovy/ast/AnnotationNodeTest.groovy | 81 +++++++++++--
.../ArraysAndCollectionsStaticCompileTest.groovy | 83 +++++++------
.../ast/visitor/AnnotationProcessorVisitor.java | 2 -
.../groovy/jmx/builder/JmxBeanFactoryTest.groovy | 26 ++--
.../groovy/jmx/builder/JmxBeansFactoryTest.groovy | 33 +++--
.../groovy/jmx/builder/JmxBuilderToolsTest.groovy | 112 +++++++++--------
.../builder/JmxClientConnectorFactoryTest.groovy | 46 +++----
26 files changed, 396 insertions(+), 340 deletions(-)