Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release version 4.11.0 to staging #253

Merged
merged 3 commits into from
Sep 20, 2023
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
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [4.11.0] - 2023-09-20

### Added

- Added ability to show success dialog for `CSV` exporting only after the `emitCsvGenerationCompletedToOne` event was sent by the backend for better understanding by users when the exporting process actually completed. PR: [bfx-report-ui#698](https://github.com/bitfinexcom/bfx-report-ui/pull/698)
- Added the possibility of tweaking the ability to auto-start sync after the auto-update of the electron app via the `Preferences` menu: `shouldNotSyncOnStartupAfterUpdate` flag received on sign in. PR: [bfx-report-ui#699](https://github.com/bitfinexcom/bfx-report-ui/pull/699)
- Implemented [extra information](https://docs.bitfinex.com/reference/movement-info) handling and representation for the `Movements` report. PR: [bfx-report-ui#702](https://github.com/bitfinexcom/bfx-report-ui/pull/702)
- Implemented `LNX (LN-BTC)` availability in the `Symbol` selector. PR: [bfx-report-ui#703](https://github.com/bitfinexcom/bfx-report-ui/pull/703)

### Changed

- Decreased `candles` request limit to `30 reqs/min` to prevent `Rate Limit` restriction. PR: [bfx-reports-framework#316](https://github.com/bitfinexcom/bfx-reports-framework/pull/316)
- Improved server availability error message to be persistent. PR: [bfx-reports-framework#317](https://github.com/bitfinexcom/bfx-reports-framework/pull/317)
- Updated `Nodejs` to `v18` in `Docker` containers and fixes UI dependencies installation under container. PR: [bfx-reports-framework#318](https://github.com/bitfinexcom/bfx-reports-framework/pull/318)
- Bumped `Electron` version up to `v25` to have under hood `Nodejs` `v18`. PRs: [bfx-report-electron#251](https://github.com/bitfinexcom/bfx-report-electron/pull/251), [bfx-report-ui#701](https://github.com/bitfinexcom/bfx-report-ui/pull/701)
- Prevented showing error modal dialog due to `inet` issue. When the sync starts we send a ping request to `BFX API` to check that API is available. The idea is to not show error modal dialog for issues, just show error toast via UI when fetching the corresponding error with progress event via WS. PR: [bfx-report-electron#252](https://github.com/bitfinexcom/bfx-report-electron/pull/252)
- Reworked and enhanced `Columns` filter to display the actual selected filters quantity for better clearance to the users. Reworked refresh button representation according to the design updates. PR: [bfx-report-ui#697](https://github.com/bitfinexcom/bfx-report-ui/pull/697)
- Improved user notification when data should be synced. Implemented synchronization auto-initiation if not syncing at the moment. PR: [bfx-report-ui#700](https://github.com/bitfinexcom/bfx-report-ui/pull/700)
- Updated translations for UI. PR: [bfx-report-ui#704](https://github.com/bitfinexcom/bfx-report-ui/pull/704)

### Fixed
- Bumped `better-sqlite3` driver up to `8.6.0` to have this fix: `random "database is locked" timeouts` [better-sqlite3#597](https://github.com/WiseLibs/better-sqlite3/issues/597). And also to have the ability to launch the db driver on `Nodejs` `v18` under Electron env. PR: [bfx-facs-db-better-sqlite#6](https://github.com/bitfinexcom/bfx-facs-db-better-sqlite/pull/6)
- Fixed the `always-on-top` state for the `loading` window. Commit: [bfx-report-electron#251/commit#be0af27](https://github.com/bitfinexcom/bfx-report-electron/pull/251/commits/be0af278d0145558706230e2d688dbe682903f2d)

## [4.10.0] - 2023-08-23

### Added
Expand Down
2 changes: 1 addition & 1 deletion bfx-report-ui
Submodule bfx-report-ui updated 66 files
+2 −1 .eslintrc.json
+1 −1 dependabot.yml
+8,516 −32,240 package-lock.json
+7 −6 package.json
+22 −2 public/locales/en/translations.json
+242 −28 public/locales/es-EM/translations.json
+65 −28 public/locales/pt-BR/translations.json
+69 −32 public/locales/ru/translations.json
+78 −41 public/locales/tr/translations.json
+255 −39 public/locales/zh-CN/translations.json
+254 −38 public/locales/zh-TW/translations.json
+5 −0 src/components/ErrorDialog/ErrorDialog.constants.js
+4 −0 src/components/ErrorDialog/ErrorDialog.container.js
+19 −4 src/components/ErrorDialog/ErrorDialog.js
+5 −4 src/components/ExportDialog/ExportDialog.container.js
+15 −5 src/components/ExportDialog/ExportDialog.js
+259 −0 src/components/ExtraInfoDialog/ExtraInfoDialog.columns.js
+62 −0 src/components/ExtraInfoDialog/ExtraInfoDialog.js
+26 −0 src/components/ExtraInfoDialog/_ExtraInfoDialog.scss
+1 −0 src/components/ExtraInfoDialog/index.js
+2 −0 src/components/Main/Main.js
+23 −0 src/components/Movements/Movements.columns.js
+2 −0 src/components/Movements/Movements.container.js
+9 −0 src/components/Movements/Movements.js
+7 −0 src/components/Preferences/Preferences.js
+2 −0 src/icons/index.js
+3 −0 src/icons/plus.svg
+3 −1 src/index.js
+8 −0 src/state/auth/actions.js
+1 −0 src/state/auth/constants.js
+6 −0 src/state/auth/reducer.js
+19 −0 src/state/auth/saga.js
+2 −0 src/state/auth/selectors.js
+16 −0 src/state/movements/actions.js
+2 −0 src/state/movements/constants.js
+7 −0 src/state/movements/reducer.js
+30 −0 src/state/movements/saga.js
+2 −0 src/state/movements/selectors.js
+8 −0 src/state/query/actions.js
+1 −0 src/state/query/constants.js
+6 −0 src/state/query/reducer.js
+16 −2 src/state/query/saga.js
+2 −0 src/state/query/selectors.js
+4 −1 src/state/symbols/reducer.js
+8 −0 src/state/sync/saga.js
+7 −0 src/state/ui/actions.js
+1 −0 src/state/ui/constants.js
+7 −0 src/state/ui/reducer.js
+2 −0 src/state/ui/selectors.js
+2 −1 src/state/ws/constants.js
+9 −0 src/state/ws/saga.js
+1 −0 src/styles/index.scss
+1 −1 src/ui/CollapsedTable/CollapsedTable.js
+1 −0 src/ui/ColumnsFilter/ColumnSelector/ColumnSelector.columns.js
+33 −0 src/ui/ColumnsFilter/ColumnsFilter.helpers.js
+9 −10 src/ui/ColumnsFilter/ColumnsFilter.js
+24 −3 src/ui/ColumnsFilter/_ColumnsFilter.scss
+2 −1 src/ui/MultiSelect/_MultiSelect.scss
+12 −15 src/ui/RefreshButton/RefreshButton.js
+2 −13 src/ui/RefreshButton/_RefreshButton.scss
+1 −3 src/ui/RefreshButton/index.js
+33 −1 src/ui/Select/_Select.scss
+21 −0 src/ui/SyncAfterUpdatePref/SyncAfterUpdatePref.js
+1 −0 src/ui/SyncAfterUpdatePref/index.js
+1 −1 src/ui/TimeRange/_TimeRange.scss
+3 −0 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.10.0",
"version": "4.11.0",
"repository": "https://github.com/bitfinexcom/bfx-report-electron",
"description": "Reporting tool",
"author": "bitfinex.com",
Expand Down