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.19.adoc 5.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. = AspectJ 1.9.19
  2. _© Copyright 2022 Contributors. All rights reserved._
  3. _Release info: 1.9.19 available 21-Dec-2022_
  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.19 can be found
  6. here:
  7. * https://github.com/eclipse-aspectj/aspectj/issues?q=is%3Aissue+is%3Aclosed++milestone%3A1.9.19[GitHub 1.9.19]
  8. * 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.19[Bugzilla 1.9.19]
  9. == New features
  10. AspectJ 1.9.19 supports https://openjdk.java.net/projects/jdk/19/[Java 19] and its final, preview and incubator
  11. features, such as:
  12. * Record patterns (preview)
  13. * Virtual threads (preview)
  14. * Pattern matching for `switch` (preview 3)
  15. * Structured concurrency (incubator)
  16. Please note that the upstream Eclipse Java Compiler (ECJ) which the AspectJ Compiler (AJC) is a fork of still has some
  17. open issues concerning Java 19 preview feature support, see the list in
  18. https://github.com/eclipse-aspectj/aspectj/issues/184#issuecomment-1272254940[this comment]. AJC therefore inherits the same
  19. problems for the specific cases described in the linked issues.
  20. == Improvements
  21. * Improve condy (constant dynamic) support. Together with some custom compilation or weaving options, this helps to
  22. avoid a problem when using JaCoCo together with AspectJ, see
  23. https://github.com/eclipse-aspectj/aspectj/issues/170#issuecomment-1214163297[this comment in #170] for more details.
  24. == Code examples
  25. You can find some sample code in the AspectJ test suite under the respective AspectJ version in which the features were
  26. first supported (possibly as JVM preview features):
  27. * https://github.com/eclipse-aspectj/aspectj/tree/master/tests/features198/java17[Pattern matching for switch (preview 1)]
  28. * https://github.com/eclipse-aspectj/aspectj/tree/master/tests/features199/java18[Pattern matching for switch (preview 2)]
  29. * https://github.com/eclipse-aspectj/aspectj/tree/master/tests/features1919/java19[Pattern matching for switch (preview 3),
  30. record patterns (preview 1)]
  31. * Please note that presently there is no specific sample code for virtual threads and structured concurrency in the
  32. AspectJ code base, because these are just new APIs, no Java language features. You can find sample code for these
  33. concurrency features elsewhere, e.g. in the corresponding JEPs. In AspectJ, they should just work transparently like
  34. any other Java API.
  35. == Other changes and bug fixes
  36. * Fix (or rather work around) an old bug occurring when compiling or weaving code using ITD to declare annotations with
  37. `SOURCE` retention on types, methods, constructors or fields. While declaring such annotations does not make sense to
  38. begin with, at least the AspectJ weaver or compiler should handle the situation gracefully, which now it does by
  39. simply ignoring errors caused by it. See https://bugs.eclipse.org/bugs/show_bug.cgi?id=366085[Bugzilla #366085] and
  40. https://github.com/eclipse-aspectj/aspectj/pull/196[pull request #196]. Better than this workaround would be for the
  41. compiler or weaver to actually print a warning when meeting source level annotations in declare statements. Hence,
  42. follow-up issue https://github.com/eclipse-aspectj/aspectj/issues/201[#201] was created.
  43. * Remove legacy AspectJ Browser code and documentation.
  44. * Thanks to Andrey Turbanov for several clean code contributions.
  45. == AspectJ usage hints
  46. === AspectJ compiler build system requirements
  47. Since 1.9.8, the AspectJ compiler `ajc` (contained in the `aspectjtools` library) no longer works on JDKs 8 to 10. The
  48. minimum compile-time requirement is now JDK 11 due to upstream changes in the Eclipse Java Compiler (subset of JDT
  49. Core), which AspectJ is a fork of. You can still compile to legacy target versions as low as Java 1.3 when compiling
  50. plain Java code or using plain Java ITD constructs which do not require the AspectJ runtime `aspectjrt`, but the
  51. compiler itself needs JDK 11+. Just like in previous AspectJ versions, both the runtime `aspectjrt` and the load-time
  52. weaver `aspectjweaver` still only require JRE 8+.
  53. === Use LTW on Java 16+
  54. Please note that if you want to use load-time weaving on Java 16+, the weaving agent collides with
  55. https://openjdk.java.net/jeps/396[JEP 396 (Strongly Encapsulate JDK Internals by Default)]. Therefore, you need to set
  56. the JVM parameter `--add-opens java.base/java.lang=ALL-UNNAMED` in order to enable aspect weaving. This is due to the
  57. fact that the weaver uses internal APIs for which we have not found an adequate replacement yet when defining classes
  58. in different classloaders.
  59. === Compile with Java preview features
  60. For features marked as preview on a given JDK, you need to compile with `ajc --enable-preview` and run with
  61. `java --enable-preview` on that JDK.
  62. Please note, that you cannot run code compiled with preview features on any other JDK than the one used for compilation.
  63. For example, records compiled with preview on JDK 15 cannot be used on JDK 16 without recompilation. This is a JVM
  64. limitation unrelated to AspectJ. Also, e.g. sealed classes are preview-1 on JDK 15 and preview-2 on JDK 16. You still
  65. need to recompile, no matter what.