X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=NEWS;h=feef931f47d3d94f342da886ab617322c3f5c15f;hb=5951caad8c14912c4dd859a49d2b240fa247b51d;hp=6f6d53e47782664de1631f26bd51d0c6f79bf2b4;hpb=809babfb68a91aa47a7f011972d39915a77a9895;p=sbcl.git diff --git a/NEWS b/NEWS index 6f6d53e..feef931 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,13 @@ ;;;; -*- coding: utf-8; fill-column: 78 -*- changes relative to sbcl-1.0.42 + * incompatible change: FD-STREAMS no longer participate in the serve-event + event-loop by default. (lp#316072) + ** In addition to streams created by explicit calls to MAKE-FD-STREAM this + affects streams from CL:OPEN. + ** Streams from SOCKET-MAKE-STREAM still participate in serve-event by + default, but this is liable to change: applications needing serve-event + for socket streams should explicitly request it using :SERVE-EVENTS T + in the call. * enhancement: SB-EXT:WORD type is provided for use with SB-EXT:ATOMIC-INCF &co. * enhancement: CLOS effective method functions and defclass slot typechecking @@ -9,10 +17,9 @@ changes relative to sbcl-1.0.42 * enhancement: symbols are printed using fully qualified names in several error and warning messages which are often associated with package conflicts or mixups (lp#622789, thanks to Attila Lendvai) - * optimization: use poll(2) instead of select(2) to check for blocking IO - on a single FD. * bug fix: SB-BSD-SOCKETS:SOCKET-CONNECT was not thread safe. (lp#505497, thanks to Andrew Golding) + * bug fix: reading /proc files on Linux works. (lp#425199) * bug fix: DOTIMES accepted literal non-integer reals. (lp#619393, thanks to Roman Marynchak) * bug fix: WRITE-TO-STRING compiler macro binding special variable names, @@ -48,6 +55,10 @@ changes relative to sbcl-1.0.42 * bug fix: workaround for compiler hang in ORDER-UVL-SETS (lp#308914) * bug fix: evaluation in debugger REPL works using the global context when in frames that do not have sufficient debug information. + * bug fix: exceeding FD_SETSIZE limit now results in an sensible error + (lp#316068) + * bug fix: (SETF DOCUMENTATION) of a macro works properly. (lp#643958, thanks + to Stas Boukarev) changes in sbcl-1.0.42 relative to sbcl-1.0.41 * build changes