Skip to content

Commit bc525ee

Browse files
committed
DISTPG-122 Release notes 12.4
1 parent d31351f commit bc525ee

File tree

5 files changed

+54
-6
lines changed

5 files changed

+54
-6
lines changed

source/.res/replace.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11

22
.. |percona| replace:: Percona
33
.. |percona-postgresql| replace:: :program:`percona-postgresql`
4-
.. |percona-platform-postgresql| replace:: :program:`percona-postgresql`
54
.. |percona-platform-postgresql-11| replace:: :program:`percona-postgresql-11`
65
.. |percona-platform-postgresql-12| replace:: :program:`percona-postgresql-12`
76
.. |postgresql| replace:: PostgreSQL
@@ -22,4 +21,3 @@
2221
.. |yum-install| replace:: :program:`yum install`
2322
.. |percona-release| replace:: :program:`percona-release`
2423
.. |rhel| replace:: Red Hat Enterprise Linux
25-
.. |amazon-linux| replace:: Amazon Linux

source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
# The short X.Y version.
5858
version = '12'
5959
# The full version, including alpha/beta/rc tags.
60-
release = '.'.join([version, '3'])
60+
release = '.'.join([version, '4'])
6161

6262
# The language for content autogenerated by Sphinx. Refer to documentation
6363
# for a list of supported languages.
@@ -76,7 +76,7 @@
7676
# The reST default role (used for this markup: `text`) to use for all documents.
7777
#default_role = None
7878

79-
primary_domain = 'psdom'
79+
#primary_domain = 'psdom'
8080

8181
# If true, '()' will be appended to :func: etc. cross-reference text.
8282
#add_function_parentheses = True

source/installing.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Using repositories provided by |percona| is the recommended way of installing
88

99
There are two repositories available for |pdp|. We recommend to install |pdp| from the *Major Release repository* (e.g. ``ppg-12``) as it includes the latest version packages. Whenever a package is updated, the package manager of your operating system detects that and prompts you to update. As long as you update all Distribution packages at the same time, you can ensure that the packages you're using have been tested and verified by |percona|.
1010

11-
The *Minor Release repository* includes a particular minor release of the database and all of the packages that were tested and verified to work with that minor release (e.g. ``ppg-12.3``). You may choose to install |pdp| from the Minor Release repository if you have decided to standardize on a particular release which has passed rigorous testing procedures and which has been verified to work with your applications. This allows you to deploy to a new host and ensure that you'll be using the same version of all the Distribution packages, even if newer releases exist in other repositories.
11+
The *Minor Release repository* includes a particular minor release of the database and all of the packages that were tested and verified to work with that minor release (e.g. ``ppg-12.4``). You may choose to install |pdp| from the Minor Release repository if you have decided to standardize on a particular release which has passed rigorous testing procedures and which has been verified to work with your applications. This allows you to deploy to a new host and ensure that you'll be using the same version of all the Distribution packages, even if newer releases exist in other repositories.
1212

1313
The disadvantage of using a Minor Release repository is that you are locked in this particular release. When potentially critical fixes are released in a later minor version of the database, you will not be prompted for an upgrade by the package manager of your operating system. You would need to change the configured repository in order to install the upgrade.
1414

@@ -36,7 +36,7 @@ As soon as |percona-release| is up-to-date, *set up* the
3636

3737
.. code-block:: bash
3838
39-
$ sudo percona-release setup ppg-12.3
39+
$ sudo percona-release setup ppg-12.4
4040
4141
Install |pdp| using the commands of your package manager (the procedure differs
4242
depending on the package manager of your operating system).

source/release-notes-v12.4.rst

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
.. _DISTPG-12.4:
2+
3+
================================================================================
4+
*Percona Distribution for PostgreSQL* 12.4
5+
================================================================================
6+
7+
:Date: September 11, 2020
8+
:Installation: `Installing Percona Distribution for PostgreSQL <https://www.percona.com/doc/postgresql/12/installing.html>`_
9+
10+
|pdp| is a collection of tools to assist you in managing |postgresql|. |pdp|
11+
installs |postgresql| and complements it by a selection of extensions that
12+
enable solving essential practical tasks efficiently:
13+
.. list-table::
14+
:widths: 35 15 50
15+
:header-rows: 1
16+
17+
* - Extension
18+
- Version
19+
- Description
20+
* - `Pg_repack <https://github.com/reorg/pg_repack>`_
21+
- 1.4.5
22+
- rebuilds |postgresql| database objects
23+
* - `Pgaudit <https://www.pgaudit.org/>`_
24+
- 1.4.0
25+
- provides detailed session or object audit logging via the standard
26+
logging facility provided by |postgresql|
27+
* - `pgBackRest <https://pgbackrest.org/>`_
28+
- 2.29
29+
- a backup and restore solution for |postgresql|
30+
* - `Patroni <https://patroni.readthedocs.io/en/latest/>`_
31+
- 2.0.0
32+
- a :abbr:`HA (High Availability)` solution for |postgresql|
33+
* - `PostgreSQL contrib extensions
34+
<https://www.postgresql.org/docs/11/contrib.html>`_
35+
- 12.4
36+
- a collection of additional extensions for PostgreSQL
37+
38+
|pdp| is also shipped with the `libpq
39+
<https://www.postgresql.org/docs/12/libpq.html>`_ library. It contains "a set of
40+
library functions that allow client programs to pass queries to the PostgreSQL
41+
backend server and to receive the results of these queries." [#]_
42+
43+
This release of |pdp| is based on |postgresql| |version|.
44+
45+
.. |version| replace:: 12.4
46+
47+
.. [#] https://www.postgresql.org/docs/12/libpq.html
48+
49+
.. include:: .res/replace.txt

source/release-notes.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Release Notes
66
.. toctree::
77
:maxdepth: 1
88

9+
release-notes-v12.4
910
release-notes-v12.3
1011
release-notes-v12.2
1112

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy