You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/en_US/release_notes_9_6.rst
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,7 @@ Bundled PostgreSQL Utilities
20
20
New features
21
21
************
22
22
23
+
|`Issue #1923 <https://github.com/pgadmin-org/pgadmin4/issues/1923>`_ - Ensure that keyboard shortcuts are displayed in tooltips, context menus, and the main menu.
23
24
|`Issue #5797 <https://github.com/pgadmin-org/pgadmin4/issues/5797>`_ - Implemented a server-side cursor to enhance performance when retrieving large datasets.
24
25
|`Issue #7979 <https://github.com/pgadmin-org/pgadmin4/issues/7979>`_ - Added support for setting a custom SESSION_DIGEST_METHOD in pgAdmin 4 to facilitate FIPS compliance.
25
26
|`Issue #8941 <https://github.com/pgadmin-org/pgadmin4/issues/8941>`_ - Enable the PKCE workflow for OAuth 2 authentication.
@@ -28,11 +29,13 @@ Housekeeping
28
29
************
29
30
30
31
|`Issue #8828 <https://github.com/pgadmin-org/pgadmin4/issues/8828>`_ - Ensure that pgAdmin 4 is compatible with PG/EPAS v18.
32
+
|`Issue #8958 <https://github.com/pgadmin-org/pgadmin4/issues/8958>`_ - Use 'Drop' instead of 'Delete' for object commands to make destructive actions more deliberate.
31
33
32
34
Bug fixes
33
35
*********
34
36
35
37
|`Issue #8420 <https://github.com/pgadmin-org/pgadmin4/issues/8420>`_ - Fixed an issue where windows installer is not signing tmp files generated by InnoSetup.
36
38
|`Issue #8675 <https://github.com/pgadmin-org/pgadmin4/issues/8675>`_ - Fixed an issue in the Search Objects tool where selecting a node occasionally selected an incorrect node.
37
39
|`Issue #8901 <https://github.com/pgadmin-org/pgadmin4/issues/8901>`_ - Improved the application state restoration by leveraging rc-dock layout and ensure the order and layout of tabs is maintained on restore.
40
+
|`Issue #8907 <https://github.com/pgadmin-org/pgadmin4/issues/8907>`_ - Fixed an issue where json editor in result grid was crashing if null value is set in the json editor.
38
41
|`Issue #8914 <https://github.com/pgadmin-org/pgadmin4/issues/8914>`_ - Update zstd library link to 1.5.7 in Dockerfile.
msg=gettext('Delete database with the force option will attempt to terminate all existing connections to the <b>"%s"</b> database. Are you sure you want to proceed?',d.label);
536
-
title=gettext('Delete FORCE %s?',obj.label);
535
+
msg=gettext('Drop database with the force option will attempt to terminate all existing connections to the <b>"%s"</b> database. Are you sure you want to proceed?',d.label);
536
+
title=gettext('Drop FORCE %s?',obj.label);
537
537
538
538
}elseif(input.url=='delete'){
539
-
msg=gettext('Are you sure you want to delete the %s <b>"%s"</b> and all the objects that depend on it?',
539
+
msg=gettext('Are you sure you want to drop the %s <b>"%s"</b> and all the objects that depend on it?',
'Delete databases with the force option will attempt to terminate all the existing connections to the selected databases. Are you sure you want to proceed?'
164
+
'Drop databases with the force option will attempt to terminate all the existing connections to the selected databases. Are you sure you want to proceed?'
165
165
);
166
-
title=gettext('Delete FORCE multiple objects?');
166
+
title=gettext('Drop FORCE multiple objects?');
167
167
}else{
168
168
url=selNode.generate_url(selItem,'drop');
169
-
msg=gettext('Are you sure you want to delete all the selected objects?');
170
-
title=gettext('Delete multiple objects?');
169
+
msg=gettext('Are you sure you want to drop all the selected objects?');
170
+
title=gettext('Drop multiple objects?');
171
171
}
172
172
173
173
constapi=getApiInstance();
@@ -198,7 +198,7 @@ export default function CollectionNodeProperties({
0 commit comments