Merge release/v2.9.48 into master

This commit is contained in:
Inaki Fernandez
2026-06-23 13:55:32 +02:00
3 changed files with 22 additions and 9 deletions

View File

@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [[2.9.48]](https://github.com/nubenetes/awesome-kubernetes/releases/tag/v2.9.48) - 2026-06-23
### Fixed
- **Trending Now cards: impact badge no longer overlaps the title**: On the V2 home page "🔥 Trending Now — Cloud Native Intelligence" lane, the `CRITICAL`/`HIGH` impact badge (and the optional `🆕 NEW` pill) was `position: absolute` in the top-right corner, so a long celeste category/title flowing in normal document position could slide right underneath it and become unreadable. The badge is now an in-flow, right-aligned pill (`width: fit-content; margin-left: auto`) on its own line at the top of the card, with the `NEW` pill laid out as a flex sibling (`gap`-spaced) — so the red impact text, the celeste title, and the green `NEW` pill can never overlap, on any card width or title length. Cards with short titles stay just as tight as before. `docs/static/v2_elite.css` only; cache-bust auto-versions from the release tag.
## [[2.9.38]](https://github.com/nubenetes/awesome-kubernetes/releases/tag/v2.9.38) - 2026-06-20
### Added

View File

@@ -142,7 +142,7 @@ Additionally, as of May 2026, Nubenetes has reached the **Platinum Operational T
| :--- | :--- |
| **Total Technical Resources (Links)** | **18647+** |
| **Specialized MD Pages** | **162** |
| **Total Commits** | **6447+** |
| **Total Commits** | **6453+** |
| **Primary AI Engine** | **Google Gemini (Agentic)** |
<!-- HEART_STATS_END -->
@@ -180,7 +180,7 @@ The growth of Nubenetes reflects the acceleration of the Cloud Native ecosystem.
| 6 | 2023 | 30 | 123 | Maintenance & Refinement |
| 7 | 2024 | 53 | 218 | Curation Strategy Pivot |
| 8 | 2025 | 5 | 20 | Stability & Research Phase |
| 9 | 2026 | 2888 | 11,927 | **Agentic AI Surge** (May 2026 Inception) |
| 9 | 2026 | 2894 | 11,952 | **Agentic AI Surge** (May 2026 Inception) |
<!-- ANNUAL_GROWTH_END -->
<!-- ANNUAL_CHART_START -->
@@ -196,8 +196,8 @@ xychart-beta
title "Nubenetes Annual Growth Metrics (20182026)"
x-axis ["2018", "2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026"]
y-axis "Volume (Commits / Estimated New Refs)" 0 --> 12000
bar [1445, 586, 8449, 2193, 1660, 123, 218, 20, 11927]
bar [350, 142, 2046, 531, 402, 30, 53, 5, 2888]
bar [1445, 586, 8449, 2193, 1660, 123, 218, 20, 11952]
bar [350, 142, 2046, 531, 402, 30, 53, 5, 2894]
```
<!-- ANNUAL_CHART_END -->
@@ -207,7 +207,7 @@ xychart-beta
| :--- | :---: | :---: | :--- |
| 2026-04 | 25 | 103 | Active Curation |
| 2026-05 | 2101 | 8,677 | **Agentic Inception (Gemini Era)** |
| 2026-06 | 762 | 3,147 | Active Curation |
| 2026-06 | 768 | 3,171 | Active Curation |
<!-- MONTHLY_SURGE_END -->
### 2.4. Content Distribution and Semantic Clustering

View File

@@ -1252,9 +1252,18 @@ input[type="text"] {
}
.trending-card__impact {
position: absolute;
top: 12px;
right: 12px;
/* In normal flow as a right-aligned pill on its own line, so a long celeste
category/title can never slide underneath it. `width: fit-content` keeps the
colored pill wrapped tightly around "CRITICAL"/"HIGH" + the optional NEW
pill; `margin-left: auto` pins it to the top-right corner. */
width: fit-content;
max-width: 100%;
margin-left: auto;
margin-bottom: 8px;
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 6px;
font-size: 0.75em;
font-weight: 700;
padding: 2px 8px;
@@ -1277,7 +1286,6 @@ input[type="text"] {
}
.trending-card__new {
margin-left: 6px;
padding: 1px 6px;
border-radius: 6px;
font-size: 0.85em;