Skip to content

Releases: gobackup/gobackup

v2.11.2

24 May 08:42
2e456b9
Compare
Choose a tag to compare

Changelog

  • 2e456b9 Update Web host config default to: 0.0.0.0 for let docker deploy can open from Host server. (#248)
  • 7c54bcb Fix backup fails when scp storage and split features are used together (#247)
  • 17e429a Bump google.golang.org/protobuf from 1.29.0 to 1.33.0 (#239)
  • 4435d4c Bump golang.org/x/net from 0.17.0 to 0.23.0 (#242)

v2.11.1

05 Mar 02:16
43ba3e8
Compare
Choose a tag to compare

Changelog

  • 43ba3e8 Fix etcd endpoint config, deprecated endpoints, use endpoint instead.

v2.11.0

29 Feb 01:55
f50334a
Compare
Choose a tag to compare

What's Changed

  • feat: Improve MongoDB database to support use uri to support MongoDB Atlas. by @1k-off in #227

New Contributors

Full Changelog: v2.10.0...v2.11.0

v2.10.0

01 Feb 01:35
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.9.0...v2.10.0

v2.9.0

22 Jan 06:18
Compare
Choose a tag to compare

What's Changed

  • Add endpoint configuration for Telegram. by @antonchen in #218
  • Add before_script, after_script to model to write hooks around the model performing. by @huacnlee in #223

The before_script and after_script config for let us to special that run script before or after this model perform backup.

This is useful when you want to do something complex workflow, e.g.:

  1. Stop database service;
  2. Backup;
  3. Start database service again.
models:
  my_app:
    before_script: |
      # Stop database service
      systemctl stop mysql
    after_script: |
      # Start database service
      systemctl start mysql
    databases:
      mysql:
        type: mysql
        host: localhost
        database: my_app_production
        username: root

New Contributors

Full Changelog: v2.8.0...v2.9.0

v2.8.0

11 Jan 03:19
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.7.0...v2.8.0

v2.7.0

06 Dec 01:40
Compare
Choose a tag to compare

What's Changed

  • feat: Add to support InfluxDB v2 (#201)
  • fix: directory typo (#190)

v2.6.0

03 Aug 03:42
f20141c
Compare
Choose a tag to compare

Changelog

v2.5.2

19 Jul 08:42
Compare
Choose a tag to compare

Changelog

  • 62bd185 Fix #183 R2 storage-class header not support error again.

v2.5.1

19 Jul 02:44
Compare
Choose a tag to compare

Changelog

  • 96af0a2 Fix #179 MinIO list backup files error.
  • 32b3257 Improve config file to use absolute config path, to fix reload config path not found error.
  • 4b997ce Add more contributing guide
  • c345f9a Fix #176 Scheduler not reload when config changed.
  • c006b6d Improve config file to use absolute config path, to fix reload config path not found error.
  • 685f19b Fix #180 for avoid Redis invoke SAVE when mode is copy.
  • 814c2f1 Fix #183 R2 storage_class error.