Skip to content

Commit

Permalink
Merge pull request #257 from bitfinexcom/staging
Browse files Browse the repository at this point in the history
Release version 4.12.0
  • Loading branch information
ezewer authored Oct 4, 2023
2 parents 2288c56 + 933bd28 commit 31d235c
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 8 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [4.12.0] - 2023-10-04

### Added

- Added ability to inform user that the `platform` is marked in the `maintenance` mode by `WebSocket`. PRs: [bfx-report#331](https://github.com/bitfinexcom/bfx-report/pull/331), [bfx-reports-framework#321](https://github.com/bitfinexcom/bfx-reports-framework/pull/321), [bfx-api-mock-srv#56](https://github.com/bitfinexcom/bfx-api-mock-srv/pull/56)
- Added `Vietnamese` language. PRs: [bfx-report-ui#711](https://github.com/bitfinexcom/bfx-report-ui/pull/711), [bfx-report-ui#712](https://github.com/bitfinexcom/bfx-report-ui/pull/712)

### Changed

- Actualized synchronization progress handling flow according to the latest backend updates. PR: [bfx-report-ui#710](https://github.com/bitfinexcom/bfx-report-ui/pull/710)

### Fixed

- Fixed `MaxListenersExceededWarning` for complicated csv reports using the `transform` csv stream waiting for writing to complete `one by one` instead of pipelining all csv streams `simultaneously`. And it also fixed `MaxListenersExceededWarning` for the `process message manager`. PRs: [bfx-report#333](https://github.com/bitfinexcom/bfx-report/pull/333), [bfx-reports-framework#322](https://github.com/bitfinexcom/bfx-reports-framework/pull/322)
- Fixed `Movements` extra info representation for fiat transfers. PR: [bfx-report-ui#707](https://github.com/bitfinexcom/bfx-report-ui/pull/707)

### Security

- Removed `lodash` lib usage. PRs: [bfx-report#332](https://github.com/bitfinexcom/bfx-report/pull/332), [bfx-facs-deflate#4](https://github.com/bitfinexcom/bfx-facs-deflate/pull/4), [bfx-report-express#34](https://github.com/bitfinexcom/bfx-report-express/pull/34), [bfx-report-electron#255](https://github.com/bitfinexcom/bfx-report-electron/pull/255)

## [4.11.0] - 2023-09-20

### Added
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bfx-report-electron",
"version": "4.11.0",
"version": "4.12.0",
"repository": "https://github.com/bitfinexcom/bfx-report-electron",
"description": "Reporting tool",
"author": "bitfinex.com",
Expand All @@ -27,7 +27,7 @@
"github-markdown-css": "5.1.0",
"grenache-grape": "git+https://github.com/bitfinexcom/grenache-grape.git",
"js-yaml": "4.1.0",
"lodash": "4.17.21",
"lib-js-util-base": "git+https://github.com/bitfinexcom/lib-js-util-base.git",
"new-github-issue-url": "0.2.1",
"showdown": "2.0.3",
"truncate-utf8-bytes": "1.0.2",
Expand Down
2 changes: 1 addition & 1 deletion server.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict'

const { pick } = require('lodash')
const { pick } = require('lib-js-util-base')
const { fork } = require('child_process')
const path = require('path')
const EventEmitter = require('events')
Expand Down
2 changes: 1 addition & 1 deletion src/configs-keeper.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
const { promisify } = require('util')
const path = require('path')
const fs = require('fs')
const { cloneDeep } = require('lodash')
const { cloneDeep } = require('lib-js-util-base')

const {
writeFileSync,
Expand Down
6 changes: 4 additions & 2 deletions src/helpers/__test__/ports.spec.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
'use strict'

const { isObject } = require('lodash')
const assert = require('assert').strict
const { Server } = require('net')
const DHT = require('bittorrent-dht')
Expand All @@ -15,7 +14,10 @@ const {
const { getServerPromise } = require('../utils')

const checkAssertions = (res) => {
assert.ok(isObject(res))
assert.ok(
res &&
typeof res === 'object'
)
assert.ok(
[
'grape1DhtPort',
Expand Down

0 comments on commit 31d235c

Please sign in to comment.