This repository was archived by the owner on Jun 15, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5858 run : |
5959 git config user.name "github-actions[bot]"
6060 git config user.email "github-actions[bot]@users.noreply.github.com"
61- git add server/pom.xml
61+ DATE=$(date +'%Y-%m-%d')
62+ python3 tools/promote-changelog.py "api-v${{ steps.version.outputs.version }}" "${DATE}" CHANGELOG-server.md
63+ git add server/pom.xml CHANGELOG-server.md
6264 git commit -m "chore: bump api version to ${{ steps.version.outputs.version }} [skip ci]"
6365 git push
6466
Original file line number Diff line number Diff line change 8181 git tag -a ${{ steps.version.outputs.tag }} -m "Release ${{ steps.version.outputs.tag }}"
8282 git push origin ${{ steps.version.outputs.tag }}
8383
84+ - name : Promote changelog
85+ run : |
86+ git config user.name "github-actions[bot]"
87+ git config user.email "github-actions[bot]@users.noreply.github.com"
88+ DATE=$(date +'%Y-%m-%d')
89+ TAG="${{ steps.version.outputs.tag }}"
90+ for i in 1 2 3; do
91+ git pull --rebase origin main
92+ python3 tools/promote-changelog.py "${TAG}" "${DATE}" CHANGELOG-client.md
93+ if git diff --quiet CHANGELOG-client.md; then
94+ echo "No changelog changes to commit"
95+ exit 0
96+ fi
97+ git add CHANGELOG-client.md
98+ git commit -m "docs: promote [Unreleased] to ${TAG} [skip ci]"
99+ git push && exit 0
100+ git reset HEAD~1
101+ sleep 5
102+ done
103+ echo "ERROR: Failed to push changelog after 3 attempts"
104+ exit 1
105+
Original file line number Diff line number Diff line change 1- # Changelog
1+ # Changelog — Client (App)
22
3- All notable changes to this project will be documented in this file.
3+ All notable changes to the client (app) will be documented in this file.
44
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.1.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
@@ -9,6 +9,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99
1010## [ Unreleased]
1111
12+ ### Added
13+ - Shell Script to confirm new users using docker and sql;
14+
15+ ### Changed
16+ - Bumped frontend dependencies to latest versions;
17+ - ` @types/node ` from ` 25.9.1 ` to ` 25.9.2 `
18+ - ` dompurify ` from ` 3.4.7 ` to ` 3.4.8 `
19+ - ` i18next ` from ` 26.3.0 ` to ` 26.3.1 `
20+ - ` react ` from ` 19.2.6 ` to ` 19.2.7 `
21+ - ` react-dom ` from ` 19.2.6 ` to ` 19.2.7 `
22+ - ` react-router ` from ` 7.16.0 ` to ` 7.17.0 `
23+ - ` @types/react ` from ` 19.2.15 ` to ` 19.2.17 `
24+ - ` eslint-plugin-n ` from ` 18.0.1 ` to ` 18.1.0 `
25+ - ` typescript-eslint ` from ` 8.60.0 ` to ` 8.61.0 `
26+ - Ngrok and Dev Docker composer files to run using local users id and group id (` UID ` and ` GID ` );
27+
1228---
1329
1430## [ app-v2026.06.08.21] ( https://github.com/RMCampos/tasknote/releases/tag/app-v2026.06.08.21 ) - 2026-06-08
Original file line number Diff line number Diff line change 1+ # Changelog — Server (API)
2+
3+ All notable changes to the server (API) will be documented in this file.
4+
5+ The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.1.0/ ) ,
6+ and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7+
8+ ---
9+
10+ ## [ Unreleased]
11+
12+ ---
You can’t perform that action at this time.
0 commit comments