@equinor/fusion-framework-cli 15.1.7 → 15.2.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/CHANGELOG.md +35 -0
- package/bin/build/bin.mjs +1 -1
- package/dist/esm/version.js +1 -1
- package/dist/types/bin/app-manifest.d.ts +1 -1
- package/dist/types/bin/app-pack.d.ts +2 -2
- package/dist/types/bin/portal-build.d.ts +5 -5
- package/dist/types/bin/portal-manifest.d.ts +5 -5
- package/dist/types/bin/portal-pack.d.ts +6 -6
- package/dist/types/cli/commands/app/pack.d.ts +1 -1
- package/dist/types/cli/commands/index.d.ts +2 -2
- package/dist/types/lib/app/app-package.d.ts +1 -1
- package/dist/types/lib/legacy.d.ts +1 -1
- package/dist/types/version.d.ts +1 -1
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,40 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 15.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 98d8f08: Automatically include markdown plugin in app builds and manifest loading.
|
|
8
|
+
|
|
9
|
+
The CLI now automatically includes the `@equinor/fusion-framework-vite-plugin-markdown` plugin in all app builds, enabling support for markdown file imports with `?raw` query parameter without requiring manual configuration. The plugin is also included during app manifest loading to handle markdown imports in route definitions.
|
|
10
|
+
|
|
11
|
+
Apps can now import markdown files directly:
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import readmeContent from "./README.md?raw";
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- @equinor/fusion-framework-dev-portal@8.0.0
|
|
20
|
+
|
|
21
|
+
## 15.1.8
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- 48d55b4: Updated `adm-zip` from `^0.5.x` to `^0.6.0`. This release includes a fix for **CVE-2026-39244** (decompression bomb — crafted archives could exhaust memory via a declared-but-absent huge uncompressed size), a prototype pollution hardening fix, and several bug fixes.
|
|
26
|
+
- 841c728: Updated `semver` from `7.8.4` to `7.8.5`. Patch bug fix release.
|
|
27
|
+
- c39af35: Updated `vite` from `8.0.16` to `8.1.5`.
|
|
28
|
+
|
|
29
|
+
Notable changes:
|
|
30
|
+
- `server.fs.deny` extended with common sensitive files (security hardening)
|
|
31
|
+
- New `caseSensitive` option for `import.meta.glob`
|
|
32
|
+
- WASM ESM Integration (direct `.wasm` imports)
|
|
33
|
+
- `html.additionalAssetSources` option
|
|
34
|
+
- Various bug fixes across HMR, CSS, SSR, and dev server
|
|
35
|
+
- @equinor/fusion-framework-dev-portal@8.0.0
|
|
36
|
+
- @equinor/fusion-framework-dev-server@2.0.14
|
|
37
|
+
|
|
3
38
|
## 15.1.7
|
|
4
39
|
|
|
5
40
|
### Patch Changes
|