increase version, update changelog

This commit is contained in:
einhornimmond 2025-07-29 10:54:32 +02:00
parent 8db786c13c
commit 122977cc97
12 changed files with 27 additions and 12 deletions

View File

@ -4,8 +4,23 @@ 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.6.0](https://github.com/gradido/gradido/compare/2.3.1...2.6.0)
#### [2.6.1](https://github.com/gradido/gradido/compare/2.3.1...2.6.1)
- refactor(frontend): transaction and contribution form [`#3519`](https://github.com/gradido/gradido/pull/3519)
- fix(federation): fix some attack vectors in communities handshake [`#3517`](https://github.com/gradido/gradido/pull/3517)
- fix(other): start sh when called from webhook [`#3515`](https://github.com/gradido/gradido/pull/3515)
- feat(backend): introduce encrypted jwts in backend federation communication [`#3510`](https://github.com/gradido/gradido/pull/3510)
- feat(other): write playwright tests [`#3509`](https://github.com/gradido/gradido/pull/3509)
- feat(frontend): keep branding project in browser url bar [`#3512`](https://github.com/gradido/gradido/pull/3512)
- feat(other): add clear command for yarn and turbo [`#3513`](https://github.com/gradido/gradido/pull/3513)
- fix(other): in deploy run only core count tasks with turbo at the same time [`#3511`](https://github.com/gradido/gradido/pull/3511)
- refactor(federation): move code for checking pending transactions [`#3508`](https://github.com/gradido/gradido/pull/3508)
- refactor(other): add shared module [`#3507`](https://github.com/gradido/gradido/pull/3507)
- refactor(other): centralize logging code, use log4js config-generator [`#3506`](https://github.com/gradido/gradido/pull/3506)
- fix(frontend): fix password labels [`#3504`](https://github.com/gradido/gradido/pull/3504)
- fix(backend): update contribution frontend link [`#3502`](https://github.com/gradido/gradido/pull/3502)
- refactor(database): move database connection into database module [`#3503`](https://github.com/gradido/gradido/pull/3503)
- chore(release): v2.6.0 beta [`#3501`](https://github.com/gradido/gradido/pull/3501)
- fix(frontend): fix contribution link [`#3500`](https://github.com/gradido/gradido/pull/3500)
- feat(other): disable index html caching, reenable limits [`#3497`](https://github.com/gradido/gradido/pull/3497)
- fix(admin): fix accidently remove user states [`#3496`](https://github.com/gradido/gradido/pull/3496)

View File

@ -3,7 +3,7 @@
"description": "Administration Interface for Gradido",
"main": "index.js",
"author": "Gradido Academy - https://www.gradido.net",
"version": "2.6.0",
"version": "2.6.1",
"license": "Apache-2.0",
"scripts": {
"dev": "vite",

View File

@ -1,6 +1,6 @@
{
"name": "backend",
"version": "2.6.0",
"version": "2.6.1",
"private": false,
"description": "Gradido unified backend providing an API-Service for Gradido Transactions",
"repository": "https://github.com/gradido/gradido/backend",

View File

@ -1,6 +1,6 @@
{
"name": "config-schema",
"version": "2.6.0",
"version": "2.6.1",
"description": "Gradido Config for validate config",
"main": "./build/index.js",
"types": "./src/index.ts",

View File

@ -1,6 +1,6 @@
{
"name": "core",
"version": "2.6.0",
"version": "2.6.1",
"description": "Gradido Core Code, High-Level Shared Code, with dependencies on other modules",
"main": "./build/index.js",
"types": "./src/index.ts",

View File

@ -1,6 +1,6 @@
{
"name": "database",
"version": "2.6.0",
"version": "2.6.1",
"description": "Gradido Database Tool to execute database migrations",
"main": "./build/index.js",
"types": "./src/index.ts",

View File

@ -1,6 +1,6 @@
{
"name": "dht-node",
"version": "2.6.0",
"version": "2.6.1",
"description": "Gradido dht-node module",
"main": "src/index.ts",
"repository": "https://github.com/gradido/gradido/",

View File

@ -1,6 +1,6 @@
{
"name": "gradido-dlt-connector",
"version": "2.6.0",
"version": "2.6.1",
"description": "Gradido DLT-Connector",
"main": "src/index.ts",
"repository": "https://github.com/gradido/gradido/",

View File

@ -1,6 +1,6 @@
{
"name": "federation",
"version": "2.6.0",
"version": "2.6.1",
"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",

View File

@ -1,6 +1,6 @@
{
"name": "frontend",
"version": "2.6.0",
"version": "2.6.1",
"private": true,
"scripts": {
"dev": "concurrently \"yarn watch-scss\" \"vite\"",

View File

@ -1,6 +1,6 @@
{
"name": "gradido",
"version": "2.6.0",
"version": "2.6.1",
"description": "Gradido",
"main": "index.js",
"repository": "git@github.com:gradido/gradido.git",

View File

@ -1,6 +1,6 @@
{
"name": "shared",
"version": "2.6.0",
"version": "2.6.1",
"description": "Gradido Shared Code, Low-Level Shared Code, without dependencies on other modules",
"main": "./build/index.js",
"types": "./src/index.ts",