source: public_html/release-notes-1.6.1.shtml

Last change on this file was 15275, checked in by Mark Evenson, 4 years ago

site: clean up HTML

Start moving all presentation logic into CSS.

Declare documents as polyglot HTML5/XHTML
<https://dev.w3.org/html5/html-polyglot/html-polyglot.htm>.

Strip use SVN $Id$ expansion as this doesn't convey any useful
information to the actual reader of the page.

File size: 3.9 KB
Line 
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 1.6.1</title>
5    <link rel="stylesheet" type="text/css" href="style.css"/>
6    <link rel="rdf" type="application/rdf" href="https://abcl.org/svn/tags/1.6.1/abcl.rdf"/>
7    <meta charset="utf-8"/>
8  </head>
9
10  <body>
11    <div id="title" class="header">
12      <h1>Release Notes for ABCL 1.6.1</h1>
13    </div>
14
15    <!--#include virtual="left-menu" -->
16
17    <div class="rn">
18      <div class="rn-enhancements">
19        <h2>Compatiblity</h2>
20        <p>ABCL 1.6.1 supports building and running on openjdk6, openjdk7,
21          openjdk8, openjdk11, openjdk13, and openjdk14.</p>
22      </div>
23
24      <div class="rn-enhancements">
25        <h2>Enhancements</h2>
26        <ul>
27          <li>
28            [r15223] Fix compiler for java.lang.VerifyError with PROGN
29            (somewhat-functional-programmer)
30          </li>
31
32          <li>
33            [r15250] ABCL now builds and runs across openjdk{6,7,8,11,13,14}
34          </li>
35
36          <li>
37            [r15256] Build autoconfiguration via ci/create-build-properties.bash
38          </li>
39         
40          <li>
41            [r15252] Provide accessor in URL-STREAM for underlying java.io.InputStream
42          </li>
43
44          <li>
45            [r15226] [INCOMPLETE] Address problems with DECODE-FLOAT
46            (Robert Dodier)
47          </li>
48        </ul>
49      </div>
50
51
52      <div class="rn-fixes">
53        <h2>Fixes</h2>
54        <ul>
55          <li>
56            [r15229] Maven central repository now requires TLS
57          </li>
58
59          <li>
60            [r15242] jstatic: check narrowing for explicit method reference
61          </li>
62
63          <li>
64            [r15232] [r15233] [r15241] Reworking DWIM on java call sites
65
66            The FFI will now find Java call sites whose types are
67            Short or Byte with integers if they can be narrowed
68            without losing information.  This work should be
69            considered provisional, subject to possible revision.
70          </li>
71
72          <li>
73            [r15234] Fix calling Java methods with varargs parameters
74          </li>
75
76          <li>
77            [r15233] Fix calling Java methods with short and byte parameters
78          </li>
79
80          <li>
81            [r15231] abcl-build: test the install of maven-3.6.3
82          </li>
83
84          <li>
85            [r15238] build: ensure javac compiles with UTF-8 encoding
86          </li>
87
88          <li>
89            [r15243] abcl-asdf: rework Maven usage strategy
90          </li>
91
92
93          <li>
94            [r15245] abcl-asdf: use WITH-AETHER macro to ensure Maven Aether is loaded
95          </li>
96
97          <li>
98            [r15251] abcl-asdf:  assume that either 'which' or 'where' works
99          </li>
100        </ul>
101      </div>
102
103      <div class="rn-updates">
104        <h2>Updates</h2>
105        <ul>
106          <li>
107            [r15240] Use ASDF-3.3.4
108          </li>
109        </ul>
110      </div>
111
112     
113      <div class="rn-tests">
114        <h2>Tests</h2>
115        <ul>
116          <li>
117            [r15239] ci: now use latest CFFI distributed with Quicklisp
118          </li>
119
120          <li>
121            [r15247] t/format-dollar: correction for CL:FORMAT dollar usage
122          </li>
123
124          <li>
125            [r15248] t/jcoerce-numerics: JCOERCE across numerics without losing information
126          </li>
127
128          <li>
129            [r15249] t/decode-float: tests for currently broken handling of CL:DECODE-FLOAT
130          </li>
131
132        </ul>
133      </div>
134
135      <p>These changes may be viewed directly at <a
136                                                   href="http://abcl.org/svn/tags/1.6.1/CHANGES">CHANGES</a>.</p>
137     
138
139      <p><a href="release-notes.shtml">Release notes for older releases of ABCL</a>.</p>
140
141    </div>
142
143    <div class="footer">
144      <hr />
145      <p>Hosted as part of <a href="https://common-lisp.net/">common-lisp.net</a></p>
146    </div>
147
148  </body>
149</html>
Note: See TracBrowser for help on using the repository browser.