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-1921.html 4.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
  2. <html>
  3. <head>
  4. <title>AspectJ 1.9.21 Readme</title>
  5. <style type="text/css">
  6. <!--
  7. P { margin-left: 20px; }
  8. PRE { margin-left: 20px; }
  9. LI { margin-left: 20px; }
  10. H4 { margin-left: 20px; }
  11. H3 { margin-left: 10px; }
  12. -->
  13. </style>
  14. </head>
  15. <body>
  16. <div align="right"><small>&copy; Copyright 2023 Contributors. All rights reserved.</small></div>
  17. <h1>AspectJ 1.9.21</h1>
  18. <p>
  19. Please note that Bugzilla for issue management is deprecated and new issues should be filed as
  20. <a href="https://github.com/eclipse/org.aspectj/issues/new">GitHub issues</a>.
  21. The list of issues addressed for 1.9.21 can be found here:
  22. <ul>
  23. <li><a href="https://github.com/eclipse/org.aspectj/issues?q=is%3Aissue+is%3Aclosed++milestone%3A1.9.21">GitHub 1.9.21</a></li>
  24. <li><a href="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</a></li>
  25. </ul>
  26. </p>
  27. <h2>New features</h2>
  28. <p>
  29. AspectJ 1.9.21 supports <a href="https://openjdk.java.net/projects/jdk/21/">Java 21</a>, its final features and a
  30. subset of preview features, such as:
  31. </p>
  32. <ul>
  33. <li>Record patterns</li>
  34. <li>Pattern matching for <tt>switch</tt></li>
  35. <li>Virtual threads</li>
  36. <li>Sequenced collections</li>
  37. <li>Structured concurrency (preview)</li>
  38. <li>String templates (preview)</li>
  39. <li>Instance main methods (preview)</li>
  40. </ul>
  41. <p>
  42. Unfortunately, even after holding back the AspectJ release for 3 months after JDK 21 general availability, waiting for
  43. Eclipse JDT Core and the Eclipse Java Compiler (ECJ) to catch up with Java 21 language features, even with the Java 21
  44. officially supported in Eclipse 2023-12, some preview features are still unimplemented in ECJ:
  45. </p>
  46. <ul>
  47. <li>Unnamed classes (preview)</li>
  48. <li>Unnamed patterns and variables (preview)</li>
  49. </ul>
  50. <p>
  51. As soon as these preview features are part of the upstream ECJ we depend on, we hope to publish another AspectJ
  52. release to support them in the AspectJ Compiler (AJC), too.
  53. </p>
  54. <h2>Improvements</h2>
  55. <ul>
  56. <li>
  57. In <a href="https://github.com/eclipse-aspectj/aspectj/issues/266">GitHub issue 266</a>, exception cause reporting
  58. has been improved in <tt>ExtensibleURLClassLoader</tt>. Thanks to Andy Russell (@euclio) for his contribution.
  59. </li>
  60. </ul>
  61. <h2>Other changes and bug fixes</h2>
  62. <ul>
  63. <li>
  64. No major bug fixes
  65. </li>
  66. </ul>
  67. <h2>AspectJ usage hints</h2>
  68. <h3>AspectJ compiler build system requirements</h3>
  69. <p>
  70. Since 1.9.21, the AspectJ compiler <tt>ajc</tt> (contained in the <tt>aspectjtools</tt> library) no longer works on
  71. JDKs 11 to 16. The minimum compile-time requirement is now JDK 17 due to upstream changes in the Eclipse Java Compiler
  72. (subset of JDT Core), which AspectJ is a fork of. You can still compile to legacy target versions as low as Java 1.3
  73. when compiling plain Java code or using plain Java ITD constructs which do not require the AspectJ runtime
  74. <tt>aspectjrt</tt>, but the compiler itself needs JDK 17+. Just like in previous AspectJ versions, both the runtime
  75. <tt>aspectjrt</tt> and the load-time weaver <tt>aspectjweaver</tt> still only require JRE 8+.
  76. </p>
  77. <p>
  78. History: Since 1.9.7, the AspectJ compiler <tt>ajc</tt> needed JDK 11+, before then JDK 8+.
  79. </p>
  80. <h3>Use LTW on Java 16+</h3>
  81. <p>
  82. Please note that if you want to use load-time weaving on Java 16+, the weaving agent collides with
  83. <a href="https://openjdk.java.net/jeps/396">JEP 396 (Strongly Encapsulate JDK Internals by Default)</a> and related
  84. subsequent JEPs. Therefore, you need to set the JVM parameter <tt>--add-opens java.base/java.lang=ALL-UNNAMED</tt> in
  85. order to enable aspect weaving. This is due to the fact that the weaver uses internal APIs for which we have not found
  86. an adequate replacement yet when defining classes in different classloaders.
  87. </p>
  88. <h3>Compile with Java preview features</h3>
  89. <p>
  90. For features marked as preview on a given JDK, you need to compile with <tt>ajc --enable-preview</tt> and run with
  91. <tt>java --enable-preview</tt> on that JDK.
  92. </p>
  93. <p>
  94. Please note that you cannot run code compiled with preview features on any other JDK than the one used for
  95. compilation. For example, records compiled with preview on JDK 15 cannot be used on JDK 16 without recompilation. This
  96. is a JVM limitation unrelated to AspectJ. Also, e.g. sealed classes are preview-1 on JDK 15 and preview-2 on JDK 16.
  97. You still need to recompile, no matter what.
  98. </p>
  99. <hr>
  100. <p>
  101. <b>Available:</b> 1.9.21 on 11-Dec-2023
  102. </p>
  103. </body>
  104. </html>