Skip to content

Commit 4359ef3

Browse files
committed
Archive release notes for 1.2.3
1 parent f4b1382 commit 4359ef3

8 files changed

Lines changed: 181 additions & 21 deletions

File tree

Docs/RelNotes-1.2.3.phtml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<% header(name + ' 1.2.3 Release Notes') %>
2+
3+
<p><% name %> version 1.2.3 released on 01/09/20</p>
4+
5+
<li>Webware 1.2.3 is a bugfix release with minor improvements and fixes
6+
listed in the WebKit, MiddleKit, and MiscUtils release notes. We also
7+
updated the documentation with the current status and a link to the
8+
follow-up project for Python 3, and fixed some spelling errors.</li>
9+
10+
<% footer() %>

Docs/RelNotes-X.Y.phtml

Lines changed: 34 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,39 @@
22

33
<p><% name %> version <% versionString %> released on <% releaseDate %></p>
44

5-
<li>Webware 1.2.3 is a bugfix release with minor improvements and fixes
6-
listed in the WebKit, MiddleKit, and MiscUtils release notes. We also
7-
updated the documentation with the current status and a link to the
8-
follow-up project for Python 3, and fixed some spelling errors.</li>
5+
<a id="Introduction"></a><h2>Introduction</h2>
6+
<ul>
7+
<li>...</li>
8+
</ul>
9+
10+
<a id="MajorChanges"></a><h2>Major Changes</h2>
11+
<ul>
12+
<li>...</li>
13+
</ul>
14+
15+
<a id="NewFeatures"></a><h2>New Features</h2>
16+
<ul>
17+
<li>...</li>
18+
</ul>
19+
20+
<a id="Improvements"></a><h2>Improvements and Refinements</h2>
21+
<ul>
22+
<li>...</li>
23+
</ul>
24+
25+
<a id="Security"></a><h2>Security</h2>
26+
<ul>
27+
<li>...</li>
28+
</ul>
29+
30+
<a id="MinorChanges"></a><h2>Minor API Changes</h2>
31+
<ul>
32+
<li>...</li>
33+
</ul>
34+
35+
<a id="Bugfixes"></a><h2>Bugfixes</h2>
36+
<ul>
37+
<li>...</li>
38+
</ul>
939

1040
<% footer() %>
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<% header(name + ' 1.2.3 Release Notes') %>
2+
3+
<p><% name %> version 1.2.3 released on 01/09/20</p>
4+
5+
<a id="Improvements"></a><h2>Improvements and Refinements</h2>
6+
<ul>
7+
<li>Made <code>MKDump</code> test work under Windows.</li>
8+
</ul>
9+
10+
<a id="MinorChanges"></a><h2>Minor API Changes</h2>
11+
<ul>
12+
<li>We now pass execution parameters in <code>SQLObjectStore</code> only
13+
when necessary. Some DB API drivers may not like a None value.</li>
14+
<li>The <code>dumpObjectStore</code> method now always dumps objects in a
15+
consistent order.</li>
16+
</ul>
17+
18+
<a id="Bugfixes"></a><h2>Bugfixes</h2>
19+
<ul>
20+
<li>Fixed error message in <code>SQLGenerator.IntAttr</code>.</li>
21+
<li>Added missing import to <code>MSSQLObjectStore</code>.</li>
22+
</ul>
23+
24+
<% footer() %>

MiddleKit/Docs/RelNotes-X.Y.phtml

Lines changed: 23 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,39 @@
22

33
<p><% name %> version <% versionString %> released on <% releaseDate %></p>
44

5+
<a id="Introduction"></a><h2>Introduction</h2>
6+
<ul>
7+
<li>...</li>
8+
</ul>
9+
10+
<a id="MajorChanges"></a><h2>Major Changes</h2>
11+
<ul>
12+
<li>...</li>
13+
</ul>
14+
15+
<a id="NewFeatures"></a><h2>New Features</h2>
16+
<ul>
17+
<li>...</li>
18+
</ul>
19+
520
<a id="Improvements"></a><h2>Improvements and Refinements</h2>
621
<ul>
7-
<li>Made <code>MKDump</code> test work under Windows.</li>
22+
<li>...</li>
23+
</ul>
24+
25+
<a id="Security"></a><h2>Security</h2>
26+
<ul>
27+
<li>...</li>
828
</ul>
929

1030
<a id="MinorChanges"></a><h2>Minor API Changes</h2>
1131
<ul>
12-
<li>We now pass execution parameters in <code>SQLObjectStore</code> only
13-
when necessary. Some DB API drivers may not like a None value.</li>
14-
<li>The <code>dumpObjectStore</code> method now always dumps objects in a
15-
consistent order.</li>
32+
<li>...</li>
1633
</ul>
1734

1835
<a id="Bugfixes"></a><h2>Bugfixes</h2>
1936
<ul>
20-
<li>Fixed error message in <code>SQLGenerator.IntAttr</code>.</li>
21-
<li>Added missing import to <code>MSSQLObjectStore</code>.</li>
37+
<li>...</li>
2238
</ul>
2339

2440
<% footer() %>
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<% header(name + ' 1.2.3 Release Notes') %>
2+
3+
<p><% name %> version 1.2.3 released on 01/09/20</p>
4+
5+
<a id="Improvements"></a><h2>Improvements and Refinements</h2>
6+
<ul>
7+
<li>The <code>uniqueId()</code> function has been improved. It will now use
8+
hashing only when necessary.</li>
9+
</ul>
10+
11+
<% footer() %>

MiscUtils/Docs/RelNotes-X.Y.phtml

Lines changed: 31 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,39 @@
22

33
<p><% name %> version <% versionString %> released on <% releaseDate %></p>
44

5+
<a id="Introduction"></a><h2>Introduction</h2>
6+
<ul>
7+
<li>...</li>
8+
</ul>
9+
10+
<a id="MajorChanges"></a><h2>Major Changes</h2>
11+
<ul>
12+
<li>...</li>
13+
</ul>
14+
15+
<a id="NewFeatures"></a><h2>New Features</h2>
16+
<ul>
17+
<li>...</li>
18+
</ul>
19+
520
<a id="Improvements"></a><h2>Improvements and Refinements</h2>
621
<ul>
7-
<li>The <code>uniqueId()</code> function has been improved. It will now use
8-
hashing only when necessary.</li>
22+
<li>...</li>
23+
</ul>
24+
25+
<a id="Security"></a><h2>Security</h2>
26+
<ul>
27+
<li>...</li>
28+
</ul>
29+
30+
<a id="MinorChanges"></a><h2>Minor API Changes</h2>
31+
<ul>
32+
<li>...</li>
33+
</ul>
34+
35+
<a id="Bugfixes"></a><h2>Bugfixes</h2>
36+
<ul>
37+
<li>...</li>
938
</ul>
1039

1140
<% footer() %>

WebKit/Docs/RelNotes-1.2.3.phtml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<% header(name + ' 1.2.3 Release Notes') %>
2+
3+
<p><% name %> version 1.2.3 released on 01/09/20</p>
4+
5+
<a id="Improvements"></a><h2>Improvements and Refinements</h2>
6+
<ul>
7+
<li>Minor fixes and simplifications in the JSON-RPC and AJAX examples.</li>
8+
<li>Added two very simple test servlets ("IncludeMe" and "Simple").</li>
9+
<li>Do not list the PushServlet any more, since it is not well supported
10+
by browsers.</li>
11+
<li>Various minor fixes in the Admin and Testing contexts.</li>
12+
<li>Made the redirection in the Example index servlet more robust.</li>
13+
</ul>
14+
15+
<a id="MinorChanges"></a><h2>Minor API Changes</h2>
16+
<ul>
17+
<li>Removed unused parameter from the <code>resolveDefaultContext</code>
18+
method of <code>ContextParser</code> and simplified the code.</li>
19+
</ul>
20+
21+
<% footer() %>

WebKit/Docs/RelNotes-X.Y.phtml

Lines changed: 27 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,39 @@
22

33
<p><% name %> version <% versionString %> released on <% releaseDate %></p>
44

5+
<a id="Introduction"></a><h2>Introduction</h2>
6+
<ul>
7+
<li>...</li>
8+
</ul>
9+
10+
<a id="MajorChanges"></a><h2>Major Changes</h2>
11+
<ul>
12+
<li>...</li>
13+
</ul>
14+
15+
<a id="NewFeatures"></a><h2>New Features</h2>
16+
<ul>
17+
<li>...</li>
18+
</ul>
19+
520
<a id="Improvements"></a><h2>Improvements and Refinements</h2>
621
<ul>
7-
<li>Minor fixes and simplifications in the JSON-RPC and AJAX examples.</li>
8-
<li>Added two very simple test servlets ("IncludeMe" and "Simple").</li>
9-
<li>Do not list the PushServlet any more, since it is not well supported
10-
by browsers.</li>
11-
<li>Various minor fixes in the Admin and Testing contexts.</li>
12-
<li>Made the redirection in the Example index servlet more robust.</li>
22+
<li>...</li>
23+
</ul>
24+
25+
<a id="Security"></a><h2>Security</h2>
26+
<ul>
27+
<li>...</li>
1328
</ul>
1429

1530
<a id="MinorChanges"></a><h2>Minor API Changes</h2>
1631
<ul>
17-
<li>Removed unused parameter from the <code>resolveDefaultContext</code>
18-
method of <code>ContextParser</code> and simplified the code.</li>
32+
<li>...</li>
33+
</ul>
34+
35+
<a id="Bugfixes"></a><h2>Bugfixes</h2>
36+
<ul>
37+
<li>...</li>
1938
</ul>
2039

2140
<% footer() %>

0 commit comments

Comments
 (0)