]> source.dussan.org Git - javassist.git/log
javassist.git
10 months agoMinimal changes make IDEA 2023.2 work out-of-box 470/head
shifujun [Tue, 12 Dec 2023 06:10:23 +0000 (14:10 +0800)]
Minimal changes make IDEA 2023.2 work out-of-box

Correct maven-compiler-plugin JDK version for IDEA import Compiler bytecode version.

Remove JvstTestRoot's constructor, otherwise IDEA cannot show Run icon aside testMethod.
Another way is adding suite() static method to those classes.

Now we can clone and open project with IDEA 2023.2. Debug single test case with IDEA is very useful.

10 months agoMerge pull request #467 from shifujun/453
Shigeru Chiba [Sat, 9 Dec 2023 15:49:49 +0000 (00:49 +0900)]
Merge pull request #467 from shifujun/453

Remove DUP check in TransformNewClass

10 months agoMerge pull request #448 from catsalty/patch-2
Shigeru Chiba [Sat, 9 Dec 2023 15:48:42 +0000 (00:48 +0900)]
Merge pull request #448 from catsalty/patch-2

Fix issue in no-standard [new] instruction replace

10 months agoMerge pull request #466 from shifujun/pr-fix-lookupMethod
Shigeru Chiba [Sat, 9 Dec 2023 15:47:26 +0000 (00:47 +0900)]
Merge pull request #466 from shifujun/pr-fix-lookupMethod

Fix MemberResolver.lookupMethod bug when super class has more precise…

10 months agoRemove DUP check in TransformNewClass 467/head
shifujun [Fri, 8 Dec 2023 13:36:45 +0000 (21:36 +0800)]
Remove DUP check in TransformNewClass

DUP usually come after NEW, but not necessary.

#453

10 months agoFix MemberResolver.lookupMethod bug when super class has more precise match 466/head
shifujun [Fri, 8 Dec 2023 06:48:28 +0000 (14:48 +0800)]
Fix MemberResolver.lookupMethod bug when super class has more precise match

When onlyExact=false and super class have a more precise match,
it should not return with current class's maybe result.

New added testSuperCall reveals the problem.

10 months agoMerge pull request #463 from wuwen5/java21-inner-class
Shigeru Chiba [Mon, 4 Dec 2023 09:49:40 +0000 (18:49 +0900)]
Merge pull request #463 from wuwen5/java21-inner-class

fixes Issue 462 (In Java21, the ConstPool API throws NPE for MethodParameters attributes without parameter names)

11 months agofixes GitHub Issue 462 (Internal class issues in the Java 21) 463/head
wuwen [Sun, 8 Oct 2023 08:31:26 +0000 (16:31 +0800)]
fixes GitHub Issue 462 (Internal class issues in the Java 21)

19 months agoFix issue in no-standard [new] instruction replace 448/head
LayHool [Thu, 16 Mar 2023 03:01:40 +0000 (11:01 +0800)]
Fix issue in no-standard [new] instruction replace

A standard *new* construct bytecode will generate like:

```
new okhttp3/OkHttpClient
dup
invokespecial okhttp3/OkHttpClient <init> ()V
astore 1
```

but a few part of compiler will generate no-standard bytecode like:

```
new okhttp3/OkHttpClient
dup
astore 1
invokespecial okhttp3/OkHttpClient <init> ()V
```
which will cause javassist build stack error.

This commit will fix it

2 years agoUpdate README.md
Shigeru Chiba [Sun, 2 Oct 2022 15:49:13 +0000 (00:49 +0900)]
Update README.md

2 years agoMerge pull request #434 from fanofxiaofeng/patch-1
Shigeru Chiba [Sun, 2 Oct 2022 15:48:27 +0000 (00:48 +0900)]
Merge pull request #434 from fanofxiaofeng/patch-1

try to fix trivial link error

2 years agotry to fix trivial link error 434/head
靳阳 [Sun, 2 Oct 2022 15:04:42 +0000 (23:04 +0800)]
try to fix trivial link error

try to fix trivial link error

2 years agoupdates javassist.jar for 3.29.2-GA. rel_3_29_2_ga
chibash [Tue, 13 Sep 2022 21:19:11 +0000 (06:19 +0900)]
updates javassist.jar for 3.29.2-GA.

2 years agoprepares a new release
chibash [Tue, 13 Sep 2022 20:48:02 +0000 (05:48 +0900)]
prepares a new release

2 years agoMerge pull request #427 from dakusui/master-issue-426_includeAutomaticModuleNameInMan...
Shigeru Chiba [Sun, 11 Sep 2022 00:16:04 +0000 (09:16 +0900)]
Merge pull request #427 from dakusui/master-issue-426_includeAutomaticModuleNameInManifestMf

Includes Automatic-Module-Name in MANIFEST.MF

2 years agoIssue-#426 Format a line in the pom.xml. 427/head
Hiroshi Ukai [Mon, 29 Aug 2022 21:28:35 +0000 (06:28 +0900)]
Issue-#426 Format a line in the pom.xml.

2 years agoIssue-#426 Include Automatic-Module-Name in MANIFEST.MF and bump up the version to...
Hiroshi Ukai [Mon, 29 Aug 2022 21:09:37 +0000 (06:09 +0900)]
Issue-#426 Include Automatic-Module-Name in MANIFEST.MF and bump up the version to 3.29.2-GA

2 years agoupdates README.md
chibash [Thu, 11 Aug 2022 16:23:50 +0000 (01:23 +0900)]
updates README.md

2 years agoadds Issue #423 to Changes.md
chibash [Thu, 11 Aug 2022 16:13:42 +0000 (01:13 +0900)]
adds Issue #423 to Changes.md

2 years agofor releasing 3.29.1 rel_3_29_1_ga
chibash [Thu, 11 Aug 2022 15:17:58 +0000 (00:17 +0900)]
for releasing 3.29.1

2 years agoprohibits too many items from being added to a constant pool.
chibash [Sat, 6 Aug 2022 19:06:50 +0000 (04:06 +0900)]
prohibits too many items from being added to a constant pool.
the previous commit was wrong.

2 years agoprohibits too many items from being added to a constant pool
chibash [Sat, 6 Aug 2022 18:01:40 +0000 (03:01 +0900)]
prohibits too many items from being added to a constant pool

2 years agoupdates Changes.md to note Issue #414
chibash [Wed, 18 May 2022 13:25:12 +0000 (22:25 +0900)]
updates Changes.md to note Issue #414

2 years agofixes typos in *.md
chibash [Tue, 17 May 2022 04:09:44 +0000 (13:09 +0900)]
fixes typos in *.md

2 years agoremoves Readme.html and adds Changes.md and Examples.md
chibash [Tue, 17 May 2022 04:05:58 +0000 (13:05 +0900)]
removes Readme.html and adds Changes.md and Examples.md

2 years agoprepares for 3.29.0-GA release rel_3_29_0_ga
chibash [Fri, 13 May 2022 13:58:52 +0000 (22:58 +0900)]
prepares for 3.29.0-GA release

2 years agoremoves an unused import declaration as PR 384 mentions.
chibash [Thu, 12 May 2022 17:49:08 +0000 (02:49 +0900)]
removes an unused import declaration as PR 384 mentions.

2 years agoMerge pull request #382 from tim-hoffman/PR_RemoveStringBuffer
Shigeru Chiba [Thu, 12 May 2022 17:45:42 +0000 (02:45 +0900)]
Merge pull request #382 from tim-hoffman/PR_RemoveStringBuffer

Replace StringBuffer with StringBuilder, other minor String optimizations

2 years agoMerge pull request #383 from tim-hoffman/PR_ArrayCopyPerformance
Shigeru Chiba [Thu, 12 May 2022 17:41:05 +0000 (02:41 +0900)]
Merge pull request #383 from tim-hoffman/PR_ArrayCopyPerformance

Replace array copy loops with System.arraycopy

2 years agouncomments test code suggested by PR405
chibash [Thu, 12 May 2022 17:39:03 +0000 (02:39 +0900)]
uncomments test code suggested by PR405

2 years agocancels PR#391, which does not pass all the tests
chibash [Thu, 12 May 2022 17:32:49 +0000 (02:32 +0900)]
cancels PR#391, which does not pass all the tests

2 years agofixes a wrong indentation
chibash [Thu, 12 May 2022 17:25:44 +0000 (02:25 +0900)]
fixes a wrong indentation

2 years agoMerge pull request #391 from derklaro/fix-method-naming-syntax
Shigeru Chiba [Thu, 12 May 2022 17:24:13 +0000 (02:24 +0900)]
Merge pull request #391 from derklaro/fix-method-naming-syntax

Only wrap the method name if the method doesn't come from the same declaring class

2 years agodoes refactoring
chibash [Thu, 12 May 2022 17:15:47 +0000 (02:15 +0900)]
does refactoring

2 years agofixes a bug in SignatureAttribute.renameClass().
chibash [Thu, 12 May 2022 16:33:19 +0000 (01:33 +0900)]
fixes a bug in SignatureAttribute.renameClass().

2 years agofixs a compilation problem although one test still fails.
chibash [Wed, 11 May 2022 15:50:44 +0000 (00:50 +0900)]
fixs a compilation problem although one test still fails.

2 years agoMerge pull request #299 from pietrobraione/master
Shigeru Chiba [Wed, 11 May 2022 15:42:15 +0000 (00:42 +0900)]
Merge pull request #299 from pietrobraione/master

Fix renaming of classes in presence of generic signatures and nested classes.
This pull request has some problems but I'll fix them later.

2 years agoMerge branch 'master' into master 299/head
Shigeru Chiba [Tue, 10 May 2022 16:54:28 +0000 (01:54 +0900)]
Merge branch 'master' into master

2 years agoMerge pull request #278 from ximsfei/master
Shigeru Chiba [Tue, 10 May 2022 10:54:48 +0000 (19:54 +0900)]
Merge pull request #278 from ximsfei/master

fixes a bug of ClassFile#renameClass(), some imports could not be successfully renamed.

2 years agoMerge pull request #390 from derklaro/master
Shigeru Chiba [Tue, 10 May 2022 09:22:31 +0000 (18:22 +0900)]
Merge pull request #390 from derklaro/master

Lower requirement for an extra type in constructor to Java 7-

2 years agochanges test code because package java.rmi.activation.ActivationGroupDesc does not...
chibash [Tue, 10 May 2022 09:21:13 +0000 (18:21 +0900)]
changes test code because package java.rmi.activation.ActivationGroupDesc does not exist any longer.

2 years agodeletes src/test/test2/*.class
chibash [Tue, 10 May 2022 09:07:12 +0000 (18:07 +0900)]
deletes src/test/test2/*.class

2 years agoMerge pull request #399 from carldea/master
Shigeru Chiba [Tue, 10 May 2022 04:55:34 +0000 (13:55 +0900)]
Merge pull request #399 from carldea/master

Using TCK Tested JDK builds of OpenJDK

2 years agoMerge pull request #409 from aschleck/patch-1
Shigeru Chiba [Tue, 10 May 2022 04:42:33 +0000 (13:42 +0900)]
Merge pull request #409 from aschleck/patch-1

Remove redundant type check

2 years agoRemove redundant type check 409/head
April Schleck [Fri, 1 Apr 2022 04:35:37 +0000 (21:35 -0700)]
Remove redundant type check

The same condition is repeated twice (caught by FindBugs.)

3 years agoUsing TCK Tested JDK builds of OpenJDK 399/head
Carl Dea [Mon, 4 Oct 2021 13:47:25 +0000 (09:47 -0400)]
Using TCK Tested JDK builds of OpenJDK

The AdoptOpenJDK has been discontinued since July 2021. When using Zulu you get all the latest updated (TCK Tested) builds for all versions of OpenJDK.

Also added are fixed (major) release version(s) such as 11.0.3. This is often a good practice whenever a build/test triggers (push/pull events) this can determine if the latest JDK (11) had failed the build vs something in your code that caused it. For example, when building with JDK 11.0.3 (fixed version) the build passes (green) and JDK 11 fails (red) will mean that the latest JDK (11) was the cause and not your code.



Note: Other distributions such as Temurin do not support archived fixed release prior to Sept. 2021.

3 years agoMerge pull request #395 from aburaksahin/master
Shigeru Chiba [Tue, 21 Sep 2021 09:11:01 +0000 (18:11 +0900)]
Merge pull request #395 from aburaksahin/master

Fix for NullPointerException on detach()

3 years agoFix for NullPointerException on detach() 395/head
Burak Şahin [Tue, 21 Sep 2021 08:13:48 +0000 (11:13 +0300)]
Fix for NullPointerException on detach()

3 years agoOnly wrap the method name if the method doesn't come from the same decl class 391/head
derklaro [Tue, 7 Sep 2021 19:44:24 +0000 (21:44 +0200)]
Only wrap the method name if the method doesn't come from the same decl class

3 years agoLower requirement for an extra type in constructor to Java 7- 390/head
derklaro [Tue, 7 Sep 2021 17:22:36 +0000 (19:22 +0200)]
Lower requirement for an extra type in constructor to Java 7-

3 years agoReplace array copy loop with System.arraycopy 383/head
Timothy Hoffman [Fri, 16 Jul 2021 18:29:45 +0000 (13:29 -0500)]
Replace array copy loop with System.arraycopy

3 years agoReplace remaining StringBuffer uses with StringBuilder 382/head
Timothy Hoffman [Fri, 16 Jul 2021 15:59:01 +0000 (10:59 -0500)]
Replace remaining StringBuffer uses with StringBuilder

3 years agoReplace StringBuffer with StringBuilder and other minor String optimizations
Timothy Hoffman [Fri, 16 Jul 2021 15:55:33 +0000 (10:55 -0500)]
Replace StringBuffer with StringBuilder and other minor String optimizations

3 years agofixes GitHub Issue 378 (wrong link for apache license)
chibash [Wed, 30 Jun 2021 10:25:07 +0000 (19:25 +0900)]
fixes GitHub Issue 378 (wrong link for apache license)

3 years agoupdates javassist.Loader to exclude jdk.internal.
chibash [Thu, 13 May 2021 17:08:08 +0000 (02:08 +0900)]
updates javassist.Loader to exclude jdk.internal.

3 years agorelease 3.28.0-GA rel_3_28_0_ga
chibash [Fri, 7 May 2021 17:01:12 +0000 (02:01 +0900)]
release 3.28.0-GA

3 years agoAdd an action badge.
Shigeru Chiba [Thu, 6 May 2021 04:08:55 +0000 (13:08 +0900)]
Add an action badge.

3 years agoCreate maven.yml
Shigeru Chiba [Thu, 6 May 2021 03:52:43 +0000 (12:52 +0900)]
Create maven.yml

3 years agoupdates Readme.html since #305 has been fixed by PR #306
chibash [Sun, 25 Apr 2021 17:37:47 +0000 (02:37 +0900)]
updates Readme.html since #305 has been fixed by PR #306

3 years agoMerge pull request #306 from nschaefe/master
Shigeru Chiba [Sun, 25 Apr 2021 17:35:45 +0000 (02:35 +0900)]
Merge pull request #306 from nschaefe/master

fix issue 305: CodeConverter.replaceArrayAccess leads to java.util.ConcurrentModificationException

3 years agoupdates Readme.html since #363 has been mergeed
chibash [Sun, 25 Apr 2021 17:28:45 +0000 (02:28 +0900)]
updates Readme.html since #363 has been mergeed

3 years agoMerge pull request #363 from michalkurka/master
Shigeru Chiba [Sun, 25 Apr 2021 17:27:10 +0000 (02:27 +0900)]
Merge pull request #363 from michalkurka/master

Fix a race condition in CtClassType#getClassFile3

3 years agoupdates Readme.html since #350 has been fixed
chibash [Sun, 25 Apr 2021 17:18:48 +0000 (02:18 +0900)]
updates Readme.html since #350 has been fixed

3 years agoMerge pull request #351 from sgjesse/issue-350
Shigeru Chiba [Sun, 25 Apr 2021 17:13:44 +0000 (02:13 +0900)]
Merge pull request #351 from sgjesse/issue-350

This fixes Issue #350.
Check for extended frame type when updating StackMapTable offset.

3 years agoFix a race condition in CtClassType#getClassFile3 363/head
michalkurka [Wed, 17 Mar 2021 17:12:21 +0000 (13:12 -0400)]
Fix a race condition in CtClassType#getClassFile3

javassist fails to find a class when concurrently running process
compresses the class (converts classfile to raw bytes)

the idea of the fix is to make sure to only update rawClassfile and classfile
under lock in getClassFile3, all other places that modify classfile are
already synchronized

when reading the object state, we need to read under lock both classfile and
rawClassFile otherwise we might get an inconsistent state

3 years agofixes a security problem in pom.xml
chibash [Sat, 30 Jan 2021 02:16:52 +0000 (11:16 +0900)]
fixes a security problem in pom.xml

3 years agofixes typos for #357
chibash [Sat, 30 Jan 2021 02:05:23 +0000 (11:05 +0900)]
fixes typos for #357

3 years agoMerge pull request #357 from eshizhan/master
Shigeru Chiba [Sat, 30 Jan 2021 01:57:46 +0000 (10:57 +0900)]
Merge pull request #357 from eshizhan/master

add functions for getting the parameter names of method

3 years agoadd unit tests for LocalVariableAttribute.variableNameByIndex and MethodParametersAtt... 357/head
eshizhan [Fri, 29 Jan 2021 04:34:08 +0000 (12:34 +0800)]
add unit tests for LocalVariableAttribute.variableNameByIndex and MethodParametersAttribute.parameterName

3 years agoadd functions for getting the parameter names of method
eshizhan [Tue, 26 Jan 2021 09:39:20 +0000 (17:39 +0800)]
add functions for getting the parameter names of method

3 years agoCheck for extended frame type when updating StackTableOffset offset 351/head
Søren Gjesse [Mon, 14 Dec 2020 13:52:31 +0000 (14:52 +0100)]
Check for extended frame type when updating StackTableOffset offset

Fixes #350

4 years agofixes Issue #339
chibash [Fri, 16 Oct 2020 10:23:07 +0000 (19:23 +0900)]
fixes Issue #339

4 years agoupdates the version number
chibash [Mon, 13 Jul 2020 01:06:13 +0000 (10:06 +0900)]
updates the version number

4 years agofixes a bug of javassist.bytecode.stackmap, which was reported as Issue #328.
chibash [Mon, 13 Jul 2020 00:02:22 +0000 (09:02 +0900)]
fixes a bug of javassist.bytecode.stackmap, which was reported as Issue #328.

4 years agoMerge pull request #307 from sarxos/patch-1
Shigeru Chiba [Fri, 27 Mar 2020 03:06:43 +0000 (12:06 +0900)]
Merge pull request #307 from sarxos/patch-1

Fix typo in TypeChecker

4 years agoFix typo in TypeChecker 307/head
Bartosz Firyn [Thu, 26 Mar 2020 20:30:06 +0000 (21:30 +0100)]
Fix typo in TypeChecker

Should be "bad field access" not "bad filed access".

4 years agofix CodeConverter.replaceArrayAccess leads to java.util.ConcurrentModificationException 306/head
User [Tue, 24 Mar 2020 15:20:23 +0000 (16:20 +0100)]
fix CodeConverter.replaceArrayAccess leads to java.util.ConcurrentModificationException

4 years agoupdates Readme.html to mention how to release.
chibash [Thu, 19 Mar 2020 16:11:44 +0000 (01:11 +0900)]
updates Readme.html to mention how to release.

4 years agofor release 3.27.0-GA rel_3_27_0_ga
chibash [Wed, 18 Mar 2020 18:03:28 +0000 (03:03 +0900)]
for release 3.27.0-GA

4 years agoFixes to support the full syntax of possible signatures
Pietro Braione [Wed, 22 Jan 2020 14:06:11 +0000 (15:06 +0100)]
Fixes to support the full syntax of possible signatures

4 years agoFix renaming of classes in presence of generic signatures and nested
Pietro Braione [Tue, 21 Jan 2020 17:32:06 +0000 (18:32 +0100)]
Fix renaming of classes in presence of generic signatures and nested
classes.

4 years agofixes a bug involuved in Pull Request #294
chibash [Mon, 23 Dec 2019 16:02:05 +0000 (01:02 +0900)]
fixes a bug involuved in Pull Request #294

4 years agoMerge pull request #294 from junwen12221/master
Shigeru Chiba [Mon, 23 Dec 2019 13:58:38 +0000 (22:58 +0900)]
Merge pull request #294 from junwen12221/master

Supports parsing 'byte[] a = new byte[]{};'.  Only parsing is supported.  Javassist reports a not-supported error.

4 years agoMerge branch 'master' of github.com:jboss-javassist/javassist
chibash [Mon, 23 Dec 2019 09:35:13 +0000 (18:35 +0900)]
Merge branch 'master' of github.com:jboss-javassist/javassist

4 years agofixdes Issue #282
chibash [Mon, 23 Dec 2019 09:34:44 +0000 (18:34 +0900)]
fixdes Issue #282

4 years agoSupport parsing 'byte[] a = new byte[]{};' 294/head
cjw [Thu, 5 Dec 2019 13:15:55 +0000 (21:15 +0800)]
Support parsing 'byte[] a = new byte[]{};'

5 years agoadd unit test 278/head
ximsfei [Thu, 17 Oct 2019 11:51:14 +0000 (19:51 +0800)]
add unit test

5 years agoMerge pull request #281 from diptadas/patch-1
Shigeru Chiba [Mon, 14 Oct 2019 10:25:09 +0000 (19:25 +0900)]
Merge pull request #281 from diptadas/patch-1

Fix instruction printer double constant

5 years agoFix instruction printer double constant 281/head
Dipta Das [Mon, 14 Oct 2019 04:21:11 +0000 (23:21 -0500)]
Fix instruction printer double constant

5 years agoupdates Readme.html
chibash [Fri, 11 Oct 2019 17:15:18 +0000 (02:15 +0900)]
updates Readme.html

5 years agoMerge pull request #279 from csobrinho/patch-1
Shigeru Chiba [Fri, 11 Oct 2019 17:08:33 +0000 (02:08 +0900)]
Merge pull request #279 from csobrinho/patch-1

Fix a bottleneck. If the jar entries is big, List.contains is O(n) an…

5 years agoFix a bottleneck. If the jar entries is big, List.contains is O(n) and very slow! 279/head
Carlos Sobrinho [Fri, 11 Oct 2019 01:30:37 +0000 (18:30 -0700)]
Fix a bottleneck. If the jar entries is big, List.contains is O(n) and very slow!

This is a continuation of #271 to speed up the 3.25/26 release. More details on the issue.

5 years agofixes a bug of ClassFile#renameClass(), some imports could not be successfully renamed
ximsfei [Tue, 8 Oct 2019 14:28:05 +0000 (22:28 +0800)]
fixes a bug of ClassFile#renameClass(), some imports could not be successfully renamed

5 years agofor release 3.26.0-GA 3_26_0_ga rel_3_26_0_ga
chibash [Wed, 2 Oct 2019 15:21:30 +0000 (00:21 +0900)]
for release 3.26.0-GA

5 years agoadds CtClass#isKotlin() for PR #276
chibash [Mon, 23 Sep 2019 13:12:42 +0000 (22:12 +0900)]
adds CtClass#isKotlin() for PR #276

5 years agofixes a bug of JvstTest5#testRedundantInsertAfter() for Issue #275
chibash [Sun, 22 Sep 2019 16:32:27 +0000 (01:32 +0900)]
fixes a bug of JvstTest5#testRedundantInsertAfter() for Issue #275

5 years agoadds CtBehavior#insertAfter(String,boolean,boolean) for Issue #275
chibash [Fri, 20 Sep 2019 14:20:39 +0000 (23:20 +0900)]
adds CtBehavior#insertAfter(String,boolean,boolean) for Issue #275

5 years agofixes Issue #271
chibash [Sun, 1 Sep 2019 16:08:17 +0000 (01:08 +0900)]
fixes Issue #271

5 years agoupdates Readme.html
chibash [Sun, 1 Sep 2019 15:30:49 +0000 (00:30 +0900)]
updates Readme.html

5 years agoMerge pull request #267 from sam-ma/master
Shigeru Chiba [Sun, 1 Sep 2019 15:27:11 +0000 (00:27 +0900)]
Merge pull request #267 from sam-ma/master

Fix #265 javassist.CannotCompileException: [source error] the called …