CHANGES 53 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650
  1. Version 1.3.2
  2. =============
  3. http://abcl.org/svn/tags/1.3.2/
  4. 19-APR-2015
  5. Enhancements
  6. ------------
  7. * Make result of DEFINE-MODIFY-MACRO available at compilation time
  8. [r14727]
  9. Fixes
  10. -----
  11. * Fix failed AVER [#289] [r14763]
  12. * Fix incorrect dead code elimination
  13. Additionally, don't recurse into flet/labels upon elimination of a
  14. single labels function; simply continue by changing the applicable
  15. set. Reported by Vibhu Mohindra. [r14754][r14756]
  16. * Numeric tower repairs on promoting floats across representation
  17. boundaries [r14749-50] (Massimiliano Ghilardi).
  18. * Return SIMPLE-ERROR for invalid external-format arguments.[r14735]
  19. * Lisp stack frame representation now formatted as unreadable. [r14738-9]
  20. Contrib
  21. -------
  22. * JSS
  23. ** Fix GET-JAVA-FIELD and SET-JAVA-FIELD [r14718]
  24. ** no longer error on NO-SUCH-JAVA-FIELD, by setting fields as
  25. accessible where necessary [r14715] [r14725]
  26. * ABCL-ASDF
  27. ** Update to current Maven support (keep up with changing APIs through
  28. the Maven 3.2.3-3.2.5 hysteresis) [r14742-7] (Cyrus Hamon).
  29. ** Special-case JNA artifacts with alternate network location [r14733]
  30. ** Further work on ABCL-ASDF:RESOLVE [r14732] (Cyrus Hamon)
  31. ** Find Maven under FreeBSD ports [r14723], under OS X Homebrew [r14776]
  32. * ABCL-JAR
  33. ** Fix ASDF-JAR:PACKAGE [#376] [r14717][r14720][r14736] (Eduardo Bellani)
  34. * ASDF
  35. ** Updated to version 3.1.4.
  36. Version 1.3.1
  37. =============
  38. http://abcl.org/svn/tags/1.3.1/
  39. 30-APR-2014
  40. ## Fixed
  41. * The underlying Java Function Interface (JFI) now converts CL:T and
  42. CL:NIL to JAVA:+TRUE+ and JAVA:+FALSE+. Users who wish to
  43. reference a JAVA:+NULL+ should do so explicitly.
  44. <http://abcl.org/trac/changeset/14694>
  45. * Make JCALL work in more places. Thanks to Olof-Joachim Frahm.
  46. <http://abcl.org/trac/changeset/14683>
  47. * Interpolate CL:SLEEP and THREADS:OBJECT-WAIT for timeouts below the
  48. Planck timer ("1ns") to a nanosecond.
  49. <http://abcl.org/trac/changeset/14679>
  50. * Update to ASDF 3.1.0.103.
  51. <http://abcl.org/trac/changeset/14661>
  52. Fixes loading of Ironclad and other Quicklisp systems.
  53. * Fix Uniform Naming Convention (aka "UNC" or "network") paths under Windows.
  54. <http://abcl.org/trac/changeset/14659>
  55. DIRECTORY now works again on UNC paths.
  56. UNC paths may be either specified with either back slash (#\\) or
  57. forward slash (#\/) doubled as the first character in a Pathname
  58. namestring.
  59. The patterns in
  60. //<server>/<share>/[directories-and-files]
  61. are parsed as
  62. <server> is stored as HOST.
  63. <share> is stored as DEVICE.
  64. [directories-and-files] gets parsed as per the normal rules under
  65. Windows.
  66. Mixing namestrings with both backslash and slash characters can
  67. lead to unpredictable results. It is recommended not to use
  68. backslash characters in namestrings if it can be avoided. The
  69. pathname printed representation is always normalized to using
  70. forward slash delimiters.
  71. * Find contrib based on system jar name.
  72. <http://abcl.org/trac/changeset/14657>
  73. From Olof-Joachim Frahm.
  74. Version 1.3.0
  75. =============
  76. http://abcl.org/svn/tags/1.3.0/
  77. 15-MAR-2014
  78. ## Features
  79. * Make LispStackFrame.UNAVAILABLE_ARG a singleton object,
  80. and lazily create the little used portions of the Lisp stack.
  81. Aggressively cache and control the use of memory by the underlying
  82. Lisp stack frame representation by introducing the private
  83. LispThread.StackFrame and LispThread.StackSegments classes.
  84. Contributed by Dmitry Nadezhin.
  85. LispStackFrame object are allocated on every
  86. LispThread.execute(...) . However, they are seldom [accessed]
  87. ([... verify via] inspect[tion of the] stack trace). This patch
  88. delays allocation of LispStackFrame? objects until they are
  89. requested. Raw information about stack frames is stored in
  90. stack. Stack is an Object[] array (more precisely a list of [...]4
  91. [Mib] Object[] arrays).
  92. ME: We are going to need a way to try to less agressively grab 4Mib
  93. chunks in low memory situations.
  94. Memory profiling of ABCL shows that the classes with largest
  95. allocation count are org.armedbear.lisp.LispStackFrame and
  96. org.armedbear.lisp.LispStackFrame.UnavailableArgument.
  97. Contributed by Dmitry Nadezhin.
  98. [r14572]: http://abcl.org/trac/changeset/14572
  99. [r14579]: http://abcl.org/trac/changeset/14579
  100. * ASDF 3.0.1.94 shipped with the implementation
  101. * per function call stack and memory exception handler in CL:COMPILE
  102. Inline calls to jrun-exception-protected (used by handler-bind to
  103. catch out of memory conditions). This commit saves generation
  104. roughly 50 cls files.
  105. [r14552]: http://abcl.org/trac/changeset/14552
  106. * SYS:SHA256 audited
  107. The functionality if the SYS:SHA256 algorithim has been audited for
  108. use on inputs of single for files with recently shipping ORCL Java 7
  109. implementations (through jdk-1.7.0_51).
  110. [r14582]: http://abcl.org/trac/changeset/14582
  111. * Connect to NetBeans controlled JDWP via SLIME
  112. The Netbeans IDE configuration now includes a way to connect to
  113. the running-under-jdb ABCL via SLIME. One needs a version of
  114. SLIME able to be loaded from its 'swank.asd' definition.
  115. * Install 'abcl.jar' and 'abcl-contrib.jar' locally as Maven artifacts
  116. The Ant `abcl.mvn.install` target now installs build artifacts
  117. into the local Maven repository (Olof-Joachim Frahm)
  118. [r14579]: http://abcl.org/trac/changeset/14606
  119. ## Compatibility
  120. * CL:DIRECTORY
  121. The implementation specific :RESOLVE-SYMLINKS argument to the ANSI
  122. DIRECTORY function has been changed to nil. This implements
  123. behavior closer to SBCL and guarantees that a DIRECTORY operation
  124. will not signal a file error.
  125. [r14619]: http://abcl.org/trac/changeset/14619
  126. [ticket-340]: http://abcl.org/trac/ticket/340
  127. ## Fixes
  128. * Fix CL:SLEEP for intervals less than a millisecond.
  129. For intervals less than or equal to a nanosecond, including an
  130. interval of zero, the current thread merely yields execution to
  131. other threads.
  132. [r14632]: http://abcl.org/trac/changeset/14632
  133. ## Tested
  134. ### "Java_HotSpot(TM)_64-Bit_Server_VM-Oracle_Corporation-1.7.0_51-b13" "x86_64-Mac_OS_X-10.9.1"
  135. ### "Java_HotSpot(TM)_64-Bit_Server_VM-Oracle_Corporation-1.8.0-b129" "x86_64-Mac_OS_X-10.9.2"
  136. ## Contrib
  137. #### abcl-asdf
  138. * Now working with both Maven 3.0.x and 3.1.x. Thanks to Anton for
  139. the help!
  140. [ticket-328]: http://abcl.org/trac/ticket/328
  141. * cache Maven dependency resolution to avoid repeated lookups.
  142. Instead of calling ABCL-ASDF:RESOLVE in both the ASDF COMPILE-OP
  143. and LOAD-OP, we now cache the result of invocation in COMPILE-OP
  144. and add this value in the LOAD-OP phase. Contributed by Cyrus
  145. Harmon.
  146. [r14631]: http://abcl.org/trac/changeset/14631
  147. #### jna
  148. Now references jna-4.0.0. Some incompatibility with CFFI ([in
  149. progress with fixing upstream][cffi-easye]).
  150. [cffi-easye]: http://github.com/easye/cffi/
  151. Version 1.2.1
  152. =============
  153. http//abcl.org/svn/tags/1.2.1/abcl/CHANGES
  154. 27 June 2013
  155. http://abcl.org/releases/1.2.1
  156. * Tested: orcl-jdk-1.7.0_25 orcl-jdk-1.6.0_43
  157. ** ansi tests rc-2 failing 11-13 of 21708 total.
  158. Some regressions since 1.1.1
  159. * Stablility fixes; additional Quicklisp compatibility
  160. ** Fix (make-instance 'standard-generic-function)
  161. Version 1.2.0
  162. =============
  163. svn.uri=:"http//abcl.org/svn/tags/1.2.0/"
  164. http//abcl.org/svn/tags/1.2.0/abcl/CHANGES
  165. released at ECLM 2013 Madrid, ES // 01 June 2013
  166. * Package local nicknames to behave like SBCL
  167. * ASDF 3.0.1 is now shipped with the implementation
  168. * a more robust MOP implementation
  169. * Common cases of creating purely synthetic JAVA:JNEW-RUNTIME-CLASS
  170. now (mostly) work. Please report corner cases for fixing.
  171. * the system autoloader has been extended to cover functions bound to
  172. symbol properties
  173. Version 1.1.1
  174. =============
  175. svn.uri=:"http://abcl.org/svn/tags/abcl/1.1.1/CHANGES"
  176. (14 Feburary 2013)
  177. * All reported errors with the MOP implementation have been addressed.
  178. * An autoloader for SETF expansion functions has been implemented,
  179. eliminating the errors associated with not being able to use (SETF
  180. SYMBOL) without first invoking SYMBOL as a function. [#266
  181. * All outstanding regressions in the ANSI test suite with respect to
  182. abcl-1.0.1 have been fixed.
  183. * The ability to resolve Maven components in ASDF system definitions has been restored.
  184. Issues Resolved
  185. ---------------
  186. [#266] PSETF.47 ANSI regression
  187. [#284] checks in ensure-generic-function-using-class should occur later
  188. [#296] SLIME fails to initialize with (SETF DOCUMENTATION) undefined
  189. [#198] Hunchentoot run failure
  190. [#228] Need to implement autoloader facility for SETF functions
  191. [#288] Control character names
  192. [#290] Compiling (defvar *foo* '(quote . x)) throws an error
  193. [#293] Loop and default value for of-type problem
  194. [#294] Reader doesn't recognize terminating characters in some cases
  195. [#299] ABCL-ASDF:MVN components not loading
  196. Version 1.1.0
  197. =============
  198. svn.uri=:"http://abcl.org/svn/tags/1.1.0/abcl/"
  199. (07 December 2012)
  200. Features
  201. --------
  202. * A functioning (A)MOP implementation through the hard work of Rudi
  203. Schlatte (@rudi)
  204. * The implementation can be used across many more Quicklisp systems
  205. through a process of extensive testing. Thanks @xach!
  206. Nota bene: all of the following systems need patches to work as
  207. of the 2012-10-13 Quicklisp. All patches have been accepted in
  208. at least an initial form by the upstream maintainers.
  209. ** CLOSER-MOP
  210. Quite possible with local patches
  211. ** CFFI
  212. Needs patches to 2012-10-13 Quicklisp. [!!?]
  213. *** Dynamic interfaces idempotent across process -- no more reloading
  214. ** HUNCHENTOOT
  215. *** some bugs with underlying streams to be fixed in abcl-1.2-dev
  216. ** CXML
  217. Basic XML parsing works. XPath still borked. [???]
  218. * Java 5 bytecode Compiler
  219. The internal Lisp-to-Java bytecode compiler has been hardened by
  220. regression testing across Quicklisp libraries.
  221. ** Extensive interpreter/compiler bug fixes due to access to cl-test-suite [???] @antov
  222. ** large objects (?!?)
  223. * The facility to construct runtime classes via JNEW-RUNTIME-CLASS (@astalla)
  224. Pretty close to full coverage of primtives for creating synthethic
  225. java classes at runtime. Easy to extend with your needs; sensible
  226. defaults.
  227. ** Fields
  228. *** getter/setters
  229. ** Annotations
  230. * ASDF
  231. ** Stock ASDF-2.26.6 which includes #+abcl conditional patches
  232. for the URL-PATHAME and JAR-PATHNAME implementation extensions
  233. to ANSI.
  234. * ABCL-CONTRIB
  235. ** ABCL-ASDF
  236. Network installation of binary artifacts named by Maven POM uris.
  237. *** checks at runtime if a given class is present in the
  238. accessible classloaders
  239. *** If the check for the presence of a class fails, find a
  240. maven-3.0.4 binary locally, execute its Aether connector
  241. to retrieve its transitive dependencies from the network.
  242. ** JSS
  243. Java Syntax Sucks. q.v [lsw2]
  244. Extensive bugfixing wrt. method resolution [#229]
  245. ** JFLI
  246. A "captured from the wild" version of what @rich.hickey did before Clojure.
  247. Changes
  248. -------
  249. * [#249] PATHNAME merge semantics DWIMs on an inferred type
  250. Extends ANSI PATHNAME in a non-conforming manner, which was probably
  251. already the case.
  252. * [r13695] Reimplementation of global symbol macros to avoid using
  253. the symbol's value slot.
  254. * [r13696] DEFMACRO now supports documentation strings as per the
  255. ANSI specification.
  256. * [r13700] ABCL loads under the Weblogic 10.3 application server.
  257. * [r13768] [#193] Allow zero-length symbols
  258. * [r13785] JNEW-RUNTIME-CLASS gets fields and annotations
  259. * [r13790] JNEW-RUNTIME-CLASS getters/setters for fields
  260. * [r13796] [r13797] N3 DOAP description for ABCL
  261. * [r13803] Build target 'abcl-contrib.jar' packages ABCL-CONTRIB
  262. Fixes
  263. -----
  264. * ANSI [#241]
  265. ** &AUX parameters fixes RESTAS
  266. * [#221] Stack exhaustsion on funcall in non-existing package
  267. * [#113] DEFSTRUCT concurrency
  268. * [#216][#211] Compiler
  269. ** stack inconsistency
  270. * [#187] Better SORT and STABLE-SORT via Jorge Tavares [???]
  271. Issues Resolved
  272. ---------------
  273. * [#234] ABCL-ASDF mvn errors with VERSION slot unbound
  274. * [#237] JNA fails to load blocking CFFI
  275. * [#249] Problems under Ubuntu
  276. * [#250] SYS:SHA256 does not compile
  277. * [#265] COMPILE-FILE.2 COMPILE-FILE.2A ANSI regression
  278. * [#268] ABCL-ASDF working with maven-3.0.3
  279. * [#269] SLIME cannot browse systems with November Quicklisp
  280. * [#270] Is BUGS.DEFEGENERIC.1 a valid test?
  281. * [#271] ASDF-2.26 changes synced upstream
  282. * [#272] DESCRIBE.[14] ANSI regression rschlatte
  283. * [#275] ABCL-CONTRIB still provided if abcl-contrib.jar cannot be located
  284. * [#276] defmethod doesn't call add-method
  285. * [#277] reinitialize-instance on class metaobjects incorrect
  286. * [#113] DEFSTRUCT redefinition can crash ABCL on MAKE-STRUCT
  287. * [#199] CL:DEFMETHOD fails for &AUX arguments that reference other arguments
  288. * [#213] ABCL-ASDF breakage on trunk
  289. * [#215] ABCL-ASDF:RESOLVE should work in more (some?) cases
  290. * [#229] JSS method resolution failure
  291. * [#246] CFFI: dynamically generated classes referred from .fasl can not be found after ABCL restart
  292. * [#168] Compilation fails for quicklisp let-plus
  293. * [#187] Stack Overflow for Worst-case Vector Sort
  294. * [#202] ENSURE-GENERIC-FUNCTION assumes LAMBDA-LIST is NIL
  295. * [#204] abcl-asdf maybe-parse-mvn ignores version information
  296. * [#205] JSS logic for resolving methods a little wonky (could use better diagnostics on why resolution has failed)
  297. * [#207] DECLARE should signal conditions when type declarations are violated
  298. * [#210] Add JFLI to contrib
  299. * [#217] ANSI tests wont run on Revision 14011: /trunk/abcl
  300. * [#219] Keyword argument checking for lambda lists is too lenient for ANSI
  301. * [#220] Lambda list checking too lenient
  302. * [#224] Autoloader fails when *read-XXXX* variables bound to non-standard values
  303. * [#225] One of the paths in STD-COMPUTE-DISCRIMINATING function not working
  304. * [#235] Compiled cl+ssl sources not reloadable
  305. * [#241] &rest and &aux can't coexist anymore in lambda lists
  306. * [#243] ClassCastException in MAKE-PATHNAME
  307. * [#245] Slots of a class with a custom meta-class are reported as unbound.
  308. * [#247] CFFI: $Proxy3 is not assignable to com.sun.jna.Pointer
  309. * [#252] MOP rework broke profiler?
  310. * [#254] Cannot load ASDF systems in jar archives with ASDF-BINARY-LOCATIONS-COMPATIBILTY enabled
  311. * [#255] ASDF file encoding specification doesn't work
  312. * [#263] loading systems from abcl-contrib fails if CLASSPATH has a component with wildcard
  313. * [#264] abcl-asdf.asd broken since revision 14233
  314. * [#60 ]Implement USE-FAST-CALLS properly
  315. * [#130] "SLIME under Windows has ""extra"" CRLF"
  316. * [#172] DOCUMENTATION does not work for generic functions
  317. * [#174] Conformance bug in time implementation when using SLIME
  318. * [#175] abcl.release target fails occasionally unassigned
  319. * [#189] Compiler fails for 'unsigned-byte type declaration
  320. * [#201] &WHOLE broken in DEFINE-METHOD-COMBINATION
  321. * [#206] COMPILER-UNSUPPORTED-FEATURE-ERROR is derived from CONDITION, rather than from ERROR
  322. * [#208] "Files loaded via ""--load <FILE>"" on the command line have no pathname defaults"
  323. * [#211] closure-common fails to load correctly after compilation
  324. * [#214] Stack overflow when compiler macro with fallback is triggered
  325. * [#232] Allow wrapper script to reference install directory instead of build directory
  326. * [#192] ASDF::IMPLEMENTATION-IDENTIFIER contains ABCL build environment identifier
  327. * [#195] prompt is displayed twice when evaluating NIL at the REPL
  328. Version 1.0.1
  329. ==============
  330. svn.uri=:"http://abcl.org/svn/tags/1.0.1/abcl/"
  331. (09 January 2012)
  332. Changes
  333. -------
  334. * Updated ASDF to 2.019
  335. * User Manual now contains more polished formating from docstring
  336. groveling, an index of symbols, and additional enhancements.
  337. * 'abcl.properties.in' now contains examples of optimizing the ABCL
  338. wrapper script for 64bit instances for Java7 and for Java6.
  339. * [r13720] Randomize string hash computation to guard against
  340. exploits.
  341. * [r13723] New internal API in Package.java for looking up internal
  342. vs. external symbols.
  343. Fixes
  344. -----
  345. * [#181][r13718] The implementation now correctly loads ASDF definitions
  346. from jar archives. This had prevented the ABCL-CONTRIB loading
  347. mechanism from working.
  348. * [#177] Made the mechanism for locating the abcl-contrib archive
  349. more robust
  350. * [#177] LIST-DIRECTORY no longer ignores :RESOLVE-SYMLINKS
  351. * [r13706] Fix Streadm.readToken() bug reported by Blake McBride.
  352. * [#183][r13703] Move threads-jss.lisp out of system source to
  353. restore conditional recompilation logic.
  354. Version 1.0.0
  355. ==============
  356. svn.uri=:"http://abcl.org/svn/tags/1.0.0/abcl/"
  357. released at the European Common Lisp Meeting Amsterdam 2011
  358. (22 October 2011)
  359. Features
  360. --------
  361. * (Draft) manual
  362. * Much better Quicklisp system capabilities (trivial-garbage,
  363. bordeaux-threads, parenscript, cxml, et. al.)
  364. Changes
  365. -------
  366. * Updated ASDF to 2.017.22
  367. Fixes
  368. -----
  369. * CLOSURE-HTML now compiles
  370. * DEFINE-METHOD-COMBINATION long form implemented
  371. Version 0.27.0
  372. ==============
  373. svn.uri="http://abcl.org/svn/tags/0.27.0/"
  374. Features
  375. --------
  376. * ABCL works as an SBCL build host
  377. * Huge (> 64k) literal object support (fixes CL-UNICODE support)
  378. * The ABCL-ASDF contrib allows the specification of JAR-FILE or
  379. JAR-DIRECTORY components that can be resolved via a PATHNAME. The
  380. MVN component bootstraps a Maven3 Aether connector to locally
  381. replicate a versioned jar artifact for dynamic inclusion in the
  382. CLASSPATH.
  383. Changes
  384. -------
  385. * Renamed LispObject.writeToString() method to (more Lispy) printObject()
  386. * New LispObject.princToString() for user readable output
  387. * Changed behaviour of LispObject.unreadableString() to signal
  388. errors when *PRINT-READABLY* is non-NIL
  389. * Static initializers moved to <clinit>() (java: static { }) to
  390. prevent repeated execution when invoking the constructor multiple times
  391. * Compiler clean-ups
  392. * Changed implementation of LABELS to eliminate the need
  393. to *always* create a closure
  394. * File compiler (COMPILE-FILE) clean-ups
  395. * When calling a function with the wrong number of arguments,
  396. report the expected (range) of arguments
  397. * Upgraded ASDF to 2.017
  398. * JSS:JLIST-TO-LIST now converts any java.list.List to a Lisp list.
  399. * The ASDF extensions from JSS for the "jar-directory", "jar-file",
  400. and "class-file-directory" types have been refactored into the
  401. ABCL-ASDF contrib as well as the *ADDED-TO-CLASSPATH* variable
  402. which records dynamically added dependencies. Use the
  403. JSS:ENSURE-COMPATIBILITY function to have JSS include these
  404. dependencies.
  405. * As long as ABCL-ASDF:ENSURE-MVN-VERSION can dynamically introspect
  406. and then load Maven 3 libraries at runtime, ASDF components of type
  407. MVN can now be used to specify versioned JVM artifacts.
  408. * Threads spawned by THREADS:MAKE-THREAD can terminate the Lisp image
  409. via the EXT:QUIT and EXT:EXIT functions.
  410. Fixes
  411. -----
  412. * MULTIPLE-VALUE-PROG1.10 (ansi test) fixed
  413. * [ticket #148] READTABLE-CASE :INVERT doesn't work for uninterned symbols
  414. * [ticket #161] READTABLE-CASE of current readtable affects FASL content
  415. * [ticket #162] Non-symbol in variable position of SETQ form causes
  416. class verification failure
  417. * [ticket #163] Local functions shadow global macro and function bindings
  418. (fixes PARENSCRIPT support)
  419. * [ticket 158] Readable printing of the string "#<abc>" does not signal
  420. a PRINT-NOT-READABLE error anymore
  421. * Fixed SYNTAX.SHARP-BACKSLASH.6 and SYNTAX.SHARP-BACKSLASH.7
  422. * Fixed many PPRINT.* test suite failures
  423. * [ticket #151] LOAD fails for whitespace in JAR-PATHNAME
  424. Version 0.26.2
  425. ==============
  426. http://abcl.org/svn/tags/0.26.2/abcl
  427. (14 August 2011)
  428. Features
  429. --------
  430. * Enable compilation with Java 7
  431. Fixes
  432. -----
  433. * Fix loading from fasls under Windows with whitespace in pathname.
  434. * Fix #131: Don't include ':' in the version string.
  435. * Fix #141: SETF of APPLY not working with arbitrary function.
  436. * Include filename in the error string being reported.
  437. * Include the test source in the release.
  438. * Include ASDF definition in source release.
  439. Version 0.26.1
  440. ==============
  441. http://abcl.org/svn/tags/0.26.1/abcl
  442. (27 July 2011)
  443. Features
  444. --------
  445. * Upgrade ASDF to 2.017.
  446. Fixes
  447. -----
  448. * Fix compilation problems by including the
  449. org.armedbear.lisp.protocol source in the build process
  450. * Printing of conditions defined with DEFINE-CONDITION
  451. * Regression with failing SYNTAX.SHARP-BACKSLASH.6
  452. and SYNTAX.SHARP-BACKSLASH.7 ANSI test suite failures
  453. * Multiple failures in PPRINT.* ANSI test suite failures
  454. * String interop with Java for strings with fill pointer
  455. * Made #\Uxxxx a synonym for character codes with values greater than
  456. 255 on input, but never output as the character name by the
  457. implementation.
  458. Version 0.26.0
  459. ==============
  460. http://abcl.org/svn/tags/0.26.0/abcl
  461. (10 July 2011)
  462. Features
  463. --------
  464. * Add support for weak reference objects
  465. * Add support for finalizers on LispObject derived classes
  466. * Upgrade ASDF to 2.0.16.1
  467. * #\ reader macro now understands #\uNNNN as unicode codepoints
  468. * JAVA:JRESOLVE-METHOD returns same method as would have been
  469. called by JAVA:JCALL with the same arguments
  470. * Ant 'update' target to upload application to Google App Engine
  471. * Simple RUN-PROGRAM implementation
  472. * Support for custom slot definitions according to AMOP
  473. * New JAVA:*JAVA-OBJECT-TO-STRING-LENGTH* variable to control pretty
  474. printing of Java objects
  475. * JSS - more dynamic Lisp/Java FFI - (http://lsw2.googlecode.com/svn/trunk)
  476. imported
  477. * (REQUIRE :ABCL-CONTRIB) adds 'abcl-contrib.jar' to the ASDF search path
  478. * Support for weak references in hash tables through a :WEAKNESS keyword
  479. argument to MAKE-HASH-TABLE; with SYS:HASH-TABLE-WEAKNESS for inspection
  480. * Support for loading ASDF systems from JAR archives
  481. * Fast SHA1, SHA256 and SHA512 cryptographic hashes for files
  482. * Beginnings of a manual
  483. * ABCL/ASDF integration with Maven provided systems
  484. * ASDF-JAR:PACKAGE function to package ASDF systems into JARs
  485. Changes
  486. =======
  487. * Reduced code size in the compiler by changing COMPILE-TEST-FORM
  488. * Enhanced SLIME inspector for JAVA:JAVA-OBJECT
  489. * Reimplemented MERGE-PATHNAMES
  490. * TRANSLATE-PATHNAME aligned with SBCL's behaviour if version is wild
  491. * Removed PRINT-OBJECT methods duplicating Java side code
  492. * Refactored code in SYSTEM:ZIP function
  493. * Allow JCOERCE to convert any number to java.lang.Byte (using
  494. its two's complement)
  495. * Replace MAKE-IMMEDIATE-OBJECT with +NULL+, +TRUE+ and +FALSE+ constants
  496. (the only supported ones)
  497. * Better separation between java-collections package and Java FFI
  498. * JAVA:ADD-TO-CLASSPATH is now a generic function
  499. Fixes
  500. =====
  501. * Google App Engine example fixed
  502. * MAKE-PATHNAME erroneously merges directories as in MERGE-PATHNAME
  503. * Pretty printer routines using SYS:OUTPUT-OBJECT with GRAY-STREAM
  504. * Value of *PRINT-CASE* affects file (to FASL) compilation
  505. * MAKE-PATHNAME ignores version in :DEFAULTS
  506. * URI decoding algorithm in Pathname.java
  507. * JNEW-ARRAY-FROM-ARRAY should create byte[] arrays
  508. Version 0.25.0
  509. ==============
  510. http://abcl.org/svn/tags/0.25.0/abcl
  511. (10 March 2011)
  512. Features
  513. --------
  514. * Add :resolve-symlinks keyword argument for DIRECTORY.
  515. * Support -- as a command line parameter for the REPL.
  516. * Preliminary support for Maven deployment.
  517. * Add an initargs cache for speedups in check-initargs. This should
  518. make the initarg checking in CLOS quite a bit faster.
  519. * Incorporate output of 'svnversion' into LISP-IMPLEMENTATION-VERSION.
  520. * Ant target for generating Javadoc.
  521. Fixes
  522. -----
  523. * [svn r13229] Remove non-existing THREAD-LOCK and THREAD-UNLOCK from autoloads.
  524. * [svn 13228] Fix incorrect elimination of named local functions
  525. declared inline when they're actually reified in the flet/labels body.
  526. * [svn r13217] Forward-referenced classes work properly now.
  527. * [svn r13209] Add initarg checking to REINITIALIZE-INSTANCE.
  528. * [svn r13204] FINALIZE-INHERITANCE is (more) AMOP compatible.
  529. * [svn r13203] Create ATOMIC-DEFGENERIC macro, in order to eliminate
  530. FMAKUNBOUND calls and the resulting windows where no function is bound to
  531. symbols which are the most essential building blocks in CLOS/AMOP.
  532. * [svn r13200] Atomically swap generic functions into place of temporary
  533. DEFUNs for all standard-class slot accessors.
  534. Note: This addresses the recursive requirement to be able
  535. to allocate objects and classes while changing the functions
  536. used to create them.
  537. * [svn r13196] Provide more context regarding the reason of autoloading.
  538. Note: This change *hugely* helps debugging.
  539. * [svn r13189] Fix MACROEXPAND-ALL autoloader which should be
  540. loaded from 'format.lisp'.
  541. * [svn r13188] Fix DEFSTRUCT trying to generate accessors named NIL
  542. * [svn r13187] Fix #125: FASL reader should not convert symbol
  543. case [Qi FASL loading issues].
  544. * [svn r13185] Fix #119: Incorrect dynamic environment for
  545. evaluation of :CLASS allocation slot initforms.
  546. * [svn r13182-r13184] Fix error printing issues.
  547. * [svn r13181] Increase autoload verbosity: include FASLs too
  548. (not only Java classes).
  549. Changes
  550. -------
  551. * Merge 'unsafe-p-removal' branch.
  552. Version 0.24.0
  553. ==============
  554. http://abcl.org/svn/tags/0.24.0/abcl
  555. (22 January 2011)
  556. Features
  557. --------
  558. * [svn r130103-r13107] Implemented JNULL_REF_P to distinguish a
  559. JAVA-OBJECT which contains a Java "null" from the Lisp NIL.
  560. * [svn r13102] More type-conversion helpers in JAVA package:
  561. LIST-FROM-JARRAY, VECTOR-FROM-JARRAY, and LIST-FROM-JENUMERATION.
  562. * [svn r13078] JVM::MAKE-CLASS-INTERFACE-FILE provides an interface
  563. for the creation of Java interfaces as serialized by the new
  564. classwriter code. An example of use can be found in
  565. "examples/misc/dynamic-interfaces.lisp".
  566. * [svn r13087] Upgraded to ASDF-2.012
  567. Fixes
  568. -----
  569. * [svn r13135] Fix the problem that FASLs can contain
  570. a limited number of functions.
  571. * [svn r13117][ticket #117] Fix stack inconsistency error.
  572. * [svn r13018][ticket #114] Fix strange backtrace growth.
  573. * [svn r13105] Fix Pathname.java failing to find boot.lisp in an
  574. "unpacked JAR" situation found by running ABCL in the Glassfish v3
  575. servlet container.
  576. * [svn r13096] For arrays, add initialization with the default value
  577. of the element type if neither INITIAL-ELEMENT nor INITIAL-CONTENT
  578. have been specified. Found by: dmalves_ (freenode irc nick).
  579. * [svn r13094] Eliminate flushes after every character in
  580. javax.scripting support.
  581. * [svn r13090] Make --batch exit, use Lisp.exit() in places where
  582. applicable so that the streams are flushed, hence allowing --eval
  583. output to be flushed.
  584. * [svn r13088] Fix algorithim error in writing byte sequences via
  585. RandomAccessCharacterFile. Found and fixed by David Kirkman.
  586. Changes
  587. -------
  588. * [svn r13141-13146,13156] Make ABCL a well behaving library to better
  589. support embedding: NEVER call System.exit() again. Instead, ABCL now
  590. throws org.armedbear.lisp.ProcessingTerminated and
  591. org.armedbear.lisp.IntegrityError.
  592. * [svn r13111] Added a "tools" directory available in SVN repository
  593. to contain tools for developing ABCL in various states. The first
  594. inhabitant is 'code-grapher.lisp' that provides a prototype to
  595. diagram a JVM instruction sequence via graphviz.
  596. * [svn r13101] Reduced verbosity of the AbclScriptEngine.
  597. * [svn r13097-13100] Slight refactoring of PATHNAME code, further
  598. specifying URI escaping rules.
  599. * [svn r13091-2] Better error reporting for UnhandledCondition thrown
  600. from the Interpreter, storing the originating Java error in the
  601. "cause" field if the cause is a subclass of JAVA_EXCEPTION.
  602. Version 0.23.1
  603. ==============
  604. http://abcl.org/svn/tags/0.23.1/abcl
  605. (01 December 2010)
  606. Fixes
  607. -----
  608. * [svn r13509-10] Allow JSR-223 clients to query ABCL metadata without
  609. incurring the entire interpreter startup time.
  610. * [svn r13506] Fix probles with loading FASLs in directories
  611. containing whitespace characters.
  612. We now require all PATHNAME objects constructed via a namestring
  613. containing the "file" scheme to be URI encoded according to
  614. RFC3986.
  615. Version 0.23
  616. ============
  617. http://abcl.org/svn/tags/0.23.0/abcl
  618. (25 November, 2010)
  619. Features
  620. --------
  621. * [svn r12986] Update to ASDF 2.010.1
  622. * [svn r12982] Experimental support for the long form
  623. of DEFINE-METHOD-COMBINATION
  624. * [svn r12994] New java-interop macros: CHAIN and JMETHOD-LET
  625. * [svn r13030-31,r13034] ASDF-INSTALL improvements: Ensure that the
  626. ASDF registry contains the ASDF-INSTALL locations. Better
  627. resolution mechanism for 'gpg' binary.
  628. Fixes
  629. -----
  630. * [svn r13039] Restore the Lisp-based build
  631. * [ticket #108][svn r13027] Fix download problems with ASDF-INSTALL
  632. * [svn r12995-12997] Changes to generated byte code to prevent JRockit JVM
  633. from crashing when optimizing it
  634. * Various fixes in order to complete the Maxima test suite without failures
  635. * [ticket #98] THREAD type specifier not exported from the THREADS package
  636. * [svn r12946] Fix CLOS thread-safety
  637. * [svn r12930] Fix non-constantness of constant symbols when using SET
  638. * [svn r12929] Don't throw conditions on floating point underflow
  639. (fixes Maxima failures)
  640. * [svn r12928] Fix for Java-collections-as-lisp-sequences support
  641. * [svn r12927] Fix for regression to moved threads related symbols
  642. * [ticket #104] SET changes value of symbols defined with DEFCONSTANT
  643. * [ticket #88] Need a predicate to indicate source of compiled version
  644. ie Java vs Lisp
  645. * [ticket #106] DEFSTRUCT :include with :conc-name creating overwriting
  646. inherited slot accessors
  647. * [ticket #97] Symbol imported in multiple packages reported multiple
  648. times by APROPOS
  649. * [ticket #107] Incorrect compilation of (SETF STRUCTURE-REF) expansion
  650. * [ticket #105] DIRECTORY ignores :WILD-INFERIORS
  651. Other
  652. -----
  653. * [svn r12918] Compiler byte code generator cleanup: introduction
  654. of generic class file writer, elimination of special purpose code
  655. in the compiler.
  656. * Number of hashtable implementations reduced to 1 (from 5)
  657. * Reduced use of 'synchronized' global hash table access by using
  658. the java.util.concurrent package
  659. Version 0.22
  660. ============
  661. http://abcl.org/svn/tags/0.22.0/abcl
  662. (September 24, 2010)
  663. Fixes
  664. -----
  665. * [svn r12902] Fix reading data with scandinavian latin1 characters
  666. * [svn r12906] Respect the CLASSPATH environment variable in the
  667. abcl wrapper scripts
  668. * [ticket #103] DOCUMENTATION not autoloaded
  669. Other
  670. -----
  671. * [svn r12819] Until-0.22-compatibility hacks (in threads support) removed
  672. Version 0.21
  673. ============
  674. http://abcl.org/svn/tags/0.21.0/abcl
  675. (July 24, 2010)
  676. Features
  677. --------
  678. * [svn r12818] Update to ASDF 2.004
  679. * [svn r12738-805] Support for custom CLOS slot definitions and
  680. custom class options.
  681. * [svn r12756] slot-* functions work on structures too.
  682. * [svn r12774] Improved Java integration: jmake-proxy can implement
  683. more than one interface.
  684. * [svn r12773] Improved Java integration: functions to dynamically
  685. manipulate the classpath.
  686. * [svn r12755] Improved Java integration: CL:STRING can convert Java
  687. strings to Lisp strings.
  688. Fixes
  689. -----
  690. * [svn 12809-10-20] Various printing fixes.
  691. * [svn 12804] Fixed elimination of unused local functions shadowed by macrolet.
  692. * [svn r12798-803] Fixed pathname serialization across OSes.
  693. On Windows pathnames are always printed with forward slashes,
  694. but can still be read with backslashes.
  695. * [svn r12740] Make JSR-223 classes compilable with Java 1.5
  696. Other
  697. -----
  698. * [svn r12754] Changed class file generation and FASL loading
  699. to minimize reflection.
  700. * [svn r12734] A minimal Swing GUI Console with a REPL
  701. is now included with ABCL.
  702. Version 0.20
  703. ============
  704. http://abcl.org/svn/tags/0.20.0/abcl
  705. (24 May, 2010)
  706. Features
  707. --------
  708. * [svn r12576] Support for CLOS METACLASS feature.
  709. * [svn r12591-602] Consolidation of copy/paste code in the readers.
  710. * [svn r12619] Update to ASDF2 (specifically to ASDF 1.719).
  711. * [svn r12620] Use interpreted function in FASL when compilation fails.
  712. * [ticket #95] PATHNAME-JAR and PATHNAME-URL subtypes now handle jar
  713. and URL references working for OPEN, LOAD, PROBE-FILE,
  714. FILE-WRITE-DATE, DIRECTORY, et. al.
  715. * Many small speed improvements (by marking functions 'final').
  716. * [ticket #91] Threads started through MAKE-THREAD now have a
  717. thread-termination restart available in their debugger.
  718. * [svn r12663] JCLASS supports an optional class-loader argument.
  719. * [svn r12634] THREADS:THREAD-JOIN implemented.
  720. * [svn r12671] Site specific initialization code can be included in
  721. builds via the 'abcl.startup.file' Ant property.
  722. Fixes
  723. -----
  724. * [ticket #89] Inlining of READ-LINE broken when the return value
  725. is unused.
  726. * [svn r12636] Java class verification error when compiling PROGV
  727. in a context wanting an unboxed return value (typically a
  728. logical expression).
  729. * [svn r12635] ABCL loads stale fasls instead of updated source
  730. even when LOAD is called with a file name without extension.
  731. * [ticket #92] Codepoints between #xD800 and #xDFFF are incorrectly
  732. returned as characters from CODE-CHAR.
  733. * [ticket #93] Reader doesn't handle zero returned values from
  734. macro functions correctly.
  735. * [ticket #79] Different, yet similarly named, uninterned symbols
  736. are incorrectly coalesced into the same object in a fasl.
  737. * [ticket #86] No restarts available to kill a thread, if none
  738. bound by user code.
  739. * [svn r12586] Increased function dispatch speed by eliminating
  740. FIND-CLASS calls (replacing them by constant references).
  741. * [svn r12656] PATHNAME-JAR now properly uses HTTP/1.1 HEAD requests
  742. to detect if remote resource has been changed.
  743. * [svn r12643] PATHNAME-JAR now properly references Windows drive
  744. letters on DEVICE other than the default.
  745. * [svn r12621] Missing 'build-from-lisp.sh' referenced in README now
  746. included in source release.
  747. Other
  748. -----
  749. * [svn r12581] LispCharacter() constructors made private, in favor
  750. of getInstance() for better re-use of pre-constructed characters.
  751. * [svn r12583] JAVA-CLASS reimplemented in Lisp.
  752. * [svn r12673] Load 'system.lisp' moved later in boot sequence so
  753. unhandled conditions drop to debugger.
  754. * [svn r12675] '--nosystem' commandline option inhibits loading of
  755. 'system.lisp'.
  756. * [svn r12642] Under Windows, pathname TYPE components can now contain
  757. embedded periods iff they end in '.lnk' to support shortcuts.
  758. Version 0.19
  759. ============
  760. http://abcl.org/svn/trunk/abcl
  761. (14 Mar, 2010)
  762. Features
  763. --------
  764. * [svn r12518] *DISASSEMBLER* may now contain a hook which returns the
  765. command to disassemble compiled functions.
  766. * [svn r12516] An implementation of user-extensible sequences as
  767. proposed in Christopher Rhodes, "User-extensible sequences in Common
  768. Lisp", Proc. of the 2007 International Lisp Conference.
  769. * [svn r12513] Implement SYS:SRC and SYS:JAVA logical pathname
  770. translations for system Lisp source and the root of the Java package
  771. structure, respectively.
  772. * [svn r12505] All calls to anonymous functions and local functions that have
  773. been declared inline are now converted to LET* forms, reducing stack usage
  774. and the number of generated classes.
  775. * [svn r12487] An initial port ASDF-INSTALL now forms the first ABCL
  776. contrib. Such contribs are optionally built by the Ant target
  777. 'abcl.contrib'. ASDF-INSTALL is not expected to work very well
  778. under Windows in its present state.
  779. * [svn r12447] [ticket:80] REQUIRE now searches for ASDF systems.
  780. * [svn r12422] Jar pathname support extensively re-worked and tested
  781. so that LOAD, PROBE-FILE, TRUENAME, DIRECTORY, and WRITE-FILE-DATE
  782. all work both for local and remote jar pathnames of the form
  783. "jar:URL!/JAR-ENTRY".
  784. The loading ASDF systems from jar files is now possible.
  785. SYS:PATHNAME-JAR-P predicate signals whether a pathname references a
  786. jar.
  787. NB: jar pathnames do *not* currently work as an argument to OPEN.
  788. SYS:UNZIP implemented to unpack ZIP files.
  789. SYS:ZIP now has a three argument version for creating zip files with
  790. hierarchical entries.
  791. * [svn r12450] Collect unprocessed command-line arguments in
  792. EXT:*COMMAND-LINE-ARGUMENT-LIST* (Dennis Lambe Jr.)
  793. * [svn r12414] SYS::%GET-OUTPUT-STREAM-ARRAY returns a Lisp byte array
  794. from a Java byte array stream.
  795. * [svn 12402] ABCL.TEST.LISP:RUN-MATCHING will now execute that subset
  796. of tests which match a string.
  797. Fixes/Optimizations
  798. -------------------
  799. * [svn r12526] Unbinding of PROGV bound variables on local transfer
  800. of control (within-java-function jump targets)
  801. * [svn r12510] The new ansi-test WITH-STANDARD-IO-SYNTAX.23 passes.
  802. Our with-standard-io-syntax implementation now correctly resets all necessary
  803. pprint variables. Patch by Douglas R. Miles, thanks for the contribution!
  804. * [svn r12485] Pathnames starting with "." can now have TYPE.
  805. * [svn r12484] FASLs containing "." characters not used to indicate
  806. type (i.e. ".foo.bar.baz.abcl") can now be loaded.
  807. * [svn r12422] Pathname.java URL contructor under Windows now properly
  808. interprets the drive letter.
  809. * [svn r12449] The 'abcl.jar' produced by Netbeans now contains a valid
  810. manifest (found by Paul Griffionen).
  811. * [svn r12441] ZipCache now caches all references to ZipFiles based on
  812. the last-modified time for local files. Remote files are always
  813. retrieved due to problems in the underlying JVM code.
  814. SYS:REMOVE-ZIP-CACHE implements a way to invalidate an entry given a
  815. pathname.
  816. * [svn r12439] Remove duplication of java options in Windows
  817. 'abcl.bat' script.
  818. * [svn r12437] CHAR-CODE-LIMIT is the upper execlusive limit (found by
  819. Paul Griffionen).
  820. * [svn r12436] Describe formatting was missing a newline (reported by
  821. Blake McBride).
  822. * [svn 12469] Ensure that FILE-ERROR always has a value (possibly NIL)
  823. for its PATHNAME member.
  824. * [svn r14222] MERGE-PATHNAMES no longer potentially shares structure
  825. between its result and *DEFAULT-PATHNAME-DEFAULTS*.
  826. * [svn r12416] Fixed ANSI LAMBDA.nn test failures caused by errors in
  827. lambda inlining.
  828. * [svn r12417] [ticket:83] Fix TRANSLATE-LOGICAL-PATHNAME regression.
  829. (Alan Ruttenberg).
  830. * [svn r12412] Optimize memory efficiency of FORMAT by use of a
  831. hashtable rather than a CHAR-CODE-LIMIT array.
  832. * [svn r12408] FIND-SYMBOL requires a string argument.
  833. * [svn r12400] Make NIL (as symbol) available to the compiler.
  834. * [svn r12398] Move lambda list analysis to compile time where possible.
  835. * [svn r12397] BROADCAST-STREAM obeys default external format fixing
  836. ANSI MAKE-BROADCAST-STREAM.8.
  837. * [svn r12395] Improve arglist display for SLIME (Matthias Hölzl).
  838. * [svn r12394] Optimize array utilization in closures.
  839. * [svn r12393] Optimize array functions in compiler which don't
  840. require clearing the VALUES array.
  841. * [svn r12392] Optimize/normalize aspects of boot.lisp
  842. * [svn r12391] Prevent duplicated subclasses form occuring.
  843. Other
  844. -----
  845. * [svn r12447] SYS::*MODULE-PROVIDER-FUNCTION* now provides a mechanism
  846. to extend the REQUIRE resolver mechanism at runtime.
  847. * [svn r12430] Ant based build no longer writes temporary files to
  848. contain the Lisp build instructions.
  849. * [svn r12481] STANDARD-CLASS now has slots to be inherited by
  850. deriving metaclasses in support of the (in progress) work on
  851. metaclass.
  852. * [svn r12425] No longer ignore the METACLASS defclass option in
  853. support of the (in progress) work on metaclass
  854. * [svn r12422] SYS::*LOAD-TRUENAME-FASL* now contains the TRUENAME of
  855. the Java "*.cls" component when loading a packed FASL.
  856. * [svn r12461] Human readable Java representations for class cast
  857. exceptions for NULL and UNBOUND values.
  858. * [svn r12453 et. ff.] Large numbers of the implementation of Java
  859. primitives have been declared in a way so that a stack trace
  860. provides a much more readable indication of what has been invoked.
  861. Primitives which extend Primitive are prefixed with "pf_"; those
  862. which extend SpecialOperator are prefixed with "sf_".
  863. * [svn r12422] The internal structure of a jar pathname has changed.
  864. Previously a pathname with a DEVICE that was itself a pathname
  865. referenced a jar. This convention was not able to simultaneously
  866. represent both jar entries that were themselves jar files (as occurs
  867. with packed FASLs within JARs) and devices which refer to drive
  868. letters under Windows. Now, a pathname which refers to a jar has a
  869. DEVICE which is a proper list of at most two entries. The first
  870. entry always references the "outer jar", and the second entry (if it
  871. exists) references the "inner jar".
  872. * [svn r12419] Ant 'abcl.release' target centralizes the build steps
  873. necessary for creating releases.
  874. * [svn r12409] Compiler now rewrites function calls with (LAMBDA …) as
  875. the operator to LET* forms.
  876. * [svn r12415] CLASS-FILE renamed to ABCL-CLASS-FILE to prepare for
  877. (in progress) reworking of Stream inheritance.
  878. * [svn r123406] 'test/lisp/abcl/bugs.lisp' forms a default location to
  879. add unit tests for current bug testing. The intention is to move
  880. these tests into the proper location elsewhere in the test suite
  881. once they have been fixed.
  882. * [svn r124040] Java tests upgraded to use junit-4.8.1. Netbeans
  883. project runtime classpath now uses compilation results before source
  884. directory, allowing the invocation of ABCL in interpreted mode if
  885. the Ant 'abcl.compile.lisp.skip' property is set. Java unit tests
  886. for some aspects of jar pathname work added.
  887. * New toplevel 'doc' directory now contains:
  888. + [svn r12410] Design for the (in progress) reworking of the Stream
  889. inheritance.
  890. + [svn r12433] Design and current status for the re-implementation
  891. of jar pathnames.
  892. * [svn r12402] Change ABCL unit tests to use the ABCL-TEST-LISP definition
  893. contained in 'abcl.asd'. Fixed and renabled math-tests. Added new
  894. tests for work related to handling jar pathnames.
  895. * [svn r12401] The REFERENCES-NEEDED-P field of the LOCAL-FUNCTION structure now
  896. tracks whether local functions need the capture of an actual
  897. function object.
  898. Version 0.18.1
  899. ==============
  900. http://abcl.org/svn/tags/0.18.1/abcl
  901. (17 Jan, 2010)
  902. Features:
  903. * Support for printing java objects with print-object
  904. * Support for disassembling proxied functions
  905. Bugs fixed:
  906. * maxima works again
  907. Version 0.18.0
  908. ==============
  909. http://abcl.org/svn/tags/0.18.0/abcl
  910. (12 Jan, 2010)
  911. Features:
  912. * Programmable handling of out-of-memory and stack-overflow conditions
  913. * Faster initial startup (to support Google App Engine)
  914. * Faster special variable lookup
  915. * New interface for binding/unwinding special variables
  916. * Implement (SETF (STREAM-EXTERNAL-FORMAT <stream>) <format>)
  917. * Implement (SETF (JAVA:JFIELD <object>) <value>)
  918. * Constant FORMAT strings get compiled for performance
  919. Bugs fixed:
  920. * FASLs are system default encoding dependent (ticket 77)
  921. * I/O of charset-unsupported characters causes infinite loop (ticket 76)
  922. * Memory leak where on unused functions with documentation
  923. * ANSI PRINT-LEVEL.* tests
  924. * Continued execution after failing to handle Throwable exceptions
  925. * Line numbers in generated java classes incorrect
  926. * JCALL, JNEW doesn't select best match when multiple applicable methods
  927. * STREAM-EXTERNAL-FORMAT always returns :DEFAULT, instead of actual format
  928. * REPL no longer hangs in Netbeans 6.[578] output window
  929. * Lambda-list variables replaced by surrounding SYMBOL-MACROLET
  930. Other changes
  931. * LispObject does not inherit from Lisp anymore
  932. * Many functions declared 'final' for performance improvement
  933. * SYSTEM:*SOURCE* FASLs for system files no longer refer to intermediate build location
  934. Version 0.17.0
  935. ==============
  936. http://abcl.org/svn/tags/0.17.0/abcl
  937. (07 Nov, 2009)
  938. Features:
  939. * Google App Engine example project "Hello world"
  940. * Support for loading FASLs from JAR files
  941. * Checking of init-arguments for MAKE-INSTANCE (CLOS)
  942. * Support for *INVOKE-DEBUGGER-HOOK* (to support SLIME)
  943. * Reduced abcl.jar size (bytes and number of objects)
  944. * Faster access to locally bound specials (compiler efficiency)
  945. * Java property to print autoloading information: abcl.autoload.verbose
  946. * Experimental: binary fasls
  947. * Default Ant build target now "abcl.clean abcl.wrapper" (from abcl.help)
  948. * ConditionThrowable class renamed to ControlTransfer,
  949. parent class changed to RuntimeException (to make it unchecked)
  950. * API no longer throws ConditionThrowable/ControlTransfer
  951. Bugs fixed:
  952. * Better fix for #63: Prevent exceptions from happening (GO and RETURN-FROM)
  953. * Restore ability for ABCL to be build host for SBCL
  954. * CLOS performance improvements through looser COMPILE dependency
  955. * Compilation fix for highest SPEED setting (triggered by CL-BENCH)
  956. * COMPILE's use of temp files eliminated
  957. * OpenJDK on Darwin now correctly identified
  958. * Incorrect block names for SETF functions defined by LABELS
  959. * Fixed MULTIPLE-VALUE-CALL with more than 8 arguments
  960. * Incorrect identification of lexical scope on recursive TAGBODY/GO
  961. and BLOCK/RETURN-FROM blocks (compiler and interpreter)
  962. * Correctly return 65k in char-code-limit (was 256, incorrectly)
  963. * Fixes to be able to run the BEYOND-ANSI tests (part of ANSI test suite)
  964. * Compiler typo fix
  965. * Implementation of mutex functionality moved to lisp from Java
  966. * Functions handling #n= and #n# are now compiled
  967. * Autoload cleanups
  968. * System package creation cleaned up
  969. * CHAR-CODE-LIMIT correctly reflects CHAR-CODE maximum return value
  970. * Precompiler macroexpansion failure for macros expanding into
  971. special operators
  972. Version 0.16.1
  973. ==============
  974. http://abcl.org/svn/tags/0.16.1/abcl
  975. (17 Oct, 2009)
  976. Bugs fixed:
  977. * More careful checking for null args in LispStackFrame
  978. * Honor appearance of &allow-other-keys in CLOS MAKE-INSTANCE
  979. * Fix #63: GO forms to non-existent TAGBODY labels would exit ABCL
  980. * Don't leak temp files during compilation
  981. Version 0.16.0
  982. ==============
  983. (06 SEP 2009)
  984. http://abcl.org/svn/tags/0.16.0/abcl
  985. Summary of changes:
  986. ------------------
  987. * Fixed generated wrapper for path names with spaces (Windows)
  988. * Fixed ticket #58: Inspection of Java objects in Lisp code
  989. * Restored functionality of the built-in profiler
  990. * Profiler extended with hot-spot counting (as opposed to call counting)
  991. * Stack sampling in the profiler moved to scheduler thread to
  992. reduce impact on the program execution thread
  993. * THE type-checking for the interpreter
  994. (for simple-enough type specifications)
  995. * Added structure argument type checking in structure slot
  996. accessor functions
  997. * Make GENSYM thread-safe
  998. * Various performance fixes found by running the raytracer
  999. from http://www.ffconsultancy.com/languages/ray_tracer/benchmark.html
  1000. * Better initarg checking for make-instance and change-class
  1001. Fixes ansi-test errors CHANGE-CLASS.1.11, MAKE-INSTANCE.ERROR.3,
  1002. MAKE-INSTANCE.ERROR.4, CHANGE-CLASS.ERROR.4 and SHARED-INITIALIZE.ERROR.4
  1003. * Improve performance of StackFrames (Erik Huelsmann, Ville Voutilainen,
  1004. with input from Peter Graves and Douglas Miles)
  1005. * Improve performance of CLOS eql-specializers via cache (Anton Vodonosov)
  1006. * 'build-from-lisp.sh' shell script (Tobias Rittweiler)
  1007. * New threading primitives aligned with Java/JVM constructs (Erik Huelsmann)
  1008. SYNCHRONIZED-ON
  1009. OBJECT-NOTIFY
  1010. OBJECT-NOTIFY-ALL
  1011. * THREADS package created to hold threads related primitives:
  1012. THREADP THREAD-UNLOCK THREAD-LOCK THREAD-NAME THREAD-ALIVE-P
  1013. CURRENT-THREAD DESTROY-THREAD INTERRUPT-THREAD WITH-THREAD-LOCK
  1014. MAKE-THREAD-LOCK MAKE-THREAD INTERRUPT-THREAD
  1015. MAPCAR-THREADS
  1016. GET-MUTEX MAKE-MUTEX WITH-MUTEX RELEASE-MUTEX
  1017. These primitives are still part of the EXTENSIONS package but are
  1018. now to be considered as deprecated, marked to be removed with
  1019. 0.22
  1020. * Stacktraces now contain calls through Java code relevant to
  1021. debugging (Tobias Rittweiler)
  1022. Backtrace functionality been moved from EXT:BACKTRACE-AS-LIST to
  1023. SYS:BACKTRACE to mark this changes. The methods SYS:FRAME-TO-STRING
  1024. and SYS:FRAME-TO-LIST can be used to inspect the new
  1025. LISP_STACK_FRAME and JAVA_STACK_FRAME objects
  1026. * Various stream input performance optimizations
  1027. * Fixed breakage when combining Gray streams and the pretty printer
  1028. * Performance improvements for resolution of non-recursive #=n and #n#
  1029. Version 0.15.0
  1030. ==============
  1031. http://abcl.org/svn/tags/0.15.0/abcl
  1032. (07 Jun, 2009)
  1033. Summary of changes:
  1034. -------------------
  1035. * 2 more MOP exported symbols to support Cells port
  1036. * Updated FASL version
  1037. * Support (pre)compilation of functions with a non-null lexical environment
  1038. * Compiler and precompiler cleanups
  1039. * 'rt.lisp' copy from ANSI test suite removed
  1040. * Many documentation additions for the (pre)compiler
  1041. * JSR-233 support improvements
  1042. * Refactoring of classes:
  1043. - deleted: CompiledFunction, ClosureTemplateFunction, CompiledClosure,
  1044. Primitive0R, Primitive1R, Primitive2R
  1045. - renamed: CompiledClosure [from ClosureTemplateFunction]
  1046. * Compiler support for non-constant &key and &optional initforms
  1047. * Fixed ticket #21: JVM stack inconsistency [due to use of RET/JSR]
  1048. * Numerous special bindings handling fixes, especially with respect
  1049. to (local) transfer of control with GO/RETURN-FROM
  1050. * Paths retrieved using URL.getPath() require decoding (r11815)
  1051. * Build doesn't work inside paths with spaces (r11813)
  1052. * Compilation of export of a symbol not in *package* (r11808)
  1053. * Moved compiler-related rewriting of forms from precompiler to compiler
  1054. * Removed chained closures ('XEPs') in case of &optional arguments only
  1055. * Loading of SLIME fails under specific conditions (r11791)
  1056. * Binding of *FASL-ANONYMOUS-PACKAGE* breaks specials handling (r11783)
  1057. * Fixed ANSI tests: DO-ALL-SYMBOLS.{6,9,12}, DEFINE-SETF-EXPANDER.{1,6,?},
  1058. MULTIPLE-VALUE-SETQ.{5,8}, SYMBOL-MACROLET.8, COMPILE-FILE.{17,18}
  1059. * COMPILE and COMPILE-FILE second and third values after a failed
  1060. invocation inside the same compilation-unit (r11769)
  1061. * JCLASS on non-existing classes should signal an error (r11762)
  1062. * Dotted lambda lists break interpretation (r11760)
  1063. * Implementation of MACROEXPAND-ALL and COMPILER-LET (r11755)
  1064. * Switch from casting to 'instanceof' for performance (r11754)
  1065. * Google App Engine support: don't die if 'os.arch' isn't set (r11750)
  1066. * Excessive stack use while resolving #n= and #n# (r11474)
  1067. Version 0.14.1
  1068. ==============
  1069. (5 Apr, 2009)
  1070. http://abcl.org/svn/tags/0.14.1/abcl
  1071. Summary of changes:
  1072. -------------------
  1073. * Include this CHANGES file and scripting files in the tar and zip files
  1074. Version 0.14.0
  1075. ==============
  1076. (5 Apr, 2009)
  1077. http://abcl.org/svn/tags/0.14.0/abcl
  1078. Summary of changes:
  1079. -------------------
  1080. * Increased clarity on licensing (Classpath exception
  1081. mentioned in COPYING, removed LICENSE)
  1082. * Resolved infinite recursion on TRACEing the compiler
  1083. * Changes on the lisp based build system for parity with Ant
  1084. * Fixed interpreter creation in Java Scripting
  1085. * libabcl.so no longer created; it was solely about installing
  1086. a SIGINT handler. Libraries should not do that.
  1087. * boxing of LispObject descendants in JCALL/JCALL-RAW fixed
  1088. * OpenBSD and NetBSD platform detection
  1089. * fixed special bindings restores in compiled code for
  1090. MULTIPLE-VALUE-BIND/LET/LET*/PROGV and function bodies
  1091. * introduced variadic list() function to replace list1() ... list9()
  1092. * fix return value type of ACOS with complex argument
  1093. * fixed precision of multiplication of complex values
  1094. * fixed use of COMPILE inside file compilation (i.e. COMPILE-FILE)
  1095. * fix expansion of macros inside RESTART-CASE
  1096. (fixes RESTART-CASE ANSI failures)
  1097. * fix macroexpansion in the precompiler
  1098. * Fixnum and Bignum now use a static factory method;
  1099. constructors are now private -> increases chances of numbers
  1100. being EQ
  1101. * Code cleanup in EXPT to fix (EXPT <any-number> <Bignum>)
  1102. Version 0.13.0
  1103. ==============
  1104. (28 Feb, 2009)
  1105. http://abcl.org/svn/tags/0.13.0/abcl
  1106. Summary of changes:
  1107. -------------------
  1108. * Separated J and ABCL into two trees
  1109. * Many many compiler code cleanups
  1110. * NetBeans project files
  1111. * Support for CDR6 (See http://cdr.eurolisp.org/document/6/)
  1112. * More efficient code emission in the compiler
  1113. * Ant build targets for testing (abcl.test)
  1114. * Use ConcurrentHashMap to store the lisp threads for increased performance
  1115. * Fix adjustability of expressly adjustable arrays (ticket #28)
  1116. * Fix calculation of upperbound on ASH in the compiler
  1117. (don't calculate numbers too big, instead, return '*')
  1118. * Introduce LispInteger as the super type of Bignum and Fixnum
  1119. * Boxing/unboxing for SingleFloat and DoubleFloat values,
  1120. inclusive of unboxed calculations
  1121. * Fixed URL decoding bug in loadCompiledFunction (use java.net.URLDecoder)
  1122. * Fixed line number counting
  1123. * Inlining of simple calculations (+/-/*)
  1124. * All static fields declared 'final'
  1125. * Add support for java.lang.Long based on Bignum to our FFI