Skip to content

Commit 8a89f0f

Browse files
chore: release slack-cli v4.6.0
1 parent 6db91b1 commit 8a89f0f

5 files changed

Lines changed: 67 additions & 7 deletions

File tree

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -99,13 +99,13 @@ 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_4.5.0_macOS_arm64.tar.gz)
102+
🍎 ⚡️ [**Download for macOS Apple Silicon (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_4.6.0_macOS_arm64.tar.gz)
103103

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

106-
🐧 💾 [**Download for Linux x86_64 (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_4.5.0_linux_amd64.tar.gz)
106+
🐧 💾 [**Download for Linux x86_64 (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_4.6.0_linux_amd64.tar.gz)
107107

108-
🐧 💪 [**Download for Linux ARM64 (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_4.5.0_linux_arm64.tar.gz)
108+
🐧 💪 [**Download for Linux ARM64 (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_4.6.0_linux_arm64.tar.gz)
109109

110110
**3\. Add the** `slack` **CLI to your path.**
111111

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

124124
```sh
125125
$ slack version
126-
Using slack v4.5.0
126+
Using slack v4.6.0
127127
```
128128

129129
</TabItem>

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

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

103103
**2\. Download the** `slack` **CLI installer for your environment.**
104104

105-
<ts-icon class="ts_icon_windows"></ts-icon> &nbsp; <a href="https://downloads.slack-edge.com/slack-cli/slack_cli_4.5.0_windows_64-bit.zip"><strong>Windows (.zip)</strong></a>
105+
<ts-icon class="ts_icon_windows"></ts-icon> &nbsp; <a href="https://downloads.slack-edge.com/slack-cli/slack_cli_4.6.0_windows_64-bit.zip"><strong>Windows (.zip)</strong></a>
106106

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

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

119119
```pwsh
120120
$ slack version
121-
Using slack v4.5.0
121+
Using slack v4.6.0
122122
```
123123

124124
</TabItem>

docs/reference/commands/slack_manifest.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ $ slack manifest validate
5252
## See also
5353

5454
* [slack](slack) - Slack command-line tool
55+
* [slack manifest diff](slack_manifest_diff) - Show differences between the project manifest and app settings
5556
* [slack manifest info](slack_manifest_info) - Print the app manifest of a project or app
5657
* [slack manifest validate](slack_manifest_validate) - Validate the app manifest generated by a project
5758

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# `slack manifest diff`
2+
3+
Show differences between the project manifest and app settings
4+
5+
## Description
6+
7+
Compare the project manifest with app settings and print any differences.
8+
9+
```
10+
slack manifest diff [flags]
11+
```
12+
13+
## Flags
14+
15+
```
16+
-h, --help help for diff
17+
```
18+
19+
## Global flags
20+
21+
```
22+
--accessible use accessible prompts for screen readers
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+
# Show differences between project manifest and app settings
38+
$ slack manifest diff
39+
40+
# Show manifest differences without prompts
41+
$ slack manifest diff --app A0123456789 --token xoxp-...
42+
```
43+
44+
## See also
45+
46+
* [slack manifest](slack_manifest) - Print the app manifest of a project or app
47+

docs/reference/errors.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,12 @@ Otherwise start your app for local development with: `slack run`
151151

152152
---
153153

154+
### app_manifest_compare_error {#app_manifest_compare_error}
155+
156+
**Message**: Couldn't compare your app manifests
157+
158+
---
159+
154160
### app_manifest_create_error {#app_manifest_create_error}
155161

156162
**Message**: Couldn't create your app manifest
@@ -564,6 +570,12 @@ Approval is pending review
564570

565571
---
566572

573+
### experiment_required {#experiment_required}
574+
575+
**Message**: This command requires an experiment to be enabled
576+
577+
---
578+
567579
### fail_to_get_teams_for_restricted_user {#fail_to_get_teams_for_restricted_user}
568580

569581
**Message**: Failed to get teams for restricted user

0 commit comments

Comments
 (0)