public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/pgadmin4] f43: Updateto 9.17
@ 2026-07-31 14:07 Sandro Mani
  0 siblings, 0 replies; only message in thread
From: Sandro Mani @ 2026-07-31 14:07 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/pgadmin4
Branch : f43
Commit : e055bba05cfc727ce9725ced92c7c22c141c9184
Author : Sandro Mani <manisandro@gmail.com>
Date   : 2026-07-31T16:07:09+02:00
Stats  : +24/-35 in 7 file(s)
URL    : https://src.fedoraproject.org/rpms/pgadmin4/c/e055bba05cfc727ce9725ced92c7c22c141c9184?branch=f43

Log:
Updateto 9.17

---
diff --git a/.gitignore b/.gitignore
index 2481995..ae6719e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -105,3 +105,5 @@
 /pgadmin4-9.15.tar.gz
 /pgadmin4-9.16.tar.gz
 /pgadmin4-9.16-vendor.tar.xz
+/pgadmin4-9.17.tar.gz
+/pgadmin4-9.17-vendor.tar.xz

diff --git a/pgadmin4.spec b/pgadmin4.spec
index 82a793e..b847e63 100644
--- a/pgadmin4.spec
+++ b/pgadmin4.spec
@@ -6,7 +6,7 @@
 Name:           pgadmin4
 # NOTE: Also regenerate requires as indicated below when updating!
 # Verify Patch4 on next update
-Version:        9.16
+Version:        9.17
 Release:        1%{?dist}
 Summary:        Administration tool for PostgreSQL
 
@@ -37,8 +37,6 @@ Patch0:         pgadmin4_requirements.patch
 Patch1:         pgadmin4_azure-mgmt-rdbms.patch
 # Drop requirement on unpackaged python-sphinxcontrib-youtube
 Patch2:         pgadmin4_sphinx_youtube.patch
-# Restore compatibility with python-cryptography-47.x
-Patch3:         pgadmin4_cryptography47.patch
 
 # For docs
 BuildRequires:  glibc-langpack-en
@@ -50,7 +48,6 @@ BuildRequires:  %{_bindir}/npm
 
 # Printed by ./adjust_requirements.py (which also generates pgadmin4_requirements.patch)
 
-
 Requires: python3dist(authlib) >= 1.4
 Requires: python3dist(azure-identity) >= 1.25.3
 Requires: python3dist(azure-mgmt-rdbms) >= 10.1.1
@@ -252,12 +249,15 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/%{name}.desktop
 
 
 %changelog
+* Fri Jul 31 2026 Sandro Mani <manisandro@gmail.com> - 9.17-1
+- Update to 9.17
+
+* Thu Jul 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 9.16-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild
+
 * Fri Jun 19 2026 Filipe Rosset <filiperosset@fedoraproject.org> - 9.16-1
 - Update to 9.16 + spec cleanup and modernization
 
-* Sat Jun 06 2026 Sandro Mani <manisandro@gmail.com> - 9.15-2
-- Restore compatibility with python-cryptography-47.x (#2484328)
-
 * Mon May 11 2026 Sandro Mani <manisandro@gmail.com> - 9.15-1
 - Update to 9.15
 

diff --git a/pgadmin4_azure-mgmt-rdbms.patch b/pgadmin4_azure-mgmt-rdbms.patch
index 9127a99..ae91a10 100644
--- a/pgadmin4_azure-mgmt-rdbms.patch
+++ b/pgadmin4_azure-mgmt-rdbms.patch
@@ -1,6 +1,6 @@
-diff -rupN --no-dereference pgadmin4-9.16/web/pgadmin/misc/cloud/azure/__init__.py pgadmin4-9.16-new/web/pgadmin/misc/cloud/azure/__init__.py
---- pgadmin4-9.16/web/pgadmin/misc/cloud/azure/__init__.py	2026-06-18 15:45:07.000000000 +0200
-+++ pgadmin4-9.16-new/web/pgadmin/misc/cloud/azure/__init__.py	2026-06-19 11:25:40.116529027 +0200
+diff -rupN --no-dereference pgadmin4-9.17/web/pgadmin/misc/cloud/azure/__init__.py pgadmin4-9.17-new/web/pgadmin/misc/cloud/azure/__init__.py
+--- pgadmin4-9.17/web/pgadmin/misc/cloud/azure/__init__.py	2026-07-30 05:14:00.000000000 +0200
++++ pgadmin4-9.17-new/web/pgadmin/misc/cloud/azure/__init__.py	2026-07-31 14:38:39.980998254 +0200
 @@ -31,8 +31,12 @@ from azure.identity import AzureCliCrede
      AuthenticationRecord
  from azure.mgmt.resource import ResourceManagementClient

diff --git a/pgadmin4_cryptography47.patch b/pgadmin4_cryptography47.patch
deleted file mode 100644
index a4e0ca0..0000000
--- a/pgadmin4_cryptography47.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -rupN --no-dereference pgadmin4-9.16/web/pgadmin/utils/crypto.py pgadmin4-9.16-new/web/pgadmin/utils/crypto.py
---- pgadmin4-9.16/web/pgadmin/utils/crypto.py	2026-06-18 15:45:07.000000000 +0200
-+++ pgadmin4-9.16-new/web/pgadmin/utils/crypto.py	2026-06-19 11:25:40.760074556 +0200
-@@ -16,7 +16,7 @@ import os
- from cryptography.hazmat.backends import default_backend
- from cryptography.hazmat.primitives.ciphers import Cipher
- from cryptography.hazmat.primitives.ciphers.algorithms import AES
--from cryptography.hazmat.decrepit.ciphers.modes import CFB8
-+from cryptography.hazmat.primitives.ciphers.modes import CFB8
- 
- padding_string = b'}'
- iv_size = AES.block_size // 8

diff --git a/pgadmin4_requirements.patch b/pgadmin4_requirements.patch
index 6a2ebd0..ebe18de 100644
--- a/pgadmin4_requirements.patch
+++ b/pgadmin4_requirements.patch
@@ -1,6 +1,5 @@
-diff -rupN --no-dereference pgadmin4-9.16/requirements.txt pgadmin4-9.16-new/requirements.txt
---- pgadmin4-9.16/requirements.txt	2026-06-18 15:45:06.000000000 +0200
-+++ pgadmin4-9.16-new/requirements.txt	2026-06-19 11:25:39.782994627 +0200
+--- pgadmin4-9.17/requirements.txt	2026-07-30 05:14:00.000000000 +0200
++++ pgadmin4-9.17-new/requirements.txt	2026-07-31 16:03:30.884780019 +0200
 @@ -12,59 +12,59 @@
  # relevant packages.
  ###############################################################################
@@ -14,7 +13,7 @@ diff -rupN --no-dereference pgadmin4-9.16/requirements.txt pgadmin4-9.16-new/req
 -bcrypt==5.0.*
 -boto3==1.42.*; python_version <= '3.9'
 -boto3==1.43.*; python_version > '3.9'
--certifi==2026.5.20
+-certifi==2026.6.17
 -cryptography==49.0.*
 -Flask-Babel==4.0.*
 -Flask-Compress==1.*
@@ -89,7 +88,7 @@ diff -rupN --no-dereference pgadmin4-9.16/requirements.txt pgadmin4-9.16-new/req
  pywinpty==2.0.*; sys_platform=="win32"
 -qrcode[pil]==8.*
 -setuptools<82; python_version <= '3.9'
--setuptools==82.*; python_version > '3.9'
+-setuptools==83.*; python_version > '3.9'
 -SQLAlchemy==2.*
 -sqlparse==0.*
 -sshtunnel==0.*

diff --git a/pgadmin4_sphinx_youtube.patch b/pgadmin4_sphinx_youtube.patch
index 61e5fb6..184d8d2 100644
--- a/pgadmin4_sphinx_youtube.patch
+++ b/pgadmin4_sphinx_youtube.patch
@@ -1,6 +1,6 @@
-diff -rupN --no-dereference pgadmin4-9.16/docs/en_US/conf.py pgadmin4-9.16-new/docs/en_US/conf.py
---- pgadmin4-9.16/docs/en_US/conf.py	2026-06-18 15:45:05.000000000 +0200
-+++ pgadmin4-9.16-new/docs/en_US/conf.py	2026-06-19 11:25:40.447862693 +0200
+diff -rupN --no-dereference pgadmin4-9.17/docs/en_US/conf.py pgadmin4-9.17-new/docs/en_US/conf.py
+--- pgadmin4-9.17/docs/en_US/conf.py	2026-07-30 05:13:59.000000000 +0200
++++ pgadmin4-9.17-new/docs/en_US/conf.py	2026-07-31 14:38:40.324622774 +0200
 @@ -36,7 +36,8 @@ import config
  
  # Add any Sphinx extension module names here, as strings. They can be
@@ -11,9 +11,9 @@ diff -rupN --no-dereference pgadmin4-9.16/docs/en_US/conf.py pgadmin4-9.16-new/d
  
  # Add any paths that contain templates here, relative to this directory.
  templates_path = ['_templates']
-diff -rupN --no-dereference pgadmin4-9.16/docs/en_US/processes.rst pgadmin4-9.16-new/docs/en_US/processes.rst
---- pgadmin4-9.16/docs/en_US/processes.rst	2026-06-18 15:45:06.000000000 +0200
-+++ pgadmin4-9.16-new/docs/en_US/processes.rst	2026-06-19 11:25:40.448179930 +0200
+diff -rupN --no-dereference pgadmin4-9.17/docs/en_US/processes.rst pgadmin4-9.17-new/docs/en_US/processes.rst
+--- pgadmin4-9.17/docs/en_US/processes.rst	2026-07-30 05:13:59.000000000 +0200
++++ pgadmin4-9.17-new/docs/en_US/processes.rst	2026-07-31 14:38:40.324984850 +0200
 @@ -47,9 +47,3 @@ Use the **End Process** button to end th
  .. note:: If you are running *pgAdmin* in *Server Mode* you can click on the |sm_icon| icon in the process watcher window to open the file location in the Storage Manager. You can use the :ref:`Storage Manager <storage_manager>` to download the backup file on the client machine .
  

diff --git a/sources b/sources
index 166781c..42ef6b5 100644
--- a/sources
+++ b/sources
@@ -1,2 +1,2 @@
-SHA512 (pgadmin4-9.16.tar.gz) = 786bc844277587f04dd011fcc819608cac94537945bb4a835446ac65819609f90aa53f8f8dd1ee86d5e9a36f944cb618724ba537a7a0be92db5a5aa774b8081e
-SHA512 (pgadmin4-9.16-vendor.tar.xz) = f26635c8af2769d397afb540534e321bce944afdf2276e26910867a910410437e342ea6bc9b7dc8531037b092743a5cd9954ba81fb32a5d3161a03879de6b387
+SHA512 (pgadmin4-9.17.tar.gz) = 6b43a180daad6a1e4bcb993063dd2fd3d07cf47c525b8c55487b14f9caf48585ec22db76fa657acc965795d7973a05c0dd0adeb4fa348b42c7c3cf297b085e2e
+SHA512 (pgadmin4-9.17-vendor.tar.xz) = 4dfbef76e4f64cf2b5edcb5e5044ddb5ac72b483e93c202401627ae777f980a1a34bc575dd43c153218d6b486cccefd581db7d2a4c5fb4634cd828744c42e25a

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2026-07-31 14:07 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-07-31 14:07 [rpms/pgadmin4] f43: Updateto 9.17 Sandro Mani

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox