1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
|
<!-- doc/src/sgml/release.sgml -->
<!--
Typical markup:
&<> use & escapes
PostgreSQL <productname>
postgresql.conf, pg_hba.conf,
recovery.conf <filename>
[A-Z][A-Z_ ]+[A-Z_] <command>, <literal>, <envar>, <acronym>
[A-Za-z_][A-Za-z0-9_]+() <function>
-[-A-Za-z_]+ <option>
[A-Za-z_]+/[A-Za-z_]+ <filename>
psql <application>
pg_[A-Za-z0-9_]+ <application>, <structname>
[A-Z][A-Z][A-Z_ ]* <type>
[a-z]+_[a-z_]+ <varname>
non-ASCII characters find using grep -P '[\x80-\xFF]'
convert to HTML4 named entity (&) escapes
official: http://www.w3.org/TR/html4/sgml/entities.html
one page: http://www.zipcon.net/~swhite/docs/computers/browsers/entities_page.html
other lists: http://www.zipcon.net/~swhite/docs/computers/browsers/entities.html
http://www.zipcon.net/~swhite/docs/computers/browsers/entities_page.html
http://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references
we cannot use UTF8 because SGML Docbook does not support it
do not use numeric _UTF_ numeric character escapes (&#nnn;),
we can only use Latin1
Example: Alvaro Herrera is Álvaro Herrera
wrap long lines
For new features, add links to the documentation sections.
-->
<appendix id="release">
<title>Release Notes</title>
<para>
The release notes contain the significant changes in each
<productname>PostgreSQL</> release, with major features and migration
issues listed at the top. The release notes do not contain changes
that affect only a few users or changes that are internal and therefore not
user-visible. For example, the optimizer is improved in almost every
release, but the improvements are usually observed by users as simply
faster queries.
</para>
<para>
A complete list of changes for each release can be obtained by
viewing the <link linkend="git">Git</link> logs for each release.
The <ulink
url="https://archives.postgresql.org/pgsql-committers/"><literal>pgsql-committers</literal>
email list</ulink> records all source code changes as well. There is also
a <ulink url="https://git.postgresql.org/gitweb?p=postgresql.git;a=summary">web
interface</ulink> that shows changes to specific files.
</para>
<para>
The name appearing next to each item represents the major developer for
that item. Of course all changes involve community discussion and patch
review, so each item is truly a community effort.
</para>
<!--
When beginning a new major-release series, create a new release-NN.sgml
file, removing the previous one, and change the &-reference here.
Don't forget to update filelist.sgml. Also, add a link to the on-line
documentation for the newly forked-off branch in the list below.
The reason for keeping each branch's release notes in a differently-named
file is to reduce confusion when preparing minor-release updates.
All the active branches have to be edited concurrently when doing that.
-->
&release-9.5;
<sect1 id="release-prior">
<title>Prior Releases</title>
<para>
Release notes for prior release branches can be found on the
<ulink url="https://www.postgresql.org/"><productname>PostgreSQL</productname></ulink>
web site. At the time of release of version 9.5,
these were the supported prior release branches:
<itemizedlist>
<listitem>
<para>
<productname>PostgreSQL</productname> 9.4:
<ulink url="https://www.postgresql.org/docs/9.4/release.html">
<literal>https://www.postgresql.org/docs/9.4/release.html</literal>
</ulink>
</para>
</listitem>
<listitem>
<para>
<productname>PostgreSQL</productname> 9.3:
<ulink url="https://www.postgresql.org/docs/9.3/release.html">
<literal>https://www.postgresql.org/docs/9.3/release.html</literal>
</ulink>
</para>
</listitem>
<listitem>
<para>
<productname>PostgreSQL</productname> 9.2:
<ulink url="https://www.postgresql.org/docs/9.2/release.html">
<literal>https://www.postgresql.org/docs/9.2/release.html</literal>
</ulink>
</para>
</listitem>
<listitem>
<para>
<productname>PostgreSQL</productname> 9.1:
<ulink url="https://www.postgresql.org/docs/9.1/release.html">
<literal>https://www.postgresql.org/docs/9.1/release.html</literal>
</ulink>
</para>
</listitem>
<listitem>
<para>
<productname>PostgreSQL</productname> 9.0:
<ulink url="https://www.postgresql.org/docs/9.0/release.html">
<literal>https://www.postgresql.org/docs/9.0/release.html</literal>
</ulink>
</para>
</listitem>
</itemizedlist>
</para>
<para>
Release notes for older release branches can be found at
<ulink url="https://www.postgresql.org/docs/manuals/archive/">
<literal>https://www.postgresql.org/docs/manuals/archive/</literal>
</ulink>
</para>
</sect1>
</appendix>
|