@tracecode/harness 0.16.1 → 0.16.2
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 +11 -0
- package/dist/{browser-runtime-provider-NQNCL6HE.js → browser-runtime-provider-45ND6W3K.js} +4 -4
- package/dist/{chunk-DQMPICNS.js → chunk-5SU2JQGI.js} +189 -343
- package/dist/{chunk-4W6MUXZE.js → chunk-DGXNINFR.js} +9 -9
- package/dist/chunk-EJE2EJDI.js +193 -0
- package/dist/{chunk-MMQLUTPP.js → chunk-HK62URW2.js} +2 -2
- package/dist/{chunk-KYTMGAFA.js → chunk-J54PE2JS.js} +2 -2
- package/dist/{chunk-AWHLLSEH.js → chunk-K4424WAS.js} +2 -2
- package/dist/{chunk-57WKRSIB.js → chunk-MJOC6WVB.js} +2 -2
- package/dist/cli.cjs +5 -0
- package/dist/cli.js +5 -0
- package/dist/core.cjs +8 -8
- package/dist/core.js +1 -1
- package/dist/{cpp-worker-client-A2ULEW5T.js → cpp-worker-client-I6CPM7TA.js} +3 -3
- package/dist/{csharp-worker-client-RA47P77F.js → csharp-worker-client-X7R4VXF4.js} +3 -3
- package/dist/internal/tracekernel-workspace.cjs +8 -8
- package/dist/internal/tracekernel-workspace.js +1 -1
- package/dist/{java-project-BTAANBJH.js → java-project-MLWER3CQ.js} +2 -2
- package/dist/judge.cjs +242 -187
- package/dist/judge.js +9 -7
- package/dist/{project-browser-U3YK43H4.js → project-browser-EIQ2FOXP.js} +2 -2
- package/dist/{project-browser-J6LVPVDC.js → project-browser-JR2WG7DG.js} +2 -2
- package/dist/{project-browser-PC7TRROQ.js → project-browser-T3EIQCMD.js} +2 -2
- package/dist/{project-browser-GBSPIYEW.js → project-browser-UALCR5KR.js} +2 -2
- package/dist/{project-browser-QMZCUVJA.js → project-browser-V3W4CQAQ.js} +2 -2
- package/dist/{python-worker-client-NEBS6V63.js → python-worker-client-MRWQTXOF.js} +3 -3
- package/dist/tracecc-runtime-assets-G3BFH7LY.js +19 -0
- package/dist/tracekernel.cjs +244 -185
- package/dist/tracekernel.d.cts +10 -1
- package/dist/tracekernel.d.ts +10 -1
- package/dist/tracekernel.js +12 -8
- package/package.json +3 -3
- package/runtime-assets.lock.json +7 -7
- package/workers/javascript/javascript-project-worker.js +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,17 @@ This repo uses Git tags as release boundaries. Version notes below summarize wha
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.16.2] - 2026-08-10
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
|
|
13
|
+
- Gave Project workspaces the same Harness-owned TraceCC runtime defaults as
|
|
14
|
+
Judge execution. C++ Project commands now select the isolated Project worker
|
|
15
|
+
while retaining the pinned, immutable TraceCC compiler tree.
|
|
16
|
+
- Made `sync-assets` publish the isolated C++ Project worker alias from the
|
|
17
|
+
exact pinned C++ worker bytes, so consumers no longer need to construct or
|
|
18
|
+
copy TraceCC runtime assets themselves.
|
|
19
|
+
|
|
9
20
|
## [0.16.1] - 2026-08-10
|
|
10
21
|
|
|
11
22
|
### Fixed
|
|
@@ -2,9 +2,9 @@ var define = undefined;
|
|
|
2
2
|
import {
|
|
3
3
|
createCppBrowserRuntimeProvider,
|
|
4
4
|
createTraceCCBrowserCompilerService
|
|
5
|
-
} from "./chunk-
|
|
6
|
-
import "./chunk-
|
|
7
|
-
import "./chunk-
|
|
5
|
+
} from "./chunk-MJOC6WVB.js";
|
|
6
|
+
import "./chunk-K4424WAS.js";
|
|
7
|
+
import "./chunk-DGXNINFR.js";
|
|
8
8
|
import "./chunk-DTLDQQHA.js";
|
|
9
9
|
import "./chunk-C2RUZCIL.js";
|
|
10
10
|
import "./chunk-756Z7C6D.js";
|
|
@@ -12,4 +12,4 @@ export {
|
|
|
12
12
|
createCppBrowserRuntimeProvider,
|
|
13
13
|
createTraceCCBrowserCompilerService
|
|
14
14
|
};
|
|
15
|
-
//# sourceMappingURL=browser-runtime-provider-
|
|
15
|
+
//# sourceMappingURL=browser-runtime-provider-45ND6W3K.js.map
|