Skip to content

Commit

Permalink
1) Added release note for v7.7
Browse files Browse the repository at this point in the history
2) Added exception handling while removing the test database file.
  • Loading branch information
akshay-joshi committed Aug 25, 2023
1 parent cd613de commit 7746720
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/en_US/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ notes for it.
.. toctree::
:maxdepth: 1

release_notes_7_7
release_notes_7_6
release_notes_7_5
release_notes_7_4
Expand Down
31 changes: 31 additions & 0 deletions docs/en_US/release_notes_7_7.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
***********
Version 7.7
***********

Release date: 2023-09-21

This release contains a number of bug fixes and new features since the release of pgAdmin 4 v7.6.

Supported Database Servers
**************************
**PostgreSQL**: 11, 12, 13, 14 and 15

**EDB Advanced Server**: 11, 12, 13, 14 and 15

Bundled PostgreSQL Utilities
****************************
**psql**, **pg_dump**, **pg_dumpall**, **pg_restore**: 15.3


New features
************


Housekeeping
************


Bug fixes
*********

| `Issue #6704 <https://github.com/pgadmin-org/pgadmin4/issues/6704>`_ - Ensure user is redirected to login page after failed login.
6 changes: 5 additions & 1 deletion web/regression/python_test_utils/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -954,7 +954,11 @@ def reset_layout_db(user_id=None):
def remove_db_file():
"""This function use to remove SQLite DB file"""
if os.path.isfile(config.TEST_SQLITE_PATH):
os.remove(config.TEST_SQLITE_PATH)
try:
os.remove(config.TEST_SQLITE_PATH)
except PermissionError:
# TODO: Added for issue 6164
pass


def _cleanup(tester, app_starter):
Expand Down

0 comments on commit 7746720

Please sign in to comment.