diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c3238507a..3c486cb20 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -139,7 +139,6 @@ jobs: build_test_nginx: name: Docker Build Test - Nginx runs-on: ubuntu-latest - needs: [build_test_backend, build_test_admin, build_test_frontend] steps: ########################################################################## # CHECKOUT CODE ########################################################## @@ -438,7 +437,7 @@ jobs: report_name: Coverage Frontend type: lcov result_path: ./coverage/lcov.info - min_coverage: 95 + min_coverage: 89 token: ${{ github.token }} ############################################################################## @@ -528,7 +527,7 @@ jobs: report_name: Coverage Backend type: lcov result_path: ./backend/coverage/lcov.info - min_coverage: 74 + min_coverage: 76 token: ${{ github.token }} ########################################################################## diff --git a/CHANGELOG.md b/CHANGELOG.md index 26b71ea03..19957a309 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,30 @@ All notable changes to this project will be documented in this file. Dates are d Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). +#### [1.16.0](https://github.com/gradido/gradido/compare/1.15.0...1.16.0) + +- refactor(backend): cleaning user related old password junk [`#2426`](https://github.com/gradido/gradido/pull/2426) +- fix(database): consistent transaction table [`#2453`](https://github.com/gradido/gradido/pull/2453) +- refactor(backend): dissolve admin resolver [`#2416`](https://github.com/gradido/gradido/pull/2416) +- fix(backend): email verification code never expired [`#2418`](https://github.com/gradido/gradido/pull/2418) +- fix(database): consistent deleted at bewteen users and user contacts [`#2451`](https://github.com/gradido/gradido/pull/2451) +- feat(backend): log client timezone offset [`#2454`](https://github.com/gradido/gradido/pull/2454) +- refactor(backend): refactor more emails to translatables [`#2398`](https://github.com/gradido/gradido/pull/2398) +- fix(backend): delete / undelete email contact as well [`#2444`](https://github.com/gradido/gradido/pull/2444) +- feat(backend): 🍰 Mark creation via link [`#2363`](https://github.com/gradido/gradido/pull/2363) +- fix(backend): run all timers for high values [`#2452`](https://github.com/gradido/gradido/pull/2452) +- fix(backend): critical bug [`#2443`](https://github.com/gradido/gradido/pull/2443) +- fix(other): missing files for docker production build [`#2442`](https://github.com/gradido/gradido/pull/2442) +- fix(frontend): in contribution messages formular a message can be send twice, when clicking the submit button fast [`#2424`](https://github.com/gradido/gradido/pull/2424) +- fix(backend): wrong month for contribution near turn of month [`#2201`](https://github.com/gradido/gradido/pull/2201) +- feat(backend): add federation config properties [`#2374`](https://github.com/gradido/gradido/pull/2374) +- fix(backend): moved all jest & type-definition related packages into the `devDependencies` section [`#2385`](https://github.com/gradido/gradido/pull/2385) + #### [1.15.0](https://github.com/gradido/gradido/compare/1.14.1...1.15.0) +> 26 November 2022 + +- chore(release): v1.15.0 [`#2425`](https://github.com/gradido/gradido/pull/2425) - fix(database): wrong balance and decay values [`#2423`](https://github.com/gradido/gradido/pull/2423) - fix(backend): wrong balance after transaction receive [`#2422`](https://github.com/gradido/gradido/pull/2422) - feat(other): feature gradido roadmap [`#2301`](https://github.com/gradido/gradido/pull/2301) diff --git a/admin/package.json b/admin/package.json index 75800a526..58eb48d09 100644 --- a/admin/package.json +++ b/admin/package.json @@ -3,7 +3,7 @@ "description": "Administraion Interface for Gradido", "main": "index.js", "author": "Moriz Wahl", - "version": "1.15.0", + "version": "1.16.0", "license": "Apache-2.0", "private": false, "scripts": { diff --git a/admin/src/components/ContentFooter.vue b/admin/src/components/ContentFooter.vue index a875100f6..5947c7b9e 100644 --- a/admin/src/components/ContentFooter.vue +++ b/admin/src/components/ContentFooter.vue @@ -1,7 +1,7 @@ diff --git a/frontend/src/components/ClipboardCopy.vue b/frontend/src/components/ClipboardCopy.vue index ebab31aad..7c4e014ec 100644 --- a/frontend/src/components/ClipboardCopy.vue +++ b/frontend/src/components/ClipboardCopy.vue @@ -1,19 +1,23 @@