Skip to content

Commit 252fd5d

Browse files
puthrayaharnessHarness
authored andcommitted
Add CDS_ADD_GIT_INFO_IN_POST_DEPLOYMENT_ROLLBACK to GA list (#100028)
1 parent e3c7b57 commit 252fd5d

File tree

2 files changed

+16
-13
lines changed

2 files changed

+16
-13
lines changed

release-notes/static/ff-ga-feed.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -413,12 +413,6 @@
413413
"gaStartDate": "2025-09-18",
414414
"module": "Continuous Delivery"
415415
},
416-
{
417-
"flagKey": "CDS_DETECT_ORPHAN_INSTANCES",
418-
"description": "Add logic to detect orphaned instance records when deleting a service, and allow service deletion.",
419-
"gaStartDate": "2025-09-18",
420-
"module": "Continuous Delivery"
421-
},
422416
{
423417
"flagKey": "CDS_INSTANCE_CLEANUP_ON_TASK_INFO_DELETE",
424418
"description": "Delete instance records in all cases when we are deleting the instance sync perpetual tasks related records.",
@@ -441,13 +435,13 @@
441435
"flagKey": "CDS_SHOW_OVERRIDES_V2_YAML_IN_MENU",
442436
"description": "Adds option in Override menu to view override yaml without expanding the specific override.",
443437
"gaStartDate": "2025-09-22",
444-
"modutle": "Continuous Delivery"
438+
"module": "Continuous Delivery"
445439
},
446-
{
440+
{
447441
"flagKey": "CDS_MANIFEST_HASH_WITH_DECLARATIVE_ROLLBACK",
448442
"description": "Ensures pod rollout on ConfigMap/Secret changes when Declarative Rollback is enabled.",
449443
"gaStartDate": "2025-09-22",
450-
"modutle": "Continuous Delivery"
444+
"module": "Continuous Delivery"
451445
},
452446
{
453447
"flagKey": "CDS_DELEGATE_VIRTUAL_SERVICE_SUPPORT",
@@ -465,13 +459,13 @@
465459
"flagKey": "CDS_APPROVAL_AND_STAGE_NOTIFICATIONS_WITH_CD_METADATA",
466460
"description": "Approval notifications can now include details about the service, environment, and infrastructure used in the CD stages.",
467461
"gaStartDate": "2025-09-22",
468-
"modutle": "Continuous Delivery"
462+
"module": "Continuous Delivery"
469463
},
470464
{
471465
"flagKey": "CDS_USE_SWEEPING_OUTPUT_SECRET_FUNCTOR_FOR_IMAGE_PULL_SECRET",
472466
"description": "Ensures sensitive information is kept safe when pulling container images.",
473467
"gaStartDate": "2025-09-22",
474-
"modutle": "Continuous Delivery"
468+
"module": "Continuous Delivery"
475469
},
476470
{
477471
"flagKey": "CDS_GITOPS_OPERATOR",
@@ -483,6 +477,12 @@
483477
"flagKey": "CDS_DISABLE_FABRIC8_NG",
484478
"description": "Improve handling of istio traffic routing resources for Kuberentes canary deployments",
485479
"gaStartDate": "2025-09-22",
486-
"modutle": "Continuous Delivery"
480+
"module": "Continuous Delivery"
481+
},
482+
{
483+
"flagKey": "CDS_ADD_GIT_INFO_IN_POST_DEPLOYMENT_ROLLBACK",
484+
"description": "Fixes rollback failures by ensuring correct branch reference is used when retrieving YAML files during post-deployment rollbacks.",
485+
"gaStartDate": "2025-09-23",
486+
"module": "Continuous Delivery"
487487
}
488488
]

src/components/FeatureFlagGA/FeatureFlagsGAListPage.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ import styles from './ga-list.module.css';
55
import releaseNotesStyles from '@site/src/components/ReleaseNotes/styles.module.scss';
66

77
function FeatureFlagsGATable({ flags }) {
8+
// Sort flags by gaStartDate in descending order (newest first)
9+
const sortedFlags = [...flags].sort((a, b) => new Date(b.gaStartDate) - new Date(a.gaStartDate));
10+
811
return (
912
<div style={{overflowX: 'auto', marginTop: '1.5rem', marginBottom: '2rem'}}>
1013
<table style={{width: '100%', borderCollapse: 'collapse', background: 'white', boxShadow: '0 1.5px 3px 0 rgb(0 0 0 / 8%)'}}>
@@ -17,7 +20,7 @@ function FeatureFlagsGATable({ flags }) {
1720
</tr>
1821
</thead>
1922
<tbody>
20-
{flags.map((flag) => (
23+
{sortedFlags.map((flag) => (
2124
<tr key={flag.flagKey}>
2225
<td><b>{flag.flagKey}</b></td>
2326
<td>{flag.description}</td>

0 commit comments

Comments
 (0)