From 05ade2bc63760fe9576077ad296156f8862719ac Mon Sep 17 00:00:00 2001 From: Cloud Agent Date: Tue, 3 Mar 2026 02:38:51 +0000 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=90=9B=20fix(core):=20use=20access=20?= =?UTF-8?q?token=20for=20tag=20push=20to=20trigger=20release=20workflow=20?= =?UTF-8?q?[patch=20candidate]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/version-controller.yml | 4 +-- CHANGELOG.md | 37 ++++++++++++++++++++++++ 2 files changed, 39 insertions(+), 2 deletions(-) diff --git a/.github/workflows/version-controller.yml b/.github/workflows/version-controller.yml index caecbc3..80f3a0d 100644 --- a/.github/workflows/version-controller.yml +++ b/.github/workflows/version-controller.yml @@ -99,7 +99,7 @@ jobs: run: | git push origin "${{ steps.create_tag.outputs.tag_name }}" env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }} - name: Ensure on Current Branch id: ensure_branch if: steps.check_arrow.outputs.contains_arrow == 'true' @@ -148,4 +148,4 @@ jobs: git tag "$TAG_NAME" git push origin "$TAG_NAME" env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }} diff --git a/CHANGELOG.md b/CHANGELOG.md index ca6d961..6e1e48c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,40 @@ +## [1.1.16] - 2026-03-03 + +### Features + +- **core**: add inline release notes and update cicd workflows (`patch candidate`) + +### Documentation + +- **core**: update changelog + +## [1.1.15] - 2026-03-02 + +### Bug Fixes + +- **core**: remove unreleased section to prevent hook conflicts during push (`patch candidate`) +- **core**: fix changelog generator incremental update, noise filter, tag dates and optional keywords (`patch candidate`) +- **deps**: update pylint requirement from ^3.3.0 to ^4.0.5 (#96) +- **deps**: update cryptography requirement from ^45.0.4 to ^46.0.5 (#95) +- **deps**: update setuptools requirement from ^80.9.0 to ^82.0.0 (#94) +- **deps**: update black requirement from ^25.1.0 to ^26.1.0 (#92) +- **deps**: update certifi requirement from ^2025.1.31 to ^2026.1.4 (#91) +- **deps**: update pylint requirement from ^3.3.0 to ^4.0.5 +- **deps**: update cryptography requirement from ^45.0.4 to ^46.0.5 +- **deps**: update setuptools requirement from ^80.9.0 to ^82.0.0 +- **deps**: update black requirement from ^25.1.0 to ^26.1.0 +- **deps**: update certifi requirement from ^2025.1.31 to ^2026.1.4 +- **deps**: update cryptography requirement from ^44.0.0 to ^45.0.4 (#78) +- **deps**: update requests requirement from ~=2.32.3 to ~=2.32.4 (#77) +- **deps**: update setuptools requirement from ^78.1.0 to ^80.9.0 (#76) +- **deps**: update cryptography requirement from ^44.0.0 to ^45.0.4 +- **deps**: update requests requirement from ~=2.32.3 to ~=2.32.4 +- **deps**: update setuptools requirement from ^78.1.0 to ^80.9.0 + +### Chores + +- **core**: restrict file-modifying hooks to pre-commit stage only (`patch candidate`) + ## [1.1.14] - 2025-04-06 ### Bug Fixes From 4c1b87bd27292fb8315860fa4cd8edbd5b153537 Mon Sep 17 00:00:00 2001 From: Cloud Agent Date: Tue, 3 Mar 2026 02:41:10 +0000 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=94=96=20Bump=20version:=201.1.16=20?= =?UTF-8?q?=E2=86=92=201.1.17?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index cc79292..4f0dcc9 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.1.16 +current_version = 1.1.17 commit = True tag = False diff --git a/pyproject.toml b/pyproject.toml index 9e7e044..ef72022 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "scripts" -version = "1.1.16" +version = "1.1.17" description = "CICD Core Scripts" authors = ["B "] license = "GLPv3"