@smart-cloud/publisher-exporter 1.1.75 → 1.1.77
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 +17 -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,23 @@ It is designed to run outside WordPress. The WordPress plugin only manages runti
|
|
|
6
6
|
|
|
7
7
|
## Release notes
|
|
8
8
|
|
|
9
|
+
### 1.1.77
|
|
10
|
+
|
|
11
|
+
- Report delegated rewrite progress as monotonic job-wide file and completed-batch totals, even when concurrent Lambda batches finish out of order.
|
|
12
|
+
- Keep per-task DynamoDB rewrite snapshots available at debug level instead of allowing their independent counters to overwrite the visible job activity.
|
|
13
|
+
- Apply the same aggregate progress reporting to deployment-profile rewrites.
|
|
14
|
+
|
|
15
|
+
This is a coordinator-only observability update. Upgrade the external coordinator; no WordPress plugin or Lambda worker update is required.
|
|
16
|
+
|
|
17
|
+
### 1.1.76
|
|
18
|
+
|
|
19
|
+
- 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.
|
|
20
|
+
- Exclude script-created React providers, portals, scripts, stylesheets, styles, and iframes from static output while retaining their authored bootstrap code. Client runtimes therefore initialize from a clean state on the published origin instead of inheriting incomplete mount markers from the source render.
|
|
21
|
+
- Remove transient consent and reCAPTCHA UI before capture. This prevents a source-origin reCAPTCHA iframe and its hidden provider state from being frozen into a static page and producing timeouts after deployment.
|
|
22
|
+
- Apply the same serialization path to local rendering, delegated Lambda rendering, timeout fallback capture, and partial recovery capture.
|
|
23
|
+
|
|
24
|
+
Upgrade both the external coordinator and any delegated render-worker image to `1.1.76`, then run a new full publish. Existing static HTML retains its captured runtime state until it is rendered and deployed again.
|
|
25
|
+
|
|
9
26
|
### 1.1.75
|
|
10
27
|
|
|
11
28
|
- Replace inherited remote-workspace objects when an incremental S3-native crawl produces a changed coordinator-owned output, including sitemap XML files.
|