Skip to content

Commit 1ddb57f

Browse files
committed
Bump pinned @coana-tech/cli to 15.3.24
1 parent 38d3a97 commit 1ddb57f

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
### Changed: pin @coana-tech/cli version; auto-update is now opt-in
66

77
- Reachability analysis now runs a fixed `@coana-tech/cli` version pinned to this CLI release
8-
(`15.3.22`) via `npx`, instead of silently pulling the latest published version on every run.
8+
(`15.3.24`) via `npx`, instead of silently pulling the latest published version on every run.
99
Engine version changes now ride with the Socket Python CLI release (standard `pip` upgrade),
1010
giving advance notice of analysis-engine changes.
1111
- The CLI no longer runs `npm install -g @coana-tech/cli`; an existing global install is left

docs/cli-reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ If you don't want to provide the Socket API Token every time then you can use th
240240
| Parameter | Required | Default | Description |
241241
|:---------------------------------|:---------|:--------|:---------------------------------------------------------------------------------------------------------------------------|
242242
| `--reach` | False | False | Enable reachability analysis to identify which vulnerable functions are actually called by your code. Creates a tier-1 full-application reachability scan (`scan_type=socket_tier1`). |
243-
| `--reach-version` | False | *pinned* | Version of @coana-tech/cli to use. Defaults to the version pinned to this CLI release (currently `15.3.22`), so the engine only changes when you upgrade the Socket CLI. Pass `latest` to always use the newest published version (opt-in auto-update), or an explicit version (e.g. `1.2.3`) to pin it. |
243+
| `--reach-version` | False | *pinned* | Version of @coana-tech/cli to use. Defaults to the version pinned to this CLI release (currently `15.3.24`), so the engine only changes when you upgrade the Socket CLI. Pass `latest` to always use the newest published version (opt-in auto-update), or an explicit version (e.g. `1.2.3`) to pin it. |
244244
| `--reach-analysis-timeout` | False | *coana* | Timeout in seconds for the reachability analysis. Omitted by default, so coana applies its own (currently 600s). Alias: `--reach-timeout` |
245245
| `--reach-analysis-memory-limit` | False | *coana* | Memory limit in MB for the reachability analysis. Omitted by default, so coana applies its own (currently 8192). Alias: `--reach-memory-limit` |
246246
| `--reach-concurrency` | False | *coana* | Control parallel analysis execution (must be >= 1). Omitted by default, so coana applies its own (currently 1) |

socketsecurity/core/tools/reachability.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# Pinned @coana-tech/cli version. Bumped deliberately per Python CLI release so the
1717
# reachability engine version only changes through a standard pip upgrade (advance notice).
1818
# Pass --reach-version latest to opt into the newest published version instead.
19-
DEFAULT_COANA_CLI_VERSION = "15.3.22"
19+
DEFAULT_COANA_CLI_VERSION = "15.3.24"
2020

2121

2222
def _build_caller_user_agent() -> str:
@@ -54,7 +54,7 @@ def _resolve_coana_package_spec(self, version: Optional[str] = None) -> str:
5454
- '<semver>': that exact version.
5555
5656
Returns:
57-
str: The package specifier to use with npx (e.g. '@coana-tech/cli@15.3.22').
57+
str: The package specifier to use with npx (e.g. '@coana-tech/cli@15.3.24').
5858
"""
5959
return f"@coana-tech/cli@{self._resolve_coana_version(version)}"
6060

0 commit comments

Comments
 (0)