Skip to content

Commit 886c796

Browse files
authoredMar 11, 2025
fix(docs): remove beta indicator from stable commands (#7100)
These have all been stable for a while. We just forgot to remove these beta indicators.
1 parent 07fef60 commit 886c796

File tree

4 files changed

+11
-9
lines changed

4 files changed

+11
-9
lines changed
 

‎docs/commands/logs.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ netlify logs
2323

2424
| Subcommand | description |
2525
|:--------------------------- |:-----|
26-
| [`logs:deploy`](/commands/logs#logsdeploy) | (Beta) Stream the logs of deploys currently being built to the console |
27-
| [`logs:function`](/commands/logs#logsfunction) | (Beta) Stream netlify function logs to the console |
26+
| [`logs:deploy`](/commands/logs#logsdeploy) | Stream the logs of deploys currently being built to the console |
27+
| [`logs:function`](/commands/logs#logsfunction) | Stream netlify function logs to the console |
2828

2929

3030
**Examples**
@@ -38,7 +38,7 @@ netlify logs:function my-function
3838
---
3939
## `logs:deploy`
4040

41-
(Beta) Stream the logs of deploys currently being built to the console
41+
Stream the logs of deploys currently being built to the console
4242

4343
**Usage**
4444

@@ -55,7 +55,7 @@ netlify logs:deploy
5555
---
5656
## `logs:function`
5757

58-
(Beta) Stream netlify function logs to the console
58+
Stream netlify function logs to the console
5959

6060
**Usage**
6161

‎docs/commands/serve.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
title: Netlify CLI serve command
33
sidebar:
44
label: serve
5-
description: (Beta) Build the site for production and serve locally. This does not watch the code for changes, so if you need to rebuild your site then you must exit and run `serve` again.
5+
description:
6+
Build the site for production and serve locally. This does not watch the code for changes, so if you need to rebuild
7+
your site then you must exit and run `serve` again.
68
---
79

810
# `serve`

‎docs/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ Stream logs from your site
105105

106106
| Subcommand | description |
107107
|:--------------------------- |:-----|
108-
| [`logs:deploy`](/commands/logs#logsdeploy) | (Beta) Stream the logs of deploys currently being built to the console |
109-
| [`logs:function`](/commands/logs#logsfunction) | (Beta) Stream netlify function logs to the console |
108+
| [`logs:deploy`](/commands/logs#logsdeploy) | Stream the logs of deploys currently being built to the console |
109+
| [`logs:function`](/commands/logs#logsfunction) | Stream netlify function logs to the console |
110110

111111

112112
### [open](/commands/open)

‎src/commands/logs/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export const createLogsBuildCommand = (program: BaseCommand) => {
88
program
99
.command('logs:deploy')
1010
.alias('logs:build')
11-
.description('(Beta) Stream the logs of deploys currently being built to the console')
11+
.description('Stream the logs of deploys currently being built to the console')
1212
.action(async (options: OptionValues, command: BaseCommand) => {
1313
const { logsBuild } = await import('./build.js')
1414
await logsBuild(options, command)
@@ -28,7 +28,7 @@ export const createLogsFunctionCommand = (program: BaseCommand) => {
2828
'netlify logs:function my-function',
2929
'netlify logs:function my-function -l info warn',
3030
])
31-
.description('(Beta) Stream netlify function logs to the console')
31+
.description('Stream netlify function logs to the console')
3232
.action(async (functionName: string | undefined, options: OptionValues, command: BaseCommand) => {
3333
const { logsFunction } = await import('./functions.js')
3434
await logsFunction(functionName, options, command)

0 commit comments

Comments
 (0)