From c139c9a4bc3f407b9e56dba163142a17cb9fdef3 Mon Sep 17 00:00:00 2001 From: Swarit Pandey Date: Tue, 5 May 2026 20:51:35 +0530 Subject: [PATCH] chore(release): update to v1.11.1 Signed-off-by: Swarit Pandey --- CHANGELOG.md | 12 ++++++++++++ examples/sample-output.json | 2 +- internal/buildinfo/version.go | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9003f52..d0a3322 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 See [VERSIONING.md](VERSIONING.md) for why the version starts at 1.8.1. +## [1.11.1] - 2026-05-05 + +### Added + +- **Install path in scan output**: Installed packages and IDE extensions now report their on-disk install location alongside name and version. Covers Homebrew formulae and casks, JetBrains/Eclipse/Xcode/VS Code-family extensions, and Linux snap and flatpak system packages. + +### Fixed + +- **IDE and AI CLI detection through symlinks**: Tools installed or invoked via symlinks (for example, Homebrew shims or user-managed aliases) are now resolved to their real install path so they are detected and reported correctly instead of being missed or duplicated. +- **Windows AI CLI detection on relative PATH entries**: AI CLI detection on Windows no longer fails when `PATH` contains relative directory entries — these are resolved before the binary probe runs. + ## [1.11.0] - 2026-04-29 ### Added @@ -148,6 +159,7 @@ First open-source release. The scanning engine was previously an internal enterp - Execution log capture and base64 encoding - Instance locking to prevent concurrent runs +[1.11.1]: https://github.com/step-security/dev-machine-guard/compare/v1.11.0...v1.11.1 [1.11.0]: https://github.com/step-security/dev-machine-guard/compare/v1.10.2...v1.11.0 [1.10.2]: https://github.com/step-security/dev-machine-guard/compare/v1.10.1...v1.10.2 [1.10.1]: https://github.com/step-security/dev-machine-guard/compare/v1.10.0...v1.10.1 diff --git a/examples/sample-output.json b/examples/sample-output.json index e317882..9436f65 100644 --- a/examples/sample-output.json +++ b/examples/sample-output.json @@ -1,5 +1,5 @@ { - "agent_version": "1.11.0", + "agent_version": "1.11.1", "scan_timestamp": 1741305600, "scan_timestamp_iso": "2026-03-07T00:00:00Z", "device": { diff --git a/internal/buildinfo/version.go b/internal/buildinfo/version.go index 743da0c..b2624c5 100644 --- a/internal/buildinfo/version.go +++ b/internal/buildinfo/version.go @@ -3,7 +3,7 @@ package buildinfo import "fmt" const ( - Version = "1.11.0" + Version = "1.11.1" AgentURL = "https://github.com/step-security/dev-machine-guard" )