@odigos/ui-kit 0.0.110-dev.368 → 0.0.111
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 +8 -0
- package/lib/chunks/ui-components-152ce1ee.js +1604 -0
- package/lib/components.js +1 -1
- package/lib/constants.js +1 -1
- package/lib/containers/source-drawer/odigos-health/index.d.ts +2 -2
- package/lib/containers.js +103 -103
- package/lib/functions/get-containers-counts/index.d.ts +2 -2
- package/lib/functions/get-containers-icons/index.d.ts +2 -2
- package/lib/functions/get-workload-id/index.d.ts +1 -1
- package/lib/functions.js +1 -1
- package/lib/hooks/useSourceFormData.d.ts +1 -1
- package/lib/hooks.js +1 -1
- package/lib/icons/destinations/azure-blob-logo/index.d.ts +2 -0
- package/lib/icons/destinations/azure-monitor-logo/index.d.ts +2 -0
- package/lib/icons/destinations/index.d.ts +2 -1
- package/lib/icons.js +1 -1
- package/lib/mock-data/sources/index.d.ts +1 -2
- package/lib/snippets.js +1 -1
- package/lib/store/useEntityStore.d.ts +1 -9
- package/lib/store/useSetupStore.d.ts +2 -2
- package/lib/store.js +1 -1
- package/lib/theme.js +1 -1
- package/lib/types/destinations/index.d.ts +1 -0
- package/lib/types/sources/index.d.ts +1 -34
- package/lib/types.js +1 -1
- package/package.json +16 -16
- package/VERSIONING.md +0 -228
- package/lib/chunks/ui-components-85b0f109.js +0 -1605
- package/lib/icons/destinations/blob-storage-logo/index.d.ts +0 -2
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
import { K8sResourceKind, ProgrammingLanguages, type Source
|
|
1
|
+
import { K8sResourceKind, ProgrammingLanguages, type Source } from '@/types';
|
|
2
2
|
export declare const MOCK_SOURCES_OTHER: Source[];
|
|
3
3
|
export declare const MOCK_SOURCES_SIMPLE_DEMO: Source[];
|
|
4
4
|
export declare const MOCK_SOURCES_GOOGLE: Source[];
|
|
5
5
|
export declare const MOCK_SOURCE_JAEGER: {
|
|
6
|
-
sourceType: SourceType;
|
|
7
6
|
namespace: string;
|
|
8
7
|
name: string;
|
|
9
8
|
kind: K8sResourceKind;
|
package/lib/snippets.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export{
|
|
1
|
+
export{aS as AddButton,ch as AddNode,ci as BaseNode,bp as CopyText,cj as EdgedNode,bl as EditButton,az as Flow,ck as FrameNode,cl as HeaderNode,cq as LabeledEdge,cm as MapItemNode,cn as NoDataNode,aT as NoteBackToSummary,br as PodContainer,co as ScrollNode,cp as SkeletonNode,bv as SourceContainer,al as nodeConfig}from"./chunks/ui-components-152ce1ee.js";import"./icons.js";import"react";import"zustand";import"javascript-time-ago";import"./chunks/vendor-1dea551d.js";import"styled-components";import"@xyflow/react";import"react-dom";import"prism-react-renderer";import"react-error-boundary";import"lottie-react";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type Action, type Destination, EntityTypes, type InstrumentationRule, type Namespace, type Source, type WorkloadId
|
|
1
|
+
import { type Action, type Destination, EntityTypes, type InstrumentationRule, type Namespace, type Source, type WorkloadId } from '@/types';
|
|
2
2
|
interface IEntityState {
|
|
3
3
|
namespacesLoading: boolean;
|
|
4
4
|
namespaces: Namespace[];
|
|
@@ -18,14 +18,6 @@ interface IEntityStateSetters {
|
|
|
18
18
|
setEntities: (entityType: EntityTypes, entities: EntityItems) => void;
|
|
19
19
|
addEntities: (entityType: EntityTypes, entities: EntityItems) => void;
|
|
20
20
|
removeEntities: (entityType: EntityTypes, entityIds: EntityId[]) => void;
|
|
21
|
-
setSources: (sources: Source[]) => void;
|
|
22
|
-
addSources: (sources: Source[]) => void;
|
|
23
|
-
removeSources: (sourceIds: (string | WorkloadId)[]) => void;
|
|
24
|
-
getSourcesByType: (sourceType: SourceType) => Source[];
|
|
25
|
-
getK8sSources: () => K8sSource[];
|
|
26
|
-
getVMSources: () => VMSource[];
|
|
27
|
-
findSourceById: (id: string | WorkloadId) => Source | undefined;
|
|
28
|
-
updateSource: (id: string | WorkloadId, updates: Partial<Source>) => void;
|
|
29
21
|
resetEntityStore: () => void;
|
|
30
22
|
}
|
|
31
23
|
export declare const useEntityStore: import("zustand").UseBoundStore<import("zustand").StoreApi<IEntityState & IEntityStateSetters>>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import type { Destination,
|
|
2
|
-
export type AvailableSource = Pick<
|
|
1
|
+
import type { Destination, Source } from '@/types';
|
|
2
|
+
export type AvailableSource = Pick<Source, 'namespace' | 'name' | 'kind' | 'selected' | 'numberOfInstances'>;
|
|
3
3
|
export interface AvailableSourcesByNamespace {
|
|
4
4
|
[namespace: string]: AvailableSource[];
|
|
5
5
|
}
|
package/lib/store.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export{
|
|
1
|
+
export{cg as useActiveNodeStore,bJ as useDarkMode,as as useDataStreamStore,p as useDrawerStore,w as useEntityStore,a2 as useFilterStore,at as useInstrumentStore,N as useModalStore,o as useNotificationStore,u as usePendingStore,bh as useSelectedStore,a$ as useSetupStore}from"./chunks/ui-components-152ce1ee.js";import"./icons.js";import"react";import"zustand";import"javascript-time-ago";import"./chunks/vendor-1dea551d.js";import"styled-components";import"@xyflow/react";import"react-dom";import"prism-react-renderer";import"react-error-boundary";import"lottie-react";
|
package/lib/theme.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export{T as default}from"./chunks/ui-components-
|
|
1
|
+
export{T as default}from"./chunks/ui-components-152ce1ee.js";import"styled-components";import"./icons.js";import"react";import"zustand";import"javascript-time-ago";import"./chunks/vendor-1dea551d.js";import"@xyflow/react";import"react-dom";import"prism-react-renderer";import"react-error-boundary";import"lottie-react";
|
|
@@ -18,10 +18,6 @@ export declare enum OdigosHealthStatus {
|
|
|
18
18
|
Irrelevant = "Irrelevant",
|
|
19
19
|
Unknown = "Unknown"
|
|
20
20
|
}
|
|
21
|
-
export declare enum SourceType {
|
|
22
|
-
K8s = "k8s",
|
|
23
|
-
VM = "vm"
|
|
24
|
-
}
|
|
25
21
|
export interface WorkloadId {
|
|
26
22
|
namespace: string;
|
|
27
23
|
name: string;
|
|
@@ -36,31 +32,7 @@ export interface SourceContainer {
|
|
|
36
32
|
instrumentationMessage: string;
|
|
37
33
|
otelDistroName: string | null;
|
|
38
34
|
}
|
|
39
|
-
export interface
|
|
40
|
-
selected: boolean;
|
|
41
|
-
dataStreamNames: string[];
|
|
42
|
-
sourceType: SourceType;
|
|
43
|
-
}
|
|
44
|
-
export interface K8sSource extends BaseSource, WorkloadId {
|
|
45
|
-
sourceType: SourceType.K8s;
|
|
46
|
-
otelServiceName: string;
|
|
47
|
-
numberOfInstances?: number;
|
|
48
|
-
containers: SourceContainer[] | null;
|
|
49
|
-
conditions: Condition[] | null;
|
|
50
|
-
workloadOdigosHealthStatus?: {
|
|
51
|
-
status: OdigosHealthStatus;
|
|
52
|
-
reasonEnum: string;
|
|
53
|
-
message: string;
|
|
54
|
-
} | null;
|
|
55
|
-
}
|
|
56
|
-
export interface VMSource extends BaseSource {
|
|
57
|
-
sourceType: SourceType.VM;
|
|
58
|
-
name: string;
|
|
59
|
-
kind: string;
|
|
60
|
-
conditions: Condition[] | null;
|
|
61
|
-
}
|
|
62
|
-
export type Source = K8sSource | VMSource;
|
|
63
|
-
export interface LegacySource extends WorkloadId {
|
|
35
|
+
export interface Source extends WorkloadId {
|
|
64
36
|
selected: boolean;
|
|
65
37
|
otelServiceName: string;
|
|
66
38
|
numberOfInstances?: number;
|
|
@@ -81,8 +53,3 @@ export interface SourceFormData {
|
|
|
81
53
|
version?: string;
|
|
82
54
|
}
|
|
83
55
|
export type PersistSources = (selectAppsList: SourceSelectionFormData, futureSelectAppsList: NamespaceSelectionFormData) => void;
|
|
84
|
-
export declare const isK8sSource: (source: Source) => source is K8sSource;
|
|
85
|
-
export declare const isVMSource: (source: Source) => source is VMSource;
|
|
86
|
-
export declare const getSourceId: (source: Source) => string | WorkloadId;
|
|
87
|
-
export declare const getSourceName: (source: Source) => string;
|
|
88
|
-
export declare const getSourceKind: (source: Source) => string;
|
package/lib/types.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export{
|
|
1
|
+
export{bO as ActionCategory,c as ActionKeyTypes,A as ActionType,am as AddNodeTypes,bG as AgentEnvVarsInjectionMethod,bR as BooleanOperation,b9 as CodeAttributesKeyTypes,J as Crud,b8 as CustomInstrumentationsKeyTypes,bY as DestinationTypes,ak as EdgeTypes,E as EntityTypes,j as FieldTypes,b7 as HeadersCollectionKeyTypes,d as InputTypes,bI as InstallationMethod,bb as InstrumentationRuleType,bW as IntrumentationStatus,bS as JsonOperation,K as K8sAttributesFrom,bw as K8sResourceKind,bF as MountMethod,ai as NodeTypes,bQ as NumberOperation,bZ as OdigosHealthStatus,bV as OtherEntityTypes,a0 as OtherStatus,ba as PayloadCollectionKeyTypes,bU as PlatformType,bH as Profile,bx as ProgrammingLanguages,aY as SignalType,bX as SortDirection,v as StatusType,bP as StringOperation,bT as Tier}from"./chunks/ui-components-152ce1ee.js";import"./icons.js";import"react";import"zustand";import"javascript-time-ago";import"./chunks/vendor-1dea551d.js";import"styled-components";import"@xyflow/react";import"react-dom";import"prism-react-renderer";import"react-error-boundary";import"lottie-react";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@odigos/ui-kit",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.111",
|
|
4
4
|
"author": "Odigos",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -88,12 +88,12 @@
|
|
|
88
88
|
"zustand": "^5.0.6"
|
|
89
89
|
},
|
|
90
90
|
"dependencies": {
|
|
91
|
-
"@xyflow/react": "^12.8.
|
|
92
|
-
"javascript-time-ago": "^2.5.
|
|
91
|
+
"@xyflow/react": "^12.8.6",
|
|
92
|
+
"javascript-time-ago": "^2.5.12",
|
|
93
93
|
"lottie-react": "^2.4.1",
|
|
94
94
|
"prism-react-renderer": "^2.4.1",
|
|
95
|
-
"react": "^19.
|
|
96
|
-
"react-dom": "^19.
|
|
95
|
+
"react": "^19.2.0",
|
|
96
|
+
"react-dom": "^19.2.0",
|
|
97
97
|
"react-error-boundary": "^6.0.0",
|
|
98
98
|
"styled-components": "^6.1.19",
|
|
99
99
|
"zustand": "^5.0.8"
|
|
@@ -109,24 +109,24 @@
|
|
|
109
109
|
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
110
110
|
"@rollup/plugin-terser": "^0.4.4",
|
|
111
111
|
"@rollup/plugin-typescript": "^12.1.4",
|
|
112
|
-
"@storybook/addon-docs": "^9.1.
|
|
112
|
+
"@storybook/addon-docs": "^9.1.13",
|
|
113
113
|
"@storybook/addon-webpack5-compiler-babel": "^3.0.6",
|
|
114
|
-
"@storybook/react-webpack5": "9.1.
|
|
115
|
-
"@types/node": "^24.
|
|
116
|
-
"@types/react": "^19.
|
|
117
|
-
"@types/react-dom": "^19.
|
|
114
|
+
"@storybook/react-webpack5": "9.1.13",
|
|
115
|
+
"@types/node": "^24.8.1",
|
|
116
|
+
"@types/react": "^19.2.2",
|
|
117
|
+
"@types/react-dom": "^19.2.2",
|
|
118
118
|
"babel-loader": "^10.0.0",
|
|
119
119
|
"babel-plugin-styled-components": "^2.1.4",
|
|
120
|
-
"eslint": "^9.
|
|
121
|
-
"eslint-config-next": "^15.5.
|
|
122
|
-
"eslint-plugin-storybook": "9.1.
|
|
123
|
-
"next": "^15.5.
|
|
120
|
+
"eslint": "^9.38.0",
|
|
121
|
+
"eslint-config-next": "^15.5.6",
|
|
122
|
+
"eslint-plugin-storybook": "9.1.13",
|
|
123
|
+
"next": "^15.5.6",
|
|
124
124
|
"postcss": "^8.5.6",
|
|
125
125
|
"rollup": "^3.29.4",
|
|
126
126
|
"rollup-plugin-filesize": "^10.0.0",
|
|
127
127
|
"rollup-plugin-postcss": "^4.0.2",
|
|
128
128
|
"rollup-plugin-visualizer": "^6.0.3",
|
|
129
|
-
"storybook": "9.1.
|
|
130
|
-
"typescript": "^5.9.
|
|
129
|
+
"storybook": "9.1.13",
|
|
130
|
+
"typescript": "^5.9.3"
|
|
131
131
|
}
|
|
132
132
|
}
|
package/VERSIONING.md
DELETED
|
@@ -1,228 +0,0 @@
|
|
|
1
|
-
# Versioning Guide
|
|
2
|
-
|
|
3
|
-
This document explains how versioning and releases work for the `@odigos/ui-kit` package.
|
|
4
|
-
|
|
5
|
-
## Overview
|
|
6
|
-
|
|
7
|
-
The UI Kit uses a dual-release strategy:
|
|
8
|
-
|
|
9
|
-
- **Main releases**: Stable versions published to the `latest` npm tag
|
|
10
|
-
- **Dev releases**: Prerelease versions published to the `dev` npm tag
|
|
11
|
-
|
|
12
|
-
## Release Types
|
|
13
|
-
|
|
14
|
-
### 1. Main Releases (Stable)
|
|
15
|
-
|
|
16
|
-
**Trigger**: Push/merge to `main` branch
|
|
17
|
-
**Workflow**: `.github/workflows/npm-publish.yml`
|
|
18
|
-
**NPM Tag**: `latest` (default)
|
|
19
|
-
**Version Format**: `MAJOR.MINOR.PATCH` (e.g., `1.8.0`)
|
|
20
|
-
|
|
21
|
-
#### How it works:
|
|
22
|
-
|
|
23
|
-
1. **Release Please**: Automatically manages versioning using conventional commits
|
|
24
|
-
2. **Version Bumping**:
|
|
25
|
-
- `feat:` commits → minor version bump
|
|
26
|
-
- `fix:` commits → patch version bump
|
|
27
|
-
- `BREAKING CHANGE:` → major version bump
|
|
28
|
-
3. **Release Process**:
|
|
29
|
-
- Creates a release PR with updated version and changelog
|
|
30
|
-
- After PR merge, automatically publishes to npm with `latest` tag
|
|
31
|
-
|
|
32
|
-
#### Installation:
|
|
33
|
-
|
|
34
|
-
```bash
|
|
35
|
-
npm install @odigos/ui-kit
|
|
36
|
-
# or
|
|
37
|
-
npm install @odigos/ui-kit@latest
|
|
38
|
-
```
|
|
39
|
-
|
|
40
|
-
### 2. Dev Releases (Prerelease)
|
|
41
|
-
|
|
42
|
-
**Trigger**: Push to `dev` branch
|
|
43
|
-
**Workflow**: `.github/workflows/publish-dev.yml`
|
|
44
|
-
**NPM Tag**: `dev`
|
|
45
|
-
**Version Format**: `MAJOR.MINOR.PATCH-dev.COMMIT_COUNT` (e.g., `1.8.0-dev.15`)
|
|
46
|
-
|
|
47
|
-
#### How it works:
|
|
48
|
-
|
|
49
|
-
1. **Automatic Triggering**: Runs on every push to the `dev` branch
|
|
50
|
-
2. **Version Generation**:
|
|
51
|
-
- Takes current version from `package.json`
|
|
52
|
-
- Appends `-dev.{commit-count}` suffix
|
|
53
|
-
- Example: `0.0.110` → `0.0.110-dev.15`
|
|
54
|
-
3. **Publishing**: Automatically publishes to npm with `dev` tag
|
|
55
|
-
|
|
56
|
-
#### Installation:
|
|
57
|
-
|
|
58
|
-
```bash
|
|
59
|
-
npm install @odigos/ui-kit@dev
|
|
60
|
-
```
|
|
61
|
-
|
|
62
|
-
## Version Numbering
|
|
63
|
-
|
|
64
|
-
### Current Version
|
|
65
|
-
|
|
66
|
-
- **Current**: `0.0.110` (as of latest release)
|
|
67
|
-
- **Format**: `MAJOR.MINOR.PATCH`
|
|
68
|
-
- **Pre-major**: Currently in pre-major phase (0.x.x)
|
|
69
|
-
|
|
70
|
-
### Version Bumping Rules
|
|
71
|
-
|
|
72
|
-
#### Main Releases (via Release Please)
|
|
73
|
-
|
|
74
|
-
- **Major** (`1.0.0`): Breaking changes (requires `BREAKING CHANGE:` in commit)
|
|
75
|
-
- **Minor** (`0.1.0`): New features (requires `feat:` prefix)
|
|
76
|
-
- **Patch** (`0.0.1`): Bug fixes (requires `fix:` prefix)
|
|
77
|
-
|
|
78
|
-
#### Dev Releases
|
|
79
|
-
|
|
80
|
-
- **Base Version**: Inherits from current `package.json` version
|
|
81
|
-
- **Prerelease Suffix**: `-dev.{commit-count}`
|
|
82
|
-
- **Incremental**: Each push to dev branch creates a new prerelease
|
|
83
|
-
|
|
84
|
-
## Workflow Examples
|
|
85
|
-
|
|
86
|
-
### Main Release Workflow
|
|
87
|
-
|
|
88
|
-
```bash
|
|
89
|
-
# 1. Make changes with conventional commits
|
|
90
|
-
git commit -m "feat: add new button component"
|
|
91
|
-
git commit -m "fix: resolve styling issue in modal"
|
|
92
|
-
|
|
93
|
-
# 2. Push to main
|
|
94
|
-
git push origin main
|
|
95
|
-
|
|
96
|
-
# 3. Release Please creates PR automatically
|
|
97
|
-
# 4. Merge PR → triggers npm publish to 'latest' tag
|
|
98
|
-
```
|
|
99
|
-
|
|
100
|
-
### Dev Release Workflow
|
|
101
|
-
|
|
102
|
-
```bash
|
|
103
|
-
# 1. Switch to dev branch
|
|
104
|
-
git checkout dev
|
|
105
|
-
|
|
106
|
-
# 2. Make experimental changes
|
|
107
|
-
git commit -m "wip: experimental feature"
|
|
108
|
-
git push origin dev
|
|
109
|
-
|
|
110
|
-
# 3. Automatically publishes to npm with 'dev' tag
|
|
111
|
-
# Version: 0.0.110-dev.16 (example)
|
|
112
|
-
```
|
|
113
|
-
|
|
114
|
-
## Installation Commands
|
|
115
|
-
|
|
116
|
-
### Stable Release (Recommended for Production)
|
|
117
|
-
|
|
118
|
-
```bash
|
|
119
|
-
npm install @odigos/ui-kit
|
|
120
|
-
```
|
|
121
|
-
|
|
122
|
-
### Latest Dev Release (For Testing)
|
|
123
|
-
|
|
124
|
-
```bash
|
|
125
|
-
npm install @odigos/ui-kit@dev
|
|
126
|
-
```
|
|
127
|
-
|
|
128
|
-
### Specific Version
|
|
129
|
-
|
|
130
|
-
```bash
|
|
131
|
-
npm install @odigos/ui-kit@0.0.110
|
|
132
|
-
npm install @odigos/ui-kit@0.0.110-dev.15
|
|
133
|
-
```
|
|
134
|
-
|
|
135
|
-
## Branch Strategy
|
|
136
|
-
|
|
137
|
-
### `main` Branch
|
|
138
|
-
|
|
139
|
-
- **Purpose**: Stable, production-ready code
|
|
140
|
-
- **Releases**: Full releases with `latest` tag
|
|
141
|
-
- **Versioning**: Managed by Release Please
|
|
142
|
-
- **Usage**: Production applications
|
|
143
|
-
|
|
144
|
-
### `dev` Branch
|
|
145
|
-
|
|
146
|
-
- **Purpose**: Development and experimental features
|
|
147
|
-
- **Releases**: Prerelease versions with `dev` tag
|
|
148
|
-
- **Versioning**: Automatic with commit count
|
|
149
|
-
- **Usage**: Testing and development
|
|
150
|
-
|
|
151
|
-
## Configuration Files
|
|
152
|
-
|
|
153
|
-
### Release Please Configuration
|
|
154
|
-
|
|
155
|
-
- **File**: `release-please-config.json`
|
|
156
|
-
- **Purpose**: Configures automatic versioning for main releases
|
|
157
|
-
- **Settings**:
|
|
158
|
-
- `bump-minor-pre-major: true` - Minor bumps during pre-major phase
|
|
159
|
-
- `bump-patch-for-minor-pre-major: true` - Patch bumps for minor changes
|
|
160
|
-
- `release-type: "node"` - Node.js package release type
|
|
161
|
-
|
|
162
|
-
### Package.json
|
|
163
|
-
|
|
164
|
-
- **Version**: Current version (e.g., `0.0.110`)
|
|
165
|
-
- **Release Branches**: `["main"]` - Only main branch creates releases
|
|
166
|
-
- **Publish Config**: `"access": "public"` - Public npm package
|
|
167
|
-
|
|
168
|
-
## Best Practices
|
|
169
|
-
|
|
170
|
-
### For Main Releases
|
|
171
|
-
|
|
172
|
-
1. **Use Conventional Commits**: Follow `feat:`, `fix:`, `BREAKING CHANGE:` format
|
|
173
|
-
2. **Review Release PRs**: Check generated changelog and version
|
|
174
|
-
3. **Test Before Merge**: Ensure all changes work correctly
|
|
175
|
-
4. **Merge Release PRs**: Don't edit them manually
|
|
176
|
-
|
|
177
|
-
### For Dev Releases
|
|
178
|
-
|
|
179
|
-
1. **Experimental Features**: Use dev branch for testing new features
|
|
180
|
-
2. **Frequent Pushes**: Each push creates a new prerelease
|
|
181
|
-
3. **Clear Commit Messages**: Help track what changed in each dev release
|
|
182
|
-
4. **Test Thoroughly**: Dev releases should be tested before promoting to main
|
|
183
|
-
|
|
184
|
-
### For Consumers
|
|
185
|
-
|
|
186
|
-
1. **Production**: Use `@latest` or no tag (stable releases)
|
|
187
|
-
2. **Development**: Use `@dev` for testing new features
|
|
188
|
-
3. **Specific Versions**: Pin to specific versions for reproducible builds
|
|
189
|
-
4. **Update Strategy**: Regularly update to get latest fixes and features
|
|
190
|
-
|
|
191
|
-
## Troubleshooting
|
|
192
|
-
|
|
193
|
-
### Common Issues
|
|
194
|
-
|
|
195
|
-
#### Dev Release Not Publishing
|
|
196
|
-
|
|
197
|
-
- Check if `NPM_TOKEN` secret is configured in GitHub
|
|
198
|
-
- Verify the workflow is running on dev branch pushes
|
|
199
|
-
- Check GitHub Actions logs for errors
|
|
200
|
-
|
|
201
|
-
#### Version Conflicts
|
|
202
|
-
|
|
203
|
-
- Dev releases use commit count, so conflicts are unlikely
|
|
204
|
-
- Main releases use Release Please, which handles conflicts automatically
|
|
205
|
-
|
|
206
|
-
#### Installation Issues
|
|
207
|
-
|
|
208
|
-
- Use `npm install @odigos/ui-kit@dev` for dev releases
|
|
209
|
-
- Use `npm install @odigos/ui-kit` for stable releases
|
|
210
|
-
- Clear npm cache if needed: `npm cache clean --force`
|
|
211
|
-
|
|
212
|
-
## Release History
|
|
213
|
-
|
|
214
|
-
Current version: `0.0.110`
|
|
215
|
-
|
|
216
|
-
### Recent Releases
|
|
217
|
-
|
|
218
|
-
- Check [GitHub Releases](https://github.com/odigos-io/ui-kit/releases) for full history
|
|
219
|
-
- Dev releases are not tracked in GitHub releases (npm only)
|
|
220
|
-
|
|
221
|
-
## Support
|
|
222
|
-
|
|
223
|
-
For questions about versioning or releases:
|
|
224
|
-
|
|
225
|
-
1. Check this documentation
|
|
226
|
-
2. Review GitHub Actions logs
|
|
227
|
-
3. Check npm package page: https://www.npmjs.com/package/@odigos/ui-kit
|
|
228
|
-
4. Open an issue in the repository
|