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
5,336 changes: 1,944 additions & 3,392 deletions CHANGELOG.md

Large diffs are not rendered by default.

7 changes: 0 additions & 7 deletions crates/wasm/CHANGELOG.md

This file was deleted.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
"@enclave-e3/config": "workspace:*",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "22.7.5",
"conventional-changelog-cli": "^5.0.0",
"auto-changelog": "^2.5.0",
"eslint": "^9.39.1",
"glob": "^11.0.3",
"husky": "^9.1.7",
Expand Down
7 changes: 0 additions & 7 deletions packages/enclave-config/CHANGELOG.md

This file was deleted.

9 changes: 0 additions & 9 deletions packages/enclave-react/CHANGELOG.md

This file was deleted.

10 changes: 0 additions & 10 deletions packages/enclave-sdk/CHANGELOG.md

This file was deleted.

483 changes: 96 additions & 387 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

23 changes: 8 additions & 15 deletions scripts/bump-versions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ class VersionBumper {
// Run prettier from root before committing to avoid hook failures
console.log(' Running prettier from root...')
try {
execSync('pnpm prettier --write .', {
execSync('pnpm format', {
cwd: this.rootDir,
stdio: 'pipe',
})
Expand Down Expand Up @@ -280,27 +280,20 @@ class VersionBumper {
console.log('\n📝 Generating changelog...')

try {
execSync('pnpm conventional-changelog --help', {
execSync('pnpm auto-changelog --help', {
stdio: 'ignore',
cwd: this.rootDir,
})

const changelogPath = join(this.rootDir, 'CHANGELOG.md')

if (!existsSync(changelogPath)) {
// First time - generate entire changelog
console.log(' Generating full changelog from git history...')
execSync('npx conventional-changelog -p angular -i CHANGELOG.md -s -r 0', {
cwd: this.rootDir,
stdio: 'inherit',
})
} else {
// Update existing changelog with changes since last release
console.log(' Updating changelog with new changes...')
execSync('npx conventional-changelog -p angular -i CHANGELOG.md -s', {
console.log('\n📝 Generating changelog...')
try {
execSync('pnpm auto-changelog -o CHANGELOG.md --commit-limit false --tag-prefix v', {
cwd: this.rootDir,
stdio: 'inherit',
})
console.log(' ✓ Changelog generated successfully')
} catch (error) {
console.warn(' ⚠️ Could not generate changelog:', error)
}

console.log(' ✓ Changelog generated successfully')
Expand Down
Loading