1 | <!DOCTYPE html> |
---|
2 | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> |
---|
3 | <head> |
---|
4 | <title>Release Notes for ABCL 0.23</title> |
---|
5 | <link rel="stylesheet" type="text/css" href="style.css"/> |
---|
6 | <meta charset="utf-8"/> |
---|
7 | </head> |
---|
8 | |
---|
9 | <body> |
---|
10 | <div id="title" class="header"> |
---|
11 | <h1>Release Notes for ABCL 0.23</h1> |
---|
12 | </div> |
---|
13 | |
---|
14 | <!--#include virtual="left-menu" --> |
---|
15 | |
---|
16 | <div class="rn"> |
---|
17 | |
---|
18 | <dl> |
---|
19 | <dt>No more failures in Maxima's test suite</dt> |
---|
20 | <dd>Working together with the developers from the Maxima program, we've been |
---|
21 | able to identify the causes for the last few remaining failures and |
---|
22 | apply fixes - mostly to ABCL, but some in Maxima too. Thanks guys!</dd> |
---|
23 | <dt>Fixes to stop JRockit JVM's optimizer from crashing</dt> |
---|
24 | <dd>Some specific aspects of the byte code we generated was a problem |
---|
25 | for the optimizer in JRockit JVM. JRockit has been fixed, but the release |
---|
26 | won't be out for some time. Since we identified the offending code, we |
---|
27 | decided to change our byte code as well.</dd> |
---|
28 | <dt>Fixes to CLOS thread safety.</dt> |
---|
29 | <dd>Taking advantage of the java.util.concurrent package, we have both been |
---|
30 | able to eliminate many synchronized blocks, reducing chances for |
---|
31 | contention as well as increasing protection by using types with built-in |
---|
32 | protection. |
---|
33 | </dd> |
---|
34 | <dt>Updated ASDF2</dt> |
---|
35 | <dd>ASDF2 has been updated to its latest version 2.010.1</dd> |
---|
36 | <dt>Experimental support for the long form of DEFINE-METHOD-COMBINATION</dt> |
---|
37 | <dd>Support for the long form of DEFINE-METHOD-COMBINATION has been added, |
---|
38 | however, this support is derived from Sacla and XCL, which probably means |
---|
39 | that the code hasn't been excercised all that much and does contain |
---|
40 | bugs. You're strongly urged to help debug and define test-cases in order |
---|
41 | to fix any issues in the code.</dd> |
---|
42 | <dt>A new (generic) class writer</dt> |
---|
43 | <dd>Our compiler used to contain code to generate class files which exactly |
---|
44 | match ABCL's usage patterns. However, in order to expand ABCL's compiler |
---|
45 | possibilities - as well as providing support for extension of Java classes |
---|
46 | at runtime - a more generic class file generator is required. We have one |
---|
47 | now! </dd> |
---|
48 | |
---|
49 | </dl> |
---|
50 | |
---|
51 | </div> |
---|
52 | |
---|
53 | <p><a href="release-notes.shtml">Release notes for older releases</a>.</p> |
---|
54 | |
---|
55 | <div class="footer"> |
---|
56 | <hr /> |
---|
57 | <p>Hosted as part of <a href="https://common-lisp.net/">common-lisp.net</a></p> |
---|
58 | </div> |
---|
59 | |
---|
60 | </div> |
---|
61 | </body> |
---|
62 | </html> |
---|