scenri 0.7.2 → 0.7.3
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 +8 -0
- package/dist/serve.js +11 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.7.3](https://github.com/tonygorb/Scenri/compare/v0.7.2...v0.7.3) (2026-08-30)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* a node is done only after its rendered record exists ([88fbfb7](https://github.com/tonygorb/Scenri/commit/88fbfb7b53001e6f4bda12cc61258dbb21e353a4))
|
|
9
|
+
* a node is done only after its rendered record exists ([2e31d09](https://github.com/tonygorb/Scenri/commit/2e31d098ab78a22138e99aa463cae41199e51b6d))
|
|
10
|
+
|
|
3
11
|
## [0.7.2](https://github.com/tonygorb/Scenri/compare/v0.7.1...v0.7.2) (2026-08-30)
|
|
4
12
|
|
|
5
13
|
|
package/dist/serve.js
CHANGED
|
@@ -8726,6 +8726,16 @@ function registerImageRoutes(app, deps) {
|
|
|
8726
8726
|
|
|
8727
8727
|
// src/release/notes.data.ts
|
|
8728
8728
|
var RELEASES = [
|
|
8729
|
+
{
|
|
8730
|
+
version: "0.7.3",
|
|
8731
|
+
date: "2026-08-31",
|
|
8732
|
+
sections: [
|
|
8733
|
+
{
|
|
8734
|
+
heading: "Fixes",
|
|
8735
|
+
body: "A finished shot now reports done only after its delivered size is on record, so a tile can no longer guess its shape for a moment while the record catches up."
|
|
8736
|
+
}
|
|
8737
|
+
]
|
|
8738
|
+
},
|
|
8729
8739
|
{
|
|
8730
8740
|
version: "0.7.2",
|
|
8731
8741
|
date: "2026-08-30",
|
|
@@ -10105,7 +10115,6 @@ function buildServer(opts) {
|
|
|
10105
10115
|
result.images = await normalizePngs(result.images);
|
|
10106
10116
|
if (post) result.images = await post(result.images);
|
|
10107
10117
|
if (expect) await assertAspect(result.images, expect);
|
|
10108
|
-
core.store.completeNode(nodeId, { ...result, durationMs: Date.now() - startedAt });
|
|
10109
10118
|
try {
|
|
10110
10119
|
const sizes = [];
|
|
10111
10120
|
for (const h of result.images) {
|
|
@@ -10127,6 +10136,7 @@ function buildServer(opts) {
|
|
|
10127
10136
|
}
|
|
10128
10137
|
} catch {
|
|
10129
10138
|
}
|
|
10139
|
+
core.store.completeNode(nodeId, { ...result, durationMs: Date.now() - startedAt });
|
|
10130
10140
|
core.ledger.recordCost(engineId, nodeId, result.costUsd);
|
|
10131
10141
|
} catch (err) {
|
|
10132
10142
|
if (watchdogFired)
|