Skip to content

Commit

Permalink
Prepare for release 1.4.1 (#543)
Browse files Browse the repository at this point in the history
Edit version number in defaults.h and edit CHANGELOG for the new version.
  • Loading branch information
DimCitus committed Dec 3, 2020
1 parent 4fd46d5 commit 667448d
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 2 deletions.
36 changes: 36 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,39 @@
### pg_auto_failover v1.4.1 (December 3, 2020) ###

This is a bugfix release for v1.4.0

#### Added
* Implement HBA hostname DNS checks, and warn users when needed. [#458]
* Make it obvious when an extension is missing. [#475]

#### Changed
* Refrain from using FIRST %d in synchronous_standby_names. [#461]
* Always use node id and node name in messages. [#462]

#### Fixed
* Force closing the connection used to check replication slots. [#451]
* Fix when to ProceedWithMSFailover after a candidate is selected. [#439]
* Ensure that the monitor owns the Postgres (sub-)process. [#455]
* Avoid a race condition between file_exists() and read_file(). [#460]
* Review memory/malloc errors and potential leaks. [#478]
* Review APPLY_SETTINGS transitions in cases including node removal. [#480]
* Fix when we switch synchronous_standby_names to '*'. [#488]
* Fix hostname discovery [#479]
* Fix non default formation [#489]
* Review when to assign catching-up on unhealthy secondary. [#493]
* Fix race conditions in multiple-standby Group FSM for failover. [#499]
* Fix synchronous_standby_names when disabling maintenance. [#502]
* Fix debian stats temp directory [#504]
* Use PG_CONFIG has a hint to choose one of multiple Postgres versions. [#510]
* Fix build for *BSD [#519]
* Refrain from considering a WAIT_STANDBY node unhealthy. [#524]
* Allow a DEMOTED primary to come back to a new wait/join/primary. [#524]
* Fix pg_autoctl show standby-names. [#524]
* Fix unhealthy nodes processing when wait_primary. [#521]
* Fix FSM when a non-candidate node is back online. [#533]
* Fix assigning catchingup to unhealthy secondaries. [#534]
* Fix pg_autoctl set formation number-sync-standbys log output. [#536]

### pg_auto_failover v1.4.0 (September 23, 2020) ###

The main focus of this release is the new capability of pg_auto_failover to
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -71,7 +71,7 @@ def __init__(self, **options):
# The short X.Y version.
version = '1.4'
# The full version, including alpha/beta/rc tags.
release = '1.4.0'
release = '1.4.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion src/bin/pg_autoctl/defaults.h
Expand Up @@ -14,7 +14,7 @@
#define PG_AUTOCTL_STATE_VERSION 1

/* additional version information for printing version on CLI */
#define PG_AUTOCTL_VERSION "1.4"
#define PG_AUTOCTL_VERSION "1.4.1"

/* version of the extension that we requite to talk to on the monitor */
#define PG_AUTOCTL_EXTENSION_VERSION "1.4"
Expand Down

0 comments on commit 667448d

Please sign in to comment.