Skip to content
Merged
Show file tree
Hide file tree
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

This file was deleted.

5 changes: 0 additions & 5 deletions workspaces/argocd/.changeset/honest-tips-divide.md

This file was deleted.

5 changes: 0 additions & 5 deletions workspaces/argocd/.changeset/rude-rocks-play.md

This file was deleted.

5 changes: 0 additions & 5 deletions workspaces/argocd/.changeset/spotty-bananas-smoke.md

This file was deleted.

5 changes: 0 additions & 5 deletions workspaces/argocd/.changeset/sweet-moles-remain.md

This file was deleted.

8 changes: 0 additions & 8 deletions workspaces/argocd/.changeset/version-bump-1-50-4.md

This file was deleted.

15 changes: 15 additions & 0 deletions workspaces/argocd/plugins/argocd-backend/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# @backstage-community/plugin-argocd-backend

## 1.5.0

### Minor Changes

- ed7cb18: Backstage version bump to v1.50.4

### Patch Changes

- d2cf455: Add example templates for ArgoCD plugin actions
- 53f7107: Registered actions for ArgoCD application management: `argocd:find-applications`, `argocd:get-application`, `argocd:list-applications`, `argocd:get-revision-details`
- Updated dependencies [1cc5891]
- Updated dependencies [ed7cb18]
- @backstage-community/plugin-argocd-node@1.2.0
- @backstage-community/plugin-argocd-common@1.16.0

## 1.4.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion workspaces/argocd/plugins/argocd-backend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@backstage-community/plugin-argocd-backend",
"version": "1.4.0",
"version": "1.5.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
Expand Down
6 changes: 6 additions & 0 deletions workspaces/argocd/plugins/argocd-common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @backstage-community/plugin-argocd-common

## 1.16.0

### Minor Changes

- ed7cb18: Backstage version bump to v1.50.4

## 1.15.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion workspaces/argocd/plugins/argocd-common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@backstage-community/plugin-argocd-common",
"version": "1.15.0",
"version": "1.16.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
Expand Down
12 changes: 12 additions & 0 deletions workspaces/argocd/plugins/argocd-node/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @backstage-community/plugin-argocd-node

## 1.2.0

### Minor Changes

- ed7cb18: Backstage version bump to v1.50.4

### Patch Changes

- 1cc5891: Fixed handling of Argo CD instance URLs configured with a trailing slash; API requests now target paths such as `/api/v1/session` correctly instead of producing invalid double-slash URLs.
- Updated dependencies [ed7cb18]
- @backstage-community/plugin-argocd-common@1.16.0

## 1.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion workspaces/argocd/plugins/argocd-node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@backstage-community/plugin-argocd-node",
"version": "1.1.0",
"version": "1.2.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
Expand Down
21 changes: 21 additions & 0 deletions workspaces/argocd/plugins/argocd/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# @backstage-community/plugin-argocd

## 2.9.0

### Minor Changes

- ed7cb18: Backstage version bump to v1.50.4

### Patch Changes

- da8d33d: Fix HTTP 500 errors and incorrect rendering for multi-source ArgoCD applications that include Helm chart sources.

When an ArgoCD Application has multiple sources and one is a Helm chart (i.e. `spec.sources[i].chart` is set), the backend was calling the ArgoCD revision metadata endpoint with the chart version string (e.g. `6.33.0`) as the revision ID. The ArgoCD API endpoint `/revisions/{revision}/metadata` only accepts git commit SHAs and returns HTTP 500 for chart version strings, producing a continuous stream of backend errors on every entity page load.

- `getRevisionDetailsList` now skips the revision metadata API call when the source at the given index is a Helm chart source.
- `getUniqueRevisions` now excludes Helm chart version strings from multi-source apps so they are not passed to the revision metadata endpoint.
- `isAppHelmChartType` now correctly returns `true` for multi-source apps that include at least one Helm chart source, fixing the revision link rendering in the Deployment Summary table.
- Fixed the Revision column in the Deployment Summary table for multi-source apps: the previous `pop()` call mutated the cached history array causing the column to cycle between the commit SHA, the Helm version, and blank on successive React renders. The column now shows a stable combined string (e.g. `6.49.0 / abc1234`) — Helm chart versions in full and git SHAs truncated to 7 characters — linked to the first git source commit URL.

- 170f85d: Fix Jest 30 test compatibility by normalizing color style assertions in rollout status tests.
- Updated dependencies [ed7cb18]
- @backstage-community/plugin-argocd-common@1.16.0

## 2.8.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion workspaces/argocd/plugins/argocd/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@backstage-community/plugin-argocd",
"version": "2.8.0",
"version": "2.9.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
Expand Down
Loading