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

thiagohp pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/tapestry-5.git.


    from b434379  Disabling Gradle parallel builds for breaking integr. tests
     new 66f8a59  Ignoring the contents of the docs folder
     new 360e55c  Ignoring the contents of the docs folder
     new d771dcb  Ignoring the contents of the docs folder
     new 7441b23  TAP5-2697: Upgrade embedded ASM version to 9.2 for Java 18

The 4 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:
 .gitignore                                         |   1 +
 .../META-INF/modules/t5/core/ajax.html             | 316 ---------------------
 .../internal/plastic/asm/AnnotationVisitor.java    |  11 +-
 .../internal/plastic/asm/AnnotationWriter.java     |   2 +-
 .../internal/plastic/asm/ClassReader.java          |  76 +++--
 .../internal/plastic/asm/ClassVisitor.java         |  45 ++-
 .../internal/plastic/asm/ClassWriter.java          |  49 ++--
 .../tapestry5/internal/plastic/asm/Constants.java  |   2 +-
 .../internal/plastic/asm/FieldVisitor.java         |  15 +-
 .../internal/plastic/asm/FieldWriter.java          |   2 +-
 .../internal/plastic/asm/MethodVisitor.java        |   7 +-
 .../internal/plastic/asm/MethodWriter.java         |   2 +-
 .../internal/plastic/asm/ModuleVisitor.java        |   7 +-
 .../internal/plastic/asm/ModuleWriter.java         |   2 +-
 .../tapestry5/internal/plastic/asm/Opcodes.java    |  10 +-
 .../plastic/asm/RecordComponentVisitor.java        |  14 +-
 .../plastic/asm/RecordComponentWriter.java         |   2 +-
 .../plastic/asm/commons/AdviceAdapter.java         |  32 ++-
 .../plastic/asm/commons/AnalyzerAdapter.java       |   7 +-
 .../plastic/asm/commons/AnnotationRemapper.java    | 127 ++++++++-
 .../plastic/asm/commons/ClassRemapper.java         |  48 ++--
 .../plastic/asm/commons/CodeSizeEvaluator.java     |   2 +-
 .../plastic/asm/commons/FieldRemapper.java         |  38 ++-
 .../plastic/asm/commons/GeneratorAdapter.java      |   7 +-
 .../plastic/asm/commons/InstructionAdapter.java    |  12 +-
 .../plastic/asm/commons/JSRInlinerAdapter.java     |   7 +-
 .../plastic/asm/commons/LocalVariablesSorter.java  |   6 +-
 .../internal/plastic/asm/commons/Method.java       |   1 +
 .../plastic/asm/commons/MethodRemapper.java        |  44 ++-
 .../plastic/asm/commons/ModuleHashesAttribute.java |   3 +-
 .../plastic/asm/commons/ModuleRemapper.java        |  10 +-
 .../asm/commons/RecordComponentRemapper.java       |  32 ++-
 .../internal/plastic/asm/commons/Remapper.java     |  12 +
 .../plastic/asm/commons/SerialVersionUIDAdder.java |   7 +-
 .../plastic/asm/commons/SignatureRemapper.java     |  11 +-
 .../plastic/asm/commons/SimpleRemapper.java        |  11 +-
 .../plastic/asm/commons/StaticInitMerger.java      |   6 +-
 .../plastic/asm/commons/TryCatchBlockSorter.java   |   3 +-
 .../plastic/asm/signature/SignatureVisitor.java    |   5 +-
 .../plastic/asm/signature/SignatureWriter.java     |   2 +-
 .../plastic/asm/tree/AbstractInsnNode.java         |   1 +
 .../internal/plastic/asm/tree/AnnotationNode.java  |  11 +-
 .../internal/plastic/asm/tree/ClassNode.java       |  40 +--
 .../internal/plastic/asm/tree/FieldInsnNode.java   |   1 +
 .../internal/plastic/asm/tree/FieldNode.java       |   7 +-
 .../internal/plastic/asm/tree/FrameNode.java       |   1 +
 .../internal/plastic/asm/tree/IincInsnNode.java    |   1 +
 .../internal/plastic/asm/tree/InsnList.java        |  14 +-
 .../internal/plastic/asm/tree/InsnNode.java        |   1 +
 .../internal/plastic/asm/tree/IntInsnNode.java     |   1 +
 .../plastic/asm/tree/InvokeDynamicInsnNode.java    |   1 +
 .../internal/plastic/asm/tree/JumpInsnNode.java    |   1 +
 .../internal/plastic/asm/tree/LabelNode.java       |   1 +
 .../internal/plastic/asm/tree/LdcInsnNode.java     |  20 +-
 .../internal/plastic/asm/tree/LineNumberNode.java  |   1 +
 .../asm/tree/LocalVariableAnnotationNode.java      |   7 +-
 .../plastic/asm/tree/LookupSwitchInsnNode.java     |   1 +
 .../internal/plastic/asm/tree/MethodInsnNode.java  |   1 +
 .../internal/plastic/asm/tree/MethodNode.java      |  15 +-
 .../plastic/asm/tree/ModuleExportNode.java         |   1 +
 .../internal/plastic/asm/tree/ModuleNode.java      |   5 +-
 .../internal/plastic/asm/tree/ModuleOpenNode.java  |   1 +
 .../plastic/asm/tree/ModuleProvideNode.java        |   1 +
 .../plastic/asm/tree/MultiANewArrayInsnNode.java   |   1 +
 .../plastic/asm/tree/RecordComponentNode.java      |   8 +-
 .../plastic/asm/tree/TableSwitchInsnNode.java      |   1 +
 .../plastic/asm/tree/TryCatchBlockNode.java        |   1 +
 .../plastic/asm/tree/TypeAnnotationNode.java       |   6 +-
 .../internal/plastic/asm/tree/TypeInsnNode.java    |   1 +
 .../internal/plastic/asm/tree/VarInsnNode.java     |   1 +
 .../plastic/asm/tree/analysis/Analyzer.java        |  72 ++++-
 .../asm/tree/analysis/BasicInterpreter.java        |   7 +-
 .../plastic/asm/tree/analysis/BasicVerifier.java   |   7 +-
 .../internal/plastic/asm/tree/analysis/Frame.java  |  73 +++--
 .../plastic/asm/tree/analysis/Interpreter.java     |   1 +
 .../plastic/asm/tree/analysis/SimpleVerifier.java  |   7 +-
 .../asm/tree/analysis/SourceInterpreter.java       |   7 +-
 .../plastic/asm/tree/analysis/SourceValue.java     |   1 +
 .../plastic/asm/tree/analysis/Subroutine.java      |   1 +
 .../internal/plastic/asm/util/ASMifier.java        |  73 +++--
 .../internal/plastic/asm/util/ASMifierSupport.java |   1 +
 .../plastic/asm/util/CheckAnnotationAdapter.java   |   2 +-
 .../plastic/asm/util/CheckClassAdapter.java        |  65 +++--
 .../plastic/asm/util/CheckFieldAdapter.java        |   6 +-
 .../plastic/asm/util/CheckMethodAdapter.java       |  19 +-
 .../plastic/asm/util/CheckModuleAdapter.java       |   7 +-
 .../asm/util/CheckRecordComponentAdapter.java      |   5 +-
 .../plastic/asm/util/CheckSignatureAdapter.java    |   7 +-
 .../internal/plastic/asm/util/Printer.java         |  33 ++-
 .../internal/plastic/asm/util/Textifier.java       |  26 +-
 .../plastic/asm/util/TextifierSupport.java         |   1 +
 .../plastic/asm/util/TraceAnnotationVisitor.java   |   2 +-
 .../plastic/asm/util/TraceClassVisitor.java        |  16 +-
 .../plastic/asm/util/TraceFieldVisitor.java        |   2 +-
 .../plastic/asm/util/TraceMethodVisitor.java       |   2 +-
 .../plastic/asm/util/TraceModuleVisitor.java       |   2 +-
 .../asm/util/TraceRecordComponentVisitor.java      |   2 +-
 .../plastic/asm/util/TraceSignatureVisitor.java    |   5 +-
 98 files changed, 849 insertions(+), 752 deletions(-)
 delete mode 100644 
docs/home/thiago/workspace-tapestry/tapestry-5/tapestry-core/src/main/coffeescript/META-INF/modules/t5/core/ajax.html

Reply via email to