From 7b292f06638b3c360b1e82ffb60dedc69a196aac Mon Sep 17 00:00:00 2001 From: Juan Escalada <97265671+jescalada@users.noreply.github.com> Date: Mon, 4 May 2026 12:00:38 +0900 Subject: [PATCH 1/7] fix: v1.1.0 bugfix testing Added information about testing GitLabFlow and simulating a bugfix. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index fe84b343b..5442e8c0a 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ # GitProxy v1.1.0 Testing GitLabFlow branching strategy. This should automatically create a draft setting the project to `v1.1.0`. + +Simulating bugfix in v1.1.0. This should trigger a v1.1.1 publish from the `release-drafter.yml`. From 62bfaf93ba3e258c88f20c0830e65f7755452fa0 Mon Sep 17 00:00:00 2001 From: Juan Escalada Date: Mon, 4 May 2026 12:02:33 +0900 Subject: [PATCH 2/7] fix: simulated bugfix in v1.1.0 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5442e8c0a..04ba05798 100644 --- a/README.md +++ b/README.md @@ -2,4 +2,4 @@ Testing GitLabFlow branching strategy. This should automatically create a draft setting the project to `v1.1.0`. -Simulating bugfix in v1.1.0. This should trigger a v1.1.1 publish from the `release-drafter.yml`. +Simulating bugfix in v1.1.0. This should trigger a v1.1.1 publish from the `release-drafter.yml`. Making a new PR. From bcb65c979eb53184437150494a2883d1cd59da9f Mon Sep 17 00:00:00 2001 From: Juan Escalada Date: Mon, 4 May 2026 13:41:41 +0900 Subject: [PATCH 3/7] fix: filter-by-commitish option in config --- .github/release-drafter-config.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/release-drafter-config.yml b/.github/release-drafter-config.yml index dc4953957..0bea1b1ff 100644 --- a/.github/release-drafter-config.yml +++ b/.github/release-drafter-config.yml @@ -2,6 +2,7 @@ name-template: 'v$RESOLVED_VERSION' tag-template: 'v$RESOLVED_VERSION' change-template: '- $TITLE @$AUTHOR (#$NUMBER)' +filter-by-commitish: true template: | ### What's Changed From 02be6c55503e05c2859b84ec02fa0ecaff82c841 Mon Sep 17 00:00:00 2001 From: Juan Escalada Date: Mon, 4 May 2026 14:17:44 +0900 Subject: [PATCH 4/7] chore: bump `release/1.2` branch to `1.2.1` for release --- package-lock.json | 6 +++--- package.json | 2 +- packages/git-proxy-cli/package.json | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index ccaf37b04..8cf4be8b7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@jescalada/git-proxy-deployment-testing", - "version": "1.1.0", + "version": "1.2.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@jescalada/git-proxy-deployment-testing", - "version": "1.1.0", + "version": "1.2.1", "license": "Apache-2.0", "workspaces": [ "./packages/git-proxy-cli" @@ -15066,7 +15066,7 @@ }, "packages/git-proxy-cli": { "name": "@jescalada/git-proxy-cli", - "version": "1.1.0", + "version": "1.2.1", "license": "Apache-2.0", "dependencies": { "@finos/git-proxy": "2.0.0-rc.6", diff --git a/package.json b/package.json index fda5d44d6..4f58bfcfa 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@jescalada/git-proxy-deployment-testing", - "version": "1.1.0", + "version": "1.2.1", "description": "Testing deployment workflows for @finos/git-proxy.", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/git-proxy-cli/package.json b/packages/git-proxy-cli/package.json index 8cb4d36f9..3bb3ecdaa 100644 --- a/packages/git-proxy-cli/package.json +++ b/packages/git-proxy-cli/package.json @@ -1,6 +1,6 @@ { "name": "@jescalada/git-proxy-cli", - "version": "1.1.0", + "version": "1.2.1", "description": "Command line interface tool for FINOS GitProxy.", "bin": { "git-proxy-cli": "./dist/index.js" From 545a56a01ec3de6ed86152efc49b164573598284 Mon Sep 17 00:00:00 2001 From: Juan Escalada Date: Mon, 4 May 2026 14:55:48 +0900 Subject: [PATCH 5/7] fix: simulate bugfix in 1.2.1 --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index e3b408d3e..49258e1e3 100644 --- a/README.md +++ b/README.md @@ -5,3 +5,5 @@ Testing GitLabFlow branching strategy. This should automatically create a draft Simulating bugfix in v1.1.0. This should trigger a v1.1.1 publish from the `release-drafter.yml`. Making a new PR. Testing new feature on `v1.1.0`, from `main`. This should automatically create a draft setting the project to `v1.2.0`. Note that `v1.1.0` release has already been made, and a `v1.1.1` bugfix draft is present. + +Simulating bugfix in `v1.2.1`. This should create a `1.2.2` draft release. From cb87f3578f13060edafc83feb86666bed8ff8ce0 Mon Sep 17 00:00:00 2001 From: Juan Escalada Date: Mon, 4 May 2026 15:07:22 +0900 Subject: [PATCH 6/7] fix: bump package.json to 1.2.2 to trigger NPM flow --- package-lock.json | 6 +++--- package.json | 2 +- packages/git-proxy-cli/package.json | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index 8cf4be8b7..f518014b9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@jescalada/git-proxy-deployment-testing", - "version": "1.2.1", + "version": "1.2.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@jescalada/git-proxy-deployment-testing", - "version": "1.2.1", + "version": "1.2.2", "license": "Apache-2.0", "workspaces": [ "./packages/git-proxy-cli" @@ -15066,7 +15066,7 @@ }, "packages/git-proxy-cli": { "name": "@jescalada/git-proxy-cli", - "version": "1.2.1", + "version": "1.2.2", "license": "Apache-2.0", "dependencies": { "@finos/git-proxy": "2.0.0-rc.6", diff --git a/package.json b/package.json index 4f58bfcfa..d054d8d41 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@jescalada/git-proxy-deployment-testing", - "version": "1.2.1", + "version": "1.2.2", "description": "Testing deployment workflows for @finos/git-proxy.", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/git-proxy-cli/package.json b/packages/git-proxy-cli/package.json index 3bb3ecdaa..132b2bcb1 100644 --- a/packages/git-proxy-cli/package.json +++ b/packages/git-proxy-cli/package.json @@ -1,6 +1,6 @@ { "name": "@jescalada/git-proxy-cli", - "version": "1.2.1", + "version": "1.2.2", "description": "Command line interface tool for FINOS GitProxy.", "bin": { "git-proxy-cli": "./dist/index.js" From 8172a663227d6a3096eace6d3325e32398b28298 Mon Sep 17 00:00:00 2001 From: Juan Escalada Date: Mon, 4 May 2026 15:32:11 +0900 Subject: [PATCH 7/7] fix: invalid release tagging in npm.yml --- .github/workflows/npm.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/npm.yml b/.github/workflows/npm.yml index 76e913b9c..2fd003baf 100644 --- a/.github/workflows/npm.yml +++ b/.github/workflows/npm.yml @@ -72,7 +72,7 @@ jobs: # Otherwise, this is a maintenance release on an older line # Tag as v. so users can pin to it MAJOR_MINOR=$(echo "$VERSION" | cut -d. -f1,2) - DIST_TAG="v${MAJOR_MINOR}" + DIST_TAG="release-${MAJOR_MINOR}" echo "Maintenance release detected, publishing under '$DIST_TAG' tag" npm publish "${PUBLISH_FLAGS[@]}" --tag "$DIST_TAG" fi