Skip to content

Commit 4ddebb8

Browse files
chore: update changelog and bump to 1.8.2 version
1 parent ab8c965 commit 4ddebb8

3 files changed

Lines changed: 12 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
See [VERSIONING.md](VERSIONING.md) for why the version starts at 1.8.1.
99

10+
## [1.8.2] - 2026-03-17
11+
12+
### Added
13+
- `--search-dirs DIR [DIR...]` flag to scan specific directories instead of `$HOME` (replaces default; repeatable)
14+
- Accepts multiple directories in a single flag: `--search-dirs /tmp /opt /var`
15+
- Supports repeated use: `--search-dirs /tmp --search-dirs /opt`
16+
- Quoted paths with spaces work: `--search-dirs "/path/with spaces"`
17+
1018
## [1.8.1] - 2026-03-10
1119

1220
First open-source release. The scanning engine was previously an internal enterprise tool (v1.0.0-v1.8.1) running in production. This release adds community mode for local-only scanning while keeping the enterprise codebase intact.
@@ -36,4 +44,5 @@ First open-source release. The scanning engine was previously an internal enterp
3644
- Execution log capture and base64 encoding
3745
- Instance locking to prevent concurrent runs
3846

47+
[1.8.2]: https://github.com/step-security/dev-machine-guard/compare/v1.8.1...v1.8.2
3948
[1.8.1]: https://github.com/step-security/dev-machine-guard/releases/tag/v1.8.1

examples/sample-output.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"agent_version": "1.8.1",
2+
"agent_version": "1.8.2",
33
"scan_timestamp": 1741305600,
44
"scan_timestamp_iso": "2026-03-07T00:00:00Z",
55
"device": {
@@ -133,4 +133,4 @@
133133
"mcp_configs_count": 2,
134134
"node_projects_count": 0
135135
}
136-
}
136+
}

stepsecurity-dev-machine-guard.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ set -euo pipefail
4242
# SECTION 2: VERSION AND CLI DEFAULTS
4343
#==============================================================================
4444

45-
AGENT_VERSION="1.8.1"
45+
AGENT_VERSION="1.8.2"
4646

4747
# Output configuration (set by CLI flags)
4848
OUTPUT_FORMAT="pretty" # pretty | json | html

0 commit comments

Comments
 (0)