diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4f7b969b..8b389fbe 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -72,13 +72,6 @@ jobs: docker compose -f docker-compose.dev.tests.opensearch.yml logs docker compose -f docker-compose.dev.tests.opensearch.yml run -e NODE_OPTIONS=--unhandled-rejections=warn -e SEARCH_DRIVER=opensearch -e DB_DRIVER=postgres -e PUBSUB_TYPE=local node npm run test:all docker compose -f docker-compose.dev.tests.opensearch.yml down - - name: coverage - uses: adRise/jest-cov-reporter@e13d7638888cad7788298f4022b203b31a10c7c8 - with: - branch-coverage-report-path: ./tdrive/coverage/coverage-summary.json - base-coverage-report-path: ./tdrive/coverage/coverage-summary.json - delta: 0.3 - fullCoverageDiff: true build-frontend: runs-on: ubuntu-latest diff --git a/changelog.md b/changelog.md index 9fae5311..2460e18f 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,20 @@ +# Twake Drive v1.0.4 + +## Features + +- Added translation for context menu +- Removed cumulative queries to the database First step to the transactions in PostgreSQL +- Ignore errors during nextcloud migration to be able to import files partially +- OnlyOffice rework + +## Fixes and Improvements + +- Fix big file (with multiple chunks) download +- Fix bug with postgres support when uploading files +- Fix infinite scroll for shared with me +- Fix OpenSearch e2e test +- Fix build CI + # Twake Drive v1.0.3 ## Features diff --git a/tdrive/backend/node/src/version.ts b/tdrive/backend/node/src/version.ts index c29aa953..daf6a65c 100644 --- a/tdrive/backend/node/src/version.ts +++ b/tdrive/backend/node/src/version.ts @@ -1,7 +1,7 @@ export default { - current: /* @VERSION_DETAIL */ "1.0.3", + current: /* @VERSION_DETAIL */ "1.0.4", minimal: { - web: /* @MIN_VERSION_WEB */ "1.0.3", - mobile: /* @MIN_VERSION_MOBILE */ "1.0.3", + web: /* @MIN_VERSION_WEB */ "1.0.4", + mobile: /* @MIN_VERSION_MOBILE */ "1.0.4", }, }; diff --git a/tdrive/frontend/src/app/environment/version.ts b/tdrive/frontend/src/app/environment/version.ts index d264abe6..6cd51260 100644 --- a/tdrive/frontend/src/app/environment/version.ts +++ b/tdrive/frontend/src/app/environment/version.ts @@ -1,5 +1,5 @@ export default { - version: /* @VERSION */ '1.0.3', - version_detail: /* @VERSION_DETAIL */ '1.0.3', + version: /* @VERSION */ '1.0.4', + version_detail: /* @VERSION_DETAIL */ '1.0.4', version_name: /* @VERSION_NAME */ 'Ghost-Dog', }; \ No newline at end of file