From 25010395d9173fd72542ef831e4f53374660c0bd Mon Sep 17 00:00:00 2001 From: jwaisner Date: Sun, 8 Mar 2026 00:22:05 -0600 Subject: [PATCH] Add PostgreSQL versions 18.3, 17.9, 16.13, 15.17, and 14.22 with configuration files --- bin/postgresql14.22/bearsampp.conf | 14 + bin/postgresql14.22/init.bat | 5 + bin/postgresql14.22/pg_hba.conf.ber | 3 + bin/postgresql14.22/postgresql.conf.ber | 35 ++ bin/postgresql15.17/bearsampp.conf | 14 + bin/postgresql15.17/init.bat | 5 + bin/postgresql15.17/pg_hba.conf.ber | 3 + bin/postgresql15.17/postgresql.conf.ber | 35 ++ bin/postgresql16.13/bearsampp.conf | 14 + bin/postgresql16.13/init.bat | 5 + bin/postgresql16.13/pg_hba.conf.ber | 3 + bin/postgresql16.13/postgresql.conf.ber | 35 ++ bin/postgresql17.9/bearsampp.conf | 14 + bin/postgresql17.9/init.bat | 5 + bin/postgresql17.9/pg_hba.conf.ber | 3 + bin/postgresql17.9/postgresql.conf.ber | 35 ++ bin/postgresql18.3/bearsampp.conf | 14 + bin/postgresql18.3/init.bat | 5 + bin/postgresql18.3/pg_hba.conf.ber | 3 + bin/postgresql18.3/postgresql.conf.ber | 35 ++ build/reports/problems/problems-report.html | 659 -------------------- gradle.properties | 2 +- releases.properties | 5 + 23 files changed, 291 insertions(+), 660 deletions(-) create mode 100644 bin/postgresql14.22/bearsampp.conf create mode 100644 bin/postgresql14.22/init.bat create mode 100644 bin/postgresql14.22/pg_hba.conf.ber create mode 100644 bin/postgresql14.22/postgresql.conf.ber create mode 100644 bin/postgresql15.17/bearsampp.conf create mode 100644 bin/postgresql15.17/init.bat create mode 100644 bin/postgresql15.17/pg_hba.conf.ber create mode 100644 bin/postgresql15.17/postgresql.conf.ber create mode 100644 bin/postgresql16.13/bearsampp.conf create mode 100644 bin/postgresql16.13/init.bat create mode 100644 bin/postgresql16.13/pg_hba.conf.ber create mode 100644 bin/postgresql16.13/postgresql.conf.ber create mode 100644 bin/postgresql17.9/bearsampp.conf create mode 100644 bin/postgresql17.9/init.bat create mode 100644 bin/postgresql17.9/pg_hba.conf.ber create mode 100644 bin/postgresql17.9/postgresql.conf.ber create mode 100644 bin/postgresql18.3/bearsampp.conf create mode 100644 bin/postgresql18.3/init.bat create mode 100644 bin/postgresql18.3/pg_hba.conf.ber create mode 100644 bin/postgresql18.3/postgresql.conf.ber delete mode 100644 build/reports/problems/problems-report.html diff --git a/bin/postgresql14.22/bearsampp.conf b/bin/postgresql14.22/bearsampp.conf new file mode 100644 index 00000000..5998b8ca --- /dev/null +++ b/bin/postgresql14.22/bearsampp.conf @@ -0,0 +1,14 @@ +postgresqlVersion = "14.22" +postgresqlCtlExe = "bin/pg_ctl.exe" +postgresqlCliExe = "bin/psql.exe" +postgresqlDumpExe = "bin/pg_dump.exe" +postgresqlDumpAllExe = "bin/pg_dumpall.exe" +postgresqlConf = "data/postgresql.conf" +postgresqlUserConf = "data/pg_hba.conf" +postgresqlAltConf = "postgresql.conf.ber" +postgresqlAltUserConf = "pg_hba.conf.ber" +postgresqlPort = "5432" +postgresqlRootUser = "postgres" +postgresqlRootPwd = "" + +bundleRelease = "@RELEASE_VERSION@" diff --git a/bin/postgresql14.22/init.bat b/bin/postgresql14.22/init.bat new file mode 100644 index 00000000..f0acb2d4 --- /dev/null +++ b/bin/postgresql14.22/init.bat @@ -0,0 +1,5 @@ +@ECHO OFF + +%~dp0bin\initdb.exe -U postgres -A trust -E utf8 -D "%~dp0data" > "~BEARSAMPP_WIN_PATH~\logs\postgresql-install.log" 2>&1 +copy /y "%~dp0postgresql.conf.ber" "%~dp0data\postgresql.conf" +copy /y "%~dp0pg_hba.conf.ber" "%~dp0data\pg_hba.conf" diff --git a/bin/postgresql14.22/pg_hba.conf.ber b/bin/postgresql14.22/pg_hba.conf.ber new file mode 100644 index 00000000..29b8f8bf --- /dev/null +++ b/bin/postgresql14.22/pg_hba.conf.ber @@ -0,0 +1,3 @@ +# TYPE DATABASE USER ADDRESS METHOD + host all all 127.0.0.1/32 trust + host all all ::1/128 trust diff --git a/bin/postgresql14.22/postgresql.conf.ber b/bin/postgresql14.22/postgresql.conf.ber new file mode 100644 index 00000000..8c23e775 --- /dev/null +++ b/bin/postgresql14.22/postgresql.conf.ber @@ -0,0 +1,35 @@ +#------------------------------------------------------------------------------ +# FILE LOCATIONS +#------------------------------------------------------------------------------ +data_directory = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql14.22/data' +hba_file = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql14.22/data/pg_hba.conf' +ident_file = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql14.22/data/pg_ident.conf' + +#------------------------------------------------------------------------------ +# CONNECTIONS AND AUTHENTICATION +#------------------------------------------------------------------------------ +listen_addresses = '*' +port = 5432 +max_connections = 100 + +#------------------------------------------------------------------------------ +# RESOURCE USAGE (except WAL) +#------------------------------------------------------------------------------ +shared_buffers = 32MB + +#------------------------------------------------------------------------------ +# ERROR REPORTING AND LOGGING +#------------------------------------------------------------------------------ +log_destination = 'stderr' +logging_collector = on +log_directory = '~BEARSAMPP_LIN_PATH~/logs' +log_filename = 'postgresql.log' +log_file_mode = 0777 +log_truncate_on_rotation = off +log_rotation_age = 0 +log_rotation_size = 0 + +client_min_messages = notice +log_min_messages = warning +log_min_error_statement = error +log_min_duration_statement = -1 diff --git a/bin/postgresql15.17/bearsampp.conf b/bin/postgresql15.17/bearsampp.conf new file mode 100644 index 00000000..db84c2a4 --- /dev/null +++ b/bin/postgresql15.17/bearsampp.conf @@ -0,0 +1,14 @@ +postgresqlVersion = "15.17" +postgresqlCtlExe = "bin/pg_ctl.exe" +postgresqlCliExe = "bin/psql.exe" +postgresqlDumpExe = "bin/pg_dump.exe" +postgresqlDumpAllExe = "bin/pg_dumpall.exe" +postgresqlConf = "data/postgresql.conf" +postgresqlUserConf = "data/pg_hba.conf" +postgresqlAltConf = "postgresql.conf.ber" +postgresqlAltUserConf = "pg_hba.conf.ber" +postgresqlPort = "5432" +postgresqlRootUser = "postgres" +postgresqlRootPwd = "" + +bundleRelease = "@RELEASE_VERSION@" diff --git a/bin/postgresql15.17/init.bat b/bin/postgresql15.17/init.bat new file mode 100644 index 00000000..f0acb2d4 --- /dev/null +++ b/bin/postgresql15.17/init.bat @@ -0,0 +1,5 @@ +@ECHO OFF + +%~dp0bin\initdb.exe -U postgres -A trust -E utf8 -D "%~dp0data" > "~BEARSAMPP_WIN_PATH~\logs\postgresql-install.log" 2>&1 +copy /y "%~dp0postgresql.conf.ber" "%~dp0data\postgresql.conf" +copy /y "%~dp0pg_hba.conf.ber" "%~dp0data\pg_hba.conf" diff --git a/bin/postgresql15.17/pg_hba.conf.ber b/bin/postgresql15.17/pg_hba.conf.ber new file mode 100644 index 00000000..29b8f8bf --- /dev/null +++ b/bin/postgresql15.17/pg_hba.conf.ber @@ -0,0 +1,3 @@ +# TYPE DATABASE USER ADDRESS METHOD + host all all 127.0.0.1/32 trust + host all all ::1/128 trust diff --git a/bin/postgresql15.17/postgresql.conf.ber b/bin/postgresql15.17/postgresql.conf.ber new file mode 100644 index 00000000..acada98c --- /dev/null +++ b/bin/postgresql15.17/postgresql.conf.ber @@ -0,0 +1,35 @@ +#------------------------------------------------------------------------------ +# FILE LOCATIONS +#------------------------------------------------------------------------------ +data_directory = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql15.17/data' +hba_file = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql15.17/data/pg_hba.conf' +ident_file = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql15.17/data/pg_ident.conf' + +#------------------------------------------------------------------------------ +# CONNECTIONS AND AUTHENTICATION +#------------------------------------------------------------------------------ +listen_addresses = '*' +port = 5432 +max_connections = 100 + +#------------------------------------------------------------------------------ +# RESOURCE USAGE (except WAL) +#------------------------------------------------------------------------------ +shared_buffers = 32MB + +#------------------------------------------------------------------------------ +# ERROR REPORTING AND LOGGING +#------------------------------------------------------------------------------ +log_destination = 'stderr' +logging_collector = on +log_directory = '~BEARSAMPP_LIN_PATH~/logs' +log_filename = 'postgresql.log' +log_file_mode = 0777 +log_truncate_on_rotation = off +log_rotation_age = 0 +log_rotation_size = 0 + +client_min_messages = notice +log_min_messages = warning +log_min_error_statement = error +log_min_duration_statement = -1 diff --git a/bin/postgresql16.13/bearsampp.conf b/bin/postgresql16.13/bearsampp.conf new file mode 100644 index 00000000..c1311cbe --- /dev/null +++ b/bin/postgresql16.13/bearsampp.conf @@ -0,0 +1,14 @@ +postgresqlVersion = "16.13" +postgresqlCtlExe = "bin/pg_ctl.exe" +postgresqlCliExe = "bin/psql.exe" +postgresqlDumpExe = "bin/pg_dump.exe" +postgresqlDumpAllExe = "bin/pg_dumpall.exe" +postgresqlConf = "data/postgresql.conf" +postgresqlUserConf = "data/pg_hba.conf" +postgresqlAltConf = "postgresql.conf.ber" +postgresqlAltUserConf = "pg_hba.conf.ber" +postgresqlPort = "5432" +postgresqlRootUser = "postgres" +postgresqlRootPwd = "" + +bundleRelease = "@RELEASE_VERSION@" diff --git a/bin/postgresql16.13/init.bat b/bin/postgresql16.13/init.bat new file mode 100644 index 00000000..f0acb2d4 --- /dev/null +++ b/bin/postgresql16.13/init.bat @@ -0,0 +1,5 @@ +@ECHO OFF + +%~dp0bin\initdb.exe -U postgres -A trust -E utf8 -D "%~dp0data" > "~BEARSAMPP_WIN_PATH~\logs\postgresql-install.log" 2>&1 +copy /y "%~dp0postgresql.conf.ber" "%~dp0data\postgresql.conf" +copy /y "%~dp0pg_hba.conf.ber" "%~dp0data\pg_hba.conf" diff --git a/bin/postgresql16.13/pg_hba.conf.ber b/bin/postgresql16.13/pg_hba.conf.ber new file mode 100644 index 00000000..29b8f8bf --- /dev/null +++ b/bin/postgresql16.13/pg_hba.conf.ber @@ -0,0 +1,3 @@ +# TYPE DATABASE USER ADDRESS METHOD + host all all 127.0.0.1/32 trust + host all all ::1/128 trust diff --git a/bin/postgresql16.13/postgresql.conf.ber b/bin/postgresql16.13/postgresql.conf.ber new file mode 100644 index 00000000..24558432 --- /dev/null +++ b/bin/postgresql16.13/postgresql.conf.ber @@ -0,0 +1,35 @@ +#------------------------------------------------------------------------------ +# FILE LOCATIONS +#------------------------------------------------------------------------------ +data_directory = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql16.13/data' +hba_file = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql16.13/data/pg_hba.conf' +ident_file = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql16.13/data/pg_ident.conf' + +#------------------------------------------------------------------------------ +# CONNECTIONS AND AUTHENTICATION +#------------------------------------------------------------------------------ +listen_addresses = '*' +port = 5432 +max_connections = 100 + +#------------------------------------------------------------------------------ +# RESOURCE USAGE (except WAL) +#------------------------------------------------------------------------------ +shared_buffers = 32MB + +#------------------------------------------------------------------------------ +# ERROR REPORTING AND LOGGING +#------------------------------------------------------------------------------ +log_destination = 'stderr' +logging_collector = on +log_directory = '~BEARSAMPP_LIN_PATH~/logs' +log_filename = 'postgresql.log' +log_file_mode = 0777 +log_truncate_on_rotation = off +log_rotation_age = 0 +log_rotation_size = 0 + +client_min_messages = notice +log_min_messages = warning +log_min_error_statement = error +log_min_duration_statement = -1 diff --git a/bin/postgresql17.9/bearsampp.conf b/bin/postgresql17.9/bearsampp.conf new file mode 100644 index 00000000..fe0fc63b --- /dev/null +++ b/bin/postgresql17.9/bearsampp.conf @@ -0,0 +1,14 @@ +postgresqlVersion = "17.9" +postgresqlCtlExe = "bin/pg_ctl.exe" +postgresqlCliExe = "bin/psql.exe" +postgresqlDumpExe = "bin/pg_dump.exe" +postgresqlDumpAllExe = "bin/pg_dumpall.exe" +postgresqlConf = "data/postgresql.conf" +postgresqlUserConf = "data/pg_hba.conf" +postgresqlAltConf = "postgresql.conf.ber" +postgresqlAltUserConf = "pg_hba.conf.ber" +postgresqlPort = "5432" +postgresqlRootUser = "postgres" +postgresqlRootPwd = "" + +bundleRelease = "@RELEASE_VERSION@" diff --git a/bin/postgresql17.9/init.bat b/bin/postgresql17.9/init.bat new file mode 100644 index 00000000..f0acb2d4 --- /dev/null +++ b/bin/postgresql17.9/init.bat @@ -0,0 +1,5 @@ +@ECHO OFF + +%~dp0bin\initdb.exe -U postgres -A trust -E utf8 -D "%~dp0data" > "~BEARSAMPP_WIN_PATH~\logs\postgresql-install.log" 2>&1 +copy /y "%~dp0postgresql.conf.ber" "%~dp0data\postgresql.conf" +copy /y "%~dp0pg_hba.conf.ber" "%~dp0data\pg_hba.conf" diff --git a/bin/postgresql17.9/pg_hba.conf.ber b/bin/postgresql17.9/pg_hba.conf.ber new file mode 100644 index 00000000..29b8f8bf --- /dev/null +++ b/bin/postgresql17.9/pg_hba.conf.ber @@ -0,0 +1,3 @@ +# TYPE DATABASE USER ADDRESS METHOD + host all all 127.0.0.1/32 trust + host all all ::1/128 trust diff --git a/bin/postgresql17.9/postgresql.conf.ber b/bin/postgresql17.9/postgresql.conf.ber new file mode 100644 index 00000000..c5c5a53d --- /dev/null +++ b/bin/postgresql17.9/postgresql.conf.ber @@ -0,0 +1,35 @@ +#------------------------------------------------------------------------------ +# FILE LOCATIONS +#------------------------------------------------------------------------------ +data_directory = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql17.9/data' +hba_file = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql17.9/data/pg_hba.conf' +ident_file = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql17.9/data/pg_ident.conf' + +#------------------------------------------------------------------------------ +# CONNECTIONS AND AUTHENTICATION +#------------------------------------------------------------------------------ +listen_addresses = '*' +port = 5432 +max_connections = 100 + +#------------------------------------------------------------------------------ +# RESOURCE USAGE (except WAL) +#------------------------------------------------------------------------------ +shared_buffers = 32MB + +#------------------------------------------------------------------------------ +# ERROR REPORTING AND LOGGING +#------------------------------------------------------------------------------ +log_destination = 'stderr' +logging_collector = on +log_directory = '~BEARSAMPP_LIN_PATH~/logs' +log_filename = 'postgresql.log' +log_file_mode = 0777 +log_truncate_on_rotation = off +log_rotation_age = 0 +log_rotation_size = 0 + +client_min_messages = notice +log_min_messages = warning +log_min_error_statement = error +log_min_duration_statement = -1 diff --git a/bin/postgresql18.3/bearsampp.conf b/bin/postgresql18.3/bearsampp.conf new file mode 100644 index 00000000..c8b00a6c --- /dev/null +++ b/bin/postgresql18.3/bearsampp.conf @@ -0,0 +1,14 @@ +postgresqlVersion = "18.3" +postgresqlCtlExe = "bin/pg_ctl.exe" +postgresqlCliExe = "bin/psql.exe" +postgresqlDumpExe = "bin/pg_dump.exe" +postgresqlDumpAllExe = "bin/pg_dumpall.exe" +postgresqlConf = "data/postgresql.conf" +postgresqlUserConf = "data/pg_hba.conf" +postgresqlAltConf = "postgresql.conf.ber" +postgresqlAltUserConf = "pg_hba.conf.ber" +postgresqlPort = "5432" +postgresqlRootUser = "postgres" +postgresqlRootPwd = "" + +bundleRelease = "@RELEASE_VERSION@" diff --git a/bin/postgresql18.3/init.bat b/bin/postgresql18.3/init.bat new file mode 100644 index 00000000..f0acb2d4 --- /dev/null +++ b/bin/postgresql18.3/init.bat @@ -0,0 +1,5 @@ +@ECHO OFF + +%~dp0bin\initdb.exe -U postgres -A trust -E utf8 -D "%~dp0data" > "~BEARSAMPP_WIN_PATH~\logs\postgresql-install.log" 2>&1 +copy /y "%~dp0postgresql.conf.ber" "%~dp0data\postgresql.conf" +copy /y "%~dp0pg_hba.conf.ber" "%~dp0data\pg_hba.conf" diff --git a/bin/postgresql18.3/pg_hba.conf.ber b/bin/postgresql18.3/pg_hba.conf.ber new file mode 100644 index 00000000..29b8f8bf --- /dev/null +++ b/bin/postgresql18.3/pg_hba.conf.ber @@ -0,0 +1,3 @@ +# TYPE DATABASE USER ADDRESS METHOD + host all all 127.0.0.1/32 trust + host all all ::1/128 trust diff --git a/bin/postgresql18.3/postgresql.conf.ber b/bin/postgresql18.3/postgresql.conf.ber new file mode 100644 index 00000000..7fdd739f --- /dev/null +++ b/bin/postgresql18.3/postgresql.conf.ber @@ -0,0 +1,35 @@ +#------------------------------------------------------------------------------ +# FILE LOCATIONS +#------------------------------------------------------------------------------ +data_directory = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql18.3/data' +hba_file = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql18.3/data/pg_hba.conf' +ident_file = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql18.3/data/pg_ident.conf' + +#------------------------------------------------------------------------------ +# CONNECTIONS AND AUTHENTICATION +#------------------------------------------------------------------------------ +listen_addresses = '*' +port = 5432 +max_connections = 100 + +#------------------------------------------------------------------------------ +# RESOURCE USAGE (except WAL) +#------------------------------------------------------------------------------ +shared_buffers = 32MB + +#------------------------------------------------------------------------------ +# ERROR REPORTING AND LOGGING +#------------------------------------------------------------------------------ +log_destination = 'stderr' +logging_collector = on +log_directory = '~BEARSAMPP_LIN_PATH~/logs' +log_filename = 'postgresql.log' +log_file_mode = 0777 +log_truncate_on_rotation = off +log_rotation_age = 0 +log_rotation_size = 0 + +client_min_messages = notice +log_min_messages = warning +log_min_error_statement = error +log_min_duration_statement = -1 diff --git a/build/reports/problems/problems-report.html b/build/reports/problems/problems-report.html deleted file mode 100644 index 1dd6e085..00000000 --- a/build/reports/problems/problems-report.html +++ /dev/null @@ -1,659 +0,0 @@ - - - - - - - - - - - - - Gradle Configuration Cache - - - -
- -
- Loading... -
- - - - - - diff --git a/gradle.properties b/gradle.properties index a04c481c..408d35d3 100644 --- a/gradle.properties +++ b/gradle.properties @@ -2,7 +2,7 @@ # Bundle configuration bundle.name = postgresql -bundle.release = 2025.7.2 +bundle.release = 2025.3.8 bundle.type = bins bundle.format = 7z diff --git a/releases.properties b/releases.properties index cd4508ad..052feeab 100644 --- a/releases.properties +++ b/releases.properties @@ -1,16 +1,20 @@ +18.3 = https://github.com/Bearsampp/module-postgresql/releases/download/2026.3.8/bearsampp-postgresql-18.3-2025.3.8.7z 18.1 = https://github.com/Bearsampp/module-postgresql/releases/download/2025.11.22/bearsampp-postgresql-18.1-2025.7.2.7z +17.9 = https://github.com/Bearsampp/module-postgresql/releases/download/2026.3.8/bearsampp-postgresql-17.9-2025.3.8.7z 17.7 = https://github.com/Bearsampp/module-postgresql/releases/download/2025.11.22/bearsampp-postgresql-17.7-2025.7.2.7z 17.5 = https://github.com/Bearsampp/module-postgresql/releases/download/2025.7.2/bearsampp-postgresql-17.5-2025.7.2.7z 17.4 = https://github.com/Bearsampp/module-postgresql/releases/download/2025.2.21/bearsampp-postgresql-17.4-2025.2.21.7z 17.2.3 = https://github.com/Bearsampp/module-postgresql/releases/download/2025.2.13/bearsampp-postgresql-17.2.3-2025.2.13.7z 17.2.1 = https://github.com/Bearsampp/module-postgresql/releases/download/2024.12.1/bearsampp-postgresql-17.2.1-2024.12.1.7z 17.0-RC1 = https://github.com/Bearsampp/module-postgresql/releases/download/2024.9.18/bearsampp-postgresql-17.0-RC1-2024.9.18.7z +16.13 = https://github.com/Bearsampp/module-postgresql/releases/download/2026.3.8/bearsampp-postgresql-16.13-2025.3.8.7z 16.11 = https://github.com/Bearsampp/module-postgresql/releases/download/2025.11.22/bearsampp-postgresql-16.11-2025.7.2.7z 16.9 = https://github.com/Bearsampp/module-postgresql/releases/download/2025.7.2/bearsampp-postgresql-16.9-2025.7.2.7z 16.8 = https://github.com/Bearsampp/module-postgresql/releases/download/2025.2.21/bearsampp-postgresql-16.8-2025.2.21.7z 16.4 = https://github.com/Bearsampp/module-postgresql/releases/download/2024.9.18/bearsampp-postgresql-16.4-2024.9.18.7z 16.2 = https://github.com/Bearsampp/module-postgresql/releases/download/2024.4.16/bearsampp-postgresql-16.2-2024.4.16.7z 16.0 = https://github.com/Bearsampp/module-postgresql/releases/download/2023.10.9/bearsampp-postgresql-16.0-2023.10.9.7z +15.17 = https://github.com/Bearsampp/module-postgresql/releases/download/2026.3.8/bearsampp-postgresql-15.17-2025.3.8.7z 15.15 = https://github.com/Bearsampp/module-postgresql/releases/download/2025.11.22/bearsampp-postgresql-15.15-2025.7.2.7z 15.13 = https://github.com/Bearsampp/module-postgresql/releases/download/2025.7.2/bearsampp-postgresql-15.13-2025.7.2.7z 15.12 = https://github.com/Bearsampp/module-postgresql/releases/download/2025.2.21/bearsampp-postgresql-15.12-2025.2.21.7z @@ -19,6 +23,7 @@ 15.3 = https://github.com/Bearsampp/module-postgresql/releases/download/2023.7.23/bearsampp-postgresql-15.3-2023.7.23.7z 15.2 = https://github.com/Bearsampp/module-postgresql/releases/download/2023.4.20/bearsampp-postgresql-15.2-2023.4.24.7z 15.0 = https://github.com/Bearsampp/module-postgresql/releases/download/2022.10.28/bearsampp-postgresql-15.0-2022.10.28.7z +14.22 = https://github.com/Bearsampp/module-postgresql/releases/download/2026.3.8/bearsampp-postgresql-14.22-2025.3.8.7z 14.20 = https://github.com/Bearsampp/module-postgresql/releases/download/2025.11.22/bearsampp-postgresql-14.20-2025.7.2.7z 14.18 = https://github.com/Bearsampp/module-postgresql/releases/download/2025.7.2/bearsampp-postgresql-14.18-2025.7.2.7z 14.17 = https://github.com/Bearsampp/module-postgresql/releases/download/2025.2.21/bearsampp-postgresql-14.17-2025.2.21.7z