chore: update changelog generation starting from v2.4.6-alpha.4

This commit is contained in:
Roman Kelesidis 2025-06-20 09:01:03 +03:00
commit 84c6ca17b1
No known key found for this signature in database
GPG key ID: D8157C4D4C4C6DB4
4 changed files with 4 additions and 1134 deletions

View file

@ -22,7 +22,7 @@ jobs:
id: git-cliff
with:
config: cliff.toml
args: v2.4.5-rc.2.. --verbose
args: v2.4.6-alpha.4.. --verbose
env:
OUTPUT: CHANGELOG.md
GITHUB_REPO: ${{ github.repository }}

1131
HISTORY.md

File diff suppressed because it is too large Load diff

View file

@ -39,7 +39,8 @@ $items = [
'crowdin.yml',
'HISTORY.md',
'README.md',
'SECURITY.md'
'SECURITY.md',
'UPGRADE_GUIDE.md'
];
foreach ($items as $item) {

View file

@ -114,7 +114,7 @@ if ($bytesWritten === 0) {
out("\n- Config file has been updated!", 'success');
// Update CHANGELOG.md
runProcess('npx git-cliff v2.4.5-rc.2.. --config cliff.toml --tag "' . $version . '" > CHANGELOG.md');
runProcess('npx git-cliff v2.4.6-alpha.4.. --config cliff.toml --tag "' . $version . '" > CHANGELOG.md');
// Git add & commit
runProcess('git add -A && git commit -m "release: ' . escapeshellarg($version) . (!empty($versionEmoji) ? (' ' . $versionEmoji) : '') . '"');