mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
release version and Changelog
This commit is contained in:
parent
8697818749
commit
7e305d74a7
21
CHANGELOG.md
21
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)
|
||||
|
||||
@ -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",
|
||||
|
||||
@ -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",
|
||||
|
||||
@ -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",
|
||||
|
||||
@ -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/",
|
||||
|
||||
@ -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/",
|
||||
|
||||
@ -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",
|
||||
|
||||
@ -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",
|
||||
|
||||
@ -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",
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user