这是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.7.0] - 2023-05-24

### Added

- Added the `localUsername` field to the `getUsers` method response to be able to modify the local username on sign-in for sub-accounts. PR: [bfx-reports-framework#281](https://github.com/bitfinexcom/bfx-reports-framework/pull/281)
- Added the possibility of optional naming for multiple accounts during creating or updating, implemented displaying optional `localUsername` (if available) instead of the account email. PR: [bfx-report-ui#650](https://github.com/bitfinexcom/bfx-report-ui/pull/650)

### Changed

- Prevented selected dates range preserving by default between login sessions, the default range `Last 2 Weeks` will be set from the start until the `Preserve Timeframe` option won't be turned on in the `Preferences` menu. PR: [bfx-report-ui#651](https://github.com/bitfinexcom/bfx-report-ui/pull/651)
- Reworked and improved the `Manage Accounts` section according to the latest design updates to enhance users experience. Implemented the possibility of picking the `Use API key` option in the registered accounts selector and adding a sub-account via API key/secret in this case. Prefills the optional group name field with the master account name by default. Actualizes related elements styling and fields descriptions. Improves sub-accounts section scroll representation. PR: [bfx-report-ui#652](https://github.com/bitfinexcom/bfx-report-ui/pull/652)
- Improved `Weighted Averages` web version limit note representation according to the latest design updates. PR: [bfx-report-ui#654](https://github.com/bitfinexcom/bfx-report-ui/pull/654)

### Fixed

- Fixed issues with auth token invalidate intervals. The issue is at this moment UI flow intends to remove `sub-account` without login using `email`, it means we have to handle the absence of a user session on deletion. PR: [bfx-reports-framework#282](https://github.com/bitfinexcom/bfx-reports-framework/pull/282)
- Fixed columns filter elements overflowing issues. PR: [bfx-report-ui#649](https://github.com/bitfinexcom/bfx-report-ui/pull/649)
- Fixed the issue with the `Password` input availability on the main registered users list screen in some specific cases. PR: [bfx-report-ui#653](https://github.com/bitfinexcom/bfx-report-ui/pull/653)

## [4.6.0] - 2023-05-10

### Added
Expand Down
2 changes: 1 addition & 1 deletion bfx-report-ui
Submodule bfx-report-ui updated 27 files
+1 −1 package.json
+12 −6 public/locales/en/translations.json
+40 −4 src/components/Auth/RegisterSubAccounts/RegisterSubAccounts.js
+39 −2 src/components/Auth/RegisterSubAccounts/_RegisterSubAccounts.scss
+1 −19 src/components/Auth/SignIn/SignIn.js
+6 −0 src/components/Auth/SignInList/SignInList.helpers.js
+5 −2 src/components/Auth/SignInList/SignInList.item.js
+3 −1 src/components/Auth/SignInList/SignInList.menu.js
+7 −1 src/components/Header/AccountMenu/AccountMenu.container.js
+13 −3 src/components/Header/AccountMenu/AccountMenu.js
+6 −1 src/components/Header/TopNavigation/TopNavigation.container.js
+21 −2 src/components/Header/TopNavigation/TopNavigation.js
+26 −23 src/components/SubAccounts/SubAccount/SubAccount.js
+0 −16 src/components/SubAccounts/SubAccount/SubAccountRemove/SubAccountRemove.container.js
+0 −41 src/components/SubAccounts/SubAccount/SubAccountRemove/SubAccountRemove.js
+0 −1 src/components/SubAccounts/SubAccount/SubAccountRemove/index.js
+28 −27 src/components/SubAccounts/SubAccount/SubUsersAdd/SubUsersAdd.js
+32 −9 src/components/SubAccounts/SubAccount/SubUsersList/SubUsersList.js
+25 −11 src/components/SubAccounts/SubAccount/SubUsersList/_SubUsersList.scss
+10 −2 src/components/SubAccounts/SubAccount/utils/index.js
+2 −0 src/components/SubAccounts/SubAccounts.js
+22 −16 src/components/WeightedAverages/WeightedAverages.note.js
+24 −2 src/components/WeightedAverages/_WeightedAverages.scss
+2 −0 src/state/auth/selectors.js
+9 −3 src/state/subAccounts/saga.js
+5 −1 src/state/timeRange/reducer.js
+2 −1 src/ui/ColumnsFilter/_ColumnsFilter.scss
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.6.0",
"version": "4.7.0",
"repository": "https://github.com/bitfinexcom/bfx-report-electron",
"description": "Reporting tool",
"author": "bitfinex.com",
Expand Down