You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README-1.9.21.adoc 9.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. = AspectJ 1.9.21
  2. :doctype: book
  3. :leveloffset: +1
  4. // AspectJ_JDK_Update: Each a.b.c release needs a new release notes document. For a.b.c.d minors, the existing a.b.c
  5. // document can be updated. After copying this document, remove the comment from the previous one.
  6. The releases 1.9.21, 1.9.21.1 and 1.9.21.2 are described together in this document.
  7. = AspectJ 1.9.21.2
  8. _© Copyright 2024 Contributors. All rights reserved._
  9. _Release info: 1.9.21.2 available 13-Mar-2024_
  10. Please note that Bugzilla for issue management is deprecated and new issues should be filed as
  11. https://github.com/eclipse-aspectj/aspectj/issues/new[GitHub issues]. The list of issues addressed for 1.9.21.2 can be
  12. found here:
  13. * https://github.com/eclipse-aspectj/aspectj/issues?q=is%3Aissue+is%3Aclosed++milestone%3A1.9.21.2[GitHub 1.9.21.2]
  14. * https://bugs.eclipse.org/bugs/buglist.cgi?bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&f0=OP&f1=OP&f3=CP&f4=CP&j1=OR&list_id=16866879&product=AspectJ&query_format=advanced&target_milestone=1.9.21.2[Bugzilla 1.9.21.2]
  15. == New features
  16. AspectJ 1.9.21.2 is a maintenance release with no new language features, but an important improvement and a bugfix,
  17. see below.
  18. == Improvements
  19. Previously, when targeting the same join point from multiple around advices in annotation-style @AspectJ syntax, there
  20. were limitations in functionality in concurrent (multi-threaded) situations, if the around advice code was not inlined.
  21. This was improved in xref:README-1.9.9#async_proceed[AspectJ 1.9.9] (see also https://github.com/eclipse-aspectj/aspectj/issues/128[issue #128]),
  22. but the improvement only applied to child threads directly created during aspect execution and would fail for
  23. pre-existing, long-lived threads, e.g. thread pools used by executor services. Furthermore, the improvement could lead
  24. to memory leaks, not cleaning up thread-local references to posssibly expensive objects. In such situations, users had
  25. to switch to native-syntax aspects which never had that problem to begin with due to their different internal structure.
  26. Now, https://github.com/eclipse-aspectj/aspectj/issues/141[issue #141] has been resolved, closing the gap and, as well
  27. as possible given their different internal structure, bringing @AspectJ aspects up to par with native-syntax aspects in
  28. concurrent situations, while simultaneously also addressing the memory leak https://github.com/eclipse-aspectj/aspectj/issues/288[issue #288]. This is a substantial improvement, and annotation-style syntax users are strongly engouraged to upgrade. Thanks
  29. to user _pagrawalgit_ for raising the memory leak issue and triggering me to think about the concurrency issue more
  30. broadly and finally solve both in one shot.
  31. == Other changes and bugfixes
  32. The fix for https://github.com/eclipse-aspectj/aspectj/issues/277[issue #277] in AspectJ 1.9.21.1 introduced a
  33. regression bug in the optional weaving cache now fixed in https://github.com/eclipse-aspectj/aspectj/issues/285[issue #285].
  34. Thanks to user _Kimming Lau_ for raising and re-testing both issues.
  35. = AspectJ 1.9.21.1
  36. _© Copyright 2024 Contributors. All rights reserved._
  37. _Release info: 1.9.21.1 available 14-Feb-2024_
  38. Please note that Bugzilla for issue management is deprecated and new issues should be filed as
  39. https://github.com/eclipse-aspectj/aspectj/issues/new[GitHub issues]. The list of issues addressed for 1.9.21.1 can be
  40. found here:
  41. * https://github.com/eclipse-aspectj/aspectj/issues?q=is%3Aissue+is%3Aclosed++milestone%3A1.9.21.1[GitHub 1.9.21.1]
  42. * https://bugs.eclipse.org/bugs/buglist.cgi?bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&f0=OP&f1=OP&f3=CP&f4=CP&j1=OR&list_id=16866879&product=AspectJ&query_format=advanced&target_milestone=1.9.21.1[Bugzilla 1.9.21.1]
  43. == New features
  44. AspectJ 1.9.21.1 is a maintenance release with no new language features, but important improvements and some bugfixes,
  45. see below.
  46. == Improvements
  47. * **For load-time weaving (LTW) on JDK 16+, xref:#ltw_java_16[using `--add-opens`] is no longer necessary!** This solves
  48. link:https://github.com/eclipse-aspectj/aspectj/issues/117[issue #117]. The additional JVM command-line option was
  49. necessary for LTW on JRE 16+ in all AspectJ versions up to 1.9.21. Since AspectJ 1.9.21.1, the LTW agent uses an
  50. alternative approach for defining new classes during weaving, which works without `--add-opens` - at least for now, i.e.
  51. JDKs 8 to 21. There still is no canonical solution, because link:https://bugs.openjdk.org/browse/JDK-8200559[JDK-8200559]
  52. is still unresolved since 2018.
  53. * The **AspectJ documentation** is now written in **asciidoc** format and processed by the Asciidoctor toolchain.
  54. Before, it was a mixture of DocBook XML and plain HTML files. While the content has not changed much, it now looks
  55. fresher, is easier to read (also online when browsing the GitHub repository), navigate and maintain and also easy to
  56. publish in different formats (multi-page HTML, single-page HTML, PDF). Those formats are also distributed on the website
  57. and with the AspectJ installer. A content overhaul is also overdue, but not part of this change. It is still basically
  58. the same: Everything up to AspectJ 1.5 is in the regular documentation. The changes since then can be extracted
  59. incrementally from various release notes.
  60. == Other changes and bugfixes
  61. * Running the AspectJ Compiler on JDK < 17 no longer creates an `ajcore.*.txt` crash dump file, but prints "The AspectJ
  62. compiler needs at least Java runtime 17". Fixes link:https://github.com/eclipse-aspectj/aspectj/issues/269[issue #269].
  63. * The AspectJ weaver now plays nicer with parallel class loaders, e.g. jboss-modules in WildFly. Before, it would
  64. sometimes return original instead of woven byte code. Fixes link:https://github.com/eclipse-aspectj/aspectj/issues/279[issue #279].
  65. * An upstream refresh from JDT Core (Eclipse Java Compiler) fixes a little
  66. link:https://github.com/eclipse-jdt/eclipse.jdt.core/issues/1719[bug in JDK 21 string templates].
  67. = AspectJ 1.9.21
  68. _© Copyright 2023 Contributors. All rights reserved._
  69. _Release info: 1.9.21 available 11-Dec-2023_
  70. Please note that Bugzilla for issue management is deprecated and new issues should be filed as
  71. https://github.com/eclipse-aspectj/aspectj/issues/new[GitHub issues]. The list of issues addressed for 1.9.21 can be
  72. found here:
  73. * https://github.com/eclipse-aspectj/aspectj/issues?q=is%3Aissue+is%3Aclosed++milestone%3A1.9.21[GitHub 1.9.21]
  74. * https://bugs.eclipse.org/bugs/buglist.cgi?bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&f0=OP&f1=OP&f3=CP&f4=CP&j1=OR&list_id=16866879&product=AspectJ&query_format=advanced&target_milestone=1.9.21[Bugzilla 1.9.21]
  75. == New features
  76. AspectJ 1.9.21 supports https://openjdk.java.net/projects/jdk/21/[Java 21], its final features and a subset of preview
  77. features, such as:
  78. * Record patterns
  79. * Pattern matching for switch
  80. * Virtual threads
  81. * Sequenced collections
  82. * Structured concurrency (preview)
  83. * String templates (preview)
  84. * Instance main methods (preview)
  85. Unfortunately, even after holding back the AspectJ release for 3 months after JDK 21 general availability, waiting for
  86. Eclipse JDT Core and the Eclipse Java Compiler (ECJ) to catch up with Java 21 language features, even with Java 21
  87. officially supported in Eclipse 2023-12, some preview features are still unimplemented in ECJ:
  88. * Unnamed classes (preview)
  89. * Unnamed patterns and variables (preview)
  90. As soon as these preview features are part of the upstream ECJ we depend on, we hope to publish another AspectJ release
  91. to support them in the AspectJ Compiler (AJC), too.
  92. == Improvements
  93. * In https://github.com/eclipse-aspectj/aspectj/issues/266[GitHub issue 266], exception cause reporting has been
  94. improved in `ExtensibleURLClassLoader`. Thanks to Andy Russell (@euclio) for his contribution.
  95. == Other changes and bug fixes
  96. * No major bug fixes
  97. == AspectJ usage hints
  98. === AspectJ compiler build system requirements
  99. Since 1.9.21, the AspectJ compiler `ajc` (contained in the `aspectjtools` library) no longer works on JDKs 11 to 16. The
  100. minimum compile-time requirement is now JDK 17 due to upstream changes in the Eclipse Java Compiler (subset of JDT
  101. Core), which AspectJ is a fork of. You can still compile to legacy target versions as low as Java 1.3 when compiling
  102. plain Java code or using plain Java ITD constructs which do not require the AspectJ runtime `aspectjrt`, but the
  103. compiler itself needs JDK 17+. Just like in previous AspectJ versions, both the runtime `aspectjrt` and the load-time
  104. weaver `aspectjweaver` still only require JRE 8+.
  105. Please note: If you run `ajc` on JDKs 11-16, you will probably see an error like `java.lang.NoSuchFieldError:
  106. RELEASE_17`, and an _ajcore.*.txt_ dump file will be created, while running it on even older JDKs will rather yield an
  107. `UnsupportedClassVersionError`. See https://github.com/eclipse-aspectj/aspectj/issues/269[GitHub issue 269] for more
  108. details.
  109. History: Since 1.9.8, the AspectJ compiler ajc needed JDK 11+, before then JDK 8+.
  110. [[ltw_java_16]]
  111. === Use LTW on Java 16+
  112. Please note that if you want to use load-time weaving on Java 16+, the weaving agent collides with
  113. https://openjdk.java.net/jeps/396[JEP 396 (Strongly Encapsulate JDK Internals by Default)] and related subsequent
  114. JEPs. Therefore, you need to set the JVM parameter `--add-opens java.base/java.lang=ALL-UNNAMED` in order to enable
  115. aspect weaving. This is due to the fact that the weaver uses internal APIs for which we have not found an adequate
  116. replacement yet when defining classes in different classloaders.
  117. === Compile with Java preview features
  118. For features marked as preview on a given JDK, you need to compile with `ajc --enable-preview` and run with
  119. `java --enable-preview` on that JDK.
  120. Please note, that you cannot run code compiled with preview features on any other JDK than the one used for compilation.
  121. For example, records compiled with preview on JDK 15 cannot be used on JDK 16 without recompilation. This is a JVM
  122. limitation unrelated to AspectJ. Also, e.g. sealed classes are preview-1 on JDK 15 and preview-2 on JDK 16. You still
  123. need to recompile, no matter what.