Skip to content

Commit

Permalink
update version (#847)
Browse files Browse the repository at this point in the history
Co-authored-by: Tarcisio Ferraz <tarcisio.ferraz@bitfinex.com>
  • Loading branch information
tarcisiozf and tferraz-bitfinex authored Sep 7, 2023
1 parent f597521 commit 1dbe5fd
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion bfx-hf-ui-core
Submodule bfx-hf-ui-core updated 33 files
+1 −1 package-lock.json
+1 −1 package.json
+3 −1 public/locales/en-US/translations.json
+14 −1 src/components/HFUI/HFUI.js
+7 −6 src/components/OrderHistory/OrderHistory.js
+8 −13 src/modals/AlgoOrderDetailsModal/AlgoOrderDetailsModal.js
+16 −0 src/redux/actions/ao.js
+6 −0 src/redux/actions/ui.js
+5 −0 src/redux/actions/ws.js
+2 −0 src/redux/constants/ao.js
+1 −0 src/redux/constants/ui.js
+1 −0 src/redux/constants/ws.js
+3 −0 src/redux/helpers/close_electron_app.js
+28 −0 src/redux/helpers/recurring_ao.js
+3 −3 src/redux/middleware/ws/on_message.js
+13 −0 src/redux/reducers/ao/index.js
+8 −0 src/redux/reducers/notifications/index.js
+2 −1 src/redux/reducers/ws/algo_orders.js
+6 −18 src/redux/reducers/ws/order_history.js
+24 −0 src/redux/sagas/ao/fetch_recurring_ao_atomics.js
+140 −0 src/redux/sagas/ao/handle_recurring_ao_atomics.js
+5 −0 src/redux/sagas/ao/index.js
+19 −0 src/redux/sagas/ao/process_recurring_ao.js
+28 −0 src/redux/sagas/ao/process_recurring_aos.js
+16 −0 src/redux/sagas/ao/schedule_fetching_recurring_ao_status.js
+3 −19 src/redux/sagas/ws/data_order_hist.js
+21 −8 src/redux/sagas/ws/worker_message_queue.js
+10 −0 src/redux/selectors/ao/get_failed_recurring_ao_atomics.js
+2 −0 src/redux/selectors/ao/index.js
+1 −12 src/redux/selectors/ws/get_order_history.js
+11 −2 src/ui/DatePicker/DatePicker.Portal.js
+1 −1 src/util/time_frame_widths.js
+12 −0 src/util/ui.js
9 changes: 4 additions & 5 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bfx-hf-ui",
"version": "3.31.6-rc.1",
"version": "3.31.6-rc.2",
"description": "Official Bitfinex Honey UI - for live trading and executing algorithmic orders/strategies",
"engines": {
"node": ">=16"
Expand Down Expand Up @@ -139,7 +139,7 @@
"bfx-hf-ext-plugin-bitfinex": "git+https://github.com/bitfinexcom/bfx-hf-ext-plugin-bitfinex.git#v1.0.13",
"bfx-hf-models": "git+https://github.com/bitfinexcom/bfx-hf-models.git#v4.0.0",
"bfx-hf-models-adapter-lowdb": "git+https://github.com/bitfinexcom/bfx-hf-models-adapter-lowdb.git#v1.0.5",
"bfx-hf-server": "git+https://github.com/bitfinexcom/bfx-hf-server.git#v9.9.0",
"bfx-hf-server": "git+https://github.com/bitfinexcom/bfx-hf-server.git#v9.9.1",
"bfx-hf-util": "git+https://github.com/bitfinexcom/bfx-hf-util#v1.0.12",
"concurrently": "^6.3.0",
"cross-env": "^7.0.2",
Expand Down

0 comments on commit 1dbe5fd

Please sign in to comment.