[Git][java-team/byteman][upstream] New upstream version 4.0.13

Andrius Merkys gitlab at salsa.debian.org
Mon Feb 15 05:37:56 GMT 2021



Andrius Merkys pushed to branch upstream at Debian Java Maintainers / byteman


Commits:
40412569 by Andrius Merkys at 2021-02-12T08:37:08-05:00
New upstream version 4.0.13
- - - - -


24 changed files:

- agent/pom.xml
- agent/src/main/java/org/jboss/byteman/agent/adapter/BMJSRInliner.java
- agent/src/main/java/org/jboss/byteman/agent/adapter/BMLocalScopeAdapter.java
- agent/src/main/java/org/jboss/byteman/agent/adapter/RuleAdapter.java
- agent/src/main/java/org/jboss/byteman/agent/check/ClassStructureAdapter.java
- byteman/pom.xml
- contrib/bmunit/pom.xml
- contrib/bmunit5/pom.xml
- contrib/dtest/pom.xml
- contrib/jboss-modules-system/plugin/pom.xml
- contrib/jboss-modules-system/pom.xml
- contrib/jboss-modules-system/tests/pom.xml
- contrib/rulecheck-maven-plugin/example/pom.xml
- contrib/rulecheck-maven-plugin/pom.xml
- docs/asciidoc/pom.xml
- docs/pom.xml
- download/pom.xml
- install/pom.xml
- jigsaw/pom.xml
- layer/pom.xml
- pom.xml
- sample/pom.xml
- submit/pom.xml
- tests/pom.xml


Changes:

=====================================
agent/pom.xml
=====================================
@@ -34,7 +34,7 @@
     <parent>
         <groupId>org.jboss.byteman</groupId>
         <artifactId>byteman-root</artifactId>
-        <version>4.0.12</version>
+        <version>4.0.13</version>
     </parent>
 
     <properties>


=====================================
agent/src/main/java/org/jboss/byteman/agent/adapter/BMJSRInliner.java
=====================================
@@ -35,7 +35,7 @@ public class BMJSRInliner extends ClassVisitor
 {
     public BMJSRInliner(ClassVisitor cv)
     {
-        super(Opcodes.ASM7, cv);
+        super(Opcodes.ASM9, cv);
     }
 
     @Override


=====================================
agent/src/main/java/org/jboss/byteman/agent/adapter/BMLocalScopeAdapter.java
=====================================
@@ -34,7 +34,7 @@ public class BMLocalScopeAdapter extends ClassVisitor
 {
     public BMLocalScopeAdapter(ClassVisitor cv)
     {
-        super(OpcodesHelper.ASM7, cv);
+        super(OpcodesHelper.ASM9, cv);
     }
 
     @Override


=====================================
agent/src/main/java/org/jboss/byteman/agent/adapter/RuleAdapter.java
=====================================
@@ -34,7 +34,7 @@ public class RuleAdapter extends ClassVisitor
 {
     protected RuleAdapter(ClassVisitor cv, TransformContext transformContext)
     {
-        super(Opcodes.ASM7, cv);
+        super(Opcodes.ASM9, cv);
         this.transformContext =  transformContext;
     }
 


=====================================
agent/src/main/java/org/jboss/byteman/agent/check/ClassStructureAdapter.java
=====================================
@@ -38,7 +38,7 @@ public class ClassStructureAdapter extends ClassVisitor {
     private String superName = null;
     private String outerClass = null;
 
-    public ClassStructureAdapter() { super(Opcodes.ASM7); }
+    public ClassStructureAdapter() { super(Opcodes.ASM9); }
 
     public boolean isInterface() {
         return isInterface;


=====================================
byteman/pom.xml
=====================================
@@ -7,7 +7,7 @@
     <parent>
         <groupId>org.jboss.byteman</groupId>
         <artifactId>byteman-root</artifactId>
-        <version>4.0.12</version>
+        <version>4.0.13</version>
     </parent>
 
     <description>


=====================================
contrib/bmunit/pom.xml
=====================================
@@ -32,7 +32,7 @@
     <parent>
         <groupId>org.jboss.byteman</groupId>
         <artifactId>byteman-root</artifactId>
-        <version>4.0.12</version>
+        <version>4.0.13</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
     <build>


=====================================
contrib/bmunit5/pom.xml
=====================================
@@ -32,7 +32,7 @@
     <parent>
         <groupId>org.jboss.byteman</groupId>
         <artifactId>byteman-root</artifactId>
-        <version>4.0.12</version>
+        <version>4.0.13</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
     <build>


=====================================
contrib/dtest/pom.xml
=====================================
@@ -33,7 +33,7 @@
     <parent>
         <groupId>org.jboss.byteman</groupId>
         <artifactId>byteman-root</artifactId>
-        <version>4.0.12</version>
+        <version>4.0.13</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
     <dependencies>


=====================================
contrib/jboss-modules-system/plugin/pom.xml
=====================================
@@ -28,7 +28,7 @@
     <parent>
         <groupId>org.jboss.byteman</groupId>
         <artifactId>byteman-jboss-modules</artifactId>
-        <version>4.0.12</version>
+        <version>4.0.13</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 


=====================================
contrib/jboss-modules-system/pom.xml
=====================================
@@ -28,7 +28,7 @@
     <parent>
         <groupId>org.jboss.byteman</groupId>
         <artifactId>byteman-root</artifactId>
-        <version>4.0.12</version>
+        <version>4.0.13</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
 


=====================================
contrib/jboss-modules-system/tests/pom.xml
=====================================
@@ -19,7 +19,7 @@
 	<parent>
 		<groupId>org.jboss.byteman</groupId>
 		<artifactId>byteman-jboss-modules</artifactId>
-		<version>4.0.12</version>
+		<version>4.0.13</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 


=====================================
contrib/rulecheck-maven-plugin/example/pom.xml
=====================================
@@ -18,7 +18,7 @@
       <plugin>
         <groupId>org.jboss.byteman</groupId>
         <artifactId>byteman-rulecheck-maven-plugin</artifactId>
-        <version>4.0.12</version>
+        <version>4.0.13</version>
         <executions>
           <execution>
             <id>rulecheck-test</id>


=====================================
contrib/rulecheck-maven-plugin/pom.xml
=====================================
@@ -32,7 +32,7 @@
 	<parent>
 		<groupId>org.jboss.byteman</groupId>
 		<artifactId>byteman-root</artifactId>
-		<version>4.0.12</version>
+		<version>4.0.13</version>
 		<relativePath>../../pom.xml</relativePath>
 	</parent>
 


=====================================
docs/asciidoc/pom.xml
=====================================
@@ -6,7 +6,7 @@
   <parent>
     <groupId>org.jboss.byteman</groupId>
     <artifactId>byteman-docs</artifactId>
-    <version>4.0.12</version>
+    <version>4.0.13</version>
   </parent>
     
   <artifactId>byteman-asciidoc</artifactId>


=====================================
docs/pom.xml
=====================================
@@ -6,7 +6,7 @@
   <parent>
     <groupId>org.jboss.byteman</groupId>
     <artifactId>byteman-root</artifactId>
-    <version>4.0.12</version>
+    <version>4.0.13</version>
   </parent>
     
   <artifactId>byteman-docs</artifactId>


=====================================
download/pom.xml
=====================================
@@ -28,7 +28,7 @@
     <parent>
         <groupId>org.jboss.byteman</groupId>
         <artifactId>byteman-root</artifactId>
-        <version>4.0.12</version>
+        <version>4.0.13</version>
     </parent>
     <description>
         The Byteman download includes the byteman agent, submit and install jars. the contributed


=====================================
install/pom.xml
=====================================
@@ -33,7 +33,7 @@
     <parent>
         <groupId>org.jboss.byteman</groupId>
         <artifactId>byteman-root</artifactId>
-        <version>4.0.12</version>
+        <version>4.0.13</version>
     </parent>
 
     <profiles>


=====================================
jigsaw/pom.xml
=====================================
@@ -41,7 +41,7 @@
     <parent>
         <groupId>org.jboss.byteman</groupId>
         <artifactId>byteman-root</artifactId>
-        <version>4.0.12</version>
+        <version>4.0.13</version>
     </parent>
     <properties>
         <!-- don't install or deploy this jar, instead use it to


=====================================
layer/pom.xml
=====================================
@@ -36,7 +36,7 @@
     <parent>
         <groupId>org.jboss.byteman</groupId>
         <artifactId>byteman-root</artifactId>
-        <version>4.0.12</version>
+        <version>4.0.13</version>
     </parent>
     <build>
         <plugins>


=====================================
pom.xml
=====================================
@@ -33,7 +33,7 @@
         into Java application and JVM runtime methods. Its primary purpose is to support execution tracing and fault
         injection testing.
     </description>
-    <version>4.0.12</version>
+    <version>4.0.13</version>
     <name>byteman-root</name>
     <url>http://www.jboss.org/byteman</url>
 
@@ -106,7 +106,7 @@
         <!-- for testing: command line args to enable debugger and verbose trace -->
         <debug.args>-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=5005 -Dorg.jboss.byteman.verbose</debug.args>
         <!-- asm release version to use -->
-        <asm.version>7.3.1</asm.version>
+        <asm.version>9.0-beta</asm.version>
     </properties>
 
     <dependencyManagement>


=====================================
sample/pom.xml
=====================================
@@ -28,7 +28,7 @@
     <parent>
         <groupId>org.jboss.byteman</groupId>
         <artifactId>byteman-root</artifactId>
-        <version>4.0.12</version>
+        <version>4.0.13</version>
     </parent>
     <description>
         The Byteman sample jar contains some example helper classes and auxiliary classes used by the]


=====================================
submit/pom.xml
=====================================
@@ -33,7 +33,7 @@
     <parent>
         <groupId>org.jboss.byteman</groupId>
         <artifactId>byteman-root</artifactId>
-        <version>4.0.12</version>
+        <version>4.0.13</version>
     </parent>
     <build>
       <plugins>


=====================================
tests/pom.xml
=====================================
@@ -7,7 +7,7 @@
     <parent>
         <groupId>org.jboss.byteman</groupId>
         <artifactId>byteman-root</artifactId>
-        <version>4.0.12</version>
+        <version>4.0.13</version>
     </parent>
 
     <description>



View it on GitLab: https://salsa.debian.org/java-team/byteman/-/commit/40412569eec2978465a1a0bd08154db8ea36eebc

-- 
View it on GitLab: https://salsa.debian.org/java-team/byteman/-/commit/40412569eec2978465a1a0bd08154db8ea36eebc
You're receiving this email because of your account on salsa.debian.org.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-java-commits/attachments/20210215/f54162b2/attachment.html>


More information about the pkg-java-commits mailing list