@tracecode/harness 0.6.0 → 0.6.1
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 +6 -0
- package/README.md +1 -0
- package/package.json +7 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,12 @@ All notable changes to this project are documented here.
|
|
|
4
4
|
|
|
5
5
|
This repo uses Git tags as release boundaries. Version notes below summarize what shipped in each tagged release.
|
|
6
6
|
|
|
7
|
+
## [0.6.1] - 2026-04-23
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- Resolved Dependabot-reported vulnerabilities by moving the example app to patched Vite 7.3.2 and overriding transitive DOMPurify and Picomatch resolutions to patched versions.
|
|
12
|
+
|
|
7
13
|
## [0.6.0] - 2026-04-23
|
|
8
14
|
|
|
9
15
|
### Added
|
package/README.md
CHANGED
|
@@ -279,6 +279,7 @@ pnpm generate:python-harness
|
|
|
279
279
|
|
|
280
280
|
This repo uses explicit versioned release boundaries.
|
|
281
281
|
|
|
282
|
+
- `0.6.1` resolves Dependabot-reported vulnerabilities in Vite, DOMPurify, and Picomatch dependency paths
|
|
282
283
|
- `0.6.0` adds an experimental browser-local Java 17 runtime lane for `function`, `solution-method`, `ops-class`, and `interviewMode` execution, plus public asset packaging and browser smoke coverage for Java
|
|
283
284
|
- `0.5.0` improves JavaScript tree/list input hydration, fixes sparse tree deserialization, and trims GitHub CI to the non-browser verification set
|
|
284
285
|
- `0.1.0` introduced the public harness baseline
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tracecode/harness",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.1",
|
|
4
4
|
"license": "AGPL-3.0-only",
|
|
5
5
|
"homepage": "https://tracecode.app",
|
|
6
6
|
"repository": {
|
|
@@ -93,5 +93,11 @@
|
|
|
93
93
|
"tsup": "^8.5.0",
|
|
94
94
|
"tsx": "^4.21.0",
|
|
95
95
|
"typescript": "^5.0.0"
|
|
96
|
+
},
|
|
97
|
+
"pnpm": {
|
|
98
|
+
"overrides": {
|
|
99
|
+
"dompurify": "3.4.1",
|
|
100
|
+
"picomatch": "4.0.4"
|
|
101
|
+
}
|
|
96
102
|
}
|
|
97
103
|
}
|