diff --git a/CHANGELOG.md b/CHANGELOG.md index 1872fabc6..5add38df6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,49 @@ 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.6.2](https://github.com/gradido/gradido/compare/1.6.1...1.6.2) + +- updated_changelog_library [`#1437`](https://github.com/gradido/gradido/pull/1437) +- admin interface does user have member area [`#1416`](https://github.com/gradido/gradido/pull/1416) +- Refactor - Remove community_server [`#1408`](https://github.com/gradido/gradido/pull/1408) +- 1389 transactions tabs are not well designed [`#1425`](https://github.com/gradido/gradido/pull/1425) +- fix_community_name_description [`#1429`](https://github.com/gradido/gradido/pull/1429) +- remove_unnecessary_repositories [`#1406`](https://github.com/gradido/gradido/pull/1406) +- clean_database_users [`#1427`](https://github.com/gradido/gradido/pull/1427) +- remove_gradido_node [`#1431`](https://github.com/gradido/gradido/pull/1431) +- add updateTransactions function for GDD balance if reload page [`#1423`](https://github.com/gradido/gradido/pull/1423) +- 1390 display error when navigating to send form without any gdd [`#1424`](https://github.com/gradido/gradido/pull/1424) +- have an delete button for the search input [`#1413`](https://github.com/gradido/gradido/pull/1413) +- reset all selected users in mass creation [`#1422`](https://github.com/gradido/gradido/pull/1422) +- combine_user_tables [`#1411`](https://github.com/gradido/gradido/pull/1411) +- feat: Test Table Row Details Toggling [`#1420`](https://github.com/gradido/gradido/pull/1420) +- feat: Improved Tests for Mass Creation [`#1419`](https://github.com/gradido/gradido/pull/1419) +- refactor: Mixin for Creation Labels [`#1409`](https://github.com/gradido/gradido/pull/1409) +- Marque community_server as to be removed. [`#1407`](https://github.com/gradido/gradido/pull/1407) +- database_transaction_signatures [`#1368`](https://github.com/gradido/gradido/pull/1368) +- database_pending_creations [`#1367`](https://github.com/gradido/gradido/pull/1367) +- fix_seed [`#1410`](https://github.com/gradido/gradido/pull/1410) +- clean_database [`#1362`](https://github.com/gradido/gradido/pull/1362) +- multiple creation already selected users remain saved [`#1376`](https://github.com/gradido/gradido/pull/1376) +- fix: Localize Datetime in Admin Interface [`#1327`](https://github.com/gradido/gradido/pull/1327) +- feat: Remove Login Server [`#1383`](https://github.com/gradido/gradido/pull/1383) +- refactor: Tag Last Version with Login Server [`#1391`](https://github.com/gradido/gradido/pull/1391) +- if an email is not confirmed, a user cannot be added to any multiple … [`#1374`](https://github.com/gradido/gradido/pull/1374) +- cleanups_refactors [`#1404`](https://github.com/gradido/gradido/pull/1404) +- 1365 clear bootstrap version for vue2, preparation for new template [`#1366`](https://github.com/gradido/gradido/pull/1366) +- upgrade vue version from ^2.6.11 to 2.6.12 [`#1382`](https://github.com/gradido/gradido/pull/1382) +- remove vue-qrcode from dashboard-plugin [`#1364`](https://github.com/gradido/gradido/pull/1364) +- remove unused package from frontend [`#1360`](https://github.com/gradido/gradido/pull/1360) +- Removed community_server folder, removed reference to community_server. [`e5c3c3c`](https://github.com/gradido/gradido/commit/e5c3c3c57a2343e1c4d7b8fbc658edcd78f1a292) +- migration 20 [`c0156d4`](https://github.com/gradido/gradido/commit/c0156d4a298ac11f0d1ccabb859fdcbd56d391ee) +- fix frontend tests [`3f0aa00`](https://github.com/gradido/gradido/commit/3f0aa00dc36499b13878eda469312e00100074f4) + #### [1.6.1](https://github.com/gradido/gradido/compare/1.6.0...1.6.1) +> 28 January 2022 + +- Hotfix elopage [`#1358`](https://github.com/gradido/gradido/pull/1358) +- change standard text für creation [`#1343`](https://github.com/gradido/gradido/pull/1343) - Check if user email is activated to make a creation. [`#1356`](https://github.com/gradido/gradido/pull/1356) - fix: Creation Confirmation User Ids [`#1345`](https://github.com/gradido/gradido/pull/1345) - fix and improve test [`1c833d3`](https://github.com/gradido/gradido/commit/1c833d394f502a7aed2b5a648c0171a2fe4ee1e6) diff --git a/admin/package.json b/admin/package.json index 11ca864c9..02f9dd556 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.6.1", + "version": "1.6.2", "license": "MIT", "private": false, "scripts": { diff --git a/backend/package.json b/backend/package.json index 399b8fcd1..349c80553 100644 --- a/backend/package.json +++ b/backend/package.json @@ -1,6 +1,6 @@ { "name": "gradido-backend", - "version": "1.6.1", + "version": "1.6.2", "description": "Gradido unified backend providing an API-Service for Gradido Transactions", "main": "src/index.ts", "repository": "https://github.com/gradido/gradido/backend", diff --git a/database/package.json b/database/package.json index 72ee807b9..3c52b7e72 100644 --- a/database/package.json +++ b/database/package.json @@ -1,6 +1,6 @@ { "name": "gradido-database", - "version": "1.6.1", + "version": "1.6.2", "description": "Gradido Database Tool to execute database migrations", "main": "src/index.ts", "repository": "https://github.com/gradido/gradido/database", diff --git a/frontend/package.json b/frontend/package.json index 80ec9f258..2bbbeddf3 100755 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "bootstrap-vue-gradido-wallet", - "version": "1.6.1", + "version": "1.6.2", "private": true, "scripts": { "start": "node run/server.js", diff --git a/package.json b/package.json index f06922551..5b202f216 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gradido", - "version": "1.6.1", + "version": "1.6.2", "description": "Gradido", "main": "index.js", "repository": "git@github.com:gradido/gradido.git",