diff --git a/CHANGELOG.md b/CHANGELOG.md index ce3649f..2d7e664 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,16 @@ # Changelog +## r4 (2019/05/24) + +* PostgreSQL 9.4.22, 9.5.17, 9.6.13, 10.8, 11.3 (Issue neard/neard#418) + ## r3 (2017/05/30) -* New bundles : 9.2.21, 9.3.17, 9.4.12, 9.5.7, 9.6.3 (Issue neard/neard#268) +* PostgreSQL 9.2.21, 9.3.17, 9.4.12, 9.5.7, 9.6.3 (Issue neard/neard#268) ## r2 (2016/12/01) -* New bundles : 9.1.24, 9.2.19, 9.3.15, 9.4.10, 9.5.5, 9.6.1 (Issue neard/neard#176) +* PostgreSQL 9.1.24, 9.2.19, 9.3.15, 9.4.10, 9.5.5, 9.6.1 (Issue neard/neard#176) ## r1 (2016/10/12) diff --git a/bin/postgresql10.8/init.bat b/bin/postgresql10.8/init.bat new file mode 100644 index 0000000..aaf5e97 --- /dev/null +++ b/bin/postgresql10.8/init.bat @@ -0,0 +1,5 @@ +@ECHO OFF + +%~dp0bin\initdb.exe -U postgres -A trust -E utf8 -D "%~dp0data" > "~NEARD_WIN_PATH~\logs\postgresql-install.log" 2>&1 +copy /y "%~dp0postgresql.conf.nrd" "%~dp0data\postgresql.conf" +copy /y "%~dp0pg_hba.conf.nrd" "%~dp0data\pg_hba.conf" diff --git a/bin/postgresql10.8/neard.conf b/bin/postgresql10.8/neard.conf new file mode 100644 index 0000000..c9ae0cf --- /dev/null +++ b/bin/postgresql10.8/neard.conf @@ -0,0 +1,14 @@ +postgresqlVersion = "10.8" +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.nrd" +postgresqlAltUserConf = "pg_hba.conf.nrd" +postgresqlPort = "5432" +postgresqlRootUser = "postgres" +postgresqlRootPwd = "" + +bundleRelease = "@RELEASE_VERSION@" diff --git a/bin/postgresql10.8/pg_hba.conf.nrd b/bin/postgresql10.8/pg_hba.conf.nrd new file mode 100644 index 0000000..0f5b3e0 --- /dev/null +++ b/bin/postgresql10.8/pg_hba.conf.nrd @@ -0,0 +1,2 @@ +# TYPE DATABASE USER ADDRESS METHOD +host all all 127.0.0.1/32 trust diff --git a/bin/postgresql10.8/postgresql.conf.nrd b/bin/postgresql10.8/postgresql.conf.nrd new file mode 100644 index 0000000..27eccc2 --- /dev/null +++ b/bin/postgresql10.8/postgresql.conf.nrd @@ -0,0 +1,35 @@ +#------------------------------------------------------------------------------ +# FILE LOCATIONS +#------------------------------------------------------------------------------ +data_directory = '~NEARD_LIN_PATH~/bin/postgresql/postgresql10.8/data' +hba_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql10.8/data/pg_hba.conf' +ident_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql10.8/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 = '~NEARD_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/postgresql11.3/init.bat b/bin/postgresql11.3/init.bat new file mode 100644 index 0000000..aaf5e97 --- /dev/null +++ b/bin/postgresql11.3/init.bat @@ -0,0 +1,5 @@ +@ECHO OFF + +%~dp0bin\initdb.exe -U postgres -A trust -E utf8 -D "%~dp0data" > "~NEARD_WIN_PATH~\logs\postgresql-install.log" 2>&1 +copy /y "%~dp0postgresql.conf.nrd" "%~dp0data\postgresql.conf" +copy /y "%~dp0pg_hba.conf.nrd" "%~dp0data\pg_hba.conf" diff --git a/bin/postgresql11.3/neard.conf b/bin/postgresql11.3/neard.conf new file mode 100644 index 0000000..7396fc1 --- /dev/null +++ b/bin/postgresql11.3/neard.conf @@ -0,0 +1,14 @@ +postgresqlVersion = "11.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.nrd" +postgresqlAltUserConf = "pg_hba.conf.nrd" +postgresqlPort = "5432" +postgresqlRootUser = "postgres" +postgresqlRootPwd = "" + +bundleRelease = "@RELEASE_VERSION@" diff --git a/bin/postgresql11.3/pg_hba.conf.nrd b/bin/postgresql11.3/pg_hba.conf.nrd new file mode 100644 index 0000000..0f5b3e0 --- /dev/null +++ b/bin/postgresql11.3/pg_hba.conf.nrd @@ -0,0 +1,2 @@ +# TYPE DATABASE USER ADDRESS METHOD +host all all 127.0.0.1/32 trust diff --git a/bin/postgresql11.3/postgresql.conf.nrd b/bin/postgresql11.3/postgresql.conf.nrd new file mode 100644 index 0000000..d8aafe8 --- /dev/null +++ b/bin/postgresql11.3/postgresql.conf.nrd @@ -0,0 +1,35 @@ +#------------------------------------------------------------------------------ +# FILE LOCATIONS +#------------------------------------------------------------------------------ +data_directory = '~NEARD_LIN_PATH~/bin/postgresql/postgresql11.3/data' +hba_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql11.3/data/pg_hba.conf' +ident_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql11.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 = '~NEARD_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/postgresql9.4.22/init.bat b/bin/postgresql9.4.22/init.bat new file mode 100644 index 0000000..aaf5e97 --- /dev/null +++ b/bin/postgresql9.4.22/init.bat @@ -0,0 +1,5 @@ +@ECHO OFF + +%~dp0bin\initdb.exe -U postgres -A trust -E utf8 -D "%~dp0data" > "~NEARD_WIN_PATH~\logs\postgresql-install.log" 2>&1 +copy /y "%~dp0postgresql.conf.nrd" "%~dp0data\postgresql.conf" +copy /y "%~dp0pg_hba.conf.nrd" "%~dp0data\pg_hba.conf" diff --git a/bin/postgresql9.4.22/neard.conf b/bin/postgresql9.4.22/neard.conf new file mode 100644 index 0000000..7ef54d1 --- /dev/null +++ b/bin/postgresql9.4.22/neard.conf @@ -0,0 +1,14 @@ +postgresqlVersion = "9.4.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.nrd" +postgresqlAltUserConf = "pg_hba.conf.nrd" +postgresqlPort = "5432" +postgresqlRootUser = "postgres" +postgresqlRootPwd = "" + +bundleRelease = "@RELEASE_VERSION@" diff --git a/bin/postgresql9.4.22/pg_hba.conf.nrd b/bin/postgresql9.4.22/pg_hba.conf.nrd new file mode 100644 index 0000000..0f5b3e0 --- /dev/null +++ b/bin/postgresql9.4.22/pg_hba.conf.nrd @@ -0,0 +1,2 @@ +# TYPE DATABASE USER ADDRESS METHOD +host all all 127.0.0.1/32 trust diff --git a/bin/postgresql9.4.22/postgresql.conf.nrd b/bin/postgresql9.4.22/postgresql.conf.nrd new file mode 100644 index 0000000..98e1a8f --- /dev/null +++ b/bin/postgresql9.4.22/postgresql.conf.nrd @@ -0,0 +1,35 @@ +#------------------------------------------------------------------------------ +# FILE LOCATIONS +#------------------------------------------------------------------------------ +data_directory = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.4.22/data' +hba_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.4.22/data/pg_hba.conf' +ident_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.4.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 = '~NEARD_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/postgresql9.5.17/init.bat b/bin/postgresql9.5.17/init.bat new file mode 100644 index 0000000..aaf5e97 --- /dev/null +++ b/bin/postgresql9.5.17/init.bat @@ -0,0 +1,5 @@ +@ECHO OFF + +%~dp0bin\initdb.exe -U postgres -A trust -E utf8 -D "%~dp0data" > "~NEARD_WIN_PATH~\logs\postgresql-install.log" 2>&1 +copy /y "%~dp0postgresql.conf.nrd" "%~dp0data\postgresql.conf" +copy /y "%~dp0pg_hba.conf.nrd" "%~dp0data\pg_hba.conf" diff --git a/bin/postgresql9.5.17/neard.conf b/bin/postgresql9.5.17/neard.conf new file mode 100644 index 0000000..3a42088 --- /dev/null +++ b/bin/postgresql9.5.17/neard.conf @@ -0,0 +1,14 @@ +postgresqlVersion = "9.5.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.nrd" +postgresqlAltUserConf = "pg_hba.conf.nrd" +postgresqlPort = "5432" +postgresqlRootUser = "postgres" +postgresqlRootPwd = "" + +bundleRelease = "@RELEASE_VERSION@" diff --git a/bin/postgresql9.5.17/pg_hba.conf.nrd b/bin/postgresql9.5.17/pg_hba.conf.nrd new file mode 100644 index 0000000..0f5b3e0 --- /dev/null +++ b/bin/postgresql9.5.17/pg_hba.conf.nrd @@ -0,0 +1,2 @@ +# TYPE DATABASE USER ADDRESS METHOD +host all all 127.0.0.1/32 trust diff --git a/bin/postgresql9.5.17/postgresql.conf.nrd b/bin/postgresql9.5.17/postgresql.conf.nrd new file mode 100644 index 0000000..b765ce5 --- /dev/null +++ b/bin/postgresql9.5.17/postgresql.conf.nrd @@ -0,0 +1,35 @@ +#------------------------------------------------------------------------------ +# FILE LOCATIONS +#------------------------------------------------------------------------------ +data_directory = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.5.17/data' +hba_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.5.17/data/pg_hba.conf' +ident_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.5.17/data/pg_ident.conf' + +#------------------------------------------------------------------------------ +# CONNECTIONS AND AUTHENTICATION +#------------------------------------------------------------------------------ +listen_addresses = '*' +port = 5452 +max_connections = 100 + +#------------------------------------------------------------------------------ +# RESOURCE USAGE (except WAL) +#------------------------------------------------------------------------------ +shared_buffers = 52MB + +#------------------------------------------------------------------------------ +# ERROR REPORTING AND LOGGING +#------------------------------------------------------------------------------ +log_destination = 'stderr' +logging_collector = on +log_directory = '~NEARD_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/postgresql9.6.13/init.bat b/bin/postgresql9.6.13/init.bat new file mode 100644 index 0000000..aaf5e97 --- /dev/null +++ b/bin/postgresql9.6.13/init.bat @@ -0,0 +1,5 @@ +@ECHO OFF + +%~dp0bin\initdb.exe -U postgres -A trust -E utf8 -D "%~dp0data" > "~NEARD_WIN_PATH~\logs\postgresql-install.log" 2>&1 +copy /y "%~dp0postgresql.conf.nrd" "%~dp0data\postgresql.conf" +copy /y "%~dp0pg_hba.conf.nrd" "%~dp0data\pg_hba.conf" diff --git a/bin/postgresql9.6.13/neard.conf b/bin/postgresql9.6.13/neard.conf new file mode 100644 index 0000000..ed60ec9 --- /dev/null +++ b/bin/postgresql9.6.13/neard.conf @@ -0,0 +1,14 @@ +postgresqlVersion = "9.6.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.nrd" +postgresqlAltUserConf = "pg_hba.conf.nrd" +postgresqlPort = "5432" +postgresqlRootUser = "postgres" +postgresqlRootPwd = "" + +bundleRelease = "@RELEASE_VERSION@" diff --git a/bin/postgresql9.6.13/pg_hba.conf.nrd b/bin/postgresql9.6.13/pg_hba.conf.nrd new file mode 100644 index 0000000..0f5b3e0 --- /dev/null +++ b/bin/postgresql9.6.13/pg_hba.conf.nrd @@ -0,0 +1,2 @@ +# TYPE DATABASE USER ADDRESS METHOD +host all all 127.0.0.1/32 trust diff --git a/bin/postgresql9.6.13/postgresql.conf.nrd b/bin/postgresql9.6.13/postgresql.conf.nrd new file mode 100644 index 0000000..4fb4fd2 --- /dev/null +++ b/bin/postgresql9.6.13/postgresql.conf.nrd @@ -0,0 +1,35 @@ +#------------------------------------------------------------------------------ +# FILE LOCATIONS +#------------------------------------------------------------------------------ +data_directory = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.6.13/data' +hba_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.6.13/data/pg_hba.conf' +ident_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.6.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 = '~NEARD_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.properties b/build.properties index f1e57d9..bfb8dbc 100644 --- a/build.properties +++ b/build.properties @@ -1,5 +1,5 @@ bundle.name = postgresql -bundle.release = r3 +bundle.release = r4 bundle.type = bins bundle.format = 7z diff --git a/releases.properties b/releases.properties index b98eeee..5e954b5 100644 --- a/releases.properties +++ b/releases.properties @@ -9,9 +9,14 @@ 9.4.8 = https://github.com/neard/module-postgresql/releases/download/r1/neard-postgresql-9.4.8-r1.7z 9.4.10 = https://github.com/neard/module-postgresql/releases/download/r2/neard-postgresql-9.4.10-r2.7z 9.4.12 = https://github.com/neard/module-postgresql/releases/download/r3/neard-postgresql-9.4.12-r3.7z +9.4.22 = https://github.com/neard/module-postgresql/releases/download/r4/neard-postgresql-9.4.22-r4.7z 9.5.3 = https://github.com/neard/module-postgresql/releases/download/r1/neard-postgresql-9.5.3-r1.7z 9.5.5 = https://github.com/neard/module-postgresql/releases/download/r2/neard-postgresql-9.5.5-r2.7z 9.5.7 = https://github.com/neard/module-postgresql/releases/download/r3/neard-postgresql-9.5.7-r3.7z +9.5.17 = https://github.com/neard/module-postgresql/releases/download/r4/neard-postgresql-9.5.17-r4.7z 9.6.0 = https://github.com/neard/module-postgresql/releases/download/r1/neard-postgresql-9.6.0-r1.7z 9.6.1 = https://github.com/neard/module-postgresql/releases/download/r2/neard-postgresql-9.6.1-r2.7z 9.6.3 = https://github.com/neard/module-postgresql/releases/download/r3/neard-postgresql-9.6.3-r3.7z +9.6.13 = https://github.com/neard/module-postgresql/releases/download/r4/neard-postgresql-9.6.13-r4.7z +10.8 = https://github.com/neard/module-postgresql/releases/download/r4/neard-postgresql-10.8-r4.7z +11.3 = https://github.com/neard/module-postgresql/releases/download/r4/neard-postgresql-11.3-r4.7z \ No newline at end of file