From 7435fb14093fe9c3af6a84c130d325a6d285cd41 Mon Sep 17 00:00:00 2001 From: Aaron Fiore Date: Thu, 5 Feb 2026 14:28:49 -0800 Subject: [PATCH 1/2] client: manifest: bump version to v1.2.0 --- client/docker-finance.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/docker-finance.yaml b/client/docker-finance.yaml index 146ca87..3b39cfe 100644 --- a/client/docker-finance.yaml +++ b/client/docker-finance.yaml @@ -20,7 +20,7 @@ # # Release version (tag format) -version: "v1.1.1" +version: "v1.2.0" # Container dependencies (used by `version` command) # NOTE: this must stay inline with Dockerfiles From e824294c050ebba188b62c3a414de8808dee40e0 Mon Sep 17 00:00:00 2001 From: Aaron Fiore Date: Thu, 5 Feb 2026 14:29:04 -0800 Subject: [PATCH 2/2] CHANGELOG: add 1.2.0 --- CHANGELOG.md | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index bbda602..b08e326 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,66 @@ # Changelog (`docker-finance`) +## 1.2.0 - 2026-02-06 + +This point release focuses on providing a new CI system using [Gitea Actions](https://gitea.com/EvergreenCrypto/docker-finance/actions). + +Also included are minor `dfi` changes (mostly client-side) and some usability improvements. + +> Note: any re-`gen` instructions below will automatically backup respective data to their respective locations. + +### 1.2.0 - Features + +- New CI using Gitea Actions Workflow and [instructions](https://gitea.com/EvergreenCrypto/dfi-docs/src/branch/master/markdown/How-do-I-contribute.md#ci-using-self-hosted-gitea-with-act_runner) on how to self-host Gitea CI for `dfi` development ([#287](https://gitea.com/EvergreenCrypto/docker-finance/pulls/287)) ([#291](https://gitea.com/EvergreenCrypto/docker-finance/pulls/291)) ([#292](https://gitea.com/EvergreenCrypto/docker-finance/pulls/292)) ([#293](https://gitea.com/EvergreenCrypto/docker-finance/pulls/293)) + +### 1.2.0 - Fixes + +- Minor internal fixes to work better with the new CI ([#281](https://gitea.com/EvergreenCrypto/docker-finance/pulls/281)) ([#283](https://gitea.com/EvergreenCrypto/docker-finance/pulls/283)) ([#289](https://gitea.com/EvergreenCrypto/docker-finance/pulls/289)) + +- Fix for container's `taxes` command breaking when generating `all` years (`year=all`) ([#279](https://gitea.com/EvergreenCrypto/docker-finance/pulls/279)) + * This bug does *not* affect individual year tax report generation, when given a specific (or default) year + +- Fix client ownership of shared path during client generation ([#285](https://gitea.com/EvergreenCrypto/docker-finance/pulls/285)) + * Was previously owned by root instead of `DOCKER_FINANCE_USER` + +- Add missing chains to coinomi template ([#288](https://gitea.com/EvergreenCrypto/docker-finance/pulls/288)) + * To utilize these changes: `dfi archlinux/${USER}:default gen type=flow profile= account=coinomi confirm=no` + +- Fix client Tor plugin's container inspection ([#292](https://gitea.com/EvergreenCrypto/docker-finance/pulls/292)) + +### 1.2.0 - Enhancements + +- Minor internal tweaks to work better with the new CI ([#274](https://gitea.com/EvergreenCrypto/docker-finance/pulls/274)) ([#275](https://gitea.com/EvergreenCrypto/docker-finance/pulls/275)) ([#276](https://gitea.com/EvergreenCrypto/docker-finance/pulls/276)) ([#277](https://gitea.com/EvergreenCrypto/docker-finance/pulls/277)) ([#278](https://gitea.com/EvergreenCrypto/docker-finance/pulls/278)) ([#280](https://gitea.com/EvergreenCrypto/docker-finance/pulls/280)) ([#282](https://gitea.com/EvergreenCrypto/docker-finance/pulls/282)) + +- Allow quotations when passing root `Pluggable` arguments ([#286](https://gitea.com/EvergreenCrypto/docker-finance/pulls/286)) + + > Helps facilitate CLI usage; e.g., + > ```bash + > $ dfi testprofile/testuser root plugins/repo/bitcoin/bitcoin.cc 'dfi::macro::load(\"repo/test/unit.C\")' + > ``` + +- Implement retries when bootstrapping client Tor plugin, misc Tor plugin enhancements ([#292](https://gitea.com/EvergreenCrypto/docker-finance/pulls/292)) + +### 1.2.0 - Updates + +- `dev-tools`: bump `cppcheck`'s standard to c++20 ([#295](https://gitea.com/EvergreenCrypto/docker-finance/pulls/295)) + +### 1.2.0 - Refactoring + +- Update optional blocks in default custom Arch Linux Dockerfile, move `less` package from custom build to base build ([#284](https://gitea.com/EvergreenCrypto/docker-finance/pulls/284)) + * To utilize these changes: `dfi archlinux/${USER}:default gen type=build confirm=no` + * To update your new config: `dfi archlinux/${USER}:default edit type=build` + +- Update mobula assets and update/cleanup comments in default `fetch` config ([#290](https://gitea.com/EvergreenCrypto/docker-finance/pulls/290)) + * To utilize these changes: `dfi archlinux/${USER}:default gen type=flow profile= config=fetch confirm=no` + * To update your new config (in container): `dfi edit type=fetch` + +- Add `cppcheck-suppress stlIfStrFind` to root common ([#295](https://gitea.com/EvergreenCrypto/docker-finance/pulls/295)) + +### 1.2.0 - Contributors + +- Aaron Fiore + ## 1.1.1 - 2026-01-15 This patch release supports recent CoinGecko and PHP-CS-Fixer changes and also includes minor `dfi` developer enhancements/refactoring.