diff options
author | Alexander Kriegisch <Alexander@Kriegisch.name> | 2024-05-11 07:57:23 +0200 |
---|---|---|
committer | Alexander Kriegisch <Alexander@Kriegisch.name> | 2024-05-11 08:21:45 +0200 |
commit | 64b86bc0a92ee29990f9d9dc505472cea8de8ae6 (patch) | |
tree | 90b306c1c226d9ef46fc9603b617670e18f56e29 /docs/release/README-1.9.22.adoc | |
parent | e75604071d80dd0719ac0199d8d12287172efb1d (diff) | |
download | aspectj-64b86bc0a92ee29990f9d9dc505472cea8de8ae6.tar.gz aspectj-64b86bc0a92ee29990f9d9dc505472cea8de8ae6.zip |
Add 1.9.22.1 release notes
Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
Diffstat (limited to 'docs/release/README-1.9.22.adoc')
-rw-r--r-- | docs/release/README-1.9.22.adoc | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/docs/release/README-1.9.22.adoc b/docs/release/README-1.9.22.adoc index efde20573..ae2cf7178 100644 --- a/docs/release/README-1.9.22.adoc +++ b/docs/release/README-1.9.22.adoc @@ -1,10 +1,46 @@ = AspectJ 1.9.22 +:doctype: book +:leveloffset: +1 + +The releases 1.9.22 and 1.9.22.1 are described together in this document. + += AspectJ 1.9.22.1 // 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 // document can be updated. After copying this document, remove the comment from the previous one. _© Copyright 2024 Contributors. All rights reserved._ +_Release info: 1.9.22.1 available 11-May-2024_ + +Please note that Bugzilla for issue management is deprecated and new issues should be filed as +https://github.com/eclipse-aspectj/aspectj/issues/new[GitHub issues]. The list of issues addressed for 1.9.22.1 can be +found here: + +* https://github.com/eclipse-aspectj/aspectj/issues?q=is%3Aissue+is%3Aclosed++milestone%3A1.9.22.1[GitHub 1.9.22.1] +* 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.22.1[Bugzilla 1.9.22.1] + +== New features + +AspectJ 1.9.22.1 has no new features, only bugfixes and improvements. + +== Improvements + +* The pointcut parser now traverses type parameters in generic types, e.g. in `MyType<A, B>` it also traverses the + previously ignored type parameters `A` and `B`, enabling future improvements like more exact type matching or checks + for illegal primitive type parameters. See link:https://github.com/eclipse-aspectj/aspectj/issues/221[issue #221]. +* link:https://github.com/eclipse-aspectj/aspectj/issues/306[Performance issue due to repeated attempts to find classes without FQN] + +== Other changes and bug fixes + +* link:https://github.com/eclipse-aspectj/aspectj/issues/211[AJC core dump when mixing type name wildcards with generics] +* link:https://github.com/eclipse-aspectj/aspectj/issues/302[Potential ThreadLocalMap.Entry accumulation in JoinPointImpl] +* link:https://github.com/eclipse-aspectj/aspectj/issues/305[WeavingAdaptor optimisations cause Equinox weaving problems] + += AspectJ 1.9.22 + +_© Copyright 2024 Contributors. All rights reserved._ + _Release info: 1.9.22 available 23-Mar-2024_ Please note that Bugzilla for issue management is deprecated and new issues should be filed as |