Skip to content

Commit 5dc49ff

Browse files
Merge branch 'main' into guoda-description-list
2 parents 70f4565 + 47a432a commit 5dc49ff

97 files changed

Lines changed: 3786 additions & 2789 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
"@cloudoperators/juno-app-greenhouse": minor
3+
"@cloudoperators/juno-app-doop": patch
4+
"@cloudoperators/juno-app-supernova": patch
5+
"@cloudoperators/juno-app-heureka": patch
6+
---
7+
8+
Optimize plugin loading with dynamic imports and improve navigation between plugins. Plugins now load on-demand instead of being bundled upfront, reducing initial bundle size by 66%. Added module caching to eliminate loading spinners on return visits. Fixed URL state pollution when switching between plugins using TanStack Router's remountDeps. Also filters plugins server-side to fetch only UI plugins.

.changeset/public-weeks-act.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@cloudoperators/juno-app-greenhouse": patch
3+
---
4+
5+
Restructure ShellLayout to apply padding only to content area rather than the entire main container. This allows NotificationsContainer (demo banner) to stick to the top without padding while eliminating unwanted whitespace below PluginNav.

.changeset/stale-queens-sneeze.md

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

.changeset/strange-rivers-sell.md

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

.changeset/tricky-moons-wear.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@cloudoperators/juno-app-greenhouse": patch
3+
---
4+
5+
Add foldGutter and foldKeymap extensions to enable collapsing/expanding YAML attributes in the viewer. Users can now click fold icons in the gutter to collapse nested structures.

.changeset/violet-towns-wear.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"@cloudoperators/juno-ui-components": minor
3+
---
4+
5+
- Added `alignRight` prop to `DataGridToolbar` for flexible alignment control, allowing users to customize layout.
6+
- Removed `search` prop, which is a BREAKING CHANGE. All elements should be passed as `children`.

.github/workflows/build-push-greenhouse-image.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ jobs:
143143
failed: ${{ steps.set-failure-output.outputs.failed }}
144144
steps:
145145
- name: Run Trivy vulnerability scanner
146-
uses: aquasecurity/trivy-action@97e0b3872f55f89b95b2f65b3dbab56962816478 # 0.34.2
146+
uses: aquasecurity/trivy-action@57a97c7e7821a5776cebc9bb87c984fa69cba8f1 # 0.35.0
147147
with:
148148
image-ref: ${{ env.REGISTRY }}/${{ github.repository_owner }}/${{ env.IMAGE_NAME }}:latest
149149
ignore-unfixed: true
@@ -153,7 +153,7 @@ jobs:
153153

154154
- name: Trivy vulnerability scanner (table output)
155155
id: table-trivy
156-
uses: aquasecurity/trivy-action@97e0b3872f55f89b95b2f65b3dbab56962816478 # 0.34.2
156+
uses: aquasecurity/trivy-action@57a97c7e7821a5776cebc9bb87c984fa69cba8f1 # 0.35.0
157157
env:
158158
TRIVY_SKIP_DB_UPDATE: true
159159
TRIVY_SKIP_JAVA_DB_UPDATE: true
@@ -167,7 +167,7 @@ jobs:
167167
skip-setup-trivy: true
168168

169169
- name: Upload Trivy scan results to GitHub Security tab
170-
uses: github/codeql-action/upload-sarif@b20883b0cd1f46c72ae0ba6d1090936928f9fa30 # v4.32.0
170+
uses: github/codeql-action/upload-sarif@89a39a4e59826350b863aa6b6252a07ad50cf83e # v4.32.4
171171
if: always()
172172
with:
173173
sarif_file: trivy-results.sarif

.github/workflows/build-push-supernova-image.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ jobs:
162162
failed: ${{ steps.set-failure-output.outputs.failed }}
163163
steps:
164164
- name: Run Trivy vulnerability scanner
165-
uses: aquasecurity/trivy-action@97e0b3872f55f89b95b2f65b3dbab56962816478 # 0.34.2
165+
uses: aquasecurity/trivy-action@57a97c7e7821a5776cebc9bb87c984fa69cba8f1 # 0.35.0
166166
with:
167167
image-ref: ${{ env.REGISTRY }}/${{ github.repository_owner }}/${{ env.IMAGE_NAME }}:${{ github.sha }}
168168
ignore-unfixed: true
@@ -172,7 +172,7 @@ jobs:
172172

173173
- name: Trivy vulnerability scanner (table output)
174174
id: table-trivy
175-
uses: aquasecurity/trivy-action@97e0b3872f55f89b95b2f65b3dbab56962816478 # 0.34.2
175+
uses: aquasecurity/trivy-action@57a97c7e7821a5776cebc9bb87c984fa69cba8f1 # 0.35.0
176176
env:
177177
TRIVY_SKIP_DB_UPDATE: true
178178
TRIVY_SKIP_JAVA_DB_UPDATE: true
@@ -186,7 +186,7 @@ jobs:
186186
skip-setup-trivy: true
187187

188188
- name: Upload Trivy scan results to GitHub Security tab
189-
uses: github/codeql-action/upload-sarif@b20883b0cd1f46c72ae0ba6d1090936928f9fa30 # v4.32.0
189+
uses: github/codeql-action/upload-sarif@89a39a4e59826350b863aa6b6252a07ad50cf83e # v4.32.4
190190
if: always()
191191
with:
192192
sarif_file: trivy-results.sarif

.github/workflows/vulnerability-check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
- name: "Run Vulnerability Check"
2626
id: dep-review
27-
uses: actions/dependency-review-action@3c4e3dcb1aa7874d2c16be7d79418e9b7efd6261 # v4.8.2
27+
uses: actions/dependency-review-action@05fe4576374b728f0c523d6a13d64c25081e0803 # v4.8.3
2828
with:
2929
repo-token: ${{ secrets.GITHUB_TOKEN }}
3030
fail-on-severity: high

apps/carbon/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# @cloudoperators/juno-app-carbon
22

3+
## 1.0.34
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [11eabd6]
8+
- @cloudoperators/juno-ui-components@6.1.3
9+
10+
## 1.0.33
11+
12+
### Patch Changes
13+
14+
- c6ab015: Upgrade @vitest/ui to 4.1.0
15+
- Updated dependencies [68ba389]
16+
- @cloudoperators/juno-ui-components@6.1.2
17+
318
## 1.0.32
419

520
### Patch Changes

0 commit comments

Comments
 (0)