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
6 changes: 6 additions & 0 deletions plugins/analytics-module-segment/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 0.4.0 (2026-08-27)

### Features

- upgrade all the things - node, backstage core, etc. ([#32](https://github.com/segmentio/segment-backstage-plugins/issues/32)) ([691011f](https://github.com/segmentio/segment-backstage-plugins/commit/691011f220eb09b3b78f8c2698bf2cd31cb04e1a))

# 0.3.0 (2026-08-19)

### Features
Expand Down
2 changes: 1 addition & 1 deletion plugins/analytics-module-segment/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@segment/backstage-plugin-analytics-module-segment",
"description": "Backstage analytics module plugin for Segment",
"version": "0.3.0",
"version": "0.4.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
Expand Down
6 changes: 6 additions & 0 deletions plugins/proxy-sigv4-backend/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 0.6.0 (2026-08-27)

### Features

- upgrade all the things - node, backstage core, etc. ([#32](https://github.com/segmentio/segment-backstage-plugins/issues/32)) ([691011f](https://github.com/segmentio/segment-backstage-plugins/commit/691011f220eb09b3b78f8c2698bf2cd31cb04e1a))

# 0.5.0 (2026-08-19)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion plugins/proxy-sigv4-backend/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@segment/backstage-plugin-proxy-sigv4-backend",
"description": "Backstage backend plugin that configures endpoints for signing and proxying HTTP requests with AWS SigV4",
"version": "0.5.0",
"version": "0.6.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
Expand Down
4 changes: 2 additions & 2 deletions scripts/prerelease.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ fi

yarn lerna version --no-git-tag-version --no-private "$target_version"

release_branch="release/$(date +%s)"
release_branch="release-$(date +%s)"
git switch --create "$release_branch"
git add --all # include all files including any untracked
git commit --all --message "chore(release): generate release"
git commit --all --signoff --message "chore(release): generate release"

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we need --signoff for the DCO check

git push --set-upstream origin "$release_branch"

echo "Release notes generated and pushed to \"$release_branch\". Please open a pull request, get it reviewed, and merge to trigger package publishing."