forked from harness/developer-hub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebars-release-notes.js
214 lines (210 loc) · 6.09 KB
/
sidebars-release-notes.js
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
releaseNotes: [
// Release Notes Parent
{
type: 'category',
label: 'Release Notes',
link: {
type: 'doc',
id: 'index',
},
collapsed: true,
items: [
{ type: 'autogenerated', dirName: '.' },
{
type: 'link',
label: 'FirstGen SaaS',
href: '/docs/first-gen/firstgen-release-notes/harness-saa-s-release-notes',
},
{
type: 'link',
label: 'FirstGen Self-Managed Enterprise Edition',
href: '/docs/first-gen/firstgen-release-notes/harness-on-prem-release-notes',
},
],
},
/*
{
type: "category",
label: "Subscribe via RSS",
link: {
type: "link",
label: "Subscribe via RSS",
href: "pathname:///release-notes/rss.xml",
className: "sidebar-item-rss",
customProps: {
target: "_blank",
},
},
collapsed: true,
items: [
{
type: "link",
label: "All modules",
href: "pathname:///release-notes/rss.xml",
className: "sidebar-item-rss",
customProps: {
target: "_blank",
},
},
{
type: "link",
label: "Early access features",
href: "pathname:///release-notes/early-access/rss.xml",
className: "sidebar-item-rss",
customProps: {
target: "_blank",
},
},
{
type: "link",
label: "Harness Platform release notes",
href: "pathname:///release-notes/platform/rss.xml",
className: "sidebar-item-rss",
customProps: {
target: "_blank",
},
},
{
type: "link",
label: "Self-Managed Enterprise Edition release notes",
href: "pathname:///release-notes/self-managed-enterprise-edition/rss.xml",
className: "sidebar-item-rss",
customProps: {
target: "_blank",
},
},
{
type: "link",
label: "Delegate release notes",
href: "pathname:///release-notes/delegate/rss.xml",
className: "sidebar-item-rss",
customProps: {
target: "_blank",
},
},
{
type: "link",
label: "Chaos Engineering release notes",
href: "pathname:///release-notes/chaos-engineering/rss.xml",
className: "sidebar-item-rss",
customProps: {
target: "_blank",
},
},
{
type: "link",
label: "Cloud Cost Management release notes",
href: "pathname:///release-notes/cloud-cost-management/rss.xml",
className: "sidebar-item-rss",
customProps: {
target: "_blank",
},
},
{
type: "link",
label: "Code Repository release notes",
href: "pathname:///release-notes/code-repository/rss.xml",
className: "sidebar-item-rss",
customProps: {
target: "_blank",
},
},
{
type: "link",
label: "Continuous Delivery & GitOps release notes",
href: "pathname:///release-notes/continuous-delivery/rss.xml",
className: "sidebar-item-rss",
customProps: {
target: "_blank",
},
},
{
type: "link",
label: "Continuous Integration release notes",
href: "pathname:///release-notes/continuous-integration/rss.xml",
className: "sidebar-item-rss",
customProps: {
target: "_blank",
},
},
{
type: "link",
label: "Continuous Error Tracking release notes",
href: "pathname:///release-notes/continuous-error-tracking/rss.xml",
className: "sidebar-item-rss",
customProps: {
target: "_blank",
},
},
{
type: "link",
label: "Feature Flags release notes",
href: "pathname:///release-notes/feature-flags/rss.xml",
className: "sidebar-item-rss",
customProps: {
target: "_blank",
},
},
{
type: "link",
label: "Internal Developer Portal release notes",
href: "pathname:///release-notes/internal-developer-portal/rss.xml",
className: "sidebar-item-rss",
customProps: {
target: "_blank",
},
},
{
type: "link",
label: "Software Engineering Insights release notes",
href: "pathname:///release-notes/software-engineering-insights/rss.xml",
className: "sidebar-item-rss",
customProps: {
target: "_blank",
},
},
{
type: "link",
label: "Security Testing Orchestration release notes",
href: "pathname:///release-notes/security-testing-orchestration/rss.xml",
className: "sidebar-item-rss",
customProps: {
target: "_blank",
},
},
{
type: "link",
label: "Service Reliability Management release notes",
href: "pathname:///release-notes/service-reliability-management/rss.xml",
className: "sidebar-item-rss",
customProps: {
target: "_blank",
},
},
{
type: "link",
label: "Software Supply Chain Assurance release notes",
href: "pathname:///release-notes/software-supply-chain-assurance/rss.xml",
className: "sidebar-item-rss",
customProps: {
target: "_blank",
},
},
]
}, */
// {
// type: "link",
// label: "Subscribe via RSS",
// href: "pathname:///release-notes/rss.xml",
// className: "sidebar-item-rss",
// customProps: {
// target: "_blank",
// },
// },
//Additional Items in this parent can go here.
],
};
module.exports = sidebars;