Skip to content

Commit

Permalink
Merge pull request #46 from ezewer/3.0.0
Browse files Browse the repository at this point in the history
Bump version to 3.0.0
  • Loading branch information
ezewer authored Jun 11, 2020
2 parents 6936df3 + 5ea03a1 commit 15addc5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bfx-report-ui
Submodule bfx-report-ui updated 149 files
2 changes: 1 addition & 1 deletion bfx-reports-framework
Submodule bfx-reports-framework updated 78 files
+1 −1 bfx-report-ui
+1 −0 config/service.report.json.example
+14 −5 package.json
+16 −5 test/1-api-sync-mode-sqlite.spec.js
+16 −5 test/2-additional-api-sync-mode-sqlite.spec.js
+31 −30 test/3-api-filter-sync-mode-sqlite.spec.js
+160 −126 test/4-sub-account.spec.js
+1 −1 test/helpers/helpers.core.js
+1 −0 test/helpers/helpers.worker.js
+48 −35 test/test-cases/additional-api-sync-mode-sqlite-test-cases.js
+387 −169 test/test-cases/api-sync-mode-sqlite-test-cases.js
+3 −1 test/test-cases/index.js
+48 −0 test/test-cases/sign-up-test-case.js
+20 −6 workers/api.framework.report.wrk.js
+22 −1 workers/loc.api/di/app.deps.js
+4 −1 workers/loc.api/di/types.js
+9 −12 workers/loc.api/errors/index.js
+13 −0 workers/loc.api/generate-csv/csv-writer/full-snapshot-report-csv-writer.js
+14 −0 workers/loc.api/generate-csv/csv-writer/full-tax-report-csv-writer.js
+61 −12 workers/loc.api/generate-csv/csv.job.data.js
+3 −9 workers/loc.api/helpers/index.js
+5 −8 workers/loc.api/helpers/schema.js
+1 −30 workers/loc.api/helpers/sub-account-auth.js
+8 −60 workers/loc.api/helpers/utils.js
+65 −0 workers/loc.api/responder/index.js
+305 −282 workers/loc.api/service.report.framework.js
+8 −0 workers/loc.api/service.report.js
+3 −1 workers/loc.api/sync/allowed.colls.js
+756 −0 workers/loc.api/sync/authenticator/index.js
+18 −8 workers/loc.api/sync/balance.history/index.js
+10 −6 workers/loc.api/sync/colls.accessors/public.colls.conf.accessors.js
+164 −0 workers/loc.api/sync/crypto/index.js
+215 −24 workers/loc.api/sync/currency.converter/index.js
+9 −0 workers/loc.api/sync/dao/const.js
+4 −49 workers/loc.api/sync/dao/dao.js
+343 −437 workers/loc.api/sync/dao/dao.sqlite.js
+26 −2 workers/loc.api/sync/dao/db-migrations/sqlite-migrations/helpers/get-sql-arr-to-modify-columns.js
+3 −3 workers/loc.api/sync/dao/db-migrations/sqlite-migrations/helpers/index.js
+111 −0 workers/loc.api/sync/dao/db-migrations/sqlite-migrations/migration.v10.js
+58 −0 workers/loc.api/sync/dao/db-migrations/sqlite-migrations/migration.v11.js
+49 −0 workers/loc.api/sync/dao/db-migrations/sqlite-migrations/migration.v12.js
+11 −11 workers/loc.api/sync/dao/db-migrations/sqlite-migrations/migration.v3.js
+3 −3 workers/loc.api/sync/dao/db-migrations/sqlite-migrations/migration.v4.js
+88 −0 workers/loc.api/sync/dao/db-migrations/sqlite-migrations/migration.v5.js
+57 −0 workers/loc.api/sync/dao/db-migrations/sqlite-migrations/migration.v6.js
+74 −0 workers/loc.api/sync/dao/db-migrations/sqlite-migrations/migration.v7.js
+32 −0 workers/loc.api/sync/dao/db-migrations/sqlite-migrations/migration.v8.js
+46 −0 workers/loc.api/sync/dao/db-migrations/sqlite-migrations/migration.v9.js
+5 −1 workers/loc.api/sync/dao/helpers/get-insertable-array-objects-filter.js
+6 −5 workers/loc.api/sync/dao/helpers/get-symbol-filter.js
+8 −2 workers/loc.api/sync/dao/helpers/get-table-creation-query.js
+53 −0 workers/loc.api/sync/dao/helpers/get-trigger-creation-query.js
+27 −11 workers/loc.api/sync/dao/helpers/get-where-query.js
+6 −4 workers/loc.api/sync/dao/helpers/index.js
+2 −1 workers/loc.api/sync/dao/helpers/serialization.js
+63 −31 workers/loc.api/sync/dao/helpers/utils.js
+2 −0 workers/loc.api/sync/dao/tables-names.js
+4 −0 workers/loc.api/sync/data.inserter/api.middleware.handler.after.js
+6 −2 workers/loc.api/sync/data.inserter/helpers/get-flags-from-ledger-description.js
+7 −6 workers/loc.api/sync/data.inserter/helpers/search-close-price-and-sum-amount.js
+46 −41 workers/loc.api/sync/data.inserter/helpers/utils.js
+10 −4 workers/loc.api/sync/data.inserter/hooks/recalc.sub.account.ledgers.balances.hook.js
+69 −14 workers/loc.api/sync/data.inserter/index.js
+7 −2 workers/loc.api/sync/full.tax.report/index.js
+106 −0 workers/loc.api/sync/helpers/__test__/split-symbol-pairs.spec.js
+4 −1 workers/loc.api/sync/helpers/redirect-requests-to-api.js
+1 −1 workers/loc.api/sync/helpers/split-symbol-pairs.js
+6 −2 workers/loc.api/sync/performing.loan/index.js
+6 −2 workers/loc.api/sync/positions.snapshot/index.js
+5 −2 workers/loc.api/sync/progress/index.js
+119 −46 workers/loc.api/sync/schema.js
+6 −18 workers/loc.api/sync/sub.account.api.data/index.js
+161 −72 workers/loc.api/sync/sub.account/index.js
+6 −2 workers/loc.api/sync/trades/index.js
+5 −2 workers/loc.api/sync/wallets/index.js
+6 −2 workers/loc.api/sync/win.loss/index.js
+27 −17 workers/loc.api/ws-transport/index.js
+3 −5 workers/loc.api/ws-transport/ws.event.emitter.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": "0.11.0",
"version": "3.0.0",
"description": "Reporting tool",
"author": "bitfinex.com",
"main": "index.js",
Expand Down

0 comments on commit 15addc5

Please sign in to comment.