Skip to content
This repository was archived by the owner on Jun 15, 2026. It is now read-only.
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
4 changes: 3 additions & 1 deletion .github/workflows/ci-main-backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,9 @@ jobs:
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add server/pom.xml
DATE=$(date +'%Y-%m-%d')
python3 tools/promote-changelog.py "api-v${{ steps.version.outputs.version }}" "${DATE}" CHANGELOG-server.md
git add server/pom.xml CHANGELOG-server.md
git commit -m "chore: bump api version to ${{ steps.version.outputs.version }} [skip ci]"
git push

Expand Down
22 changes: 22 additions & 0 deletions .github/workflows/ci-main-frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,3 +81,25 @@ jobs:
git tag -a ${{ steps.version.outputs.tag }} -m "Release ${{ steps.version.outputs.tag }}"
git push origin ${{ steps.version.outputs.tag }}

- name: Promote changelog
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
DATE=$(date +'%Y-%m-%d')
TAG="${{ steps.version.outputs.tag }}"
for i in 1 2 3; do
git pull --rebase origin main
python3 tools/promote-changelog.py "${TAG}" "${DATE}" CHANGELOG-client.md
if git diff --quiet CHANGELOG-client.md; then
echo "No changelog changes to commit"
exit 0
fi
git add CHANGELOG-client.md
git commit -m "docs: promote [Unreleased] to ${TAG} [skip ci]"
git push && exit 0
git reset HEAD~1
sleep 5
done
echo "ERROR: Failed to push changelog after 3 attempts"
exit 1

20 changes: 18 additions & 2 deletions CHANGELOG.md → CHANGELOG-client.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog
# Changelog — Client (App)

All notable changes to this project will be documented in this file.
All notable changes to the client (app) will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
Expand All @@ -9,6 +9,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added
- Shell Script to confirm new users using docker and sql;

### Changed
- Bumped frontend dependencies to latest versions;
- `@types/node` from `25.9.1` to `25.9.2`
- `dompurify` from `3.4.7` to `3.4.8`
- `i18next` from `26.3.0` to `26.3.1`
- `react` from `19.2.6` to `19.2.7`
- `react-dom` from `19.2.6` to `19.2.7`
- `react-router` from `7.16.0` to `7.17.0`
- `@types/react` from `19.2.15` to `19.2.17`
- `eslint-plugin-n` from `18.0.1` to `18.1.0`
- `typescript-eslint` from `8.60.0` to `8.61.0`
- Ngrok and Dev Docker composer files to run using local users id and group id (`UID` and `GID`);

---

## [app-v2026.06.08.21](https://github.com/RMCampos/tasknote/releases/tag/app-v2026.06.08.21) - 2026-06-08
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG-server.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Changelog — Server (API)

All notable changes to the server (API) will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

---

## [Unreleased]

---
Loading
Loading