diff --git a/docs/en_US/release_notes_5_2.rst b/docs/en_US/release_notes_5_2.rst index 4569a80b5..8cc269de3 100644 --- a/docs/en_US/release_notes_5_2.rst +++ b/docs/en_US/release_notes_5_2.rst @@ -22,5 +22,6 @@ Bug fixes | `Issue #6076 `_ - Fixed an issue where correct error not thrown while importing servers and JSON file has incorrect/insufficient keys. | `Issue #6293 `_ - Fixed an issue where the procedure creation is failed when providing the Volatility option. | `Issue #6327 `_ - Ensure that while comparing domains check function dependencies should be considered in schema diff. +| `Issue #6338 `_ - Added missing dependency 'xdg-utils' for the desktop packages in RPM and Debian. | `Issue #6344 `_ - Fixed cannot unpack non-iterable response object error when selecting any partition. | `Issue #6356 `_ - Mark the Apache HTTPD config file as such in the web DEB and RPM packages. diff --git a/pkg/debian/build.sh b/pkg/debian/build.sh index 505296c49..395ac83c7 100755 --- a/pkg/debian/build.sh +++ b/pkg/debian/build.sh @@ -35,7 +35,7 @@ cat << EOF > "${SERVERROOT}/DEBIAN/control" Package: ${APP_NAME}-server Version: ${APP_LONG_VERSION} Architecture: ${OS_ARCH} -Depends: python3, libpq5 (>= 11.0), libgssapi-krb5-2 +Depends: python3, libpq5 (>= 11.0), libgssapi-krb5-2, xdg-utils Recommends: postgresql-client | postgresql-client-13 | postgresql-client-12 | postgresql-client-11 | postgresql-client-10 Maintainer: pgAdmin Development Team Description: The core server package for pgAdmin. pgAdmin is the most popular and feature rich Open Source administration and development platform for PostgreSQL, the most advanced Open Source database in the world. diff --git a/pkg/redhat/build.sh b/pkg/redhat/build.sh index c21fc9006..388f41983 100755 --- a/pkg/redhat/build.sh +++ b/pkg/redhat/build.sh @@ -58,7 +58,7 @@ Summary: The core server package for pgAdmin. License: PostgreSQL URL: https://www.pgadmin.org/ -Requires: python3, postgresql-libs >= 11, krb5-libs +Requires: python3, postgresql-libs >= 11, krb5-libs, xdg-utils %description The core server package for pgAdmin. pgAdmin is the most popular and feature rich Open Source administration and development platform for PostgreSQL, the most advanced Open Source database in the world.