Skip to content

Commit bc7ea45

Browse files
taylorbotgusevda
andauthored
Release v0.120.0 (#1482)
* Prepare release: update CHANGELOG for minor release * Release v0.120.0 - version packages Release-Workflow-Run: 23900145618 * Release v0.120.0 Release-Workflow-Run: 23900145618 --------- Co-authored-by: Dmitry Gusev <gusevda90@gmail.com>
1 parent fca7f1a commit bc7ea45

18 files changed

Lines changed: 108 additions & 31 deletions

File tree

.changeset/light-cloud-jump.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/light-valley-climb.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changeset/vast-harbor-observe.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,19 @@ Package specific changes (for packages from `packages/*` and `plugins/*`) can be
55

66
## [Unreleased]
77

8+
## [0.120.0] - 2026-04-02
9+
10+
### Added
11+
12+
- Add authenticated GitHub content fetching for private repository Helm chart README, values schema, and values YAML.
13+
14+
### Fixed
15+
16+
- Fix AI chat `get-helm-chart-values` tool failing with 500 for private OCI registries.
17+
- Fix repeated OAuth2 token refresh on every request after token expiry.
18+
19+
See [./docs/releases/v0.120.0-changelog.md](./docs/releases/v0.120.0-changelog.md) for more information.
20+
821
## [0.119.0] - 2026-04-01
922

1023
### Added
@@ -2194,7 +2207,8 @@ See [./docs/releases/v0.40.0-changelog.md](./docs/releases/v0.40.0-changelog.md)
21942207

21952208
- Disable anonymous access.
21962209

2197-
[Unreleased]: https://github.com/giantswarm/backstage/compare/v0.119.0...HEAD
2210+
[Unreleased]: https://github.com/giantswarm/backstage/compare/v0.120.0...HEAD
2211+
[0.120.0]: https://github.com/giantswarm/backstage/compare/v0.119.0...v0.120.0
21982212
[0.119.0]: https://github.com/giantswarm/backstage/compare/v0.119.0...v0.119.0
21992213
[0.119.0]: https://github.com/giantswarm/backstage/compare/v0.118.0...v0.119.0
22002214
[0.118.0]: https://github.com/giantswarm/backstage/compare/v0.117.2...v0.118.0
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Release v0.120.0
2+
3+
## app@0.35.3
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [fca7f1a]
8+
- @giantswarm/backstage-plugin-gs@0.64.0
9+
10+
## backend@0.18.3
11+
12+
### Patch Changes
13+
14+
- Updated dependencies [6e25580]
15+
- Updated dependencies [fca7f1a]
16+
- Updated dependencies [7fbbfff]
17+
- @giantswarm/backstage-plugin-gs-backend@0.8.0
18+
- @giantswarm/backstage-plugin-auth-backend-module-gs@0.13.1
19+
20+
## @giantswarm/backstage-plugin-auth-backend-module-gs@0.13.1
21+
22+
### Patch Changes
23+
24+
- 7fbbfff: Enable OAuth2 scope persistence to fix repeated token refresh on every request after token expiry.
25+
26+
## @giantswarm/backstage-plugin-gs-backend@0.8.0
27+
28+
### Minor Changes
29+
30+
- fca7f1a: Add authenticated GitHub content fetching for private repositories. Helm chart README, values schema, and values YAML are now fetched through a backend endpoint that adds GitHub credentials, instead of direct unauthenticated browser fetches.
31+
32+
### Patch Changes
33+
34+
- 6e25580: Fix AI chat `get-helm-chart-values` tool failing with 500 for private OCI registries by authenticating GitHub URL fetches using Backstage's GitHub integration credentials.
35+
36+
## @giantswarm/backstage-plugin-gs@0.64.0
37+
38+
### Minor Changes
39+
40+
- fca7f1a: Add authenticated GitHub content fetching for private repositories. Helm chart README, values schema, and values YAML are now fetched through a backend endpoint that adds GitHub credentials, instead of direct unauthenticated browser fetches.

helm/backstage/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: backstage
33
description: Backstage app provided by Giant Swarm
44
home: https://github.com/giantswarm/backstage
5-
version: 0.119.0
6-
appVersion: '0.119.0'
5+
version: 0.120.0
6+
appVersion: '0.120.0'
77
annotations:
88
io.giantswarm.application.team: honeybadger
99
io.giantswarm.application.logo: https://s.giantswarm.io/app-icons/backstage/1/logo.svg

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "root",
3-
"version": "0.119.0",
3+
"version": "0.120.0",
44
"private": true,
55
"engines": {
66
"node": "22 || 24"

packages/app/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# app
22

3+
## 0.35.3
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [fca7f1a]
8+
- @giantswarm/backstage-plugin-gs@0.64.0
9+
310
## 0.35.2
411

512
### Patch Changes

packages/app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "app",
3-
"version": "0.35.2",
3+
"version": "0.35.3",
44
"private": true,
55
"bundled": true,
66
"backstage": {

packages/backend/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# backend
22

3+
## 0.18.3
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [6e25580]
8+
- Updated dependencies [fca7f1a]
9+
- Updated dependencies [7fbbfff]
10+
- @giantswarm/backstage-plugin-gs-backend@0.8.0
11+
- @giantswarm/backstage-plugin-auth-backend-module-gs@0.13.1
12+
313
## 0.18.2
414

515
### Patch Changes

0 commit comments

Comments
 (0)