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
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
if: success()
run: . ./CI/prepare-javadocs.sh

- name: Bump SNAPSHOT version on master (final release only)
- name: Bump SNAPSHOT version
if: success() && github.event.inputs.release_type == 'release'
run: . ./CI/bump-snapshot.sh
env:
Expand Down
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -152,3 +152,8 @@ Desktop.ini
/.sisyphus
/.codegraph
/.serena
/.omo

# MemPalace per-project files (issue #185)
mempalace.yaml
entities.json
12 changes: 6 additions & 6 deletions CI/bump-snapshot.sh
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
#!/bin/bash
set -e

# This script bumps the version on main to the next SNAPSHOT after a final release.
# This script bumps the version to the next SNAPSHOT after a final release.
# It assumes we are on a detached HEAD after the release tag.

RELEASE_VERSION="${RELEASE_VERSION:?}"
CURRENT_BRANCH=$(git branch --show-current)
if [ "$CURRENT_BRANCH" != "main" ]; then
git checkout main
git pull origin main
if [ "$CURRENT_BRANCH" != "spring-boot-4" ]; then
git checkout spring-boot-4
git pull origin spring-boot-4
fi

# Compute next snapshot version: increment patch, e.g., 3.0.0 -> 3.0.1-SNAPSHOT
Expand All @@ -23,7 +23,7 @@ else
exit 1
fi

echo "Bumping version on main to $NEXT_SNAPSHOT"
echo "Bumping version to $NEXT_SNAPSHOT"

# Update all POMs in one go
./mvnw versions:set -DnewVersion="${NEXT_SNAPSHOT}" -DgenerateBackupPoms=false
Expand All @@ -33,4 +33,4 @@ git config user.email "action@github.com"
git config user.name "GitHub Action"
git add -A
git commit -m "Bump version to ${NEXT_SNAPSHOT}"
git push origin main
git push origin spring-boot-4
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"root":["./src/App.tsx","./src/main.tsx","./src/vite-env.d.ts","./src/api/mcpAdminApi.ts","./src/components/AuditDashboard.tsx","./src/components/CopyAsCurl.tsx","./src/components/HttpMethodBadge.tsx","./src/components/JsonTreeView.tsx","./src/components/KpiDashboard.tsx","./src/components/Layout.tsx","./src/components/ResponseViewer.tsx","./src/components/SecuritySettings.tsx","./src/components/Sparkline.tsx","./src/components/ToolDetail.tsx","./src/components/ToolForm.tsx","./src/components/ToolList.tsx","./src/hooks/useSecuritySettings.ts","./src/hooks/useToolExecution.ts","./src/hooks/useToolMetrics.ts","./src/hooks/useTools.ts","./src/lib/utils.ts","./src/types/index.ts"],"version":"5.7.3"}
{"root":["./src/app.tsx","./src/main.tsx","./src/vite-env.d.ts","./src/api/mcpadminapi.ts","./src/components/auditdashboard.tsx","./src/components/copyascurl.tsx","./src/components/httpmethodbadge.tsx","./src/components/jsontreeview.tsx","./src/components/kpidashboard.tsx","./src/components/layout.tsx","./src/components/responseviewer.tsx","./src/components/securitysettings.tsx","./src/components/sparkline.tsx","./src/components/tooldetail.tsx","./src/components/toolform.tsx","./src/components/toollist.tsx","./src/hooks/usesecuritysettings.ts","./src/hooks/usetoolexecution.ts","./src/hooks/usetoolmetrics.ts","./src/hooks/usetools.ts","./src/lib/utils.ts","./src/types/index.ts"],"version":"5.7.3"}
Loading