From 7af42f9df51675ce7b8468ca876a6fa6f4c30a47 Mon Sep 17 00:00:00 2001 From: haeter525 Date: Thu, 5 Mar 2026 22:23:14 +0800 Subject: [PATCH 1/4] Update codex cli and use new flags --- .github/workflows/github-release-draft.yml | 4 ++-- .github/workflows/github-release-issue-pr.yml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/github-release-draft.yml b/.github/workflows/github-release-draft.yml index 76d5cf71..49405b11 100644 --- a/.github/workflows/github-release-draft.yml +++ b/.github/workflows/github-release-draft.yml @@ -24,7 +24,7 @@ jobs: - name: Install Codex CLI run: | - sudo npm install -g @openai/codex@0.1.2505172129 + sudo npm install -g @openai/codex@0.110.0 - name: Collect changelog from PR env: @@ -33,7 +33,7 @@ jobs: GH_TOKEN: ${{ github.token }} run: | sed '/--/q' debian/changelog | sed '1, 2d' | head -n -2 > changelog.txt - codex -a auto-edit -q \ + codex --full-auto \ """ Remove the '*' and indent in changelog.txt. """ diff --git a/.github/workflows/github-release-issue-pr.yml b/.github/workflows/github-release-issue-pr.yml index 5573c98a..1258aea0 100644 --- a/.github/workflows/github-release-issue-pr.yml +++ b/.github/workflows/github-release-issue-pr.yml @@ -39,7 +39,7 @@ jobs: - name: Install Codex CLI run: | - sudo npm install -g @openai/codex@0.1.2505172129 + sudo npm install -g @openai/codex@0.110.0 - name: Install dependencies run: | @@ -62,7 +62,7 @@ jobs: lastVersionNum="$(git tag --sort=-creatordate | head -n 1)" monthOfLastRelease=$(echo $lastVersionNum | awk -F. '{print $2}') - codex -a auto-edit -q \ + codex --full-auto \ """ Follow the following instructions: 1. Read the git commit messages from the month $monthOfLastRelease of this year. @@ -92,7 +92,7 @@ jobs: run: | dateToday="$(TZ=Asia/Taipei date +'%a, %d %b %Y %H:%M:%S %z')" versionNum=${{ steps.gen_issue.outputs.version }} - codex -a auto-edit -q \ + codex --full-auto \ """ Follow the instructions below to update debian/changelog for $versionNum. In debian/changelog, you are going to append a new section, and describe what the new @@ -138,7 +138,7 @@ jobs: CODEX_QUIET_MODE: 1 run: | versionNum=${{ steps.gen_issue.outputs.version }} - codex -a auto-edit -q \ + codex --full-auto \ """ Update version information in the following files for next release $versionNum: 1. debian/control: Standards-Version From 62f2496548e4a9c68db25f65cd3021a480961873 Mon Sep 17 00:00:00 2001 From: haeter525 Date: Thu, 5 Mar 2026 22:31:21 +0800 Subject: [PATCH 2/4] Refine command --- .github/workflows/github-release-draft.yml | 2 +- .github/workflows/github-release-issue-pr.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/github-release-draft.yml b/.github/workflows/github-release-draft.yml index 49405b11..efc36707 100644 --- a/.github/workflows/github-release-draft.yml +++ b/.github/workflows/github-release-draft.yml @@ -33,7 +33,7 @@ jobs: GH_TOKEN: ${{ github.token }} run: | sed '/--/q' debian/changelog | sed '1, 2d' | head -n -2 > changelog.txt - codex --full-auto \ + codex exec --full-auto \ """ Remove the '*' and indent in changelog.txt. """ diff --git a/.github/workflows/github-release-issue-pr.yml b/.github/workflows/github-release-issue-pr.yml index 1258aea0..d4e27742 100644 --- a/.github/workflows/github-release-issue-pr.yml +++ b/.github/workflows/github-release-issue-pr.yml @@ -62,7 +62,7 @@ jobs: lastVersionNum="$(git tag --sort=-creatordate | head -n 1)" monthOfLastRelease=$(echo $lastVersionNum | awk -F. '{print $2}') - codex --full-auto \ + codex exec --full-auto \ """ Follow the following instructions: 1. Read the git commit messages from the month $monthOfLastRelease of this year. @@ -92,7 +92,7 @@ jobs: run: | dateToday="$(TZ=Asia/Taipei date +'%a, %d %b %Y %H:%M:%S %z')" versionNum=${{ steps.gen_issue.outputs.version }} - codex --full-auto \ + codex exec --full-auto \ """ Follow the instructions below to update debian/changelog for $versionNum. In debian/changelog, you are going to append a new section, and describe what the new @@ -138,7 +138,7 @@ jobs: CODEX_QUIET_MODE: 1 run: | versionNum=${{ steps.gen_issue.outputs.version }} - codex --full-auto \ + codex exec --full-auto \ """ Update version information in the following files for next release $versionNum: 1. debian/control: Standards-Version From 7d0c0f93632250898c98c8e9a2ebd46f4219ee79 Mon Sep 17 00:00:00 2001 From: haeter525 Date: Thu, 5 Mar 2026 22:33:05 +0800 Subject: [PATCH 3/4] Refine env var name --- .github/workflows/github-release-draft.yml | 2 +- .github/workflows/github-release-issue-pr.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/github-release-draft.yml b/.github/workflows/github-release-draft.yml index efc36707..a36c1e30 100644 --- a/.github/workflows/github-release-draft.yml +++ b/.github/workflows/github-release-draft.yml @@ -28,7 +28,7 @@ jobs: - name: Collect changelog from PR env: - OPENAI_API_KEY: ${{ secrets.OPENAI_KEY }} + CODEX_API_KEY: ${{ secrets.OPENAI_KEY }} CODEX_QUIET_MODE: 1 GH_TOKEN: ${{ github.token }} run: | diff --git a/.github/workflows/github-release-issue-pr.yml b/.github/workflows/github-release-issue-pr.yml index d4e27742..296d6d8e 100644 --- a/.github/workflows/github-release-issue-pr.yml +++ b/.github/workflows/github-release-issue-pr.yml @@ -48,7 +48,7 @@ jobs: - name: Generate PR summary issue id: gen_issue env: - OPENAI_API_KEY: ${{ secrets.OPENAI_KEY }} + CODEX_API_KEY: ${{ secrets.OPENAI_KEY }} CODEX_QUIET_MODE: 1 GH_TOKEN: ${{ github.token }} run: | @@ -87,7 +87,7 @@ jobs: - name: Update changelog for Kali package env: - OPENAI_API_KEY: ${{ secrets.OPENAI_KEY }} + CODEX_API_KEY: ${{ secrets.OPENAI_KEY }} CODEX_QUIET_MODE: 1 run: | dateToday="$(TZ=Asia/Taipei date +'%a, %d %b %Y %H:%M:%S %z')" @@ -134,7 +134,7 @@ jobs: - name: Update version information env: - OPENAI_API_KEY: ${{ secrets.OPENAI_KEY }} + CODEX_API_KEY: ${{ secrets.OPENAI_KEY }} CODEX_QUIET_MODE: 1 run: | versionNum=${{ steps.gen_issue.outputs.version }} From 6993c7991eb60f1aebd79fde27a46688fcb67538 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 5 Mar 2026 14:36:17 +0000 Subject: [PATCH 4/4] Update version information for v26.3.1 --- debian/changelog | 12 ++++++++++++ debian/control | 2 +- docs/source/conf.py | 2 +- quark/__init__.py | 2 +- 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/debian/changelog b/debian/changelog index be573a63..88528582 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,15 @@ +quark-engine (26.3.1-0kali1) kali-dev; urgency=medium + + * Bug Fix + + - Fix rule path handling when specifying rules. (#238) + + * Document Enhancement + + - Add a FAQ page to the documentation. (#241) + + -- Zin Wong Thu, 05 Mar 2026 22:35:10 +0800 + quark-engine (26.2.1-0kali1) kali-dev; urgency=medium * Dependency Update diff --git a/debian/control b/debian/control index ed7f89b4..148f1da4 100644 --- a/debian/control +++ b/debian/control @@ -7,7 +7,7 @@ Build-Depends: debhelper-compat (= 12), dh-virtualenv (>= 0.8), python3, -Standards-Version: 26.2.1 +Standards-Version: 26.3.1 Homepage: https://github.com/quark-engine/quark-engine Vcs-Browser: https://github.com/quark-engine/quark-engine Vcs-Git: https://github.com/quark-engine/quark-engine diff --git a/docs/source/conf.py b/docs/source/conf.py index 44483233..fdf69373 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -22,7 +22,7 @@ author = 'KunYu Chen, JunWei Song, YuShiang Dang, ShengFone Lu, AnWei Kung, ShunTe Lin, Vivek, Krishna' # The full version, including alpha/beta/rc tags -release = 'v26.2.1' +release = 'v26.3.1' # -- General configuration --------------------------------------------------- diff --git a/quark/__init__.py b/quark/__init__.py index f4c31355..50606c6f 100644 --- a/quark/__init__.py +++ b/quark/__init__.py @@ -1 +1 @@ -__version__ = "26.2.1" +__version__ = "26.3.1"