From 5c129506ae4428d685ea989a6a557ee3f5b13b56 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Mar 2026 04:48:19 +0000 Subject: [PATCH 1/2] chore(deps): bump ccxt from 4.5.44 to 4.5.45 Bumps [ccxt](https://github.com/ccxt/ccxt) from 4.5.44 to 4.5.45. - [Release notes](https://github.com/ccxt/ccxt/releases) - [Commits](https://github.com/ccxt/ccxt/compare/v4.5.44...v4.5.45) --- updated-dependencies: - dependency-name: ccxt dependency-version: 4.5.45 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 71c79ef9a..1f6d07a6a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7,7 +7,7 @@ ft-pandas-ta==0.3.16 ta-lib==0.6.8 technical==1.5.4 -ccxt==4.5.44 +ccxt==4.5.45 cryptography==46.0.6 aiohttp==3.13.3 SQLAlchemy==2.0.48 From 326ef6d49be41302f8d1c8038ee107f57cef737b Mon Sep 17 00:00:00 2001 From: Matthias Date: Mon, 30 Mar 2026 06:51:31 +0200 Subject: [PATCH 2/2] test: update krakenfutures "filled" test --- tests/exchange_online/conftest.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/exchange_online/conftest.py b/tests/exchange_online/conftest.py index ba04598cd..50d2fe116 100644 --- a/tests/exchange_online/conftest.py +++ b/tests/exchange_online/conftest.py @@ -603,6 +603,7 @@ EXCHANGES: dict[str, TestExchangeOnlineSetup] = { "status": "closed", "type": "market", "amount": 0.0004, + "filled": 0.0004, "side": "sell", "triggerPrice": None, "stopPrice": None, @@ -646,6 +647,8 @@ EXCHANGES: dict[str, TestExchangeOnlineSetup] = { "price": None, "status": "open", "amount": 0.0004, + # TODO: filled should be 0, not None. + "filled": None, "side": "buy", "triggerPrice": 71641.0, "stopPrice": 71641.0, @@ -681,8 +684,7 @@ EXCHANGES: dict[str, TestExchangeOnlineSetup] = { "datetime": "2026-03-21T07:32:21.555Z", "price": None, "status": "canceled", - # TODO: filled should be 0, not None. - "filled": None, + "filled": 0.0, }, }, ],