You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
release(v1.0.8): whitespace fix ">=8.1.0,<10.0.0" (no space) + sensitivity isolated
v1.0.7's ">=8.1.0, <10.0.0" (comma + space per the v1.0.6 AI
explainer's literal example) was rejected by SLIM with the SAME
syntax-class error as v1.0.6's space-only form:
manifest.platformRequirements.splunk.Enterprise: Illegal version
specification: >=8.1.0, <10.0.0
The Splunkbase AI explainer for this failure explicitly corrects
its prior recommendation:
SLIM's version parser expects a valid specifier set without
whitespace around commas. The space after the comma causes the
version spec to be considered invalid.
3-position contrast now fully isolates whitespace-sensitivity:
- ">=A <B" (v1.0.6, space-only) -> syntax error
- ">=A, <B" (v1.0.7, comma + space) -> syntax error
- ">=A,<B" (Phase 1.7, comma + nospace) -> content error (parses!)
The Phase 1.7 form's content-class error proves comma-with-no-space
parses correctly. The whitespace AROUND the comma is what breaks
SLIM's parser.
What changed:
- app.manifest: Enterprise from ">=8.1.0, <10.0.0" (comma+space) to
">=8.1.0,<10.0.0" (comma+no-space, AI's corrected form +
Phase 1.7's known-parsable syntax); info.id.version 1.0.7 -> 1.0.8;
releaseDate 2026-06-06.
- default/app.conf: build = 678; [launcher].version = [id].version
= 1.0.8.
- appserver/static/whitelist_manager.js:14: urlArgs: "_b=678"
(auto-applied by scripts/hooks/urlargs-sync.js).
- docs/SPLUNK_10_COMPATIBILITY.md: Runtime Verification section
extended with v1.0.7 finding + whitespace-sensitivity discovery +
3-position contrast table + cumulative format history updated.
- docs/APPINSPECT_FINDINGS.md §7.11: 2026-06-06 hosted-API run F19
with the whitespace-sensitivity finding + revision-log entry.
- docs/DECISION_LOG.md 2026-06-06 row: documents the
whitespace-sensitivity discovery + corrects the 2026-06-05 evening
row's "comma form with space" recommendation. One new maintenance
lesson: SLIM version parser is whitespace-sensitive around commas.
- CLAUDE.md "Splunk Version Pinning Audit" log: new row with
whitespace-sensitivity lesson + the pattern that AI explainer
recommendations evolve across 4 successive failure reports.
Three outcomes possible:
1. SLIM accepts ">=8.1.0,<10.0.0" -> first ACCEPTED semver-range
entry in cumulative history; pin to comma-no-space bounded ranges
permanently. Cleanup commit fixes all prior format claims.
2. SLIM rejects with "no supported version" -> Cloud Classic's list
excludes [8.1.0, 10.0.0). Next move = Splunkbase publisher support
ticket (documented escalation path).
3. SLIM rejects with another unprecedented wording -> new error class
to catalogue; careful analysis before next iteration.
Honesty note: 8th release attempt in 6 days. The iterate-and-test
discovery method has produced 8 distinct empirical data points
(F13-F19 + v1.0.0 pre-release). The Splunkbase AI explainer's
recommendations have evolved across 4 successive failure reports
(open-floor semver in v1.0.4, space-only in v1.0.5, comma+space in
v1.0.6, comma+no-space in v1.0.7). The cumulative SLIM format
history table in docs/SPLUNK_10_COMPATIBILITY.md is the canonical
single-source-of-truth.
Verification:
- bash scripts/validate.sh -> ALL CHECKS PASSED (2 warnings)
- bash scripts/preflight-tag.sh v1.0.8 -> OK (all 4 sources at 1.0.8)
- bash scripts/pre-commit-doc-drift.sh -> OK (49 docs vs build 678)
- Local AppInspect re-run skipped (Docker not running). The next
Splunkbase upload of wl_manager-1.0.8.spl is the empirical test.
Copy file name to clipboardExpand all lines: app.manifest
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@
5
5
"id": {
6
6
"group": null,
7
7
"name": "wl_manager",
8
-
"version": "1.0.7"
8
+
"version": "1.0.8"
9
9
},
10
10
"author": [
11
11
{
@@ -14,7 +14,7 @@
14
14
"company": null
15
15
}
16
16
],
17
-
"releaseDate": "2026-06-05",
17
+
"releaseDate": "2026-06-06",
18
18
"description": "Manage detection-rule CSV whitelists with diff-based audit trail. Provides a web-based interface for viewing, editing, adding, and removing whitelist entries with full change tracking, expiration management, and role-based access control.",
0 commit comments