@equinor/fusion-framework-cli 12.0.2 → 12.1.1
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 +24 -0
- 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 +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 12.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#3463](https://github.com/equinor/fusion-framework/pull/3463) [`5ab3d2d`](https://github.com/equinor/fusion-framework/commit/5ab3d2d7e28b4266a0e65b0834889b6269881d23) Thanks [@odinr](https://github.com/odinr)! - Fix Git protocol selection to respect user's explicit HTTPS choice instead of auto-detecting SSH when available.
|
|
8
|
+
|
|
9
|
+
Fixes: https://github.com/equinor/fusion-framework/issues/3462
|
|
10
|
+
|
|
11
|
+
## 12.1.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- [#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.
|
|
16
|
+
|
|
17
|
+
- Added interactive prompt for users to choose between HTTPS and SSH protocols
|
|
18
|
+
- Implemented intelligent SSH detection using both git config and filesystem checks
|
|
19
|
+
- Removed automatic SSH-to-HTTPS fallback in favor of explicit user choice
|
|
20
|
+
- Improved user experience with clear protocol descriptions and smart defaults
|
|
21
|
+
- Refactored SSH detection logic into testable helper functions for better maintainability
|
|
22
|
+
- Optimized SSH key detection to stop after finding first match for better performance
|
|
23
|
+
- Enhanced cross-platform compatibility with proper Node.js APIs instead of shell commands
|
|
24
|
+
|
|
25
|
+
This change gives users full control over their Git authentication method while maintaining compatibility across different development environments and improving code quality.
|
|
26
|
+
|
|
3
27
|
## 12.0.2
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|