dxfl 0.5.0 → 0.5.1
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/CHANGELOG.md +5 -1
- package/dist/index.js +1 -1
- package/package.json +6 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
# v0.5.1
|
|
2
|
+
|
|
3
|
+
- Temporary fix for CVE-2026-26278 on fast-xml-parser (@aws-sdk/client-3 → @aws-sdk/core → @aws-sdk/xml-builder@3.972.11 → fast-xml-parser@5.4.1 (pinned))
|
|
4
|
+
|
|
1
5
|
# v0.5.0
|
|
2
6
|
|
|
3
7
|
- `deuxfleurs.toml`: Add support for setting headers
|
|
@@ -5,7 +9,7 @@
|
|
|
5
9
|
|
|
6
10
|
# v0.4.2
|
|
7
11
|
|
|
8
|
-
`deploy`: Temporarily disable cors to workaround Garage bug
|
|
12
|
+
- `deploy`: Temporarily disable cors to workaround Garage bug
|
|
9
13
|
|
|
10
14
|
# v0.4.1
|
|
11
15
|
|
package/dist/index.js
CHANGED
|
@@ -6,7 +6,7 @@ import { deploy } from "./deploy.js";
|
|
|
6
6
|
import { empty } from "./empty.js";
|
|
7
7
|
import { vhostsList } from "./vhosts.js";
|
|
8
8
|
import { inspect } from "./inspect.js";
|
|
9
|
-
program.name("dxfl").description("Deuxfleurs CLI tool").version("0.5.
|
|
9
|
+
program.name("dxfl").description("Deuxfleurs CLI tool").version("0.5.1");
|
|
10
10
|
program
|
|
11
11
|
.command("login")
|
|
12
12
|
.description("Link your Deuxfleurs account with this tool.")
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dxfl",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"license": "EUPL-1.2",
|
|
6
6
|
"author": "Deuxfleurs Team <coucou@deuxfleurs.fr>",
|
|
@@ -42,5 +42,10 @@
|
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"onchange": "^7.1.0",
|
|
44
44
|
"prettier": "3.5.3"
|
|
45
|
+
},
|
|
46
|
+
"overrides": {
|
|
47
|
+
"@aws-sdk/xml-builder": {
|
|
48
|
+
"fast-xml-parser": "^5.5.6"
|
|
49
|
+
}
|
|
45
50
|
}
|
|
46
51
|
}
|