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 4.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. = AspectJ 1.9.21
  2. _© Copyright 2023 Contributors. All rights reserved._
  3. _Release info: 1.9.21 available 11-Dec-2023_
  4. Please note that Bugzilla for issue management is deprecated and new issues should be filed as
  5. https://github.com/eclipse-aspectj/aspectj/issues/new[GitHub issues]. The list of issues addressed for 1.9.21 can be found
  6. here:
  7. * https://github.com/eclipse-aspectj/aspectj/issues?q=is%3Aissue+is%3Aclosed++milestone%3A1.9.21[GitHub 1.9.21]
  8. * https://github.com/eclipse-aspectj/aspectj/issues?q=is%3Aissue+is%3Aclosed++milestone%3A1.9.21.1[GitHub 1.9.21.1]
  9. * 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]
  10. == New features
  11. AspectJ 1.9.21 supports https://openjdk.java.net/projects/jdk/21/[Java 21], its final features and a subset of preview
  12. features, such as:
  13. * Record patterns
  14. * Pattern matching for switch
  15. * Virtual threads
  16. * Sequenced collections
  17. * Structured concurrency (preview)
  18. * String templates (preview)
  19. * Instance main methods (preview)
  20. Unfortunately, even after holding back the AspectJ release for 3 months after JDK 21 general availability, waiting for
  21. Eclipse JDT Core and the Eclipse Java Compiler (ECJ) to catch up with Java 21 language features, even with Java 21
  22. officially supported in Eclipse 2023-12, some preview features are still unimplemented in ECJ:
  23. * Unnamed classes (preview)
  24. * Unnamed patterns and variables (preview)
  25. As soon as these preview features are part of the upstream ECJ we depend on, we hope to publish another AspectJ release
  26. to support them in the AspectJ Compiler (AJC), too.
  27. == Improvements
  28. * In https://github.com/eclipse-aspectj/aspectj/issues/266[GitHub issue 266], exception cause reporting has been
  29. improved in `ExtensibleURLClassLoader`. Thanks to Andy Russell (@euclio) for his contribution.
  30. == Other changes and bug fixes
  31. * No major bug fixes
  32. == AspectJ usage hints
  33. === AspectJ compiler build system requirements
  34. Since 1.9.21, the AspectJ compiler `ajc` (contained in the `aspectjtools` library) no longer works on JDKs 11 to 16. The
  35. minimum compile-time requirement is now JDK 17 due to upstream changes in the Eclipse Java Compiler (subset of JDT
  36. Core), which AspectJ is a fork of. You can still compile to legacy target versions as low as Java 1.3 when compiling
  37. plain Java code or using plain Java ITD constructs which do not require the AspectJ runtime `aspectjrt`, but the
  38. compiler itself needs JDK 17+. Just like in previous AspectJ versions, both the runtime `aspectjrt` and the load-time
  39. weaver `aspectjweaver` still only require JRE 8+.
  40. Please note: If you run `ajc` on JDKs 11-16, you will probably see an error like `java.lang.NoSuchFieldError:
  41. RELEASE_17`, and an _ajcore.*.txt_ dump file will be created, while running it on even older JDKs will rather yield an
  42. `UnsupportedClassVersionError`. See https://github.com/eclipse-aspectj/aspectj/issues/269[GitHub issue 269] for more
  43. details.
  44. History: Since 1.9.8, the AspectJ compiler ajc needed JDK 11+, before then JDK 8+.
  45. === Use LTW on Java 16+
  46. Please note that if you want to use load-time weaving on Java 16+, the weaving agent collides with
  47. https://openjdk.java.net/jeps/396[JEP 396 (Strongly Encapsulate JDK Internals by Default)] and related subsequent
  48. JEPs. Therefore, you need to set the JVM parameter `--add-opens java.base/java.lang=ALL-UNNAMED` in order to enable
  49. aspect weaving. This is due to the fact that the weaver uses internal APIs for which we have not found an adequate
  50. replacement yet when defining classes in different classloaders.
  51. === Compile with Java preview features
  52. For features marked as preview on a given JDK, you need to compile with `ajc --enable-preview` and run with
  53. `java --enable-preview` on that JDK.
  54. Please note, that you cannot run code compiled with preview features on any other JDK than the one used for compilation.
  55. For example, records compiled with preview on JDK 15 cannot be used on JDK 16 without recompilation. This is a JVM
  56. limitation unrelated to AspectJ. Also, e.g. sealed classes are preview-1 on JDK 15 and preview-2 on JDK 16. You still
  57. need to recompile, no matter what.