Skip to content

Commit

Permalink
Merge pull request #10 from Bearsampp/July
Browse files Browse the repository at this point in the history
july updates
  • Loading branch information
jwaisner authored Jul 23, 2023
2 parents 60e3c10 + d3ca500 commit 17a68e6
Show file tree
Hide file tree
Showing 29 changed files with 252 additions and 19 deletions.
4 changes: 2 additions & 2 deletions bin/postgresql11.17/bearsampp.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ 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"
postgresqlAltConf = "postgresql.conf"
postgresqlAltUserConf = "pg_hba.conf"
postgresqlPort = "5432"
postgresqlRootUser = "postgres"
postgresqlRootPwd = ""
Expand Down
14 changes: 14 additions & 0 deletions bin/postgresql11.20/bearsampp.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
postgresqlVersion = "11.20"
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"
postgresqlAltUserConf = "pg_hba.conf"
postgresqlPort = "5432"
postgresqlRootUser = "postgres"
postgresqlRootPwd = ""

bundleRelease = "@RELEASE_VERSION@"
File renamed without changes.
File renamed without changes.
35 changes: 35 additions & 0 deletions bin/postgresql11.20/postgresql.conf.ber
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
#------------------------------------------------------------------------------
# FILE LOCATIONS
#------------------------------------------------------------------------------
data_directory = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql11.20/data'
hba_file = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql11.20/data/pg_hba.conf'
ident_file = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql11.20/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
4 changes: 2 additions & 2 deletions bin/postgresql11.3/bearsampp.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ 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"
postgresqlAltConf = "postgresql.conf"
postgresqlAltUserConf = "pg_hba.conf"
postgresqlPort = "5432"
postgresqlRootUser = "postgres"
postgresqlRootPwd = ""
Expand Down
4 changes: 2 additions & 2 deletions bin/postgresql12.12/bearsampp.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ 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"
postgresqlAltConf = "postgresql.conf"
postgresqlAltUserConf = "pg_hba.conf"
postgresqlPort = "5432"
postgresqlRootUser = "postgres"
postgresqlRootPwd = ""
Expand Down
14 changes: 14 additions & 0 deletions bin/postgresql12.15/bearsampp.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
postgresqlVersion = "12.15"
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"
postgresqlAltUserConf = "pg_hba.conf"
postgresqlPort = "5432"
postgresqlRootUser = "postgres"
postgresqlRootPwd = ""

bundleRelease = "@RELEASE_VERSION@"
5 changes: 5 additions & 0 deletions bin/postgresql12.15/init.bat
Original file line number Diff line number Diff line change
@@ -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"
3 changes: 3 additions & 0 deletions bin/postgresql12.15/pg_hba.conf.ber
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# TYPE DATABASE USER ADDRESS METHOD
host all all 127.0.0.1/32 trust
host all all ::1/128 trust
35 changes: 35 additions & 0 deletions bin/postgresql12.15/postgresql.conf.ber
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
#------------------------------------------------------------------------------
# FILE LOCATIONS
#------------------------------------------------------------------------------
data_directory = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql12.15/data'
hba_file = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql12.15/data/pg_hba.conf'
ident_file = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql12.15/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
14 changes: 14 additions & 0 deletions bin/postgresql13.11/bearsampp.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
postgresqlVersion = "13.11"
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"
postgresqlAltUserConf = "pg_hba.conf"
postgresqlPort = "5432"
postgresqlRootUser = "postgres"
postgresqlRootPwd = ""

bundleRelease = "@RELEASE_VERSION@"
5 changes: 5 additions & 0 deletions bin/postgresql13.11/init.bat
Original file line number Diff line number Diff line change
@@ -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"
3 changes: 3 additions & 0 deletions bin/postgresql13.11/pg_hba.conf.ber
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# TYPE DATABASE USER ADDRESS METHOD
host all all 127.0.0.1/32 trust
host all all ::1/128 trust
35 changes: 35 additions & 0 deletions bin/postgresql13.11/postgresql.conf.ber
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
#------------------------------------------------------------------------------
# FILE LOCATIONS
#------------------------------------------------------------------------------
data_directory = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql13.11/data'
hba_file = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql13.11/data/pg_hba.conf'
ident_file = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql13.11/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
4 changes: 2 additions & 2 deletions bin/postgresql13.7/bearsampp.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ 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"
postgresqlAltConf = "postgresql.conf"
postgresqlAltUserConf = "pg_hba.conf"
postgresqlPort = "5432"
postgresqlRootUser = "postgres"
postgresqlRootPwd = ""
Expand Down
4 changes: 2 additions & 2 deletions bin/postgresql13.8/bearsampp.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ 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"
postgresqlAltConf = "postgresql.conf"
postgresqlAltUserConf = "pg_hba.conf"
postgresqlPort = "5432"
postgresqlRootUser = "postgres"
postgresqlRootPwd = ""
Expand Down
4 changes: 2 additions & 2 deletions bin/postgresql14.4/bearsampp.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ 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"
postgresqlAltConf = "postgresql.conf"
postgresqlAltUserConf = "pg_hba.conf"
postgresqlPort = "5432"
postgresqlRootUser = "postgres"
postgresqlRootPwd = ""
Expand Down
4 changes: 2 additions & 2 deletions bin/postgresql14.5/bearsampp.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ 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"
postgresqlAltConf = "postgresql.conf"
postgresqlAltUserConf = "pg_hba.conf"
postgresqlPort = "5432"
postgresqlRootUser = "postgres"
postgresqlRootPwd = ""
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
postgresqlVersion = "15.0"
postgresqlVersion = "14.8"
postgresqlCtlExe = "bin/pg_ctl.exe"
postgresqlCliExe = "bin/psql.exe"
postgresqlDumpExe = "bin/pg_dump.exe"
Expand Down
5 changes: 5 additions & 0 deletions bin/postgresql14.8/init.bat
Original file line number Diff line number Diff line change
@@ -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"
3 changes: 3 additions & 0 deletions bin/postgresql14.8/pg_hba.conf.ber
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# TYPE DATABASE USER ADDRESS METHOD
host all all 127.0.0.1/32 trust
host all all ::1/128 trust
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#------------------------------------------------------------------------------
# FILE LOCATIONS
#------------------------------------------------------------------------------
data_directory = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql15.0/data'
hba_file = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql15.0/data/pg_hba.conf'
ident_file = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql15.0/data/pg_ident.conf'
data_directory = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql14.8/data'
hba_file = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql14.8/data/pg_hba.conf'
ident_file = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql14.8/data/pg_ident.conf'

#------------------------------------------------------------------------------
# CONNECTIONS AND AUTHENTICATION
Expand Down
14 changes: 14 additions & 0 deletions bin/postgresql15.3/bearsampp.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
postgresqlVersion = "15.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@"
5 changes: 5 additions & 0 deletions bin/postgresql15.3/init.bat
Original file line number Diff line number Diff line change
@@ -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"
3 changes: 3 additions & 0 deletions bin/postgresql15.3/pg_hba.conf.ber
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# TYPE DATABASE USER ADDRESS METHOD
host all all 127.0.0.1/32 trust
host all all ::1/128 trust
35 changes: 35 additions & 0 deletions bin/postgresql15.3/postgresql.conf.ber
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
#------------------------------------------------------------------------------
# FILE LOCATIONS
#------------------------------------------------------------------------------
data_directory = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql15.3/data'
hba_file = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql15.3/data/pg_hba.conf'
ident_file = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql15.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
2 changes: 1 addition & 1 deletion build.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
bundle.name = postgresql
bundle.release = 2023.4.20
bundle.release = 2023.7.23
bundle.type = bins
bundle.format = 7z

Expand Down
5 changes: 5 additions & 0 deletions releases.properties
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
11.3 = https://github.com/Bearsampp/module-postgresql/releases/download/2022.07.16/bearsampp-postgresql-11.3-2022.07.16.7z
11.17 = https://github.com/Bearsampp/module-postgresql/releases/download/2022.08.28/bearsampp-postgresql-11.17-2022.08.04.7z
11.20 = https://github.com/Bearsampp/module-postgresql/releases/download/2023.7.23/bearsampp-postgresql-11.20-2023.7.23.7z
12.12 = https://github.com/Bearsampp/module-postgresql/releases/download/2022.08.28/bearsampp-postgresql-12.12-2022.08.04.7z
12.15 = https://github.com/Bearsampp/module-postgresql/releases/download/2023.7.23/bearsampp-postgresql-12.15-2023.7.23.7z
13.7 = https://github.com/Bearsampp/module-postgresql/releases/download/2022.08.04/bearsampp-postgresql-13.7-2022.08.04.7z
13.8 = https://github.com/Bearsampp/module-postgresql/releases/download/2022.08.28/bearsampp-postgresql-13.8-2022.08.04.7z
13.11 = https://github.com/Bearsampp/module-postgresql/releases/download/2023.7.23/bearsampp-postgresql-13.11-2023.7.23.7z
14.4 = https://github.com/Bearsampp/module-postgresql/releases/download/2022.08.04/bearsampp-postgresql-14.4-2022.08.04.7z
14.5 = https://github.com/Bearsampp/module-postgresql/releases/download/2022.08.28/bearsampp-postgresql-14.5-2022.08.28.7z
14.8 = https://github.com/Bearsampp/module-postgresql/releases/download/2023.7.23/bearsampp-postgresql-14.8-2023.7.23.7z
15.0 = https://github.com/Bearsampp/module-postgresql/releases/download/2022.10.28/bearsampp-postgresql-15.0-2022.10.28.7z
15.2 = https://github.com/Bearsampp/module-postgresql/releases/download/2023.4.20/bearsampp-postgresql-15.2-2023.4.24.7z
15.3 = https://github.com/Bearsampp/module-postgresql/releases/download/2023.7.23/bearsampp-postgresql-15.3-2023.7.23.7z

0 comments on commit 17a68e6

Please sign in to comment.