wrangler 4.24.1 → 4.24.2
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
package/wrangler-dist/cli.js
CHANGED
@@ -29515,7 +29515,7 @@ var name, version;
|
|
29515
29515
|
var init_package = __esm({
|
29516
29516
|
"package.json"() {
|
29517
29517
|
name = "wrangler";
|
29518
|
-
version = "4.24.
|
29518
|
+
version = "4.24.2";
|
29519
29519
|
}
|
29520
29520
|
});
|
29521
29521
|
|
@@ -66322,6 +66322,7 @@ function createWorkerUploadForm(worker) {
|
|
66322
66322
|
jwt: assets.jwt,
|
66323
66323
|
config: assetConfig
|
66324
66324
|
},
|
66325
|
+
...annotations && { annotations },
|
66325
66326
|
...compatibility_date && { compatibility_date },
|
66326
66327
|
...compatibility_flags && { compatibility_flags }
|
66327
66328
|
})
|
@@ -147407,17 +147408,20 @@ var init_view2 = __esm({
|
|
147407
147408
|
Message: version5.annotations?.["workers/message"] || BLANK_INPUT5
|
147408
147409
|
})
|
147409
147410
|
);
|
147410
|
-
|
147411
|
-
|
147412
|
-
Handlers
|
147413
|
-
}
|
147411
|
+
const scriptInfo = {};
|
147412
|
+
if (version5.resources.script.handlers) {
|
147413
|
+
scriptInfo.Handlers = version5.resources.script.handlers.join(", ");
|
147414
|
+
}
|
147414
147415
|
if (version5.resources.script_runtime.compatibility_date) {
|
147415
147416
|
scriptInfo["Compatibility Date"] = version5.resources.script_runtime.compatibility_date;
|
147416
147417
|
}
|
147417
147418
|
if (version5.resources.script_runtime.compatibility_flags) {
|
147418
147419
|
scriptInfo["Compatibility Flags"] = version5.resources.script_runtime.compatibility_flags.join(", ");
|
147419
147420
|
}
|
147420
|
-
|
147421
|
+
if (Object.keys(scriptInfo).length > 0) {
|
147422
|
+
logRaw("------------------------------------------------------------");
|
147423
|
+
logRaw(formatLabelledValues(scriptInfo));
|
147424
|
+
}
|
147421
147425
|
const secrets = version5.resources.bindings.filter(
|
147422
147426
|
(binding) => binding.type === "secret_text"
|
147423
147427
|
);
|