v1.6.0 — Append function + zero open known issues
🔒 Covered by ReqProof — L3 Assurance (123 requirements, 0 errors, 0 warnings, 0 open known issues)
New API: Append
// Append to an array without knowing its length
data, _ = jsonparser.Append(data, []byte(`"new_item"`), "items")Append(data, value, keys...) ([]byte, error) — clean array-append API. Works on top-level and nested arrays. Auto-creates missing paths as single-element arrays. No need for [N] path syntax.
Bug fixes — all known issues resolved
| KI | Fix |
|---|---|
| KI-2 | ParseInt("-") now returns MalformedValueError (was returning 0, nil) |
| KI-3 | Disposition corrected to fixed (auto-coerce was implemented in v1.3.0) |
| KI-4 | Set([1,2,3], val, "[5]") now appends instead of returning KeyPathNotFoundError |
Zero open known issues. All 4 KIs are now status: fixed.