Releases: avivsinai/jenkins-cli
Release list
v0.0.35
jk v0.0.35 (2026-06-19T14:47:06Z)
Welcome to this new release of jk!
[0.0.35] - 2026-06-19
Added
- Added a Codex plugin composer icon for marketplace display (#85).
jk auth loginnow verifies credentials against the controller (/whoAmI/api/json): definite rejections fail the login with SSO-aware guidance and restore the previous context, token, and active selection; unreachable controllers save unverified with a warning;--no-verifyskips the check (#77).- Requests that get redirected to a sign-in page (Jenkins form login,
securityRealm/commenceLogin, or identity-provider authorize endpoints) now fail with a clear "use a Jenkins API token" error instead of an HTML parse failure; other redirects, such as artifact downloads to object storage, are unaffected (#77). - End-to-end coverage proving Jenkins API tokens keep working when the controller uses the
google-loginSSO realm, and that password Basic auth fails with actionable guidance there (#77). - SSO auth guidance now tells users to capture the Jenkins user ID from browser
/whoAmI/api/jsonwhen email/login fails, covering realms that use opaque provider IDs (#102).
Fixed
jk run viewand other JSON-decoding requests now fail on Jenkins non-2xx responses instead of printing zero-value data such asRun #0 SUCCESSafter a 401/403/404 (#101).- Made
--allow-insecure-storeandJK_ALLOW_INSECURE_STORE=1select encrypted file storage directly instead of trying native Linux keyrings first, so SecretService/KWallet failures no longer block the requested file backend (#88, #89).
Changed
- Documented noninteractive encrypted file-store unlocks via
JK_KEYRING_PASSPHRASE,KEYRING_FILE_PASSWORD, orKEYRING_PASSWORD, and clarified thatKEYRING_BACKENDremains the explicit backend override.
Full Changelog: v0.0.34...v0.0.35
Installation
Homebrew (macOS/Linux)
brew install avivsinai/tap/jkScoop (Windows)
scoop bucket add avivsinai https://github.com/avivsinai/scoop-bucket
scoop install jkGo Install
go install github.com/avivsinai/jenkins-cli/cmd/jk@v0.0.35Binary Downloads
Download the appropriate binary for your platform from the assets below.
v0.0.34
jk v0.0.34 (2026-05-13T20:46:24Z)
Welcome to this new release of jk!
[0.0.34] - 2026-05-13
Changed
- Clarified
jk auth loginusername/token wording and added README/docs/spec/skill sections walking Google/OIDC/SSO users through the Jenkins API token workflow (#82). - Bumped runtime dependencies:
github.com/mattn/go-isatty0.0.21 → 0.0.22 (Windows 7 pipe-name fix) andgithub.com/rs/zerolog1.35.0 → 1.35.1 (restoreErr()logging whenErrorStackMarshalerreturns nil) (#75).
Full Changelog: v0.0.33...v0.0.34
Installation
Homebrew (macOS/Linux)
brew install avivsinai/tap/jkScoop (Windows)
scoop bucket add avivsinai https://github.com/avivsinai/scoop-bucket
scoop install jkGo Install
go install github.com/avivsinai/jenkins-cli/cmd/jk@v0.0.34Binary Downloads
Download the appropriate binary for your platform from the assets below.
v0.0.33
jk v0.0.33 (2026-05-11T12:10:56Z)
Welcome to this new release of jk!
[0.0.33] - 2026-05-11
Fixed
- Removed the accidentally committed root-level
jkbinary and added a repository hygiene CI check to prevent it from returning (#79). - Checked the Darwin keychain lock file close error so local macOS lint is clean (#79).
Full Changelog: v0.0.32...v0.0.33
Installation
Homebrew (macOS/Linux)
brew install avivsinai/tap/jkScoop (Windows)
scoop bucket add avivsinai https://github.com/avivsinai/scoop-bucket
scoop install jkGo Install
go install github.com/avivsinai/jenkins-cli/cmd/jk@v0.0.33Binary Downloads
Download the appropriate binary for your platform from the assets below.
v0.0.32
jk v0.0.32 (2026-04-24T09:19:04Z)
Welcome to this new release of jk!
[0.0.32] - 2026-04-24
Added
- Release archives now bundle the
skills/jk/directory alongside the CLI binary and docs, so plugin/skill consumers get documentation out of the box. - Release artifacts now ship CycloneDX SBOMs (one
.sbom.jsonper archive) generated by Syft. - Linux release artifacts now include Debian packages (
jk_X.Y.Z_{amd64,arm64}.deb) in addition to tarballs. gh attestation verify --repo avivsinai/jenkins-cli <file>now verifies build-provenance attestations on every released artifact (the v0.0.31 attestation step failed on macOS runners and is repaired here).cmd/docgengenerates Cobra command-reference markdown underskills/jk/rules/. New Makefile targetsgenerate-skillandcheck-generated-skillenforce the rules stay in sync with the CLI surface in CI.
Changed
- Renamed
scripts/sign-darwin-binary.shtoscripts/codesign-macos.shto match the bitbucket-cli convention. - Release pipeline now uses portable shell for attestation-subject collection (removes the Bash-4
mapfiledependency that made v0.0.31's attestation step fail on macOS runners). - Release verification now runs
gofmt,go vet,make check-generated-skill, tests, and a version-embedded build gate, matching bitbucket-cli. .goreleaser.yaml changelog.useswitched fromgithubtogitfor more hermetic release-note generation.
Full Changelog: v0.0.31...v0.0.32
Installation
Homebrew (macOS/Linux)
brew install avivsinai/tap/jkScoop (Windows)
scoop bucket add avivsinai https://github.com/avivsinai/scoop-bucket
scoop install jkGo Install
go install github.com/avivsinai/jenkins-cli/cmd/jk@v0.0.32Binary Downloads
Download the appropriate binary for your platform from the assets below.
v0.0.31
jk v0.0.31 (2026-04-24T07:31:38Z)
Welcome to this new release of jk!
[0.0.31] - 2026-04-24
Fixed
- macOS Keychain "Always Allow" now survives
brew upgrade jk. The release codesign script pins the Designated Requirement to the bundle identifier (-r='designated => identifier "..."') instead of letting it default to the cdhash, which changes on every build. This mirrors the fix shipped inbitbucket-clifor the same underlying issue. - Token saves on macOS now delete any stale Keychain item before writing, so the new entry is created with the current binary's DR instead of inheriting an ACL from a previous jk build. Re-run
jk auth loginonce after upgrading to benefit. - macOS Keychain items created by jk now set
KeychainTrustApplicationon darwin, so fresh items trust the calling binary at create time instead of prompting on every access.KeychainAccessibleWhenUnlockedis set alongside for forward compatibility (currently a no-op on the file-based Keychain path 99designs/keyring uses). - Widened
secret.Store.Deleteto treatos.ErrNotExistas success so the encrypted file backend matches Keychain semantics.
Full Changelog: v0.0.30...v0.0.31
Installation
Homebrew (macOS/Linux)
brew install avivsinai/tap/jkScoop (Windows)
scoop bucket add avivsinai https://github.com/avivsinai/scoop-bucket
scoop install jkGo Install
go install github.com/avivsinai/jenkins-cli/cmd/jk@v0.0.31Binary Downloads
Download the appropriate binary for your platform from the assets below.
v0.0.30
jk v0.0.30 (2026-04-07T09:00:48Z)
Welcome to this new release of jk!
[0.0.30] - 2026-04-07
Fixed
- Skipped nil parameter values in rerun payloads so optional Jenkins parameters are no longer serialized as the literal string
<nil>(#46). - Rendered nil parameter values as empty string instead of
<nil>in human-readablejk run viewoutput (#59). - Consolidated skill publishing into the release workflow so it no longer depends on tag-push events that
GITHUB_TOKENcannot trigger. - Pinned all GitHub Actions to commit SHAs across every workflow for supply-chain safety.
- Added missing
timeout-minutesandconcurrencyblocks to all workflows. - Standalone publish-skill workflow now accepts
workflow_dispatchwith an explicittaginput.
Changed
- Bumped
github.com/itchyny/gojqfrom 0.12.18 to 0.12.19 (bugfixes + regexp caching performance) (#58). - Bumped
actions/setup-nodefrom 4.4.0 to 6.3.0 in CI workflows (#57).
Full Changelog: v0.0.29...v0.0.30
Installation
Homebrew (macOS/Linux)
brew install avivsinai/tap/jkScoop (Windows)
scoop bucket add avivsinai https://github.com/avivsinai/scoop-bucket
scoop install jkGo Install
go install github.com/avivsinai/jenkins-cli/cmd/jk@v0.0.30Binary Downloads
Download the appropriate binary for your platform from the assets below.
v0.0.29
jk v0.0.29 (2026-04-05T11:36:05Z)
Welcome to this new release of jk!
[0.0.29] - 2026-04-05
Fixed
- Consolidated skill publishing into the release workflow so it no longer depends on tag-push events that
GITHUB_TOKENcannot trigger. - Pinned all GitHub Actions to commit SHAs across every workflow for supply-chain safety.
- Added missing
timeout-minutesandconcurrencyblocks to all workflows. - Standalone publish-skill workflow now accepts
workflow_dispatchwith an explicittaginput.
Full Changelog: v0.0.28...v0.0.29
Installation
Homebrew (macOS/Linux)
brew install avivsinai/tap/jkScoop (Windows)
scoop bucket add avivsinai https://github.com/avivsinai/scoop-bucket
scoop install jkGo Install
go install github.com/avivsinai/jenkins-cli/cmd/jk@v0.0.29Binary Downloads
Download the appropriate binary for your platform from the assets below.
v0.0.28
jk v0.0.28 (2026-04-02T17:18:12Z)
Welcome to this new release of jk!
[0.0.28] - 2026-04-02
Fixed
- Passed the temp release-notes path directly to GoReleaser so GitHub Actions preserves the
--release-notesargument during publishing.
Full Changelog: v0.0.27...v0.0.28
Installation
Homebrew (macOS/Linux)
brew install avivsinai/tap/jkScoop (Windows)
scoop bucket add avivsinai https://github.com/avivsinai/scoop-bucket
scoop install jkGo Install
go install github.com/avivsinai/jenkins-cli/cmd/jk@v0.0.28Binary Downloads
Download the appropriate binary for your platform from the assets below.
v0.0.25
jk v0.0.25 (2026-04-01T10:58:40Z)
Welcome to this new release of jk!
Changelog
Full Changelog: v0.0.24...v0.0.25
Installation
Homebrew (macOS/Linux)
brew install avivsinai/tap/jkScoop (Windows)
scoop bucket add avivsinai https://github.com/avivsinai/scoop-bucket
scoop install jkGo Install
go install github.com/avivsinai/jenkins-cli/cmd/jk@v0.0.25Binary Downloads
Download the appropriate binary for your platform from the assets below.
v0.0.24
jk v0.0.24 (2026-04-01T09:10:06Z)
Welcome to this new release of jk!
Changelog
🐛 Bug Fixes
- 608ba63: fix(release): handle already-published retry path (@avivsinai)
Full Changelog: v0.0.23...v0.0.24
Installation
Homebrew (macOS/Linux)
brew install avivsinai/tap/jkScoop (Windows)
scoop bucket add avivsinai https://github.com/avivsinai/scoop-bucket
scoop install jkGo Install
go install github.com/avivsinai/jenkins-cli/cmd/jk@v0.0.24Binary Downloads
Download the appropriate binary for your platform from the assets below.