[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 into
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. |
✅ This PR has been automatically closedThe security issues addressed by this pull request are no longer present in the latest project scan. All vulnerabilities this PR was created to fix have been resolved through other means (e.g., dependency updates, direct fixes, or changes in vulnerability data). Resolved Issues
What should I do?No action is required. If you believe this PR was closed in error, you can reopen it and contact Snyk support. This action was performed automatically by Snyk. |
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 primary purpose is to align with the latest Slack SDK requirements and bring axios and related HTTP tooling up to more recent, likely more secure versions.
Key Changes
- Bumps
@slack/web-apifrom^6.7.0to^6.9.1to use a newer Slack SDK release. - Updates transitive Slack dependencies, including
@slack/types(2.4.0 → 2.20.1) andis-electron(2.2.0 → 2.2.2). - Upgrades
axiosfrom 0.25.0 to 1.15.0, along with related HTTP stack dependencies such asfollow-redirects,form-data, andproxy-from-env. - Introduces several small helper libraries (
call-bind-apply-helpers,get-intrinsic,hasown, etc.) required by the newer dependency versions.
Risks & Considerations
- The
axios1.x upgrade may include breaking changes compared to 0.25.0; any code relying on axios response/ error shapes, default configuration, or adapter behaviour should be regression-tested. - New or updated transitive dependencies (e.g.
form-data4.x, proxy support viaproxy-from-env) can alter HTTP request behaviour, especially in proxied environments. - While
@slack/web-apiis a minor version bump, Slack SDK changes could introduce subtle behavioural differences (e.g. typing changes, default options), so existing Slack integrations should be smoke-tested. - Lockfile changes are extensive; reviewers should ensure they are generated with the expected Node/npm versions to avoid environment drift.
File-level change summary
| File | Change summary |
|---|---|
| package.json | Updates the direct dependency on @slack/web-api from ^6.7.0 to ^6.9.1. |
| package-lock.json | Regenerates the lockfile to reflect the new @slack/web-api version, upgrading @slack/types, axios, and numerous related transitive dependencies. |
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