@equinor/fusion-framework-cli 11.3.0 → 11.4.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 +130 -0
- package/bin/build/bin.mjs +1 -1
- package/bin/build/cli.mjs +3 -3
- package/dist/esm/version.js +1 -1
- package/dist/types/bin/app-tag.d.ts +1 -1
- package/dist/types/version.d.ts +1 -1
- package/package.json +17 -17
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,135 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 11.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#3369](https://github.com/equinor/fusion-framework/pull/3369) [`bd8360e`](https://github.com/equinor/fusion-framework/commit/bd8360e6b93704b3f8ba4eb0d7fd142e27c01ef9) Thanks [@dependabot](https://github.com/apps/dependabot)! - Updated commander from v13 to v14 with improved help system and Node.js v20+ requirement.
|
|
8
|
+
|
|
9
|
+
### Breaking Changes
|
|
10
|
+
|
|
11
|
+
- Commander 14 requires Node.js v20 or higher (compatible with existing project requirements)
|
|
12
|
+
|
|
13
|
+
### New Features
|
|
14
|
+
|
|
15
|
+
- Support for groups of options and commands in help
|
|
16
|
+
- Support for unescaped negative numbers as arguments
|
|
17
|
+
- Enhanced TypeScript support with parseArg property
|
|
18
|
+
|
|
19
|
+
### Links
|
|
20
|
+
|
|
21
|
+
- [GitHub releases](https://github.com/tj/commander.js/releases/tag/v14.0.1)
|
|
22
|
+
- [Changelog](https://github.com/tj/commander.js/blob/master/CHANGELOG.md)
|
|
23
|
+
|
|
24
|
+
- [#3349](https://github.com/equinor/fusion-framework/pull/3349) [`c511123`](https://github.com/equinor/fusion-framework/commit/c511123c835e24e9ddefcc4c47c2455f5df12087) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: bump vite from 6.x to 7.1.5
|
|
25
|
+
|
|
26
|
+
Major version update of Vite build tool across all packages. This update includes:
|
|
27
|
+
|
|
28
|
+
- Enhanced build performance and caching
|
|
29
|
+
- Better error reporting with code frames
|
|
30
|
+
- Improved TypeScript integration
|
|
31
|
+
- Updated plugin ecosystem compatibility
|
|
32
|
+
- New development server features
|
|
33
|
+
|
|
34
|
+
### Links
|
|
35
|
+
|
|
36
|
+
- [Vite 7.1.5 Release Notes](https://github.com/vitejs/vite/releases/tag/v7.1.5)
|
|
37
|
+
- [Vite 7.x Migration Guide](https://vitejs.dev/guide/migration)
|
|
38
|
+
|
|
39
|
+
### Patch Changes
|
|
40
|
+
|
|
41
|
+
- [#3389](https://github.com/equinor/fusion-framework/pull/3389) [`db19291`](https://github.com/equinor/fusion-framework/commit/db192912ec35b41a10f0324ee70ecc85a686d4fa) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: bump ora from 8.2.0 to 9.0.0
|
|
42
|
+
|
|
43
|
+
### Breaking Changes
|
|
44
|
+
|
|
45
|
+
- ora v9.0.0 now requires Node.js 20+ (previously supported older versions)
|
|
46
|
+
|
|
47
|
+
### New Features
|
|
48
|
+
|
|
49
|
+
- Fix clearing in some cases
|
|
50
|
+
- Fix `frame()` not displaying dynamic `prefixText`/`suffixText` from functions
|
|
51
|
+
- Fix multiline text exceeding console height leaving garbage when scrolling
|
|
52
|
+
|
|
53
|
+
### Links
|
|
54
|
+
|
|
55
|
+
- [GitHub releases](https://github.com/sindresorhus/ora/releases/tag/v9.0.0)
|
|
56
|
+
- [npm changelog](https://www.npmjs.com/package/ora?activeTab=versions)
|
|
57
|
+
|
|
58
|
+
- [#3391](https://github.com/equinor/fusion-framework/pull/3391) [`7792659`](https://github.com/equinor/fusion-framework/commit/7792659bf2ade10dba5e54c610d5abff522324b6) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: bump @vitest/coverage-v8 from 2.0.1 to 3.2.4
|
|
59
|
+
|
|
60
|
+
Major version update of Vitest coverage package for CLI testing.
|
|
61
|
+
|
|
62
|
+
### Breaking Changes
|
|
63
|
+
|
|
64
|
+
- Updated from @vitest/coverage-v8 v2 to v3
|
|
65
|
+
- Coverage reporting may have configuration changes
|
|
66
|
+
|
|
67
|
+
### New Features
|
|
68
|
+
|
|
69
|
+
- Enhanced coverage reporting capabilities
|
|
70
|
+
- Improved test performance
|
|
71
|
+
- Better error handling and reporting
|
|
72
|
+
|
|
73
|
+
### Links
|
|
74
|
+
|
|
75
|
+
- [Vitest v3.2.4 Release Notes](https://github.com/vitest-dev/vitest/releases/tag/v3.2.4)
|
|
76
|
+
- [Vitest v3 Migration Guide](https://vitest.dev/guide/migration.html)
|
|
77
|
+
- [Coverage v8 Documentation](https://vitest.dev/guide/coverage.html)
|
|
78
|
+
|
|
79
|
+
- Updated dependencies [[`6eeef2f`](https://github.com/equinor/fusion-framework/commit/6eeef2f2033dfacf7c972295c8c2cc2d4cd83976), [`7792659`](https://github.com/equinor/fusion-framework/commit/7792659bf2ade10dba5e54c610d5abff522324b6), [`aed6c53`](https://github.com/equinor/fusion-framework/commit/aed6c5385df496a86d06dc0af9dacafc255ea605), [`daa362e`](https://github.com/equinor/fusion-framework/commit/daa362e7d92ad362e46d666c434d0f09687abad5), [`2fff2ea`](https://github.com/equinor/fusion-framework/commit/2fff2ea1e4838627e297b7b401601f1186c95335), [`c511123`](https://github.com/equinor/fusion-framework/commit/c511123c835e24e9ddefcc4c47c2455f5df12087)]:
|
|
80
|
+
- @equinor/fusion-framework-dev-portal@1.1.0
|
|
81
|
+
- @equinor/fusion-framework-dev-server@1.1.0
|
|
82
|
+
- @equinor/fusion-framework-module-msal-node@1.0.5
|
|
83
|
+
|
|
84
|
+
## 11.3.1
|
|
85
|
+
|
|
86
|
+
### Patch Changes
|
|
87
|
+
|
|
88
|
+
- [#3379](https://github.com/equinor/fusion-framework/pull/3379) [`96d319c`](https://github.com/equinor/fusion-framework/commit/96d319c64e2ccb0ad080d633b74b76cbc4f48083) Thanks [@dependabot](https://github.com/apps/dependabot)! - Updated inquirer dependency from 12.9.4 to 12.9.6
|
|
89
|
+
|
|
90
|
+
- Updated inquirer to latest patch version 12.9.6
|
|
91
|
+
- Includes bug fixes and performance improvements
|
|
92
|
+
- No breaking changes in this patch update
|
|
93
|
+
|
|
94
|
+
- [#3381](https://github.com/equinor/fusion-framework/pull/3381) [`bae9c95`](https://github.com/equinor/fusion-framework/commit/bae9c9554f335d0384b864436874bded47d00ed8) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update rollup from 4.46.3 to 4.50.2
|
|
95
|
+
|
|
96
|
+
- Updated rollup dependency to latest patch version
|
|
97
|
+
- Includes bug fixes for tree-shaking array destructuring patterns
|
|
98
|
+
- Performance improvements and platform support updates
|
|
99
|
+
- No breaking changes - backward compatible update
|
|
100
|
+
|
|
101
|
+
- [#2910](https://github.com/equinor/fusion-framework/pull/2910) [`07cc985`](https://github.com/equinor/fusion-framework/commit/07cc9857e1427b574e011cc319518e701dba784d) Thanks [@dependabot](https://github.com/apps/dependabot)! - Updated vitest from 2.1.9 to 3.2.4 across all packages.
|
|
102
|
+
|
|
103
|
+
## Breaking Changes
|
|
104
|
+
|
|
105
|
+
- **Node.js Requirements**: Requires Node.js 18+ (already satisfied)
|
|
106
|
+
- **Vite Compatibility**: Updated to work with Vite 7.x (already using Vite 7.1.5)
|
|
107
|
+
- **Snapshot Format**: Snapshots now use backtick quotes (\`) instead of single quotes
|
|
108
|
+
- **Coverage API**: New coverage methods `enableCoverage()` and `disableCoverage()`
|
|
109
|
+
- **TypeScript Support**: Enhanced TypeScript integration and type definitions
|
|
110
|
+
|
|
111
|
+
## Security Updates
|
|
112
|
+
|
|
113
|
+
- CVE-2025-24963: Browser mode serves arbitrary files (fixed in 2.1.9)
|
|
114
|
+
- CVE-2025-24964: Remote Code Execution vulnerability (fixed in 2.1.9)
|
|
115
|
+
|
|
116
|
+
## Migration Notes
|
|
117
|
+
|
|
118
|
+
- Test snapshots may need regeneration due to quote format changes
|
|
119
|
+
- Some test configurations might need updates for new TypeScript support
|
|
120
|
+
- Peer dependency warnings for @vitest/coverage-v8 are expected and safe to ignore
|
|
121
|
+
|
|
122
|
+
## Links
|
|
123
|
+
|
|
124
|
+
- [Vitest 3.0 Migration Guide](https://vitest.dev/guide/migration)
|
|
125
|
+
- [Vitest 3.2.4 Release Notes](https://github.com/vitest-dev/vitest/releases/tag/v3.2.4)
|
|
126
|
+
|
|
127
|
+
- Updated dependencies [[`bae9c95`](https://github.com/equinor/fusion-framework/commit/bae9c9554f335d0384b864436874bded47d00ed8), [`4215d80`](https://github.com/equinor/fusion-framework/commit/4215d80799d156a248feb0f195af370907332a33), [`07cc985`](https://github.com/equinor/fusion-framework/commit/07cc9857e1427b574e011cc319518e701dba784d)]:
|
|
128
|
+
- @equinor/fusion-framework-dev-portal@1.0.3
|
|
129
|
+
- @equinor/fusion-framework-module-msal-node@1.0.4
|
|
130
|
+
- @equinor/fusion-framework-dev-server@1.0.3
|
|
131
|
+
- @equinor/fusion-imports@1.1.3
|
|
132
|
+
|
|
3
133
|
## 11.3.0
|
|
4
134
|
|
|
5
135
|
### Minor Changes
|