这是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
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [4.8.0] - 2023-06-21

### Added

- Added currency movement info endpoint https://docs.bitfinex.com/reference/movement-info. Due to the changed signatures of the `bitfinex-api-node` library methods in the new major version, to add this endpoint, the way of passing parameters to all bfx api methods is also changed/refactored. PRs: [bfx-report#297](https://github.com/bitfinexcom/bfx-report/pull/297), [bfx-reports-framework#287](https://github.com/bitfinexcom/bfx-reports-framework/pull/287)
- Added ability to return the `timestamp` when the last sync was launched to add this info to the layouts of the new design. PR: [bfx-reports-framework#289](https://github.com/bitfinexcom/bfx-reports-framework/pull/289)
- Added the possibility of removing registered accounts from the main `Sign In` screen. PR: [bfx-report-ui#662](https://github.com/bitfinexcom/bfx-report-ui/pull/662)
- Added the possibility of creating/updating sub-accounts for password protected users. PR: [bfx-report-ui#663](https://github.com/bitfinexcom/bfx-report-ui/pull/663)

### Changed

- Prevented proxying all `HTML` of the `BFX API` error. PR: [bfx-report#299](https://github.com/bitfinexcom/bfx-report/pull/299)
- Enhanced `Reports` tables representation according to the latest design updates. PR: [bfx-report-ui#664](https://github.com/bitfinexcom/bfx-report-ui/pull/664)

### Fixed

- Fixed `BFX API` error handling due to the last major changes of the rest-api lib: https://github.com/bitfinexcom/bfx-api-node-rest/blame/master/lib/rest2.js#LL157C14-L170C4. PRs: [bfx-report#298](https://github.com/bitfinexcom/bfx-report/pull/298), [bfx-report#300](https://github.com/bitfinexcom/bfx-report/pull/300)
- Fixed `sub-account` updating for password-protected account, it's necessary to pass the password to the master account if it's passed in the request. PR: [bfx-reports-framework#288](https://github.com/bitfinexcom/bfx-reports-framework/pull/288)

## [4.7.1] - 2023-06-07

### Added
Expand Down
2 changes: 1 addition & 1 deletion bfx-report-ui
Submodule bfx-report-ui updated 62 files
+1 −1 package.json
+4 −0 public/locales/en/translations.json
+2 −2 src/components/AffiliatesEarnings/AffiliatesEarnings.js
+35 −0 src/components/Auth/DeleteAccount/DeleteAccount.js
+3 −0 src/components/Auth/DeleteAccount/_DeleteAccount.scss
+1 −0 src/components/Auth/DeleteAccount/index.js
+16 −1 src/components/Auth/RegisterSubAccounts/RegisterSubAccounts.js
+2 −0 src/components/Auth/SignIn/SignIn.container.js
+51 −4 src/components/Auth/SignIn/SignIn.js
+15 −8 src/components/Auth/SignInList/SignInList.item.js
+3 −0 src/components/Auth/SignInList/SignInList.js
+15 −2 src/components/Auth/SignInList/SignInList.menu.js
+1 −0 src/components/Auth/_Auth.scss
+3 −10 src/components/ChangeLogs/ChangeLogs.columns.js
+2 −2 src/components/ChangeLogs/ChangeLogs.js
+2 −7 src/components/Derivatives/Derivatives.columns.js
+4 −13 src/components/FundingCreditHistory/FundingCreditHistory.columns.js
+2 −2 src/components/FundingCreditHistory/FundingCreditHistory.js
+4 −13 src/components/FundingLoanHistory/FundingLoanHistory.columns.js
+2 −2 src/components/FundingLoanHistory/FundingLoanHistory.js
+2 −7 src/components/FundingOfferHistory/FundingOfferHistory.columns.js
+2 −2 src/components/FundingOfferHistory/FundingOfferHistory.js
+2 −2 src/components/FundingPayment/FundingPayment.js
+2 −4 src/components/Invoices/Invoices.columns.js
+2 −2 src/components/Invoices/Invoices.js
+2 −4 src/components/Ledgers/Ledgers.columns.js
+2 −2 src/components/Ledgers/Ledgers.js
+2 −7 src/components/Logins/Logins.columns.js
+2 −2 src/components/Logins/Logins.js
+2 −7 src/components/Movements/Movements.columns.js
+2 −2 src/components/Movements/Movements.js
+3 −10 src/components/Orders/Orders.columns.js
+2 −2 src/components/Orders/Orders.js
+2 −7 src/components/Positions/Positions.columns.js
+2 −2 src/components/Positions/Positions.js
+2 −2 src/components/PositionsAudit/PositionsAudit.js
+2 −7 src/components/PublicFunding/PublicFunding.columns.js
+3 −3 src/components/PublicFunding/PublicFunding.js
+2 −7 src/components/PublicTrades/PublicTrades.columns.js
+3 −3 src/components/PublicTrades/PublicTrades.js
+2 −2 src/components/StakingPayments/StakingPayments.js
+18 −3 src/components/SubAccounts/SubAccount/SubAccount.js
+4 −1 src/components/SubAccounts/SubAccount/SubUsersList/SubUsersList.js
+3 −1 src/components/SubAccounts/SubAccounts.js
+2 −7 src/components/Tickers/Tickers.columns.js
+3 −3 src/components/Tickers/Tickers.js
+2 −4 src/components/Trades/Trades.columns.js
+3 −3 src/components/Trades/Trades.js
+8 −0 src/state/auth/actions.js
+1 −0 src/state/auth/constants.js
+46 −0 src/state/auth/saga.js
+24 −7 src/state/subAccounts/saga.js
+4 −0 src/styles/index.scss
+5 −5 src/styles/themes/_dark.scss
+14 −11 src/ui/CollapsedTable/_CollapsedTable.scss
+1 −0 src/ui/DataTable/DataTable.js
+15 −14 src/ui/DataTable/_DataTable.scss
+24 −16 src/ui/Pagination/Pagination.js
+37 −11 src/ui/Pagination/_Pagination.scss
+1 −1 src/ui/SectionHeader/_SectionHeader.scss
+1 −7 src/ui/utils.js
+2 −4 src/utils/columns.js
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.7.1",
"version": "4.8.0",
"repository": "https://github.com/bitfinexcom/bfx-report-electron",
"description": "Reporting tool",
"author": "bitfinex.com",
Expand Down