[Snyk] Security upgrade @slack/web-api from 6.7.0 to 6.9.1#51
[Snyk] Security upgrade @slack/web-api from 6.7.0 to 6.9.1#51snyk-io[bot] wants to merge 1 commit intomasterfrom
Conversation
The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-AXIOS-15930944
|
This is a minor version upgrade from 6.7.0 to 6.9.1. The releases within this range primarily include new features, bug fixes, and internal improvements. Highlights:
This upgrade is considered safe with no mandatory actions required. Source: GitHub Releases
|
✅ Snyk checks have passed. No issues have been found so far.
💻 Catch issues earlier using the plugins for VS Code, JetBrains IDEs, Visual Studio, and Eclipse. |
There was a problem hiding this comment.
PR Complexity Score: 1.7 - Trivial
View Breakdown
- Lines Changed: 423
- Files Changed: 2
- Complexity Added: 0
- Raw Score: 14.46
⚠️ Sensitive Data (PII/ Secrets) Detected
| File | Types | Count | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
| Line | Type | Preview |
|---|---|---|
| 439 | Secret: Base64 High Entropy String | [Base64 High Entropy String] |
| 449 | Secret: Base64 High Entropy String | [Base64 High Entropy String] |
| 856 | Secret: Base64 High Entropy String | [Base64 High Entropy String] |
| 867 | Secret: Base64 High Entropy String | [Base64 High Entropy String] |
| 1005 | Secret: Base64 High Entropy String | [Base64 High Entropy String] |
| 1280 | Secret: Base64 High Entropy String | [Base64 High Entropy String] |
| 1341 | Secret: Base64 High Entropy String | [Base64 High Entropy String] |
| 1350 | Secret: Base64 High Entropy String | [Base64 High Entropy String] |
| 1359 | Secret: Base64 High Entropy String | [Base64 High Entropy String] |
| 1371 | Secret: Base64 High Entropy String | [Base64 High Entropy String] |
| 1550 | Secret: Base64 High Entropy String | [Base64 High Entropy String] |
| 1604 | Secret: Base64 High Entropy String | [Base64 High Entropy String] |
| 1613 | Secret: Base64 High Entropy String | [Base64 High Entropy String] |
| 1637 | Secret: Base64 High Entropy String | [Base64 High Entropy String] |
| 1694 | Secret: Base64 High Entropy String | [Base64 High Entropy String] |
| 1771 | Secret: Base64 High Entropy String | [Base64 High Entropy String] |
| 1783 | Secret: Base64 High Entropy String | [Base64 High Entropy String] |
| 1806 | Secret: Base64 High Entropy String | [Base64 High Entropy String] |
| 2018 | Secret: Base64 High Entropy String | [Base64 High Entropy String] |
| 2349 | Secret: Base64 High Entropy String | [Base64 High Entropy String] |
| 2855 | Secret: Base64 High Entropy String | [Base64 High Entropy String] |
| 4005 | Secret: Base64 High Entropy String | [Base64 High Entropy String] |
| 4010 | Secret: Base64 High Entropy String | [Base64 High Entropy String] |
| 4365 | Secret: Base64 High Entropy String | [Base64 High Entropy String] |
| 4375 | Secret: Base64 High Entropy String | [Base64 High Entropy String] |
| 4489 | Secret: Base64 High Entropy String | [Base64 High Entropy String] |
| 4691 | Secret: Base64 High Entropy String | [Base64 High Entropy String] |
| 4745 | Secret: Base64 High Entropy String | [Base64 High Entropy String] |
| 4750 | Secret: Base64 High Entropy String | [Base64 High Entropy String] |
| 4755 | Secret: Base64 High Entropy String | [Base64 High Entropy String] |
| 4763 | Secret: Base64 High Entropy String | [Base64 High Entropy String] |
| 4904 | Secret: Base64 High Entropy String | [Base64 High Entropy String] |
| 4934 | Secret: Base64 High Entropy String | [Base64 High Entropy String] |
| 4939 | Secret: Base64 High Entropy String | [Base64 High Entropy String] |
| 4956 | Secret: Base64 High Entropy String | [Base64 High Entropy String] |
| 4994 | Secret: Base64 High Entropy String | [Base64 High Entropy String] |
| 5047 | Secret: Base64 High Entropy String | [Base64 High Entropy String] |
| 5052 | Secret: Base64 High Entropy String | [Base64 High Entropy String] |
| 5065 | Secret: Base64 High Entropy String | [Base64 High Entropy String] |
| 5220 | Secret: Base64 High Entropy String | [Base64 High Entropy String] |
| 5483 | Secret: Base64 High Entropy String | [Base64 High Entropy String] |
| 5868 | Secret: Base64 High Entropy String | [Base64 High Entropy String] |
Overview
This PR upgrades the Slack Web API client dependency to a newer minor version and refreshes its transitive dependency tree. The main goal is to keep the Slack integration and underlying HTTP client (axios) up to date with current releases, including security and compatibility updates. Changes are limited to dependency version bumps in package.json and the corresponding lockfile updates in package-lock.json.
Key Changes
- Bumps
@slack/web-apifrom^6.7.0to^6.9.1to use a more recent Slack SDK. - Updates transitive Slack dependencies, including
@slack/typesfrom2.4.0to2.20.1andis-electronfrom2.2.0to2.2.2. - Upgrades
axiosfrom0.25.0to1.15.0, along with related dependencies (follow-redirects,form-data,proxy-from-env), via the Slack SDK. - Introduces several new small utility dependencies (e.g.
call-bind-apply-helpers,es-*helpers,get-intrinsic,hasown,math-intrinsics, etc.) as part of the updated dependency graph.
Risks & Considerations
- The axios upgrade from
0.25.xto1.x(even though used transitively via Slack) may alter HTTP behavior (defaults, error handling, redirect behavior), which could subtly affect Slack API calls. - The newer
@slack/web-apiand@slack/typesmay enforce updated request/response types or deprecate old fields; any tight coupling to Slack response shapes should be sanity-checked. - New and updated dependencies slightly increase the project’s dependency surface area; it may be worth scanning for known vulnerabilities or license changes, although core additions remain MIT-licensed.
File-level change summary
| File | Change summary |
|---|---|
| package-lock.json | Regenerates the lockfile to reflect upgraded @slack/web-api and its updated/transitive dependencies (including axios and various utility packages). |
| package.json | Updates the @slack/web-api dependency version from ^6.7.0 to ^6.9.1. |
Snyk has created this PR to fix 1 vulnerabilities in the npm dependencies of this project.
Snyk changed the following file(s):
package.jsonpackage-lock.jsonVulnerabilities that will be fixed with an upgrade:
SNYK-JS-AXIOS-15930944
Breaking Change Risk
Important
Note: You are seeing this because you or someone else with access to this repository has authorized Snyk to open fix PRs.
For more information:
🧐 View latest project report
📜 Customise PR templates
🛠 Adjust project settings
📚 Read about Snyk's upgrade logic
Learn how to fix vulnerabilities with free interactive lessons:
🦉 Allocation of Resources Without Limits or Throttling