source: branches/0.17.x/abcl/CHANGES

Last change on this file was 12261, checked in by ehuelsmann, 15 years ago

Mark release date for 0.17.0.

  • Property svn:eol-style set to native
File size: 9.3 KB
Line 
1Version 0.17.0
2==============
3svn://common-lisp.net/project/armedbear/svn/tags/0.17.0/abcl
4(07 Nov, 2009)
5
6
7Features:
8
9  * Google App Engine example project "Hello world"
10  * Support for loading FASLs from JAR files
11  * Checking of init-arguments for MAKE-INSTANCE (CLOS)
12  * Support for *INVOKE-DEBUGGER-HOOK* (to support SLIME)
13  * Reduced abcl.jar size (bytes and number of objects)
14  * Faster access to locally bound specials (compiler efficiency)
15  * Java property to print autoloading information: abcl.autoload.verbose
16  * Experimental: binary fasls
17  * Default Ant build target now "abcl.clean abcl.wrapper" (from abcl.help)
18  * ConditionThrowable class renamed to ControlTransfer,
19      parent class changed to RuntimeException (to make it unchecked)
20  * API no longer throws ConditionThrowable/ControlTransfer
21
22
23Bugs fixed:
24
25  * Better fix for #63: Prevent exceptions from happening (GO and RETURN-FROM)
26  * Restore ability for ABCL to be build host for SBCL
27  * CLOS performance improvements through looser COMPILE dependency
28  * Compilation fix for highest SPEED setting (triggered by CL-BENCH)
29  * COMPILE's use of temp files eliminated
30  * OpenJDK on Darwin now correctly identified
31  * Incorrect block names for SETF functions defined by LABELS
32  * Fixed MULTIPLE-VALUE-CALL with more than 8 arguments
33  * Incorrect identification of lexical scope on recursive TAGBODY/GO
34    and BLOCK/RETURN-FROM blocks (compiler and interpreter)
35  * Correctly return 65k in char-code-limit (was 256, incorrectly)
36  * Fixes to be able to run the BEYOND-ANSI tests (part of ANSI test suite)
37  * Compiler typo fix
38  * Implementation of mutex functionality moved to lisp from Java
39  * Functions handling #n= and #n# are now compiled
40  * Autoload cleanups
41  * System package creation cleaned up
42  * CHAR-CODE-LIMIT correctly reflects CHAR-CODE maximum return value
43  * Precompiler macroexpansion failure for macros expanding into
44      special operators
45
46
47Version 0.16.1
48==============
49svn://common-lisp.net/project/armedbear/svn/tags/0.16.1/abcl
50(17 Oct, 2009)
51
52Bugs fixed:
53
54  * More careful checking for null args in LispStackFrame
55  * Honor appearance of &allow-other-keys in CLOS MAKE-INSTANCE
56  * Fix #63: GO forms to non-existent TAGBODY labels would exit ABCL
57  * Don't leak temp files during compilation
58
59Version 0.16.0
60==============
61(06 SEP 2009)
62svn://common-lisp.net/project/armedbear/svn/tags/0.16.0/abcl
63
64  Summary of changes:
65  ------------------
66  * Fixed generated wrapper for path names with spaces (Windows)
67  * Fixed ticket #58: Inspection of Java objects in Lisp code
68  * Restored functionality of the built-in profiler
69  * Profiler extended with hot-spot counting (as opposed to call counting)
70  * Stack sampling in the profiler moved to scheduler thread to
71    reduce impact on the program execution thread
72  * THE type-checking for the interpreter
73    (for simple-enough type specifications)
74  * Added structure argument type checking in structure slot
75    accessor functions
76  * Make GENSYM thread-safe
77  * Various performance fixes found by running the raytracer
78    from http://www.ffconsultancy.com/languages/ray_tracer/benchmark.html
79  * Better initarg checking for make-instance and change-class
80    Fixes ansi-test errors CHANGE-CLASS.1.11, MAKE-INSTANCE.ERROR.3,
81    MAKE-INSTANCE.ERROR.4, CHANGE-CLASS.ERROR.4 and SHARED-INITIALIZE.ERROR.4
82  * Improve performance of StackFrames (Erik Huelsmann, Ville Voutilainen,
83    with input from Peter Graves and Douglas Miles)
84  * Improve performance of CLOS eql-specializers via cache (Anton Vodonosov)
85  * 'build-from-lisp.sh' shell script (Tobias Rittweiler)
86  * New threading primitives aligned with Java/JVM constructs (Erik Huelsmann)
87
88      SYNCHRONIZED-ON
89      OBJECT-NOTIFY
90      OBJECT-NOTIFY-ALL
91  * THREADS package created to hold threads related primitives:
92
93      THREADP THREAD-UNLOCK THREAD-LOCK THREAD-NAME THREAD-ALIVE-P
94      CURRENT-THREAD DESTROY-THREAD INTERRUPT-THREAD WITH-THREAD-LOCK
95      MAKE-THREAD-LOCK MAKE-THREAD INTERRUPT-THREAD
96
97      MAPCAR-THREADS
98
99      GET-MUTEX MAKE-MUTEX WITH-MUTEX RELEASE-MUTEX
100
101    These primitives are still part of the EXTENSIONS package but are
102    now to be considered as deprecated, marked to be removed with
103    0.22
104  * Stacktraces now contain calls through Java code relevant to
105    debugging (Tobias Rittweiler)
106
107    Backtrace functionality been moved from EXT:BACKTRACE-AS-LIST to
108    SYS:BACKTRACE to mark this changes.  The methods SYS:FRAME-TO-STRING
109    and SYS:FRAME-TO-LIST can be used to inspect the new
110    LISP_STACK_FRAME and JAVA_STACK_FRAME objects
111  * Various stream input performance optimizations
112  * Fixed breakage when combining Gray streams and the pretty printer
113  * Performance improvements for resolution of non-recursive #=n and #n#
114
115
116Version 0.15.0
117==============
118svn://common-lisp.net/project/armedbear/svn/tags/0.15.0/abcl
119(07 Jun, 2009)
120
121 Summary of changes:
122 -------------------
123  * 2 more MOP exported symbols to support Cells port
124  * Updated FASL version
125  * Support (pre)compilation of functions with a non-null lexical environment
126  * Compiler and precompiler cleanups
127  * 'rt.lisp' copy from ANSI test suite removed
128  * Many documentation additions for the (pre)compiler
129  * JSR-233 support improvements
130  * Refactoring of classes:
131   - deleted: CompiledFunction, ClosureTemplateFunction, CompiledClosure,
132              Primitive0R, Primitive1R, Primitive2R
133   - renamed: CompiledClosure [from ClosureTemplateFunction]
134  * Compiler support for non-constant &key and &optional initforms
135  * Fixed ticket #21: JVM stack inconsistency [due to use of RET/JSR]
136  * Numerous special bindings handling fixes, especially with respect
137    to (local) transfer of control with GO/RETURN-FROM
138  * Paths retrieved using URL.getPath() require decoding (r11815)
139  * Build doesn't work inside paths with spaces (r11813)
140  * Compilation of export of a symbol not in *package* (r11808)
141  * Moved compiler-related rewriting of forms from precompiler to compiler
142  * Removed chained closures ('XEPs') in case of &optional arguments only
143  * Loading of SLIME fails under specific conditions (r11791)
144  * Binding of *FASL-ANONYMOUS-PACKAGE* breaks specials handling (r11783)
145  * Fixed ANSI tests: DO-ALL-SYMBOLS.{6,9,12}, DEFINE-SETF-EXPANDER.{1,6,?},
146      MULTIPLE-VALUE-SETQ.{5,8}, SYMBOL-MACROLET.8, COMPILE-FILE.{17,18}
147  * COMPILE and COMPILE-FILE second and third values after a failed
148      invocation inside the same compilation-unit (r11769)
149  * JCLASS on non-existing classes should signal an error (r11762)
150  * Dotted lambda lists break interpretation (r11760)
151  * Implementation of MACROEXPAND-ALL and COMPILER-LET (r11755)
152  * Switch from casting to 'instanceof' for performance (r11754)
153  * Google App Engine support: don't die if 'os.arch' isn't set (r11750)
154  * Excessive stack use while resolving #n= and #n# (r11474)
155
156
157Version 0.14.1
158==============
159(5 Apr, 2009)
160svn://common-lisp.net/project/armedbear/svn/tags/0.14.1/abcl
161
162 Summary of changes:
163 -------------------
164  * Include this CHANGES file and scripting files in the tar and zip files
165
166
167Version 0.14.0
168==============
169(5 Apr, 2009)
170svn://common-lisp.net/project/armedbear/svn/tags/0.14.0/abcl
171
172 Summary of changes:
173 -------------------
174  * Increased clarity on licensing (Classpath exception
175     mentioned in COPYING, removed LICENSE)
176  * Resolved infinite recursion on TRACEing the compiler
177  * Changes on the lisp based build system for parity with Ant
178  * Fixed interpreter creation in Java Scripting
179  * libabcl.so no longer created; it was solely about installing
180     a SIGINT handler. Libraries should not do that.
181  * boxing of LispObject descendants in JCALL/JCALL-RAW fixed
182  * OpenBSD and NetBSD platform detection
183  * fixed special bindings restores in compiled code for
184     MULTIPLE-VALUE-BIND/LET/LET*/PROGV and function bodies
185  * introduced variadic list() function to replace list1() ... list9()
186  * fix return value type of ACOS with complex argument
187  * fixed precision of multiplication of complex values
188  * fixed use of COMPILE inside file compilation (i.e. COMPILE-FILE)
189  * fix expansion of macros inside RESTART-CASE
190     (fixes RESTART-CASE ANSI failures)
191  * fix macroexpansion in the precompiler
192  * Fixnum and Bignum now use a static factory method;
193      constructors are now private -> increases chances of numbers
194      being EQ
195  * Code cleanup in EXPT to fix (EXPT <any-number> <Bignum>)
196
197
198Version 0.13.0
199==============
200(28 Feb, 2009)
201svn://common-lisp.net/project/armedbear/svn/tags/0.13.0/abcl
202
203 Summary of changes:
204 -------------------
205  * Separated J and ABCL into two trees
206  * Many many compiler code cleanups
207  * NetBeans project files
208  * Support for CDR6 (See http://cdr.eurolisp.org/document/6/)
209  * More efficient code emission in the compiler
210  * Ant build targets for testing (abcl.test)
211  * Use ConcurrentHashMap to store the lisp threads for increased performance
212  * Fix adjustability of expressly adjustable arrays (ticket #28)
213  * Fix calculation of upperbound on ASH in the compiler
214     (don't calculate numbers too big, instead, return '*')
215  * Introduce LispInteger as the super type of Bignum and Fixnum
216  * Boxing/unboxing for SingleFloat and DoubleFloat values,
217      inclusive of unboxed calculations
218  * Fixed URL decoding bug in loadCompiledFunction (use java.net.URLDecoder)
219  * Fixed line number counting
220  * Inlining of simple calculations (+/-/*)
221  * All static fields declared 'final'
222  * Add support for java.lang.Long based on Bignum to our FFI
223
Note: See TracBrowser for help on using the repository browser.