Release v1.4.30 with startup and UI race-condition fixes
Build and Release / build (push) Has been cancelled

This commit is contained in:
Sucukdeluxe
2026-02-28 22:33:19 +01:00
parent eda9754d30
commit 6ae687f3ab
10 changed files with 235 additions and 52 deletions
+1 -1
View File
@@ -555,7 +555,7 @@ describe("extractor", () => {
expect(targets.has(r02)).toBe(true);
});
it("does not fallback to external extractor when ZIP safety guard triggers", async () => {
it("keeps original ZIP size guard error when external fallback is unavailable", async () => {
const previousLimit = process.env.RD_ZIP_ENTRY_MEMORY_LIMIT_MB;
process.env.RD_ZIP_ENTRY_MEMORY_LIMIT_MB = "8";
+1 -1
View File
@@ -409,7 +409,7 @@ describe("settings storage", () => {
// Old fields should be preserved
expect(loaded.token).toBe("my-token");
expect(loaded.outputDir).toBe("/custom/output");
expect(loaded.outputDir).toBe(path.resolve("/custom/output"));
// Missing new fields should get default values
expect(loaded.autoProviderFallback).toBe(defaults.autoProviderFallback);