ur-agent 1.76.3 → 1.76.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,39 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.76.6
4
+
5
+ - Fixed malformed `Write` tool input handling so missing required `content` now stays
6
+ as plain text during normalization and surfaces clear validation when repair is
7
+ impossible.
8
+ - Hardened `AskUserQuestion` transport and execution normalization to reject malformed
9
+ question/option payloads before schema enforcement, reducing repeated
10
+ `InputValidationError` loops for missing `question`/`options`.
11
+ - Restored `Grep` schema compatibility checks and ensured provider schema generation
12
+ keeps unsupported type regressions from reaching the provider.
13
+ - Fixed task dependency validation for missing task IDs and cyclic/self-edge
14
+ requests so callers receive actionable diagnostics instead of opaque task graph
15
+ errors.
16
+
17
+ ## 1.76.5
18
+
19
+ - Hardened Kimi tool-call parsing for `Write` and `AskUserQuestion` so malformed
20
+ payloads fail normalisation and remain plain text instead of throwing input
21
+ validation at render time; valid payloads still parse correctly.
22
+ - Fixed `AskUserQuestion` question-schema validation to reject one-question/open-ended
23
+ malformed shapes with distinct-label enforcement before tool execution, preventing
24
+ `InputValidationError` loops for missing `question`/`options`.
25
+ - Fixed Grep tool-schema regression coverage and restored the task dependency
26
+ validation path to ignore self-edges before reporting missing-task errors.
27
+ - Version bump and release metadata were synchronized after parser fixes.
28
+
29
+ ## 1.76.4
30
+
31
+ - AskUserQuestion normalizer now strips malformed question entries instead of
32
+ passing invalid payloads through, and refuses to treat unrecoverable malformed
33
+ inputs as valid question arrays. This removes repeated `InputValidationError` loops for
34
+ `questions[n].question` and `questions[n].options` while preserving the
35
+ successful repair path for mixed valid/malformed payloads.
36
+
3
37
  ## 1.76.3
4
38
 
5
39
  - AskUserQuestion normalization gained additional malformed-shape recovery so near-miss tool payloads with aliasless question objects, single-key maps, and delimited option text no longer emit repeated renderable-input validation errors.