@equinor/fusion-framework-cli 12.3.10 → 13.0.0-cli-search-index.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 CHANGED
@@ -1,5 +1,99 @@
1
1
  # Change Log
2
2
 
3
+ ## 13.0.0-cli-search-index.1
4
+
5
+ ### Minor Changes
6
+
7
+ - [#3757](https://github.com/equinor/fusion-framework/pull/3757) [`ccc6745`](https://github.com/equinor/fusion-framework/commit/ccc6745995c36771933b50461ea27e9b07c56a17) Thanks [@odinr](https://github.com/odinr)! - Add new `lib/ai` export path exposing `configureFusionAI` and `FusionAIConfig` for programmatic AI configuration.
8
+
9
+ This provides a public API for configuring Fusion AI settings including metadata processing, embedding chunking, and pattern matching.
10
+
11
+ ## 13.0.0-cli-search-index.0
12
+
13
+ ### Major Changes
14
+
15
+ - [`393f163`](https://github.com/equinor/fusion-framework/commit/393f1637ed33b84a6330b5eb122ab549805416bd) Thanks [@Noggling](https://github.com/Noggling)! - **Portal Tags Now Support Any String Value**
16
+
17
+ Portal tagging functionality has been enhanced to accept any string value for tags instead of being restricted to predefined enum values.
18
+
19
+ **Breaking Changes**
20
+
21
+ - **Removed `AllowedPortalTags` enum**: The enum that previously restricted portal tags to only `'latest'` and `'preview'` has been removed.
22
+ - **No longer exported**: `AllowedPortalTags` is no longer exported from `@equinor/fusion-framework-cli/bin`.
23
+
24
+ **Migration**
25
+
26
+ If you were importing and using `AllowedPortalTags`:
27
+
28
+ ```typescript
29
+ // Before
30
+ import { AllowedPortalTags } from '@equinor/fusion-framework-cli/bin';
31
+ await tagPortal({ tag: AllowedPortalTags.Latest, ... });
32
+
33
+ // After
34
+ await tagPortal({ tag: 'latest', ... });
35
+ ```
36
+
37
+ **New Flexibility**
38
+
39
+ You can now use any string value for portal tags:
40
+
41
+ ```bash
42
+ # Common tags still work
43
+ ffc portal publish --tag latest
44
+ ffc portal publish --tag preview
45
+
46
+ # New flexibility with custom tags
47
+ ffc portal publish --tag next
48
+ ffc portal publish --tag stable
49
+ ffc portal publish --tag v2.0.0-beta
50
+ ffc portal publish --tag release-candidate
51
+ ffc portal tag custom-environment --package my-portal@1.0.0
52
+ ```
53
+
54
+ **Enhanced Documentation**
55
+
56
+ - Updated CLI help text with practical examples
57
+ - Added common tag examples (`latest`, `preview`, `next`, `stable`) in documentation
58
+ - Maintained guidance while showing flexibility
59
+
60
+ **Validation**
61
+
62
+ - Tags must be non-empty strings
63
+ - No other restrictions on tag format or content
64
+ - Backward compatibility maintained for existing tag values
65
+
66
+ This change provides much greater flexibility for deployment workflows while maintaining the same API structure and functionality.
67
+
68
+ ### Minor Changes
69
+
70
+ - [#3757](https://github.com/equinor/fusion-framework/pull/3757) [`db880d1`](https://github.com/equinor/fusion-framework/commit/db880d1fbdb62ba4667f11229d1e6c3a4cea06fc) Thanks [@odinr](https://github.com/odinr)! - Add new `ai` command with `chat` and `embeddings` subcommands for LLM integration and document processing.
71
+
72
+ The CLI now supports interactive AI chat and document embedding utilities for processing codebase documentation and generating vector embeddings for search indexing.
73
+
74
+ **New Commands:**
75
+
76
+ - `ffc ai chat` - Interactive chat with AI models
77
+ - `ffc ai embeddings` - Document embedding utilities for AI processing
78
+
79
+ **Features:**
80
+
81
+ - Interactive chat interface with conversation history
82
+ - Document chunking and embedding generation
83
+ - Support for markdown and TypeScript documentation parsing
84
+ - Git metadata extraction for context-aware embeddings
85
+ - Vector store integration for search indexing
86
+
87
+ ### Patch Changes
88
+
89
+ - [#3757](https://github.com/equinor/fusion-framework/pull/3757) [`db880d1`](https://github.com/equinor/fusion-framework/commit/db880d1fbdb62ba4667f11229d1e6c3a4cea06fc) Thanks [@odinr](https://github.com/odinr)! - preview release
90
+
91
+ - Updated dependencies [[`db880d1`](https://github.com/equinor/fusion-framework/commit/db880d1fbdb62ba4667f11229d1e6c3a4cea06fc)]:
92
+ - @equinor/fusion-framework-dev-portal@1.2.6-cli-search-index.0
93
+ - @equinor/fusion-framework-dev-server@1.1.13-cli-search-index.0
94
+ - @equinor/fusion-framework-module-msal-node@2.0.1-cli-search-index.0
95
+ - @equinor/fusion-imports@1.1.7-cli-search-index.0
96
+
3
97
  ## 12.3.10
4
98
 
5
99
  ### Patch Changes