Skip to content
This repository was archived by the owner on Jun 15, 2026. It is now read-only.

Commit 93efe09

Browse files
authored
chore: bump client dependencies (#64)
* chore: bump client dependencies * docs: update changelog file * docs: update changelog * feat: craete separate changelog files
1 parent a88a678 commit 93efe09

7 files changed

Lines changed: 226 additions & 110 deletions

File tree

.github/workflows/ci-main-backend.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,9 @@ jobs:
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

.github/workflows/ci-main-frontend.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,3 +81,25 @@ jobs:
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+

CHANGELOG.md renamed to CHANGELOG-client.md

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and 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

CHANGELOG-server.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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+
---

0 commit comments

Comments
 (0)