diff --git a/CHANGELOG.md b/CHANGELOG.md index 5dfc8a529..c3c9a3a9e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,27 @@ 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). -#### [2.4.1](https://github.com/gradido/gradido/compare/2.3.1...2.4.1) +#### [2.4.4](https://github.com/gradido/gradido/compare/2.3.1...2.4.4) +- fix(admin): copy of env variables [`#3420`](https://github.com/gradido/gradido/pull/3420) +- fix(backend): toggle for using worker threads for password encryption [`#3418`](https://github.com/gradido/gradido/pull/3418) +- fix(admin): fix resubmission [`#3416`](https://github.com/gradido/gradido/pull/3416) +- feat(backend): run password encryption in worker thread [`#3410`](https://github.com/gradido/gradido/pull/3410) +- feat(frontend): user location with vue3 in cooperation with montreal [`#3397`](https://github.com/gradido/gradido/pull/3397) +- feat(backend): optimize find user query on login [`#3415`](https://github.com/gradido/gradido/pull/3415) +- feat(frontend): show gdt comments [`#3412`](https://github.com/gradido/gradido/pull/3412) +- fix(backend): humhub use first name instead of username field for initalien based alias [`#3403`](https://github.com/gradido/gradido/pull/3403) +- fix(frontend): repair gdt transaction list pagination [`#3409`](https://github.com/gradido/gradido/pull/3409) +- fix(frontend): updated tests [`#3406`](https://github.com/gradido/gradido/pull/3406) +- feat(backend): speed up gdt request with keep alive connections [`#3392`](https://github.com/gradido/gradido/pull/3392) +- fix(frontend): fix contribution data handling [`#3405`](https://github.com/gradido/gradido/pull/3405) +- feat(database): use the same mariadb version everywhere [`#3396`](https://github.com/gradido/gradido/pull/3396) +- feat(frontend): scale down two img [`#3393`](https://github.com/gradido/gradido/pull/3393) +- feat(other): remove docker autostart [`#3395`](https://github.com/gradido/gradido/pull/3395) +- feat(frontend): add feedback fixes + map feature fixes [`#3400`](https://github.com/gradido/gradido/pull/3400) +- feat(other): increase e2e page load timeout [`#3394`](https://github.com/gradido/gradido/pull/3394) +- chore(release): v2.4.1 beta [`#3388`](https://github.com/gradido/gradido/pull/3388) +- chore(release): v2.4.0 beta [`#3387`](https://github.com/gradido/gradido/pull/3387) - feat(backend): auto register new user in humhub [`#3386`](https://github.com/gradido/gradido/pull/3386) - feat(backend): try and catch user sync [`#3385`](https://github.com/gradido/gradido/pull/3385) - feat(backend): increase initialien count [`#3369`](https://github.com/gradido/gradido/pull/3369) diff --git a/admin/package.json b/admin/package.json index efa0a0b4e..878eae220 100644 --- a/admin/package.json +++ b/admin/package.json @@ -3,7 +3,7 @@ "description": "Administration Interface for Gradido", "main": "index.js", "author": "Moriz Wahl", - "version": "2.4.1", + "version": "2.4.4", "license": "Apache-2.0", "scripts": { "start": "node run/server.js", diff --git a/backend/package.json b/backend/package.json index df138106e..d9152a1b9 100644 --- a/backend/package.json +++ b/backend/package.json @@ -1,6 +1,6 @@ { "name": "gradido-backend", - "version": "2.4.1", + "version": "2.4.4", "description": "Gradido unified backend providing an API-Service for Gradido Transactions", "main": "src/index.ts", "repository": "https://github.com/gradido/gradido/backend", @@ -51,8 +51,8 @@ "type-graphql": "^1.1.1", "typed-rest-client": "^1.8.11", "uuid": "^8.3.2", - "xregexp": "^5.1.1", - "workerpool": "^9.2.0" + "workerpool": "^9.2.0", + "xregexp": "^5.1.1" }, "devDependencies": { "@eslint-community/eslint-plugin-eslint-comments": "^3.2.1", diff --git a/database/package.json b/database/package.json index dc9bd39c4..8f3810010 100644 --- a/database/package.json +++ b/database/package.json @@ -1,6 +1,6 @@ { "name": "gradido-database", - "version": "2.4.1", + "version": "2.4.4", "description": "Gradido Database Tool to execute database migrations", "main": "src/index.ts", "repository": "https://github.com/gradido/gradido/database", diff --git a/dht-node/package.json b/dht-node/package.json index 4c6868784..5a481b823 100644 --- a/dht-node/package.json +++ b/dht-node/package.json @@ -1,6 +1,6 @@ { "name": "gradido-dht-node", - "version": "2.4.1", + "version": "2.4.4", "description": "Gradido dht-node module", "main": "src/index.ts", "repository": "https://github.com/gradido/gradido/", diff --git a/dlt-connector/package.json b/dlt-connector/package.json index 0ed9aa89e..d6e3351d1 100644 --- a/dlt-connector/package.json +++ b/dlt-connector/package.json @@ -1,6 +1,6 @@ { "name": "gradido-dlt-connector", - "version": "2.4.1", + "version": "2.4.4", "description": "Gradido DLT-Connector", "main": "src/index.ts", "repository": "https://github.com/gradido/gradido/", diff --git a/federation/package.json b/federation/package.json index ecf2d2d50..13481b069 100644 --- a/federation/package.json +++ b/federation/package.json @@ -1,6 +1,6 @@ { "name": "gradido-federation", - "version": "2.4.1", + "version": "2.4.4", "description": "Gradido federation module providing Gradido-Hub-Federation and versioned API for inter community communication", "main": "src/index.ts", "repository": "https://github.com/gradido/gradido/federation", diff --git a/frontend/package.json b/frontend/package.json index ac205e77a..97c41adc6 100755 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "bootstrap-vue-gradido-wallet", - "version": "2.4.1", + "version": "2.4.4", "private": true, "scripts": { "start": "node run/server.js", diff --git a/package.json b/package.json index 19eb4d847..b97f748ff 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gradido", - "version": "2.4.1", + "version": "2.4.4", "description": "Gradido", "main": "index.js", "repository": "git@github.com:gradido/gradido.git",