-
Notifications
You must be signed in to change notification settings - Fork 664
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added adhoc connection support 1) Disable menu for other workspace. 2) Compare server name as well while adding the adhoc server. 3) PSQL tool should shown error if binary path is not set. Added logic to disconnect from all the servers, when layout is changed. 1) Disabled Schema Diff workspace if no tabs are present. 2) Make code generic. Fixed Demo comments. Fixed Javascript test cases Fixed feature test. Updated documentation.
- Loading branch information
1 parent
c3a334f
commit 3a8a033
Showing
126 changed files
with
4,001 additions
and
543 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
*********** | ||
Version 9.0 | ||
*********** | ||
|
||
Release date: 2025-01-09 | ||
|
||
This release contains a number of bug fixes and new features since the release of pgAdmin 4 v8.14. | ||
|
||
Supported Database Servers | ||
************************** | ||
**PostgreSQL**: 13, 14, 15, 16 and 17 | ||
|
||
**EDB Advanced Server**: 13, 14, 15, 16 and 17 | ||
|
||
Bundled PostgreSQL Utilities | ||
**************************** | ||
**psql**, **pg_dump**, **pg_dumpall**, **pg_restore**: 17.0 | ||
|
||
|
||
New features | ||
************ | ||
|
||
| `Issue #7708 <https://github.com/pgadmin-org/pgadmin4/issues/7708>`_ - Enhanced pgAdmin 4 with support for Workspace layouts. | ||
Housekeeping | ||
************ | ||
|
||
|
||
Bug fixes | ||
********* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
########################################################################## | ||
# | ||
# pgAdmin 4 - PostgreSQL Tools | ||
# | ||
# Copyright (C) 2013 - 2024, The pgAdmin Development Team | ||
# This software is released under the PostgreSQL Licence | ||
# | ||
########################################################################## | ||
|
||
""" | ||
Revision ID: 255e2842e4d7 | ||
Revises: f28be870d5ec | ||
Create Date: 2024-12-05 13:14:53.602974 | ||
""" | ||
from alembic import op, context | ||
import sqlalchemy as sa | ||
|
||
|
||
# revision identifiers, used by Alembic. | ||
revision = '255e2842e4d7' | ||
down_revision = 'f28be870d5ec' | ||
branch_labels = None | ||
depends_on = None | ||
|
||
|
||
def upgrade(): | ||
with (op.batch_alter_table("server", | ||
table_kwargs={'sqlite_autoincrement': True}) as batch_op): | ||
if context.get_impl().bind.dialect.name == "sqlite": | ||
batch_op.alter_column('id', autoincrement=True) | ||
batch_op.add_column(sa.Column('is_adhoc', sa.Integer(), | ||
server_default='0')) | ||
|
||
|
||
def downgrade(): | ||
# pgAdmin only upgrades, downgrade not implemented. | ||
pass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.