- Add quiet mode with the commnad line option -q/--quiet. It takes precedence over verbose mode.
- Compute checksum of global and ACL files
- Add a dump of hba_file and ident_file
- Encrypt and decrypt produced files
- Ensure jobs option is greater than or equal to 1
- Better check and adapt to versions of pg_dump and pg_dumpall
- Upload files to AWS S3
- Upload files to a remote host with SFTP
- Upload files to Google Cloud Storage (GCS)
- Upload files to Azure Blob Storage
- Add a systemd timer for Debian in the package generated by goreleaser
- Check the syntax of the configuration file
- Always create a createdb.sql file for plain format instead of dumping with --create
- Use /var/run/postgresql as default host for connections
- Support Windows
- Force legacy timestamp format on Windows
- Allow postgresql URIs as connection strings
- Tell pg_dump and pg_dumpall never to prompt for a password
- Full rewrite in Go
- Better handling of configuration dump
- No need for pg_dumpacl anymore
- Long option names on the commandline
- New command line options:
- --bin-directory - path to the binaries of PostgreSQL
- --format - dump format
- --parallel-backup-jobs - jobs for directory format
- --compress - compression level for format that support it
- --pre-backup-hook - command to run before backups
- --post-backup-hook - command to run after backups
- keyword=value connection string support with the -d option
- Purge interval can be less than 1 day
- Allow concurrent pg_dump jobs
- Per database output directories using the {dbname} keyword in the path
- Per database configuration with schema and table inclusion/exclusion
- New configuration file format (ini) with an option to convert from the v1 format
- RFC 3339 time format in file name by default
- Use semver for version numbers
- Add a set of unit tests
Incompatible changes from v1:
- Configuration file format: use --convert-legacy-config to convert a v1 configuration file
- Fixed filename format with timestamp: either RFC 3339 or the default from v1 (YYYY-mm-dd_HH-MM-SS)
- Hook commands are parsed and split respecting shell quotes, and passed to fork/exec, not a to shell
- Add signature in Directory format
- Allow negative integer for PGBK_PURGE
- Fix dumping settings not using connection parameters
- Add a timeout when trying to pause replication on standby clusters
- Add pre/post-backup hooks
- Save to output of SHOW ALL to a file, to backup parameters
- Add optionnal checksum of dump files
- New default configuration file path (/etc/pg_back/pg_back.conf) with backward compatibility
- Some bugfixes and improvements
- Fix the purge not handling pg_dumpacl SQL file properly
- Improve documentation of the configuration file
- Improvements on support for pg_dumpacl (0.1 and 0.2)
- Support for pg_dumpacl (https://github.com/dalibo/pg_dumpacl)
- RPM Packaging
- Support PostgreSQL 10
- Ensure replication is not paused while an exclusive lock is taken
- Allow a retention policy based on time and number of backups
- Allow to disable purge
- Support pausing replication on standby servers
- Add timestamped information messages
- Support the directory format of pg_dump
- First release