@smart-cloud/publisher-exporter 1.1.76 → 1.1.78
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/README.md +16 -0
- package/dist/content-sync.js +15 -15
- package/dist/crawl.js +13 -13
- package/dist/deploy.js +6 -6
- package/dist/remote-worker.js +5 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,6 +6,22 @@ It is designed to run outside WordPress. The WordPress plugin only manages runti
|
|
|
6
6
|
|
|
7
7
|
## Release notes
|
|
8
8
|
|
|
9
|
+
### 1.1.78
|
|
10
|
+
|
|
11
|
+
- Remove serialized runtime-only `data-*-bound`, `data-*-initialized`, `data-*-mounted`, and `data-*-hydrated` markers before saving rendered HTML. Event listeners and in-memory framework instances cannot survive HTML serialization, so retaining those markers can suppress clean initialization on the published origin.
|
|
12
|
+
- Apply the guard through the shared serializer used by local rendering, delegated Lambda rendering, timeout fallback capture, and partial recovery capture.
|
|
13
|
+
- Add regression coverage for the generic runtime-marker sanitizer and shared local/remote capture path.
|
|
14
|
+
|
|
15
|
+
Upgrade both the external coordinator and every delegated render-worker image to `1.1.78`, then run a full publish. Existing static HTML retains stale runtime markers until the affected pages are rendered and deployed again.
|
|
16
|
+
|
|
17
|
+
### 1.1.77
|
|
18
|
+
|
|
19
|
+
- Report delegated rewrite progress as monotonic job-wide file and completed-batch totals, even when concurrent Lambda batches finish out of order.
|
|
20
|
+
- Keep per-task DynamoDB rewrite snapshots available at debug level instead of allowing their independent counters to overwrite the visible job activity.
|
|
21
|
+
- Apply the same aggregate progress reporting to deployment-profile rewrites.
|
|
22
|
+
|
|
23
|
+
This is a coordinator-only observability update. Upgrade the external coordinator; no WordPress plugin or Lambda worker update is required.
|
|
24
|
+
|
|
9
25
|
### 1.1.76
|
|
10
26
|
|
|
11
27
|
- Restore parser-authored React mount points and shadow hosts to their pristine light-DOM state immediately before HTML serialization. Runtime detection uses `ReactDOM.createRoot()` and `attachShadow()` browser primitives rather than plugin names or component-specific selectors.
|