Releases: jorijn/bitcoin-dca
Releases · jorijn/bitcoin-dca
v1.6.2
What's Changed
- Bump docker/metadata-action from 3 to 4 by @dependabot in #177
- Bump docker/build-push-action from 2 to 3 by @dependabot in #178
- Bump actions/upload-artifact from 2 to 3 by @dependabot in #171
- Bump actions/download-artifact from 2 to 3 by @dependabot in #170
- Bump actions/checkout from 2 to 3 by @dependabot in #158
- Bump docker/login-action from 1 to 2 by @dependabot in #190
- Bump docker/setup-qemu-action from 1 to 2 by @dependabot in #191
- Bump docker/setup-buildx-action from 1 to 2 by @dependabot in #192
- Bump rector/rector from 0.12.15 to 0.13.7 by @dependabot in #189
- Big bump by @mvanduijker in #244
- Update telegram message by @bufo24 in #179
- Bump sonarsource/sonarcloud-github-action from 1.6 to 1.9 by @dependabot in #241
- Bump docker/build-push-action from 3 to 4 by @dependabot in #230
- Bump phpunit/phpunit from 9.6.6 to 10.0.19 by @dependabot in #248
- Bump rector/rector from 0.13.10 to 0.15.24 by @dependabot in #246
- Adds OperatorID for Bitvavo by @jorijn in #276
New Contributors
- @mvanduijker made their first contribution in #244
- @bufo24 made their first contribution in #179
Full Changelog: v1.6.1...v1.6.2
v1.6.1
v1.6.0: Get notified via email & Telegram
Added
- Added a configuration option to prevent Bitcoin DCA from checking for newer versions
- Get notified on buy & withdraw via:
- Email;
- Telegram.
See https://bitcoin-dca.readthedocs.io/en/latest/getting-notified.html for more information about this feature.
How to update
$ docker image rm ghcr.io/jorijn/bitcoin-dca
$ docker pull ghcr.io/jorijn/bitcoin-dca:latestv1.5.1: Updated BL3P withdrawal fee
Changed
- BL3P changed their withdrawal fee from 30k sat to 5k sat. This change updates to code to display the correct fee.
How to update
$ docker image rm ghcr.io/jorijn/bitcoin-dca
$ docker pull ghcr.io/jorijn/bitcoin-dca:latestv1.5.0: Allow exporting to CSV
Added
- When you buy Bitcoin and supply
EXPORT_CSV=/location/to/file.csv, Bitcoin-DCA will export the order information to that file in CSV format.
Please note that when you do, you need to tell Docker to mount a local file as a volume inside Bitcoin-DCA's container:
$ touch /location/to/bitcoin-dca/orders.csv # create the file if it does not exists yet
$ docker run <--usual-argments> -v /location/to/bitcoin-dca/orders.csv:/location/to/bitcoin-dca/orders.csv -e EXPORT_CSV=/location/to/bitcoin-dca/orders.csv buy 25 ... # example More information: https://bitcoin-dca.readthedocs.io/en/latest/persistent-storage.html
How to update
$ docker image rm ghcr.io/jorijn/bitcoin-dca
$ docker pull ghcr.io/jorijn/bitcoin-dca:latestv1.4.1
Added
- Bitcoin-DCA will now check for updates after executing the command and let you know if a newer version is available. This can be disabled by setting
DISABLE_VERSION_CHECK=true.
How to update
$ docker image rm ghcr.io/jorijn/bitcoin-dca
$ docker pull ghcr.io/jorijn/bitcoin-dca:latestv1.4.0: Programmable output
Added
- Added an
--outputoption to the buying command. This enables the user to print information about the purchase in the following formats:- YAML
- JSON
- XML
- CSV
How to update
$ docker image rm ghcr.io/jorijn/bitcoin-dca
$ docker pull ghcr.io/jorijn/bitcoin-dca:latestv1.3.2
v1.3.1: Minor release for improving support
Added
- The HTTP client will now log relevant information about API calls when
DEBUG=1is supplied in the configuration.
Changes
- Migrated away from Travis to GitHub Actions
v1.3.0: Binance support
XPUB withdrawal is enabled again for BL3P since the regulator acknowledged the view of Bitonic / BL3P.
Added
- Add Binance to the list of supported exchanges. (see #53)
Changed
- Changed the documentation to include Umbrel in the F.A.Q.