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 f85c4cf7b3 GROOVY-9381: Add native async/await support
add bc47218260 minor refactor: hush deprecation warnings with some changed
classes in jline3 until we migrate
add ba3a73aa97 bump dependency metadata
add ac8f1d56f8 minor refactor: fix read(char[], int, int) loop bound in
LineColumnReader
add 6e76724da4 minor refactor: fix read(char[], int, int) loop bound in
LineColumnReader (secondary fix)
add 8dd72cdac5 GROOVY-10581: Prepare for deprecation of security manager
(JEP-411) (#2404)
new 36ef5520fe 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 (f85c4cf7b3)
\
N -- N -- N refs/heads/GROOVY-9381_3 (36ef5520fe)
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:
gradle/verification-metadata.xml | 55 ++++
security/groovy.policy | 271 -----------------
src/main/java/groovy/io/LineColumnReader.java | 4 +-
src/main/java/groovy/lang/GroovyClassLoader.java | 99 +++----
src/main/java/groovy/lang/GroovyCodeSource.java | 42 +--
src/main/java/groovy/lang/GroovyShell.java | 57 +---
src/main/java/groovy/lang/MetaClassImpl.java | 15 +-
src/main/java/groovy/ui/GroovyMain.java | 7 +-
src/main/java/groovy/util/GroovyScriptEngine.java | 22 +-
.../internal/util/ReevaluatingReference.java | 13 +-
.../codehaus/groovy/control/ProcessingUnit.java | 11 +-
.../org/codehaus/groovy/control/SourceUnit.java | 3 +-
.../codehaus/groovy/reflection/CachedClass.java | 36 +--
.../org/codehaus/groovy/reflection/ClassInfo.java | 4 +-
.../reflection/ClassLoaderForClassArtifacts.java | 4 +-
.../groovy/reflection/ReflectionUtils.java | 4 +-
.../reflection/stdclasses/CachedSAMClass.java | 10 +-
.../groovy/runtime/ProxyGeneratorAdapter.java | 3 +-
.../groovy/runtime/callsite/CallSiteArray.java | 19 +-
.../org/codehaus/groovy/tools/GroovyStarter.java | 3 +-
.../groovy/tools/javac/JavacJavaCompiler.java | 5 +-
.../org/codehaus/groovy/vmplugin/VMPlugin.java | 22 --
.../codehaus/groovy/vmplugin/VMPluginFactory.java | 35 +--
.../org/codehaus/groovy/vmplugin/v8/Java8.java | 18 +-
.../groovy/gls/innerClass/InnerClassTest.groovy | 27 +-
src/test/groovy/groovy/security/SecurityTest.java | 111 -------
.../groovy/security/SecurityTestSupport.java | 310 -------------------
.../groovy/groovy/security/forbiddenCodeBase.gvy | 22 --
.../apache/groovy/parser/antlr4/TestUtils.groovy | 10 +-
.../codehaus/groovy/reflection/SecurityTest.java | 329 ---------------------
.../org/codehaus/groovy/classgen/TestSupport.java | 19 +-
.../codehaus/groovy/ant/CompileTaskSupport.java | 7 +-
.../main/java/org/codehaus/groovy/ant/Groovy.java | 5 +-
.../main/java/org/codehaus/groovy/ant/Groovyc.java | 5 +-
.../org/codehaus/groovy/ant/RootLoaderRef.java | 6 +-
.../groovy/org/apache/groovy/groovysh/Main.groovy | 1 +
.../apache/groovy/groovysh/jline/GroovyEngine.java | 5 +-
.../groovy/groovysh/jline/SystemRegistryImpl.java | 12 +-
.../groovy/jsr223/GroovyScriptEngineImpl.java | 9 +-
.../groovy-sql/src/main/java/groovy/sql/Sql.java | 21 +-
.../swing/binding/ClosureTriggerBinding.java | 63 ++--
.../groovy/groovy/text/GStringTemplateEngine.java | 4 +-
.../groovy/text/StreamingTemplateEngine.java | 4 +-
.../groovy/text/markup/MarkupTemplateEngine.java | 18 +-
.../src/main/java/groovy/test/AllTestSuite.java | 7 +-
.../src/main/java/groovy/test/GroovyTestSuite.java | 7 +-
.../src/main/java/groovy/xml/FactorySupport.java | 14 +-
47 files changed, 259 insertions(+), 1519 deletions(-)
delete mode 100644 security/groovy.policy
delete mode 100644 src/test/groovy/groovy/security/SecurityTest.java
delete mode 100644 src/test/groovy/groovy/security/SecurityTestSupport.java
delete mode 100644 src/test/groovy/groovy/security/forbiddenCodeBase.gvy
delete mode 100644
src/test/groovy/org/codehaus/groovy/reflection/SecurityTest.java