@mikrojs/native 0.19.0-pr-352.20260829215534 → 0.19.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mikrojs/native",
|
|
3
|
-
"version": "0.19.0
|
|
3
|
+
"version": "0.19.0",
|
|
4
4
|
"description": "Mikro.js C++ runtime library and Node.js native addon",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"esp32",
|
|
@@ -86,15 +86,15 @@
|
|
|
86
86
|
"cmake-js": "^8.0.0",
|
|
87
87
|
"node-addon-api": "^8.7.0",
|
|
88
88
|
"node-gyp-build": "^4.8.4",
|
|
89
|
-
"@mikrojs/quickjs": "0.19.0
|
|
89
|
+
"@mikrojs/quickjs": "0.19.0"
|
|
90
90
|
},
|
|
91
91
|
"devDependencies": {
|
|
92
92
|
"@swc/core": "^1.15.30",
|
|
93
93
|
"@types/node": "^24.12.2",
|
|
94
94
|
"esbuild": "^0.28.0",
|
|
95
95
|
"terser": "^5.46.2",
|
|
96
|
-
"@mikrojs/registry": "0.19.0
|
|
97
|
-
"@mikrojs/schema": "0.19.0
|
|
96
|
+
"@mikrojs/registry": "0.19.0",
|
|
97
|
+
"@mikrojs/schema": "0.19.0"
|
|
98
98
|
},
|
|
99
99
|
"engines": {
|
|
100
100
|
"node": ">=24.0.0"
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/runtime/ota/types.ts
CHANGED
|
@@ -374,9 +374,9 @@ export interface Ota {
|
|
|
374
374
|
* `applyConfig`, with `trialBoots`), and validate the offer fields (exactly
|
|
375
375
|
* `parseOffer(raw)`, with `allowInsecure`). An empty or null response is
|
|
376
376
|
* the registry's quiet round: nothing to deliver, and the confirm still
|
|
377
|
-
* happens, which is the point of calling. A response
|
|
378
|
-
*
|
|
379
|
-
* error page
|
|
377
|
+
* happens, which is the point of calling. A response of any other shape
|
|
378
|
+
* never decoded: a captive portal handed back HTML, or a proxy sent an
|
|
379
|
+
* error page. That is not a completed round, so nothing settles and the
|
|
380
380
|
* confirm does not run.
|
|
381
381
|
*
|
|
382
382
|
* Never call it on a failed request: a check-in that did not complete
|