Changeset 12499


Ignore:
Timestamp:
02/22/10 10:02:34 (13 years ago)
Author:
Mark Evenson
Message:

Further annotation for upcoming release.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abcl/CHANGES

    r12498 r12499  
    11Version 0.19
    22============
     3svn://common-lisp.net/project/armedbear/svn/trunk/abcl
    34(Unreleased)
    45
    5 Features:
    6 
    7 
    8 Fixes/Optimizations:
    9 
    10 * The REFERENCES-NEEDED-P field of the LOCAL-FUNCTION structure now
     6Features
     7--------
     8
     9* [svn 12487] An initial port ASDF-INSTALL now forms the first ABCL
     10  contrib which are optionally built by the Ant target 'abcl.contrib'.
     11  ASDF-INSTALL is not expected to work very well under Windows at the
     12  moment.
     13
     14* [svn 12447] REQUIRE now searches for ASDF systems.
     15
     16* [svn r12422] Jar pathname support extensively re-worked and tested
     17  so that LOAD, PROBE-FILE, TRUENAME, and WRITE-FILE-DATE all work
     18  both for local and remote jar pathnames of the form
     19  "jar:URL!/JAR-ENTRY".
     20
     21  Loading ASDF systems from jar files are now possible.
     22
     23  SYS:PATHNAME-JAR-P predicate signals whether a pathname refences a
     24  jar.
     25       
     26  NB: jar pathnames do *not* currently work as an argument to OPEN or
     27  DIRECTORY.
     28
     29  SYS:UNZIP implemented to unpack ZIP files. 
     30
     31  SYS:ZIP now has a three argument version for creating zip files with
     32  hierarchical entries.
     33
     34* [svn r12414] SYS::%GET-OUTPUT-STREAM-ARRAY returns a Lisp byte array
     35  from a Java byte array stream.
     36
     37* [svn 12402] ABCL.TEST.LISP:RUN-MATCHING will now execute that subset
     38  of tests which match a string.
     39
     40
     41Fixes/Optimizations
     42-------------------
     43
     44* [svn r12485] Pathnames starting with "." can now have TYPE.
     45
     46* [svn r12484] FASLS containing "." characters not used to indicate
     47  type (i.e. ".foo.bar.baz.abcl") can now be loaded.
     48
     49* [svn 12422] Pathname.java URL contructor under Windows now properly
     50  interprets the drive letter.
     51
     52* [svn r12449] The 'abcl.jar' produced by Netbeans now contains a valid
     53  manifest (found by Paul Griffionen).
     54
     55* [svn r12441] ZipCache now caches all references to ZipFiles based on
     56  the last-modified time for local files.  Remote files are always
     57  retrieved due to problems in the underlying JVM code. 
     58 
     59  SYS:REMOVE-ZIP-CACHE implements a way to invalidate an entry given a
     60  pathname.
     61
     62* [svn r12439] Remove duplication of java options in Windows
     63  'abcl.bat' script.
     64
     65* [svn r12437] CHAR-CODE-LIMIT is the upper execlusive limit (found by
     66  Paul Griffionen).
     67
     68* [svn r12436] Describe formatting missing a newline (reported by
     69  Blake McBride).
     70
     71* [svn 12469] Ensure that FILE-ERROR always has a value (possibly NIL)
     72  for its PATHNAME member.
     73
     74* [svn r14222] MERGE-PATHNAMES no longer potentially shares between
     75  result and *DEFAULT-PATHNAME-DEFAULTS*.
     76
     77* [svn r12416] Fixed ANSI LAMBDA.nn test failures caused by errors in
     78  lambda inlining.
     79
     80* [svn r12417] [ticket:83] Fix TRANSLATE-LOGICAL-PATHNAME regression.
     81  (Alan Ruttenberg).
     82
     83* [svn r12412] Optimize memory efficiency of FORMAT by use of a
     84  hashtable rather than a CHAR-CODE-LIMIT array.
     85
     86* [svn r12408] FIND-SYMBOL requires a  string argument.
     87
     88* [svn r12400] Make NIL (as symbol) available to the compiler.
     89
     90* [svn r12398] Move lambda list analysis to compile time where possible.
     91
     92* [svn r12397] BROADCAST-STREAM obeys default external format fixing
     93  ANSI MAKE-BROADCAST-STREAM.8.
     94
     95* [svn r12395] Improve arglist display for SLIME (Matthias Hözl).
     96
     97* [svn r12394] Optimize array utilization in closures.
     98
     99* [svn r12393] Optimize array functions in compiler which don't
     100  require clearing the VALUES array.
     101
     102* [svn r12392] Optimize/normalize aspects of boot.lisp
     103
     104* [svn r12391] Prevent duplicated subclasses form occuring.
     105
     106
     107Other
     108-----
     109
     110* [svn 12447] SYS::*MODULE-PROVIDER-FUNCTION* now provides a mechanism
     111  to extend the REQUIRE resolver mechanism at runtime.
     112
     113* [svn r12430] Ant based build no longer writes temporary files to
     114  contain the Lisp build instructions.
     115
     116* [svn r12481] STANDARD-CLASS now has slots to be inherited by
     117  deriving metaclasses in support of the (in progress) work on
     118  metaclass.
     119
     120* [svn r12425] No longer ignore the METACLASS defclass option in
     121  support of the (in progress) work on metaclass
     122
     123* [svn r12422] SYS::*LOAD-TRUENAME-FASL* now contains the TRUENAME of
     124  the Java "*.cls" component we loading a packed FASL.
     125
     126* [svn r12461] Human readable Java representations for class cast
     127  exceptions for NULL and UNBOUND values.
     128
     129* [svn 12453 et. ff.] Large numbers of Java primitives have been
     130  declared in a way so that a stack trace provides a much more
     131  readable indication of what has been invoked.  Primitives which
     132  extend Primitive are prefixed with "pf_"; those which extend
     133  SpecialOperator are prefixed with "sf_".
     134
     135* [svn 12422] The internal structure of a jar pathname has changed.
     136  Previously a pathname with a DEVICE that was itself a pathname
     137  referenced a jar.  This convention was not able to simultaneously
     138  represent both jar entries that were themselves jar files (as occurs
     139  with packed FASLs within JARs) and devices which refer to drive
     140  letters under Windows.  Now, a pathname which refers to a jar has a
     141  DEVICE which is a proper list of at most two entries.  The first
     142  entry always references the "outer jar", and the second entry (if it
     143  exists) references the "inner jar".
     144
     145* [svn r12419] Ant 'abcl.release' target centralizes the build steps
     146  necessary for creating releases.
     147
     148* [svn r12409] Compiler now rewrites function calls with (LAMBDA 
) as
     149  the operator to LET* forms.
     150
     151* [svn r12415] CLASS-FILE renamed to ABCL-CLASS-FILE to prepare for
     152  (in progress) reworking of Stream inheritance.
     153
     154* [svn r123406] 'test/lisp/abcl/bugs.lisp' forms a default location to
     155  add unit tests for current bug testing.  The intention is to move
     156  these tests into the proper location elsewhere in the test suite
     157  once they have been fixed.
     158
     159* [svn r124040] Java tests upgraded to use junit-4.8.1.  Netbeans
     160  project runtime classpath now uses compilation results before source
     161  directory, allowing the invocation of ABCL in interpreted mode if
     162  the Ant 'abcl.compile.lisp.skip' property is set.  Java unit tests
     163  for some aspects of jar pathname work added.
     164
     165*  New toplevel 'doc' directory now contains:
     166   
     167   + [svn r12410] Design for the (in progress) reworking of the Stream
     168     inheritance.
     169   
     170   + [svn r12433] Design and current status for the re-implementation
     171     of jar pathnames.
     172
     173* [svn r12402] Change ABCL unit tests to use the ABCL-TEST-LISP definition
     174  contained in 'abcl.asd'.  Fixed and renabled math-tests.  Added new
     175  tests for work related to handling jar pathnames.
     176
     177* [svn r12401] The REFERENCES-NEEDED-P field of the LOCAL-FUNCTION structure now
    11178  tracks whether local functions need the capture of an actual
    12179  function object.
    13 
    14 * Make NIL (as symbol) available to the compiler.
    15 
    16 * Move lambda list analysis to compile time where possible.
    17 
    18 * BROADCAST-STREAM obeys default external format fixing ANSI
    19   MAKE-BROADCAST-STREAM.8.
    20 
    21 * Improve arglist display for SLIME (Matthias Hözl).
    22 
    23 * Optimize array utilization in closures.
    24 
    25 * Optimize array functions in compiler which don't require clearing
    26   the VALUES array.
    27 
    28 * Optimize/normalize aspects of boot.lisp
    29 
    30 * Prevent duplicated subclasses.
    31 
    32 * Print Java objects with PRINT-OBJECT when *PRINT-PRETTY* is false
    33   (Alan Ruttenberg).
    34 
     180   
    35181
    36182Version 0.18.1
Note: See TracChangeset for help on using the changeset viewer.