@equinor/fusion-framework-cli 12.0.0 → 12.1.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 +46 -1
- package/bin/build/bin.mjs +1 -1
- package/bin/build/cli.mjs +5 -5
- package/dist/esm/version.js +1 -1
- package/dist/types/cli/commands/create/_helpers/select-git-protocol.d.ts +19 -0
- package/dist/types/cli/commands/create/_helpers/setup-repository.d.ts +1 -1
- package/dist/types/version.d.ts +1 -1
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,50 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 12.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#3459](https://github.com/equinor/fusion-framework/pull/3459) [`58b5cee`](https://github.com/equinor/fusion-framework/commit/58b5ceeba5c6488a459ecaa22013823d3310ebc9) Thanks [@odinr](https://github.com/odinr)! - Enhanced Git repository cloning with user-controlled protocol selection.
|
|
8
|
+
|
|
9
|
+
- Added interactive prompt for users to choose between HTTPS and SSH protocols
|
|
10
|
+
- Implemented intelligent SSH detection using both git config and filesystem checks
|
|
11
|
+
- Removed automatic SSH-to-HTTPS fallback in favor of explicit user choice
|
|
12
|
+
- Improved user experience with clear protocol descriptions and smart defaults
|
|
13
|
+
- Refactored SSH detection logic into testable helper functions for better maintainability
|
|
14
|
+
- Optimized SSH key detection to stop after finding first match for better performance
|
|
15
|
+
- Enhanced cross-platform compatibility with proper Node.js APIs instead of shell commands
|
|
16
|
+
|
|
17
|
+
This change gives users full control over their Git authentication method while maintaining compatibility across different development environments and improving code quality.
|
|
18
|
+
|
|
19
|
+
## 12.0.2
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- [#3432](https://github.com/equinor/fusion-framework/pull/3432) [`528d72c`](https://github.com/equinor/fusion-framework/commit/528d72c04066f93fca1fa6469f33ec8d5383dcdc) Thanks [@dependabot](https://github.com/apps/dependabot)! - Updated vite from 7.1.5 to 7.1.7, including bug fixes for HMR, build system, and glob imports.
|
|
24
|
+
|
|
25
|
+
- Updated dependencies [[`528d72c`](https://github.com/equinor/fusion-framework/commit/528d72c04066f93fca1fa6469f33ec8d5383dcdc)]:
|
|
26
|
+
- @equinor/fusion-framework-dev-server@1.1.2
|
|
27
|
+
- @equinor/fusion-framework-dev-portal@1.1.2
|
|
28
|
+
|
|
29
|
+
## 12.0.1
|
|
30
|
+
|
|
31
|
+
### Patch Changes
|
|
32
|
+
|
|
33
|
+
- [#3425](https://github.com/equinor/fusion-framework/pull/3425) [`41cc520`](https://github.com/equinor/fusion-framework/commit/41cc520707c37672c59855ed53a0d4cedae0ec61) Thanks [@dependabot](https://github.com/apps/dependabot)! - Updated pretty-bytes from 7.0.1 to 7.1.0, adding `fixedWidth` and `nonBreakingSpace` options for enhanced CLI output formatting.
|
|
34
|
+
|
|
35
|
+
- [#3428](https://github.com/equinor/fusion-framework/pull/3428) [`1700ca8`](https://github.com/equinor/fusion-framework/commit/1700ca8851fa108e55e9729fd24f595272766e63) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update zod from 4.1.9 to 4.1.11
|
|
36
|
+
|
|
37
|
+
- **v4.1.10**: Fixed shape caching issue (#5263) improving validation performance for complex schemas
|
|
38
|
+
- **v4.1.11**: Maintenance release with general improvements
|
|
39
|
+
|
|
40
|
+
This patch update enhances schema validation performance without changing any APIs.
|
|
41
|
+
|
|
42
|
+
- Updated dependencies [[`2291483`](https://github.com/equinor/fusion-framework/commit/2291483b10ea288102155839dc47dcfe2addc22c), [`3b614f8`](https://github.com/equinor/fusion-framework/commit/3b614f87138f5a52f8ccc50ca8c6598ef3db37d6), [`ff3ab8f`](https://github.com/equinor/fusion-framework/commit/ff3ab8fd64cacd9b0a691a696bb2a7c5187e2cf3)]:
|
|
43
|
+
- @equinor/fusion-framework-dev-server@1.1.1
|
|
44
|
+
- @equinor/fusion-framework-module-msal-node@1.0.6
|
|
45
|
+
- @equinor/fusion-framework-dev-portal@1.1.1
|
|
46
|
+
- @equinor/fusion-imports@1.1.4
|
|
47
|
+
|
|
3
48
|
## 12.0.0
|
|
4
49
|
|
|
5
50
|
### Major Changes
|
|
@@ -35,7 +80,7 @@
|
|
|
35
80
|
- Fix CLI source code documentation to match actual behavior
|
|
36
81
|
- Remove incorrect bundle parameter from portal publish examples
|
|
37
82
|
|
|
38
|
-
Resolves
|
|
83
|
+
Resolves: [Misleading description of the Fusion CLI publish action](https://github.com/equinor/fusion/issues/656)
|
|
39
84
|
|
|
40
85
|
- Updated dependencies []:
|
|
41
86
|
- @equinor/fusion-framework-dev-portal@1.1.0
|