@equinor/fusion-framework-cli 12.3.4 → 12.3.6
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 +73 -0
- package/bin/build/bin.mjs +1 -1
- package/bin/build/cli.mjs +1 -1
- package/dist/esm/version.js +1 -1
- package/dist/types/version.d.ts +1 -1
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,78 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 12.3.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#3652](https://github.com/equinor/fusion-framework/pull/3652) [`8d50adc`](https://github.com/equinor/fusion-framework/commit/8d50adc17e81fc46da81795125832af8add5f678) Thanks [@dependabot](https://github.com/apps/dependabot)! - **Security:** Update Vite to v7.1.12
|
|
8
|
+
|
|
9
|
+
This update addresses a security vulnerability in Vite's development server and includes bug fixes for improved compatibility. The update ensures secure development environments and better plugin ecosystem compatibility.
|
|
10
|
+
|
|
11
|
+
**Changes:**
|
|
12
|
+
|
|
13
|
+
- Updated Vite from v7.1.10 to v7.1.12
|
|
14
|
+
- Includes security fix for development server file system checks
|
|
15
|
+
- Includes compatibility fix for CommonJS plugin
|
|
16
|
+
- No breaking changes or API modifications
|
|
17
|
+
|
|
18
|
+
**Security Fix (v7.1.11):**
|
|
19
|
+
|
|
20
|
+
- **dev**: trim trailing slash before `server.fs.deny` check ([#20968](https://github.com/vitejs/vite/issues/20968))
|
|
21
|
+
- Prevents potential path traversal vulnerability in development server
|
|
22
|
+
- Only affects development environment, not production builds
|
|
23
|
+
|
|
24
|
+
**Bug Fix (v7.1.12):**
|
|
25
|
+
|
|
26
|
+
- **deps**: downgrade commonjs plugin to 28.0.6 to avoid rollup/plugins issues ([#20990](https://github.com/vitejs/vite/issues/20990))
|
|
27
|
+
- Improves compatibility with Rollup plugin ecosystem
|
|
28
|
+
- Prevents potential build issues
|
|
29
|
+
|
|
30
|
+
All packages using Vite as a development dependency are updated to the latest secure version. This is a patch-level security and bug fix update that maintains full compatibility with existing functionality.
|
|
31
|
+
|
|
32
|
+
closes: https://github.com/equinor/fusion/issues/723
|
|
33
|
+
|
|
34
|
+
- Updated dependencies [[`8d50adc`](https://github.com/equinor/fusion-framework/commit/8d50adc17e81fc46da81795125832af8add5f678)]:
|
|
35
|
+
- @equinor/fusion-framework-dev-portal@1.2.3
|
|
36
|
+
- @equinor/fusion-framework-dev-server@1.1.9
|
|
37
|
+
|
|
38
|
+
## 12.3.5
|
|
39
|
+
|
|
40
|
+
### Patch Changes
|
|
41
|
+
|
|
42
|
+
- [#3593](https://github.com/equinor/fusion-framework/pull/3593) [`c5a952c`](https://github.com/equinor/fusion-framework/commit/c5a952cb223ca2c6e723186b1a5a477dbec6c95d) Thanks [@Noggling](https://github.com/Noggling)! - ## Fix app config publish parameter
|
|
43
|
+
|
|
44
|
+
Fixed a bug in the `app config` command where the `config` parameter was incorrectly referenced as `options.config` when calling `publishAppConfig`. This was causing the publish functionality to fail when a custom config file path was provided.
|
|
45
|
+
|
|
46
|
+
### What Changed
|
|
47
|
+
|
|
48
|
+
- Corrected parameter passing in `packages/cli/src/cli/commands/app/config.ts`
|
|
49
|
+
- Changed `config: options.config` to `config` in the `publishAppConfig` call
|
|
50
|
+
|
|
51
|
+
### Impact
|
|
52
|
+
|
|
53
|
+
- The `ffc app config --publish` command now correctly uses the provided config file argument
|
|
54
|
+
- Fixes the issue where custom config files were not being passed to the publish function
|
|
55
|
+
- No breaking changes to the CLI interface
|
|
56
|
+
|
|
57
|
+
### Example
|
|
58
|
+
|
|
59
|
+
```bash
|
|
60
|
+
# This now works correctly with custom config files
|
|
61
|
+
ffc app config my-custom.config.ts --publish --manifest app.manifest.ts --env prod
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
- [#3584](https://github.com/equinor/fusion-framework/pull/3584) [`0dd31cd`](https://github.com/equinor/fusion-framework/commit/0dd31cd1078b383ddab4a8cf1bb03d502e214715) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: bump @rollup/plugin-node-resolve from 16.0.1 to 16.0.3
|
|
65
|
+
|
|
66
|
+
Bug fixes:
|
|
67
|
+
|
|
68
|
+
- fix: resolve bare targets of package "imports" using export maps; avoid fileURLToPath(null)
|
|
69
|
+
- fix: error thrown with empty entry
|
|
70
|
+
|
|
71
|
+
- Updated dependencies [[`fa12d3a`](https://github.com/equinor/fusion-framework/commit/fa12d3a2466a590a943d85c873f02bc45e8fba52)]:
|
|
72
|
+
- @equinor/fusion-imports@1.1.5
|
|
73
|
+
- @equinor/fusion-framework-dev-portal@1.2.2
|
|
74
|
+
- @equinor/fusion-framework-dev-server@1.1.8
|
|
75
|
+
|
|
3
76
|
## 12.3.4
|
|
4
77
|
|
|
5
78
|
### Patch Changes
|