dsh-rewind-plugin 0.11.0 → 0.12.0
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/CONTRIBUTING.md +4 -3
- package/README.en.md +1 -1
- package/README.md +2 -2
- package/SECURITY.md +54 -23
- package/docs/architecture.md +12 -6
- package/docs/compat/audit.md +1 -1
- package/docs/compat/tracking-boundary.md +6 -6
- package/docs/compat/tracking-boundary.zh.md +2 -2
- package/docs/format.md +159 -53
- package/docs/snapshot-auto-cleanup.md +8 -10
- package/docs/snapshot-auto-cleanup.zh.md +2 -4
- package/lib/client.js +1 -1
- package/lib/index.js +1026 -223
- package/lib/types/locales.d.ts +1 -0
- package/lib/types/snapshot.d.ts +397 -83
- package/package.json +1 -1
package/lib/client.js
CHANGED
|
@@ -1345,7 +1345,7 @@ function createRewindBridge(deps) {
|
|
|
1345
1345
|
}
|
|
1346
1346
|
|
|
1347
1347
|
// src/client/build-info.ts
|
|
1348
|
-
var PLUGIN_VERSION = true ? "0.
|
|
1348
|
+
var PLUGIN_VERSION = true ? "0.12.0" : "dev";
|
|
1349
1349
|
var BUILD_HASH = true ? "d770983e" : "dev";
|
|
1350
1350
|
|
|
1351
1351
|
// src/client/locales.ts
|