Skip to content

Commit ac6f91a

Browse files
authored
chore: release slack-cli v3.14.0 (#358)
1 parent 36b3af3 commit ac6f91a

9 files changed

Lines changed: 79 additions & 8 deletions

docs/guides/installing-the-slack-cli-for-mac-and-linux.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -99,11 +99,11 @@ Manual installation allows you to customize certain paths used when installing t
9999

100100
**2\. Download the** `slack` **CLI installer for your environment.**
101101

102-
🍎 ⚡️ [**Download for macOS Apple Silicon (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_3.13.0_macOS_arm64.tar.gz)
102+
🍎 ⚡️ [**Download for macOS Apple Silicon (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_3.14.0_macOS_arm64.tar.gz)
103103

104-
🍏 🪨 [**Download for macOS Intel (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_3.13.0_macOS_amd64.tar.gz)
104+
🍏 🪨 [**Download for macOS Intel (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_3.14.0_macOS_amd64.tar.gz)
105105

106-
🐧 💾 [**Download for Linux (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_3.13.0_linux_64-bit.tar.gz)
106+
🐧 💾 [**Download for Linux (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_3.14.0_linux_64-bit.tar.gz)
107107

108108
**3\. Add the** `slack` **CLI to your path.**
109109

@@ -121,7 +121,7 @@ We recommend using an alias if another `slack` binary exists. To do this, change
121121

122122
```sh
123123
$ slack version
124-
Using slack v3.13.0
124+
Using slack v3.14.0
125125
```
126126

127127
</TabItem>

docs/guides/installing-the-slack-cli-for-windows.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Manual installation allows you to customize certain paths used when installing t
8888

8989
**2\. Download the** `slack` **CLI installer for your environment.**
9090

91-
<ts-icon class="ts_icon_windows"></ts-icon> &nbsp; <a href="https://downloads.slack-edge.com/slack-cli/slack_cli_3.13.0_windows_64-bit.zip"><strong>Windows (.zip)</strong></a>
91+
<ts-icon class="ts_icon_windows"></ts-icon> &nbsp; <a href="https://downloads.slack-edge.com/slack-cli/slack_cli_3.14.0_windows_64-bit.zip"><strong>Windows (.zip)</strong></a>
9292

9393
**3\. Add the** `slack` **CLI to your path.**
9494

@@ -104,7 +104,7 @@ We recommend using an alias if another `slack` binary exists. To do this, change
104104

105105
```pwsh
106106
$ slack version
107-
Using slack v3.13.0
107+
Using slack v3.14.0
108108
```
109109

110110
</TabItem>

docs/reference/commands/slack.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ $ slack create # Create a new Slack app
3535
$ slack init # Initialize an existing Slack app
3636
$ slack run # Start a local development server
3737
$ slack deploy # Deploy to the Slack Platform
38+
$ slack docs # Open Slack developer docs
3839
```
3940

4041
## See also
@@ -47,6 +48,7 @@ $ slack deploy # Deploy to the Slack Platform
4748
* [slack datastore](slack_datastore) - Interact with an app's datastore
4849
* [slack delete](slack_delete) - Delete the app
4950
* [slack deploy](slack_deploy) - Deploy the app to the Slack Platform
51+
* [slack docs](slack_docs) - Open Slack developer docs
5052
* [slack doctor](slack_doctor) - Check and report on system and app information
5153
* [slack env](slack_env) - Add, remove, or list environment variables
5254
* [slack external-auth](slack_external-auth) - Adjust settings of external authentication providers

docs/reference/commands/slack_create.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ slack create [name | agent <name>] [flags]
2020
-h, --help help for create
2121
--list list available app templates
2222
-n, --name string name for your app (overrides the name argument)
23+
--subdir string subdirectory in the template to use as project
2324
-t, --template string template URL for your app
2425
```
2526

@@ -51,6 +52,9 @@ $ slack create my-project -t slack-samples/deno-hello-world
5152
5253
# Create a project named 'my-project'
5354
$ slack create --name my-project
55+
56+
# Create from a subdirectory of a template
57+
$ slack create my-project -t org/monorepo --subdir apps/my-app
5458
```
5559

5660
## See also
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# `slack docs`
2+
3+
Open Slack developer docs
4+
5+
## Description
6+
7+
Open the Slack developer docs in your browser, with optional search functionality
8+
9+
```
10+
slack docs [flags]
11+
```
12+
13+
## Flags
14+
15+
```
16+
-h, --help help for docs
17+
--search open Slack docs search page or search with query
18+
```
19+
20+
## Global flags
21+
22+
```
23+
-a, --app string use a specific app ID or environment
24+
--config-dir string use a custom path for system config directory
25+
-e, --experiment strings use the experiment(s) in the command
26+
-f, --force ignore warnings and continue executing command
27+
--no-color remove styles and formatting from outputs
28+
-s, --skip-update skip checking for latest version of CLI
29+
-w, --team string select workspace or organization by team name or ID
30+
--token string set the access token associated with a team
31+
-v, --verbose print debug logging and additional info
32+
```
33+
34+
## Examples
35+
36+
```
37+
$ slack docs # Open Slack developer docs homepage
38+
39+
# Search Slack developer docs for Block Kit
40+
$ slack docs --search "Block Kit"
41+
$ slack docs --search # Open Slack docs search page
42+
```
43+
44+
## See also
45+
46+
* [slack](slack) - Slack command-line tool
47+

docs/reference/commands/slack_init.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Adds the Slack CLI hooks dependency to your project:
2020
Installs your project dependencies when supported:
2121
- Deno: Supported
2222
- Node.js: Supported
23-
- Python: Unsupported
23+
- Python: Supported
2424

2525
Adds an existing app to your project (optional):
2626
- Prompts to add an existing app from app settings

docs/reference/commands/slack_project_create.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ slack project create [name | agent <name>] [flags]
2020
-h, --help help for create
2121
--list list available app templates
2222
-n, --name string name for your app (overrides the name argument)
23+
--subdir string subdirectory in the template to use as project
2324
-t, --template string template URL for your app
2425
```
2526

@@ -51,6 +52,9 @@ $ slack create my-project -t slack-samples/deno-hello-world
5152
5253
# Create a project named 'my-project'
5354
$ slack create --name my-project
55+
56+
# Create from a subdirectory of a template
57+
$ slack create my-project -t org/monorepo --subdir apps/my-app
5458
```
5559

5660
## See also

docs/reference/commands/slack_project_init.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Adds the Slack CLI hooks dependency to your project:
2020
Installs your project dependencies when supported:
2121
- Deno: Supported
2222
- Node.js: Supported
23-
- Python: Unsupported
23+
- Python: Supported
2424

2525
Adds an existing app to your project (optional):
2626
- Prompts to add an existing app from app settings

docs/reference/errors.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -498,6 +498,14 @@ Approval is pending review
498498

499499
---
500500

501+
### docs_search_flag_required {#docs_search_flag_required}
502+
503+
**Message**: Invalid docs command. Did you mean to search?
504+
505+
**Remediation**: Use --search flag: `slack docs --search "<query>"`
506+
507+
---
508+
501509
### documentation_generation_failed {#documentation_generation_failed}
502510

503511
**Message**: Failed to generate documentation
@@ -1354,6 +1362,12 @@ Move the .slack/slack.json file to .slack/hooks.json and proceed again.
13541362

13551363
---
13561364

1365+
### subdir_not_found {#subdir_not_found}
1366+
1367+
**Message**: The specified subdirectory was not found in the template repository
1368+
1369+
---
1370+
13571371
### survey_config_not_found {#survey_config_not_found}
13581372

13591373
**Message**: Survey config not found

0 commit comments

Comments
 (0)