Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions helm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: toolhive-cloud-ui
description: A Helm chart for ToolHive Cloud UI - Next.js application
type: application
version: 0.1.0
appVersion: "0.1.0"
version: 0.0.2
appVersion: "0.0.2"
Comment on lines +5 to +6
Copy link

Copilot AI Nov 28, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The Helm chart version is being changed from 0.1.0 to 0.0.2, which appears to be going backwards in semantic versioning. This creates an inconsistency with package.json which has version "0.1.0".

Consider:

  1. If this is meant to align with a previous release, ensure package.json is also updated to match
  2. If this is a new release, the version should typically increment forward (e.g., 0.1.1 or 0.2.0) rather than decrement
  3. Keeping versions synchronized between package.json and the Helm chart helps maintain consistency across deployment artifacts
Suggested change
version: 0.0.2
appVersion: "0.0.2"
version: 0.1.0
appVersion: "0.1.0"

Copilot uses AI. Check for mistakes.
keywords:
- nextjs
- react
Expand Down
Loading