@absolutejs/absolute 0.20.0-beta.11 → 0.20.0-beta.12

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 CHANGED
@@ -157,6 +157,11 @@ and aggregate counts—never credentials, namespaces, endpoints, arguments, or
157
157
  rows. Account changes are re-resolved before focus/online/visible Sync and the
158
158
  old worker run is aborted and cleared before the new namespace can run.
159
159
 
160
+ App updates are consent-driven: `onUpdateAvailable()` latches a waiting worker
161
+ for late UI subscribers, `checkForUpdate()` performs a passive check, and
162
+ `applyUpdate()` activates and reloads only after the user accepts. AbsoluteJS
163
+ does not silently replace a running application session.
164
+
160
165
  ### Immutable production images
161
166
 
162
167
  Build production assets and the server bundle while constructing the image,
@@ -1,7 +1,7 @@
1
1
  // @bun
2
2
  var __require = import.meta.require;
3
3
 
4
- // .angular-partial-tmp-7J16xN/src/core/streamingSlotRegistrar.ts
4
+ // .angular-partial-tmp-ZTSdzu/src/core/streamingSlotRegistrar.ts
5
5
  var STREAMING_SLOT_REGISTRAR_KEY = Symbol.for("absolutejs.streamingSlotRegistrar");
6
6
  var STREAMING_SLOT_WARNING_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotWarningController");
7
7
  var STREAMING_SLOT_COLLECTION_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotCollectionController");
@@ -1,7 +1,7 @@
1
1
  // @bun
2
2
  var __require = import.meta.require;
3
3
 
4
- // .angular-partial-tmp-7J16xN/src/core/streamingSlotRegistrar.ts
4
+ // .angular-partial-tmp-ZTSdzu/src/core/streamingSlotRegistrar.ts
5
5
  var STREAMING_SLOT_REGISTRAR_KEY = Symbol.for("absolutejs.streamingSlotRegistrar");
6
6
  var STREAMING_SLOT_WARNING_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotWarningController");
7
7
  var STREAMING_SLOT_COLLECTION_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotCollectionController");
@@ -48,7 +48,7 @@ var warnMissingStreamingSlotCollector = (primitiveName) => {
48
48
  getWarningController()?.maybeWarn(primitiveName);
49
49
  };
50
50
 
51
- // .angular-partial-tmp-7J16xN/src/core/streamingSlotRegistry.ts
51
+ // .angular-partial-tmp-ZTSdzu/src/core/streamingSlotRegistry.ts
52
52
  var STREAMING_SLOT_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotAsyncLocalStorage");
53
53
  var isObjectRecord2 = (value) => Boolean(value) && typeof value === "object";
54
54
  var isAsyncLocalStorage = (value) => isObjectRecord2(value) && ("getStore" in value) && typeof value.getStore === "function" && ("run" in value) && typeof value.run === "function";
package/package.json CHANGED
@@ -275,12 +275,12 @@
275
275
  "main": "./dist/index.js",
276
276
  "name": "@absolutejs/absolute",
277
277
  "optionalDependencies": {
278
- "@absolutejs/native-darwin-arm64": "0.20.0-beta.11",
279
- "@absolutejs/native-darwin-x64": "0.20.0-beta.11",
280
- "@absolutejs/native-linux-arm64": "0.20.0-beta.11",
281
- "@absolutejs/native-linux-x64": "0.20.0-beta.11",
282
- "@absolutejs/native-windows-arm64": "0.20.0-beta.11",
283
- "@absolutejs/native-windows-x64": "0.20.0-beta.11"
278
+ "@absolutejs/native-darwin-arm64": "0.20.0-beta.12",
279
+ "@absolutejs/native-darwin-x64": "0.20.0-beta.12",
280
+ "@absolutejs/native-linux-arm64": "0.20.0-beta.12",
281
+ "@absolutejs/native-linux-x64": "0.20.0-beta.12",
282
+ "@absolutejs/native-windows-arm64": "0.20.0-beta.12",
283
+ "@absolutejs/native-windows-x64": "0.20.0-beta.12"
284
284
  },
285
285
  "overrides": {
286
286
  "@sinclair/typebox": "0.34.52",
@@ -491,7 +491,7 @@
491
491
  ]
492
492
  }
493
493
  },
494
- "version": "0.20.0-beta.11",
494
+ "version": "0.20.0-beta.12",
495
495
  "workspaces": [
496
496
  "tests/fixtures/*",
497
497
  "tests/fixtures/_packages/*"