Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.3.1] - 2026-08-18

### Security

- **deepmerge-ts**: fix high stack exhaustion (DoS) vulnerability - override to ^8.0.0
- GHSA-ggr8-5vv4-36mx / CVE-2026-40345: unbounded recursion in `deepmerge()`/`deepmergeInto()` when merging recursive object graphs can crash the process with `RangeError: Maximum call stack size exceeded` (availability only; plain JSON is not affected)

## [2.3.0] - 2026-08-17

### Added
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "scrumooth",
"version": "2.3.0",
"version": "2.3.1",
"private": true,
"license": "Apache-2.0",
"description": "Scrumooth - Self-hosted Scrum tool, faithful to the Scrum Guide",
Expand Down
2 changes: 1 addition & 1 deletion packages/backend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@scrumooth/backend",
"version": "2.3.0",
"version": "2.3.1",
"private": true,
"license": "Apache-2.0",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion packages/frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@scrumooth/frontend",
"version": "2.3.0",
"version": "2.3.1",
"private": true,
"license": "Apache-2.0",
"description": "Frontend UI for Scrumooth - Self-hosted Scrum tool, faithful to the Scrum Guide",
Expand Down
2 changes: 1 addition & 1 deletion packages/shared/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@scrumooth/shared",
"version": "2.3.0",
"version": "2.3.1",
"private": true,
"type": "module",
"license": "Apache-2.0",
Expand Down
Loading