[FIX] administration,developer: Odoo 18 now require PG15
See odoo/odoo#182645
This commit is contained in:
parent
0a3c8ec10a
commit
889faae120
@ -172,7 +172,7 @@ in Odoo the db_sslmode control the ssl security of the connection
|
||||
with value chosen out of 'disable', 'allow', 'prefer', 'require', 'verify-ca'
|
||||
or 'verify-full'
|
||||
|
||||
`PostgreSQL Doc <https://www.postgresql.org/docs/12/static/libpq-ssl.html>`_
|
||||
`PostgreSQL Doc <https://www.postgresql.org/docs/15/libpq-ssl.html>`_
|
||||
|
||||
.. _builtin_server:
|
||||
|
||||
@ -923,8 +923,8 @@ Here are the supported browsers:
|
||||
.. _socat: http://www.dest-unreach.org/socat/
|
||||
.. _PostgreSQL connection settings:
|
||||
.. _listen to network interfaces:
|
||||
https://www.postgresql.org/docs/12/static/runtime-config-connection.html
|
||||
https://www.postgresql.org/docs/15/runtime-config-connection.html
|
||||
.. _use an SSH tunnel:
|
||||
https://www.postgresql.org/docs/12/static/ssh-tunnels.html
|
||||
https://www.postgresql.org/docs/15/ssh-tunnels.html
|
||||
.. _WSGI: https://wsgi.readthedocs.org/
|
||||
.. _POSBox: https://www.odoo.com/page/point-of-sale-hardware#part_2
|
||||
|
@ -198,7 +198,7 @@ Odoo uses PostgreSQL as its database management system.
|
||||
|
||||
.. group-tab:: Linux
|
||||
|
||||
Use a package manager to download and install PostgreSQL (supported versions: 12.0 or above).
|
||||
Use a package manager to download and install PostgreSQL (supported versions: 15.0 or above).
|
||||
It can be achieved by executing the following:
|
||||
|
||||
.. code-block:: console
|
||||
@ -207,13 +207,13 @@ Odoo uses PostgreSQL as its database management system.
|
||||
|
||||
.. group-tab:: Windows
|
||||
|
||||
`Download PostgreSQL <https://www.postgresql.org/download/windows>`_ (supported versions: 12.0
|
||||
`Download PostgreSQL <https://www.postgresql.org/download/windows>`_ (supported versions: 15.0
|
||||
or above) and install it.
|
||||
|
||||
.. group-tab:: Mac OS
|
||||
|
||||
Use `Postgres.app <https://postgresapp.com>`_ to download and install PostgreSQL (supported
|
||||
version: 12.0 or above).
|
||||
version: 15.0 or above).
|
||||
|
||||
.. tip::
|
||||
To make the command line tools bundled with Postgres.app available, make sure to set up the
|
||||
|
@ -651,13 +651,13 @@ Here is a sample file:
|
||||
.. _jinja2: https://jinja.palletsprojects.com/
|
||||
.. _regular expression: https://docs.python.org/3/library/re.html
|
||||
.. _password authentication:
|
||||
https://www.postgresql.org/docs/12/static/auth-methods.html#AUTH-PASSWORD
|
||||
https://www.postgresql.org/docs/15/auth-password.html
|
||||
.. _template database:
|
||||
https://www.postgresql.org/docs/12/static/manage-ag-templatedbs.html
|
||||
https://www.postgresql.org/docs/15/manage-ag-templatedbs.html
|
||||
.. _level:
|
||||
https://docs.python.org/3/library/logging.html#logging.Logger.setLevel
|
||||
.. _a PostgreSQL URI:
|
||||
https://www.postgresql.org/docs/12/static/libpq-connect.html#AEN38208
|
||||
https://www.postgresql.org/docs/15/libpq-connect.html#id-1.7.3.8.3.6
|
||||
.. _Werkzeug's proxy support:
|
||||
https://werkzeug.palletsprojects.com/en/0.16.x/middleware/proxy_fix/#module-werkzeug.middleware.proxy_fix
|
||||
.. _pyinotify: https://github.com/seb-m/pyinotify/wiki
|
||||
|
@ -468,7 +468,7 @@ Relational field types are:
|
||||
|
||||
print(foo.other_id.name)
|
||||
|
||||
.. seealso:: `foreign keys <http://www.postgresql.org/docs/12/static/tutorial-fk.html>`_
|
||||
.. seealso:: `foreign keys <http://www.postgresql.org/docs/15/tutorial-fk.html>`_
|
||||
|
||||
:class:`One2many(other_model, related_field) <odoo.fields.One2many>`
|
||||
A virtual relationship, inverse of a :class:`~odoo.fields.Many2one`.
|
||||
@ -1368,7 +1368,7 @@ Dashboards
|
||||
.. _POEdit: https://poedit.net
|
||||
.. _PostgreSQL's documentation:
|
||||
.. _table_constraint:
|
||||
https://www.postgresql.org/docs/12/static/ddl-constraints.html
|
||||
https://www.postgresql.org/docs/15/ddl-constraints.html
|
||||
.. _python: https://python.org
|
||||
.. _XPath: https://w3.org/TR/xpath
|
||||
.. _twitter bootstrap: https://getbootstrap.com
|
||||
|
@ -57,7 +57,7 @@ can then be easily done with::
|
||||
|
||||
.. seealso::
|
||||
|
||||
`foreign keys <https://www.postgresql.org/docs/12/tutorial-fk.html>`_
|
||||
`foreign keys <https://www.postgresql.org/docs/15/tutorial-fk.html>`_
|
||||
|
||||
In practice a many2one can be seen as a dropdown list in a form view.
|
||||
|
||||
|
@ -125,4 +125,4 @@ improve it in the :doc:`next chapter <11_sprinkles>`.
|
||||
|
||||
.. _PostgreSQL's documentation:
|
||||
.. _table_constraint:
|
||||
https://www.postgresql.org/docs/12/ddl-constraints.html
|
||||
https://www.postgresql.org/docs/15/ddl-constraints.html
|
||||
|
@ -516,4 +516,4 @@ Looking good? If not, don't worry, the :doc:`next chapter
|
||||
<12_inheritance>` doesn't require stat buttons ;-)
|
||||
|
||||
.. _order_by:
|
||||
https://www.postgresql.org/docs/12/queries-order.html
|
||||
https://www.postgresql.org/docs/15/queries-order.html
|
||||
|
Loading…
Reference in New Issue
Block a user