Commit Graph

3599 Commits

Author SHA1 Message Date
Sameer Naik 1ca9893674 postgresql: bump image version to 9.6.2-r2 2017-03-23 12:22:02 +01:00
Sameer Naik c824259e9d postgresql: switch base-image source to `bitnami/minideb-extras` 2017-03-23 11:23:26 +01:00
Sameer Naik 2b623b5cd0 Merge branch 'issue-pr-template' 2017-03-07 17:27:51 +05:30
Sameer Naik 9cac2136c0 postgresql: replace the use of for formatting templates 2017-03-07 17:19:39 +05:30
Sameer Naik fe83092e11 Merge branch 'issue-pr-template' 2017-03-03 16:06:57 +05:30
Sameer Naik 7b09a08c6b postgresql: adds issue and pull-request template 2017-03-03 15:53:27 +05:30
Sameer Naik e175d104b8 Merge branch 'quay-project' 2017-03-03 09:47:36 +05:30
Sameer Naik 5c9f9fbeea postgresql: circle.yml update to add `QUAY_PROJECT` variable 2017-03-03 09:26:28 +05:30
Sameer Naik 558499973e Merge branch 'circle-update' 2017-02-22 18:26:15 +05:30
Sameer Naik e610cad841 circle: use `docker-development-image.sh` script 2017-02-22 17:46:56 +05:30
Sameer Naik d99c964515 Merge branch 'revision-9.6.2-r1' 2017-02-21 20:00:58 +05:30
Sameer Naik 9ddc67dc70 bump image version to 9.6.2-r1 2017-02-21 19:59:53 +05:30
Sameer Naik f611fcd36a Merge branch 'multi-release-series' 2017-02-21 19:48:14 +05:30
Sameer Naik 113ace333e update to `gcr.io/stacksmith-images/minideb:jessie-r10` 2017-02-21 15:03:44 +05:30
Sameer Naik f18377bbe5 postgresql: series 9.6 2017-02-21 12:06:30 +05:30
Sameer Naik 4f76d0392f Merge branch 'entrypoint-disambiguation 2017-02-14 16:36:47 +05:30
Sameer Naik e4e0a7b0af entrypoint: remove references to `entrypoint.sh` from base image 2017-02-14 16:17:19 +05:30
Sameer Naik ad67d1a729 config: move default config var to Dockerfile 2017-02-14 15:31:54 +05:30
Bitnami Bot 81916377de 9.6.2-r0 release
This release contains a variety of fixes from 9.6.1:
  - Fix a race condition that could cause indexes built with CREATE INDEX CONCURRENTLY to be corrupt
  - Ensure that the special snapshot used for catalog scans is not invalidated by premature data pruning
  - Fix incorrect WAL logging for BRIN indexes
  - Unconditionally WAL-log creation of the "init fork" for an unlogged table
  - If the stats collector dies during hot standby, restart it
  - Ensure that hot standby feedback works correctly when it's enabled at standby server start
  - Check for interrupts while hot standby is waiting for a conflicting query
  - Avoid constantly respawning the autovacuum launcher in a corner case
  - Disallow setting the num_sync field to zero in synchronous_standby_names
  - Don't count background worker processes against a user's connection limit
  - Fix check for when an extension member object can be dropped
  - Fix tracking of initial privileges for extension member objects so that it works correctly with ALTER EXTENSION ... ADD/DROP
  - Make sure ALTER TABLE preserves index tablespace assignments when rebuilding indexes
  - Fix incorrect updating of trigger function properties when changing a foreign-key constraint's deferrability properties with ALTER TABLE ... ALTER CONSTRAINT
  - Prevent dropping a foreign-key constraint if there are pending trigger events for the referenced relation
  - Fix ALTER TABLE ... SET DATA TYPE ... USING when child table has different column ordering than the parent
  - Fix processing of OID column when a table with OIDs is associated to a parent with OIDs via ALTER TABLE ... INHERIT
  - Ensure that CREATE TABLE ... LIKE ... WITH OIDS creates a table with OIDs, whether or not the LIKE-referenced table(s) have OIDs
  - Fix CREATE OR REPLACE VIEW to update the view query before attempting to apply the new view options
  - Report correct object identity during ALTER TEXT SEARCH CONFIGURATION
  - Fix commit timestamp mechanism to not fail when queried about the special XIDs FrozenTransactionId and BootstrapTransactionId
  - Fix incorrect use of view reloptions as regular table reloptions
  - Fix incorrect "target lists can have at most N entries" complaint when using ON CONFLICT with wide tables
  - Fix spurious "query provides a value for a dropped column" errors during INSERT or UPDATE on a table with a dropped column
  - Prevent multicolumn expansion of foo.* in an UPDATE source expression
  - Ensure that column typmods are determined accurately for multi-row VALUES constructs
  - Throw error for an unfinished Unicode surrogate pair at the end of a Unicode string
  - Fix execution of DISTINCT and ordered aggregates when multiple such aggregates are able to share the same transition state
  - Fix implementation of phrase search operators in tsquery
  - Ensure that a purely negative text search query, such as !foo, matches empty tsvectors
  - Prevent crash when ts_rewrite() replaces a non-top-level subtree with an empty query
  - Fix performance problems in ts_rewrite()
  - Fix ts_rewrite()'s handling of nested NOT operators
  - Improve speed of user-defined aggregates that use array_append() as transition function
  - Fix array_fill() to handle empty arrays properly
  - Fix possible crash in array_position() or array_positions() when processing arrays of records
  - Fix one-byte buffer overrun in quote_literal_cstr()
  - Prevent multiple calls of pg_start_backup() and pg_stop_backup() from running concurrently
  - Disable transform that attempted to remove no-op AT TIME ZONE conversions
  - Avoid discarding interval-to-interval casts that aren't really no-ops
  - Fix crash if the number of workers available to a parallel query decreases during a rescan
  - Fix bugs in transmitting GUC parameter values to parallel workers
  - Allow statements prepared with PREPARE to be given parallel plans
  - Fix incorrect generation of parallel plans for semi-joins
  - Fix planner's cardinality estimates for parallel joins
  - Fix planner to avoid trying to parallelize plan nodes containing initplans or subplans
  - Ensure that cached plans are invalidated by changes in foreign-table options
  - Fix the plan generated for sorted partial aggregation with a constant GROUP BY clause
  - Fix "could not find plan for CTE" planner error when dealing with a UNION ALL containing CTE references
  - Fix mishandling of initplans when forcibly adding a Material node to a subplan
  - Fix foreign-key-based join selectivity estimation for semi-joins and anti-joins, as well as inheritance cases
  - Fix pg_dump to emit the data of a sequence that is marked as an extension configuration table
  - Fix mishandling of ALTER DEFAULT PRIVILEGES ... REVOKE in pg_dump
  - Fix pg_dump to dump user-defined casts and transforms that use built-in functions
  - Fix pg_restore with --create --if-exists to behave more sanely if an archive contains unrecognized DROP commands
  - Fix pg_basebackup's rate limiting in the presence of slow I/O
  - Fix pg_basebackup's handling of symlinked pg_stat_tmp and pg_replslot subdirectories
  - Fix possible pg_basebackup failure on standby server when including WAL files
  - Improve initdb to insert the correct platform-specific default values for the xxx_flush_after parameters into postgresql.conf
  - Fix possible mishandling of expanded arrays in domain check constraints and CASE execution
  - Fix nested uses of PL/pgSQL functions in contexts such as domain check constraints evaluated during assignment to a PL/pgSQL variable
  - Ensure that the Python exception objects we create for PL/Python are properly reference-counted
  - Fix PL/Tcl to support triggers on tables that have .tupno as a column name
  - Allow DOS-style line endings in ~/.pgpass files, even on Unix
  - Fix one-byte buffer overrun if ecpg is given a file name that ends with a dot
  - Fix incorrect error reporting for duplicate data in psql's \crosstabview
  - Fix psql's tab completion for ALTER DEFAULT PRIVILEGES
  - Fix psql's tab completion for ALTER TABLE t ALTER c DROP ...
  - In psql, treat an empty or all-blank setting of the PAGER environment variable as meaning "no pager"
  - Improve contrib/dblink's reporting of low-level libpq errors, such as out-of-memory
  - Teach contrib/dblink to ignore irrelevant server options when it uses a contrib/postgres_fdw foreign server as the source of connection options
  - Previously, if the foreign server object had options that were not also libpq connection options, an error occurred.
  - Fix portability problems in contrib/pageinspect's functions for GIN indexes
  - Fix possible miss of socket read events while waiting on Windows
  - On Windows, ensure that environment variable changes are propagated to DLLs built with debug options
  - Sync our copy of the timezone library with IANA release tzcode2016j
  - Update time zone data files to tzdata release 2016j for DST law changes in northern Cyprus (adding a new zone Asia/Famagusta), Russia (adding a new zone Europe/Saratov), Tonga, and Antarctica/Casey. Historical corrections for Italy, Kazakhstan, Malta, and Palestine. Switch to preferring numeric zone abbreviations for Tonga.
2017-02-10 15:13:34 +00:00
Sameer Naik 0a8227a2b7 Merge branch 'update-gitignore' 2017-01-11 12:30:13 +05:30
Sameer Naik 89ba42a03a git: ignore `/local/` directory 2017-01-11 11:41:07 +05:30
Sameer Naik 87a65e6b4a Merge branch 'revision-9.6.1-r5' 2016-12-28 22:44:32 +05:30
Sameer Naik 5b3a388ee4 bump image version to 9.6.1-r5 2016-12-28 21:47:09 +05:30
Sameer Naik 859011285b Merge branch 'baseimage-minideb-jessie-r8' 2016-12-28 19:19:20 +05:30
Sameer Naik 8f71befd57 switch to `gcr.io/stacksmith-images/minideb:jessie-r8` 2016-12-28 18:25:28 +05:30
Sameer Naik 8752402916 Merge branch 'revision-9.6.1-r4' 2016-12-23 14:02:52 +05:30
Sameer Naik 3ff0cf8d1b bump image version to 9.6.1-r4 2016-12-23 13:00:29 +05:30
Sameer Naik f3f970d759 Merge branch 'circleci-test-infra' 2016-12-22 19:01:15 +05:30
Sameer Naik 915fac9842 updated `circle.yml` spec to use scripts from `bitnami/test-infra` repo 2016-12-22 16:01:23 +05:30
Sameer Naik 3097069aac switch to `gcr.io/stacksmith-images/minideb:jessie-r7` 2016-12-22 16:01:23 +05:30
Sameer Naik 6bc77b3f3a Merge branch 'remove-docker-links-usage' 2016-12-15 10:35:49 +05:30
Sameer Naik 913c84b173 replace use of docker links with docker networks 2016-12-09 19:12:59 +05:30
Sameer Naik 6284a50163 Merge branch 'revision-9.6.1-r3' 2016-12-08 20:46:34 +05:30
Sameer Naik 663893d076 bump image version to 9.6.1-r3 2016-12-08 20:25:16 +05:30
Sameer Naik 66218bbce0 Merge branch 'baseimage-minideb-jessie-r5' 2016-12-08 20:05:06 +05:30
Sameer Naik 81a940f15c update to `gcr.io/stacksmith-images/minideb:jessie-r5` 2016-12-08 19:59:44 +05:30
jotadrilo e0bb274ed9 Merge pull request #52 from jotadrilo/update-postgresql
replace the bundled common libraries with references to system packages
2016-12-06 17:16:34 +01:00
jdrios bfc0c45803 replace the bundled common libraries with references to system packages 2016-12-06 17:01:39 +01:00
Sameer Naik efb50aa9f0 Merge pull request #51 from prydonius/remove-chown
entrypoint: remove unnecessary chown
2016-11-20 17:43:36 +05:30
Adnan Abdulhussein 225d9ecfb4 entrypoint: remove unnecessary chown 2016-11-18 14:15:37 -08:00
Sameer Naik 9d97ebaaf4 release postgresql-9.6.1-r1 2016-11-16 11:36:04 +05:30
Sameer Naik fde7aee679 bump image version to 9.6.1-r1 2016-11-16 11:29:23 +05:30
Sameer Naik c25c849e0d switch to `gcr.io/stacksmith-images/minideb:jessie-r2` 2016-11-09 11:12:01 +05:30
Sameer Naik 90658ede8c switch to `gcr.io/stacksmith-images/minideb:jessie-r1` 2016-11-09 11:12:01 +05:30
Sameer Naik c3fc8c7fe2 switch to `gcr.io/stacksmith-images/minideb:jessie-r0` 2016-11-09 11:12:01 +05:30
Sameer Naik 44a44f3e44 Merge pull request #50 from sameersbn/add-compose
Add compose
2016-11-08 16:55:46 +05:30
Sameer Naik 1a8a5717d1 readme: updated docker-compose.yml snippets to v2 format 2016-11-08 15:49:26 +05:30
Sameer Naik 605fb0c80e adds docker-compose-replication.yml 2016-11-08 15:44:36 +05:30
Sameer Naik 1240c38816 adds docker-compose.yml 2016-11-08 15:44:35 +05:30
Sameer Naik 460c40772f Merge pull request #49 from prydonius/update-stacksmith
ci: push update to stacksmith
2016-11-01 09:38:37 +05:30