Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 55 additions & 0 deletions .github/workflows/verify-commit-signatures.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
name: Verify Commit Signatures

on:
pull_request:
branches: [main]

permissions:
contents: read

jobs:
verify-signatures:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Verify commit signatures
shell: sh
env:
GH_TOKEN: ${{ github.token }}
run: |
FAILED=0
REPO="${{ github.repository }}"

for COMMIT in $(gh pr view "${{ github.event.pull_request.number }}" --repo "$REPO" --json commits --jq '.commits[].oid'); do
VERIFIED=$(gh api "repos/$REPO/commits/$COMMIT" --jq '.commit.verification.verified')
REASON=$(gh api "repos/$REPO/commits/$COMMIT" --jq '.commit.verification.reason')
COMMITTER=$(gh api "repos/$REPO/commits/$COMMIT" --jq '.commit.committer.email')
MESSAGE=$(gh api "repos/$REPO/commits/$COMMIT" --jq '.commit.message' | head -1)
SHORT=$(echo "$COMMIT" | cut -c1-7)

echo "---"
echo "Commit: $SHORT $MESSAGE"
echo " Committer: $COMMITTER"
echo " Verified: $VERIFIED"
echo " Reason: $REASON"

if [ "$VERIFIED" != "true" ]; then
echo " FAIL: Commit is not verified (reason: $REASON)"
FAILED=1
else
echo " OK"
fi
done

echo ""
if [ "$FAILED" -eq 1 ]; then
echo "VERIFICATION FAILED: One or more commits are not verified."
echo "All commits must be GPG-signed and verified by GitHub."
exit 1
else
echo "All commits verified."
fi
9 changes: 5 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.0.0-alpha.71] - 2026-03-27

### Fixed

- Exit with error when stdin is not a terminal (empty piped stdin no longer hangs)
- Slash commands no longer discard pending file attachments
- `session-clear` and `session-new` commands no longer exit command mode
- Suppress unhandled rejection crash when aborting a query early

### Security

- Fixed [CVE-2026-33672](https://github.com/advisories/GHSA-c2c7-rcm5-vvqj) (ReDoS) and [GHSA-3v7f-55p6-f55p](https://github.com/advisories/GHSA-3v7f-55p6-f55p) (method injection) in picomatch
- Fixed [CVE-2026-33532](https://github.com/advisories/GHSA-48c2-rrv3-qjmp) (stack overflow) in yaml
- Fixed [GHSA-v3rj-xjv7-4jmq](https://github.com/advisories/GHSA-v3rj-xjv7-4jmq) (DoS) in smol-toml

### Fixed

- `session-clear` and `session-new` commands no longer exit command mode

### Changed

- Updated `@shellicar/mcp-exec` to 1.0.0-preview.6
Expand Down Expand Up @@ -120,6 +120,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Patched CVE-2026-27903 and CVE-2026-27904 in minimatch

[1.0.0-alpha.71]: https://github.com/shellicar/claude-cli/releases/tag/1.0.0-alpha.71
[1.0.0-alpha.70]: https://github.com/shellicar/claude-cli/releases/tag/1.0.0-alpha.70
[1.0.0-alpha.69]: https://github.com/shellicar/claude-cli/releases/tag/1.0.0-alpha.69
[1.0.0-alpha.68]: https://github.com/shellicar/claude-cli/releases/tag/1.0.0-alpha.68
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@shellicar/claude-cli",
"version": "1.0.0-alpha.70",
"version": "1.0.0-alpha.71",
"private": false,
"type": "module",
"description": "Interactive CLI for Claude AI with terminal UI",
Expand Down
Loading