Files
pgadmin4/README.devel
Antonio Larrosa e258676e91 - Update to 9.11
* Supported Database Servers
    - PostgreSQL: 13, 14, 15, 16, 17 and 18
    - EDB Advanced Server: 13, 14, 15, 16, 17 and 18
  * Bundled PostgreSQL Utilities
    - psql, pg_dump, pg_dumpall, pg_restore: 18.0
  * New features
    - Add support of DEPENDS/NO DEPENDS ON EXTENSION for INDEX.
    - Add support of DEPENDS/NO DEPENDS ON EXTENSION for
      MATERIALIZED VIEW.
    - Add support for showing the column data type beside column
      name in the object explorer.
    - Added Ubuntu 25.10 and Fedora 43
    - Add conditional TLS support for the Ingress in the Helm
      chart.
  * Bug fixes
    - Fixed an issue on type casting of default string
      function/procedure arguments in debugger tool.
    - Fix pkg_resources deprecation warning by migrating Docker
      base image to python:3-alpine from alpine:latest.
    - Fixed an issue where EXPLAIN should run on query under
      cursor if no text is selected.
    - Fixed an issue where opening file in Query Tool does not
      retain file name in tab.
    - Fixed an issue where connection is failing via Query
      Tool/PSQL Tool workspaces.
    - Plain SQL restore runs with ‘restrict’ option to prevent
      harmful psql meta-commands (CVE-2025-13780).
    - Fixed an issue where copying highlighted text in the query
      tool data output cell editor would copy the complete string.

OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/pgadmin4?expand=0&rev=83
2025-12-11 18:42:42 +00:00

23 lines
746 B
Plaintext

To update pgadmin to a new release you can follow these steps:
1. Update the version in the spec file to the new version
2. Run the following command to download the sources:
osc service mr download_files
3. Run the following command to update the vendored npm packages:
sh ./update-vendor.sh
That command sometimes fails when applying the package_git_local.patch
patch file. If that happens, rebase the patch file so it applies fine.
Also, if the script complains about a preexisting working directory,
remove it, so it can be extracted again from scratch and we get reproducible
builds without manually modified sources.
4. Update the changes file with the release notes from https://www.pgadmin.org/
5. Enjoy!