From 684354087657f9de21799430ad93dbce751693fe Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 19 Jul 2023 12:14:55 +0000 Subject: [PATCH 1/4] Update changelog for v2.21.0 --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f5f5bd44eb..47ad08d784 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ See the [releases page](https://github.com/github/codeql-action/releases) for the relevant changes to the CodeQL CLI and language packs. -## [UNRELEASED] +## 2.21.0 - 19 Jul 2023 - CodeQL Action now requires CodeQL CLI 2.9.4 or later. For more information, see the corresponding changelog entry for CodeQL Action version 2.20.4. [#1724](https://github.com/github/codeql-action/pull/1724) From c1144b5fa0f9ee58b2a81203a163997fc83155aa Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 19 Jul 2023 12:49:44 +0000 Subject: [PATCH 2/4] Update changelog and version after v2.21.0 --- CHANGELOG.md | 4 ++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 47ad08d784..ae61e8bb76 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # CodeQL Action Changelog +## [UNRELEASED] + +No user facing changes. + See the [releases page](https://github.com/github/codeql-action/releases) for the relevant changes to the CodeQL CLI and language packs. ## 2.21.0 - 19 Jul 2023 diff --git a/package-lock.json b/package-lock.json index a6b2d5d76c..f66318fc8f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "codeql", - "version": "2.21.0", + "version": "2.21.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "codeql", - "version": "2.21.0", + "version": "2.21.1", "license": "MIT", "dependencies": { "@actions/artifact": "^1.1.1", diff --git a/package.json b/package.json index 2cbac8788d..a39b6c0cfd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "codeql", - "version": "2.21.0", + "version": "2.21.1", "private": true, "description": "CodeQL action", "scripts": { From 6484fb09f66321ff2dac94f5af2515ec54a5618f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 19 Jul 2023 12:53:51 +0000 Subject: [PATCH 3/4] Update checked-in dependencies --- node_modules/.package-lock.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node_modules/.package-lock.json b/node_modules/.package-lock.json index c0850ea844..ec118fc543 100644 --- a/node_modules/.package-lock.json +++ b/node_modules/.package-lock.json @@ -1,6 +1,6 @@ { "name": "codeql", - "version": "2.21.0", + "version": "2.21.1", "lockfileVersion": 3, "requires": true, "packages": { From 79ad6142b1784f5869c912c5560c29370487a292 Mon Sep 17 00:00:00 2001 From: Henry Mercer Date: Wed, 19 Jul 2023 13:56:46 +0100 Subject: [PATCH 4/4] Update script to put unreleased section in the right place --- .github/workflows/post-release-mergeback.yml | 2 +- CHANGELOG.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/post-release-mergeback.yml b/.github/workflows/post-release-mergeback.yml index 58a64d2cf4..1a38dfd74c 100644 --- a/.github/workflows/post-release-mergeback.yml +++ b/.github/workflows/post-release-mergeback.yml @@ -130,7 +130,7 @@ jobs: npm version patch --no-git-tag-version # Update the changelog - perl -i -pe 's/^/## \[UNRELEASED\]\n\nNo user facing changes.\n\n/ if($.==3)' CHANGELOG.md + perl -i -pe 's/^/## \[UNRELEASED\]\n\nNo user facing changes.\n\n/ if($.==5)' CHANGELOG.md git add . git commit -m "Update changelog and version after ${VERSION}" diff --git a/CHANGELOG.md b/CHANGELOG.md index ae61e8bb76..7503ba9850 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,11 @@ # CodeQL Action Changelog +See the [releases page](https://github.com/github/codeql-action/releases) for the relevant changes to the CodeQL CLI and language packs. + ## [UNRELEASED] No user facing changes. -See the [releases page](https://github.com/github/codeql-action/releases) for the relevant changes to the CodeQL CLI and language packs. - ## 2.21.0 - 19 Jul 2023 - CodeQL Action now requires CodeQL CLI 2.9.4 or later. For more information, see the corresponding changelog entry for CodeQL Action version 2.20.4. [#1724](https://github.com/github/codeql-action/pull/1724)