这是indexloc提供的服务,不要输入任何密码
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [4.38.0] - 2025-10-08

### Added

- Added `Summary Statistics` info into the `getSummaryByAsset` endpoint. PR: [bfx-reports-framework#485](https://github.com/bitfinexcom/bfx-reports-framework/pull/485)
- Implemented the possibility to login via `__bfx_token` cookie from the main platform for the `Reports` web in production. PR: [bfx-report-ui#968](https://github.com/bitfinexcom/bfx-report-ui/pull/968)
- Implemented auto-refreshing possibility for the currently opened report after the regular/scheduled synchronization for represented data actualization. PR: [bfx-report-ui#969](https://github.com/bitfinexcom/bfx-report-ui/pull/969)

### Changed

- Disabled `Account Balance` refresh button during initial synchronization to prevent report generation errors possibility. PR: [bfx-report-ui#967](https://github.com/bitfinexcom/bfx-report-ui/pull/967)
- Removed ivoices-related logic due to the removal of the `payInvoiceList` endpoint from the BFX API. PR: [bfx-report-ui#970](https://github.com/bitfinexcom/bfx-report-ui/pull/970)

## [4.37.0] - 2025-09-24

### Added
Expand Down
2 changes: 1 addition & 1 deletion bfx-report-ui
Submodule bfx-report-ui updated 55 files
+2 −2 package-lock.json
+1 −1 package.json
+0 −8 public/locales/en/translations.json
+0 −8 public/locales/es-EM/translations.json
+0 −8 public/locales/pt-BR/translations.json
+0 −8 public/locales/ru/translations.json
+0 −8 public/locales/tr/translations.json
+0 −8 public/locales/vi/translations.json
+0 −8 public/locales/zh-CN/translations.json
+0 −8 public/locales/zh-TW/translations.json
+20 −4 src/components/AccountBalance/AccountBalance.js
+12 −2 src/components/AppSummary/AppSummary.byAsset.js
+8 −2 src/components/AppSummary/AppSummary.profits.js
+12 −2 src/components/AppSummary/AppSummary.value.js
+8 −1 src/components/AverageWinLoss/AverageWinLoss.container.js
+8 −1 src/components/ConcentrationRisk/ConcentrationRisk.container.js
+10 −2 src/components/ConcentrationRisk/ConcentrationRisk.js
+8 −1 src/components/FeesReport/FeesReport.container.js
+0 −186 src/components/Invoices/Invoices.columns.js
+0 −56 src/components/Invoices/Invoices.container.js
+0 −194 src/components/Invoices/Invoices.js
+0 −1 src/components/Invoices/index.js
+8 −1 src/components/LoanReport/LoanReport.container.js
+0 −2 src/components/Main/Main.js
+8 −1 src/components/Snapshots/Snapshots.container.js
+8 −2 src/components/Snapshots/Snapshots.js
+2 −0 src/components/Snapshots/Snapshots.props.js
+13 −4 src/components/TaxReport/TaxReport.js
+8 −1 src/components/TradedVolume/TradedVolume.container.js
+5 −2 src/components/WeightedAverages/WeightedAverages.container.js
+0 −6 src/state/filters/saga.js
+0 −98 src/state/invoices/actions.js
+0 −10 src/state/invoices/constants.js
+0 −78 src/state/invoices/reducer.js
+0 −88 src/state/invoices/saga.js
+0 −16 src/state/invoices/selectors.js
+0 −69 src/state/invoices/utils.js
+0 −1 src/state/pagination/reducer.js
+0 −1 src/state/query/constants.js
+0 −7 src/state/query/saga.js
+17 −10 src/state/query/utils.js
+0 −2 src/state/reducers.js
+0 −2 src/state/sagas.js
+8 −0 src/state/sync/actions.js
+1 −0 src/state/sync/constants.js
+7 −0 src/state/sync/reducer.js
+8 −0 src/state/sync/saga.js
+2 −0 src/state/sync/selectors.js
+14 −0 src/state/ui/saga.js
+9 −4 src/state/utils.js
+0 −20 src/ui/ColumnsFilter/ColumnSelector/ColumnSelector.columns.js
+0 −8 src/ui/ColumnsFilter/var/defaultFilters.js
+0 −1 src/ui/NavMenu/NavMenu.constants.js
+0 −6 src/ui/NavMenu/NavMenu.helpers.js
+0 −2 src/utils/columns.js
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bfx-report-electron",
"version": "4.37.0",
"version": "4.38.0",
"repository": "https://github.com/bitfinexcom/bfx-report-electron",
"description": "Reporting tool",
"author": "bitfinex.com",
Expand Down