diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8be6967e9..a48f97ba9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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: diff --git a/.gitignore b/.gitignore index 919db9a0b..0951b0691 100644 --- a/.gitignore +++ b/.gitignore @@ -152,3 +152,8 @@ Desktop.ini /.sisyphus /.codegraph /.serena +/.omo + +# MemPalace per-project files (issue #185) +mempalace.yaml +entities.json \ No newline at end of file diff --git a/CI/bump-snapshot.sh b/CI/bump-snapshot.sh index a25767475..63bc7827b 100644 --- a/CI/bump-snapshot.sh +++ b/CI/bump-snapshot.sh @@ -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 @@ -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 @@ -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 \ No newline at end of file +git push origin spring-boot-4 \ No newline at end of file diff --git a/springdoc-openapi-starter-common-mcp/src/main/frontend/tsconfig.tsbuildinfo b/springdoc-openapi-starter-common-mcp/src/main/frontend/tsconfig.tsbuildinfo index 0cf685a93..309e7ec64 100644 --- a/springdoc-openapi-starter-common-mcp/src/main/frontend/tsconfig.tsbuildinfo +++ b/springdoc-openapi-starter-common-mcp/src/main/frontend/tsconfig.tsbuildinfo @@ -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"} \ No newline at end of file +{"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"} \ No newline at end of file