Skip to content

Commit 42a343f

Browse files
committed
move feature-stages to releases
1 parent 7bb2ce9 commit 42a343f

File tree

13 files changed

+13
-13
lines changed

13 files changed

+13
-13
lines changed

docs/admin/monitoring/notifications/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ troubleshoot:
278278
`CODER_VERBOSE=true` or `--verbose` to output debug logs.
279279
1. If you are on version 2.15.x, notifications must be enabled using the
280280
`notifications`
281-
[experiment](../../../about/feature-stages.md#early-access-features).
281+
[experiment](../../../install/releases/feature-stages.md#early-access-features).
282282

283283
Notifications are enabled by default in Coder v2.16.0 and later.
284284

docs/changelogs/v0.26.0.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
> previously necessary to activate this additional feature.
1717
1818
- Our scale test CLI is
19-
[experimental](https://coder.com/docs/about/feature-stages.md#early-access-features)
19+
[experimental](https://coder.com/docs/install/releases/feature-stages#early-access-features)
2020
to allow for rapid iteration. You can still interact with it via
2121
`coder exp scaletest` (#8339)
2222

docs/changelogs/v2.10.0.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## Changelog
22

33
> [!NOTE]
4-
> This is a mainline Coder release. We advise enterprise customers without a staging environment to install our [latest stable release](https://github.com/coder/coder/releases/latest) while we refine this version. Learn more about our [Release Schedule](../install/releases.md).
4+
> This is a mainline Coder release. We advise enterprise customers without a staging environment to install our [latest stable release](https://github.com/coder/coder/releases/latest) while we refine this version. Learn more about our [Release Schedule](../install/releases/index.md).
55
66
### BREAKING CHANGES
77

docs/changelogs/v2.9.0.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161

6262
### Experimental features
6363

64-
The following features are hidden or disabled by default as we don't guarantee stability. Learn more about experiments in [our documentation](https://coder.com/docs/about/feature-stages.md#early-access-features).
64+
The following features are hidden or disabled by default as we don't guarantee stability. Learn more about experiments in [our documentation](https://coder.com/docs/install/releases/feature-stages#early-access-features).
6565

6666
- The `coder support` command generates a ZIP with deployment information, agent logs, and server config values for troubleshooting purposes. We will publish documentation on how it works (and un-hide the feature) in a future release (#12328) (@johnstcn)
6767
- Port sharing: Allow users to share ports running in their workspace with other Coder users (#11939) (#12119) (#12383) (@deansheather) (@f0ssel)

docs/install/cli.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
A single CLI (`coder`) is used for both the Coder server and the client.
44

55
We support two release channels: mainline and stable - read the
6-
[Releases](./releases.md) page to learn more about which best suits your team.
6+
[Releases](./releases/index.md) page to learn more about which best suits your team.
77

88
## Download the latest release from GitHub
99

docs/install/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
A single CLI (`coder`) is used for both the Coder server and the client.
44

55
We support two release channels: mainline and stable - read the
6-
[Releases](./releases.md) page to learn more about which best suits your team.
6+
[Releases](./releases/index.md) page to learn more about which best suits your team.
77

88
There are several ways to install Coder. Follow the steps on this page for a
99
minimal installation of Coder, or for a step-by-step guide on how to install and

docs/install/kubernetes.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ details on the values that are available, or you can view the
123123
file directly.
124124

125125
We support two release channels: mainline and stable - read the
126-
[Releases](./releases.md) page to learn more about which best suits your team.
126+
[Releases](./releases/index.md) page to learn more about which best suits your team.
127127

128128
- **Mainline** Coder release:
129129

docs/install/rancher.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ kubectl create secret generic coder-db-url -n coder \
136136
- **Mainline**: `2.20.x`
137137
- **Stable**: `2.19.x`
138138

139-
Learn more about release channels in the [Releases documentation](./releases.md).
139+
Learn more about release channels in the [Releases documentation](./releases/index.md).
140140

141141
1. Select **Next** when your configuration is complete.
142142

docs/install/releases.md renamed to docs/install/releases/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ only for security issues or CVEs.
3535
- In-product security vulnerabilities and CVEs are supported
3636

3737
For more information on feature rollout, see our
38-
[feature stages documentation](../about/feature-stages.md).
38+
[feature stages documentation](../releases/feature-stages.md).
3939

4040
## Installing stable
4141

docs/manifest.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -105,13 +105,13 @@
105105
{
106106
"title": "Releases",
107107
"description": "Learn about the Coder release channels and schedule",
108-
"path": "./install/releases.md",
108+
"path": "./install/releases/index.md",
109109
"icon_path": "./images/icons/star.svg"
110110
},
111111
{
112112
"title": "Feature stages",
113113
"description": "Information about pre-GA stages.",
114-
"path": "./about/feature-stages.md"
114+
"path": "./install/releases/feature-stages.md"
115115
}
116116
]
117117
},

scripts/release/docs_update_experiments.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ parse_experiments() {
9494
}
9595

9696
workdir=build/docs/experiments
97-
dest=docs/about/feature-stages.md
97+
dest=docs/install/releases/feature-stages.md
9898

9999
log "Updating available experimental features in ${dest}"
100100

site/src/components/FeatureStageBadge/FeatureStageBadge.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export const FeatureStageBadge: FC<FeatureStageBadgeProps> = ({
6161
</p>
6262

6363
<Link
64-
href={docs("/install/feature-stages")}
64+
href={docs("/install/releases/feature-stages")}
6565
target="_blank"
6666
rel="noreferrer"
6767
css={styles.tooltipLink}

0 commit comments

Comments
 (0)