1) Added 'load_balance_hosts' connection string parameter for PG 16 and above. #6802
2) Added EPAS 11 support back as its EOL is in November.pull/6819/head
parent
0b3c79865e
commit
9666bd6c8d
|
@ -21,7 +21,7 @@ jobs:
|
|||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
pgver: [12, 13, 14, 15]
|
||||
pgver: [11, 12, 13, 14, 15]
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@ jobs:
|
|||
fail-fast: false
|
||||
matrix:
|
||||
os: [ubuntu-22.04, windows-latest]
|
||||
pgver: [12, 13, 14, 15]
|
||||
pgver: [11, 12, 13, 14, 15]
|
||||
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
||||
|
|
|
@ -23,6 +23,7 @@ New features
|
|||
| `Issue #640 <https://github.com/pgadmin-org/pgadmin4/issues/640>`_ - Add support for foreign table's new functionality for PG 11 and above.
|
||||
| `Issue #6373 <https://github.com/pgadmin-org/pgadmin4/issues/6373>`_ - Add 'GENERATED ALWAYS AS..' option while creating column constraints for Foreign Table.
|
||||
| `Issue #6797 <https://github.com/pgadmin-org/pgadmin4/issues/6797>`_ - GUI representation of the system's activity using the 'system_stats' extension.
|
||||
| `Issue #6802 <https://github.com/pgadmin-org/pgadmin4/issues/6802>`_ - Added 'load_balance_hosts' connection string parameter for PG 16 and above.
|
||||
|
||||
Housekeeping
|
||||
************
|
||||
|
@ -36,3 +37,4 @@ Bug fixes
|
|||
| `Issue #6674 <https://github.com/pgadmin-org/pgadmin4/issues/6674>`_ - Fix an issue where foreign table column name becomes "none" if the user changes any column data type.
|
||||
| `Issue #6718 <https://github.com/pgadmin-org/pgadmin4/issues/6718>`_ - Pin the cryptography version to fix PyO3 modules initialisation error.
|
||||
| `Issue #6790 <https://github.com/pgadmin-org/pgadmin4/issues/6790>`_ - Ensure that the backup works properly for PG 16 on the latest docker image.
|
||||
| `Issue #6799 <https://github.com/pgadmin-org/pgadmin4/issues/6799>`_ - Fixed an issue where the user is unable to select objects on the backup dialog due to tree flickering.
|
||||
|
|
|
@ -27,7 +27,7 @@ pytz==2023.*
|
|||
speaklater3==1.*
|
||||
sqlparse==0.*
|
||||
psutil==5.9.*
|
||||
psycopg[c]==3.1.9
|
||||
psycopg[c]==3.1.12
|
||||
python-dateutil==2.*
|
||||
SQLAlchemy==2.*
|
||||
bcrypt==4.0.*
|
||||
|
|
|
@ -490,6 +490,10 @@ export default class ServerSchema extends BaseUISchema {
|
|||
'vartype': 'enum',
|
||||
'enumvals': [gettext('any'), gettext('read-write'), gettext('read-only'),
|
||||
gettext('primary'), gettext('standby'), gettext('prefer-standby')]
|
||||
}, {
|
||||
'value': 'load_balance_hosts', 'label': gettext('Load balance hosts'),
|
||||
'vartype': 'enum', 'min_server_version': '16',
|
||||
'enumvals': [gettext('disable'), gettext('random')]
|
||||
}];
|
||||
}
|
||||
}
|
||||
|
|
|
@ -71,6 +71,9 @@ SUPPORTED_AUTH_SOURCES = [INTERNAL,
|
|||
|
||||
BINARY_PATHS = {
|
||||
"as_bin_paths": [
|
||||
{"version": "110000", "next_major_version": "120000",
|
||||
"serverType": gettext("EDB Advanced Server 11"), "binaryPath": None,
|
||||
"isDefault": False},
|
||||
{"version": "120000", "next_major_version": "130000",
|
||||
"serverType": gettext("EDB Advanced Server 12"), "binaryPath": None,
|
||||
"isDefault": False},
|
||||
|
@ -82,9 +85,6 @@ BINARY_PATHS = {
|
|||
"isDefault": False},
|
||||
{"version": "150000", "next_major_version": "160000",
|
||||
"serverType": gettext("EDB Advanced Server 15"), "binaryPath": None,
|
||||
"isDefault": False},
|
||||
{"version": "160000", "next_major_version": "170000",
|
||||
"serverType": gettext("EDB Advanced Server 16"), "binaryPath": None,
|
||||
"isDefault": False}
|
||||
],
|
||||
"pg_bin_paths": [
|
||||
|
|
Loading…
Reference in New Issue