@equinor/fusion-framework-cli 12.3.3 → 12.3.5

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 CHANGED
@@ -1,5 +1,51 @@
1
1
  # Change Log
2
2
 
3
+ ## 12.3.5
4
+
5
+ ### Patch Changes
6
+
7
+ - [#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
8
+
9
+ 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.
10
+
11
+ ### What Changed
12
+
13
+ - Corrected parameter passing in `packages/cli/src/cli/commands/app/config.ts`
14
+ - Changed `config: options.config` to `config` in the `publishAppConfig` call
15
+
16
+ ### Impact
17
+
18
+ - The `ffc app config --publish` command now correctly uses the provided config file argument
19
+ - Fixes the issue where custom config files were not being passed to the publish function
20
+ - No breaking changes to the CLI interface
21
+
22
+ ### Example
23
+
24
+ ```bash
25
+ # This now works correctly with custom config files
26
+ ffc app config my-custom.config.ts --publish --manifest app.manifest.ts --env prod
27
+ ```
28
+
29
+ - [#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
30
+
31
+ Bug fixes:
32
+
33
+ - fix: resolve bare targets of package "imports" using export maps; avoid fileURLToPath(null)
34
+ - fix: error thrown with empty entry
35
+
36
+ - Updated dependencies [[`fa12d3a`](https://github.com/equinor/fusion-framework/commit/fa12d3a2466a590a943d85c873f02bc45e8fba52)]:
37
+ - @equinor/fusion-imports@1.1.5
38
+ - @equinor/fusion-framework-dev-portal@1.2.2
39
+ - @equinor/fusion-framework-dev-server@1.1.8
40
+
41
+ ## 12.3.4
42
+
43
+ ### Patch Changes
44
+
45
+ - Updated dependencies []:
46
+ - @equinor/fusion-framework-dev-server@1.1.7
47
+ - @equinor/fusion-framework-dev-portal@1.2.2
48
+
3
49
  ## 12.3.3
4
50
 
5
51
  ### Patch Changes