Skip to content

Commit

Permalink
Merge pull request #8874 from harness/FME-release-notes
Browse files Browse the repository at this point in the history
FME Release Notes
  • Loading branch information
wei-harness authored Mar 7, 2025
2 parents 1ff2e0b + 9efaae4 commit 07bea08
Show file tree
Hide file tree
Showing 8 changed files with 832 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,11 @@ static/ @rohanmaharjan100 @wei-harness
# FF FAQs
/docs/faqs/harness-feature-flag-faqs/ @HarnessTheChaos @jenniferopal

#FME Docs
/src/components/Roadmap/data/fmeData.ts @dtk-DaveKarow @kleinjoshuaa @deej-split
/release-notes/feature-management-experimentation.md @dtk-DaveKarow @kleinjoshuaa @deej-split @HarnessTheChaos
/release-notes/static/fme/ @dtk-DaveKarow @kleinjoshuaa @deej-split @HarnessTheChaos

# SEI Docs
/docs/software-engineering-insights/ @codewdhruv @batraprashant
/release-notes/software-engineering-insights.md @codewdhruv @batraprashant
Expand Down Expand Up @@ -195,11 +200,6 @@ static/ @rohanmaharjan100 @wei-harness
/docs/artifact-registry/ @shankaranandh @shivagowda @richardblack-Harness @poojaSinghal @arvind-choudhary-h
/src/components/Docs/data/artifactRegistryData.ts @shankaranandh @shivagowda @richardblack-Harness @poojaSinghal @arvind-choudhary-h

#FME Docs
/src/components/Roadmap/data/fmeData.ts @dtk-DaveKarow @kleinjoshuaa @deej-split
/release-notes/feature-management-experimentation.md @dtk-DaveKarow @kleinjoshuaa @deej-split
/release-notes/static/fme/ @dtk-DaveKarow @kleinjoshuaa @deej-split

# Open Source Docs
/docs/open-source/ @dewan-ahmed @rustd @SushrutHarness
/src/components/Docs/data/openSourceData.tsx @dewan-ahmed @rustd @SushrutHarness
Expand Down
799 changes: 799 additions & 0 deletions release-notes/feature-management-experimentation.md

Large diffs are not rendered by default.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added release-notes/static/fme-semver-targeting.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions src/components/ReleaseNotes/data/releaseNotesData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,13 @@ import { MODULES } from "@site/src/constants";
"",
link: "/release-notes/feature-flags",
},
{
title: "Feature Management & Experimentation release notes",
module: MODULES.fme,
description:
"",
link: "/release-notes/feature-management-experimentation",
},
{
title: "Infrastructure as Code Management release notes",
module: MODULES.iacm,
Expand Down
6 changes: 6 additions & 0 deletions src/components/Roadmap/HorizonCard/styles.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,12 @@
.ff:focus {
border-color: var(--mod-ff-200);
}
.fme:hover {
border-color: var(--mod-fme-200);
}
.fme:focus {
border-color: var(--mod-fme-200);
}
.ccm:hover {
border-color: var(--mod-ccm-200);
}
Expand Down
3 changes: 3 additions & 0 deletions src/components/TutorialCard/TutorialCard.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,9 @@
.ff:hover {
border-color: var(--mod-ff-200) !important;
}
.fme:hover {
border-color: var(--mod-fme-200) !important;
}
.ccm:hover {
border-color: var(--mod-ccm-200) !important;
}
Expand Down
12 changes: 12 additions & 0 deletions src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,11 @@
--mod-srm-200: #8b73ce;
--mod-srm-100: #f6f1ff;

--mod-fme-300: #6938c0;
/* Module Colors/FME/200 */
--mod-fme-200: #8b73ce;
--mod-fme-100: #f6f1ff;

/* Module Colors/Chaos Engineering*/
--mod-ce-300: #cd0056;
--mod-ce-200: #ff006a;
Expand Down Expand Up @@ -603,6 +608,10 @@ details summary::before {
color: var(--mod-ff-200);
}

.color-fme {
color: var(--mod-fme-200);
}

.color-ccm {
color: var(--mod-ccm-200);
}
Expand Down Expand Up @@ -1523,6 +1532,9 @@ html[data-theme='dark'] .sidebar-opensource > a::before {
.feature-flags:hover {
border-color: var(--mod-ff-200) !important;
}
.feature-management-experimentation:hover {
border-color: var(--mod-fme-200) !important;
}
.cloud-cost-management:hover {
border-color: var(--mod-ccm-200) !important;
}
Expand Down

0 comments on commit 07bea08

Please sign in to comment.