-
Notifications
You must be signed in to change notification settings - Fork 217
Expand file tree
/
Copy pathsidebars-release-notes.ts
More file actions
66 lines (65 loc) · 1.55 KB
/
sidebars-release-notes.ts
File metadata and controls
66 lines (65 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
const sidebars: SidebarsConfig = {
releaseNotes: [
// Release Notes Parent
{
type: 'category',
label: 'Release Notes',
link: {
type: 'doc',
id: 'index',
},
collapsed: true,
items: [
"all-modules",
"platform",
"delegate",
{
type: 'doc',
id: 'delegate-v2',
className: 'sidebar-item-new',
},
"code-repository",
"harness-solutions-factory",
"self-managed-enterprise-edition",
{
type: "html",
value: "AI for DevOps & Automation",
className: "horizontal-bar",
},
"continuous-delivery",
"continuous-integration",
"internal-developer-portal",
"infrastructure-as-code-management",
"database-devops",
"artifact-registry",
{
type: "html",
value: "AI for Testing & Resilience",
className: "horizontal-bar",
},
"feature-management-experimentation",
"feature-flags",
"chaos-engineering",
"ai-test-automation",
"ai-sre",
{
type: "html",
value: "AI for Security & Compliance",
className: "horizontal-bar",
},
"security-testing-orchestration",
"software-supply-chain-assurance",
"sast-and-sca",
{
type: "html",
value: "AI for Cost & Optimization",
className: "horizontal-bar",
},
"cloud-cost-management",
"software-engineering-insights"
],
},
],
};
export default sidebars;