Skip to content

Commit

Permalink
Merge pull request #462 from bitfinexcom/staging
Browse files Browse the repository at this point in the history
Release version 4.31.0
  • Loading branch information
ezewer authored Dec 5, 2024
2 parents 9e8bae7 + 508c1f7 commit cc2e19b
Show file tree
Hide file tree
Showing 34 changed files with 999 additions and 496 deletions.
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.31.0] - 2024-12-04

### Added

- Added translation support to the `export-db` module. PR: [bfx-report-electron#441](https://github.com/bitfinexcom/bfx-report-electron/pull/441)
- Added translation support to the `import-db` module. PR: [bfx-report-electron#442](https://github.com/bitfinexcom/bfx-report-electron/pull/442)
- Added `progress` perc to the `loading window` for the `export-db` module as it can take significant time for large DB. PR: [bfx-report-electron#445](https://github.com/bitfinexcom/bfx-report-electron/pull/445)
- Added `progress` perc to the `loading window` for the `import-db` module as it can take significant time for large DB. [bfx-report-electron#449](https://github.com/bitfinexcom/bfx-report-electron/pull/449)
- Added translation support to the `remove-db` module. PR: [bfx-report-electron#450](https://github.com/bitfinexcom/bfx-report-electron/pull/450)
- Added translation support to the `manage-worker-messages` module. Add translation support to the `backup-db` and `migration-db` modules. Fixed showing modal dialogs in sequence. PR: [bfx-report-electron#456](https://github.com/bitfinexcom/bfx-report-electron/pull/456)
- Added translation support to the `show-about-modal-dialog` module. PR: [bfx-report-electron#457](https://github.com/bitfinexcom/bfx-report-electron/pull/457)

### Changed

- Optimized electron translation file data structure to prevent some common duplication and redundant nesting for easier support. PR: [bfx-report-electron#468](https://github.com/bitfinexcom/bfx-report-electron/pull/468)
- Reworked and optimized the `TimeRangePreservePref` component in a more performant way and reduced redundant code. PR: [bfx-report-ui#885](https://github.com/bitfinexcom/bfx-report-ui/pull/885)
- Extended data logging by showing public request params to simplify debugging BFX API issues. PR: [bfx-report#414](https://github.com/bitfinexcom/bfx-report/pull/414)
- Removed `language` schema param check and added `en` fallback language to prevent returning the translation key `key.nestedKey.etc` if a value is missing for a certain language and added the ability to try to take one from the default `en` translation file. PR: [bfx-report#415](https://github.com/bitfinexcom/bfx-report/pull/415)

### Fixed

- Fixed docker desktop container user permissions breaks. Fixed `chown`: `changing ownership of 'path-to-file': Operation not permitted` when using it in `dockerfile`. PR: [bfx-report-electron#460](https://github.com/bitfinexcom/bfx-report-electron/pull/460)
- Fixed error metadata processing for logging. PRs: [bfx-report#418](https://github.com/bitfinexcom/bfx-report/pull/418), [bfx-reports-framework#428](https://github.com/bitfinexcom/bfx-reports-framework/pull/428)

## [4.30.0] - 2024-11-13

### Added
Expand Down
1 change: 0 additions & 1 deletion Dockerfile.linux-builder
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ RUN ./scripts/helpers/install-nodejs.sh ${NODE_VERSION} \
bc \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN chown root:root .

COPY . .

Expand Down
1 change: 0 additions & 1 deletion Dockerfile.mac-builder
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ RUN ./scripts/helpers/install-nodejs.sh ${NODE_VERSION} \
bc \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN chown root:root .

COPY . .

Expand Down
1 change: 0 additions & 1 deletion Dockerfile.ui-builder
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ ENV IS_DEV_ENV=${IS_DEV_ENV:-0}
COPY ./scripts/helpers/install-nodejs.sh ./scripts/helpers/install-nodejs.sh

RUN ./scripts/helpers/install-nodejs.sh ${NODE_VERSION}
RUN chown root:root .

COPY . .

Expand Down
1 change: 0 additions & 1 deletion Dockerfile.win-builder
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ RUN ./scripts/helpers/install-nodejs.sh ${NODE_VERSION} \
bc \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN chown root:root .

COPY . .

Expand Down
2 changes: 1 addition & 1 deletion bfx-reports-framework
Loading

0 comments on commit cc2e19b

Please sign in to comment.