Skip to content

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Feb 10, 2026

Bumps axios, @slack/rtm-api and @slack/web-api. These dependencies needed to be updated together.
Updates axios from 0.19.2 to 1.13.5

Release notes

Sourced from axios's releases.

v1.13.5

Release 1.13.5

Highlights

  • Security: Fixed a potential Denial of Service issue involving the __proto__ key in mergeConfig. (PR #7369)
  • Bug fix: Resolved an issue where AxiosError could be missing the status field on and after v1.13.3. (PR #7368)

Changes

Security

  • Fix Denial of Service via __proto__ key in mergeConfig. (PR #7369)

Fixes

  • Fix/5657. (PR #7313)
  • Ensure status is present in AxiosError on and after v1.13.3. (PR #7368)

Features / Improvements

  • Add input validation to isAbsoluteURL. (PR #7326)
  • Refactor: bump minor package versions. (PR #7356)

Documentation

  • Clarify object-check comment. (PR #7323)
  • Fix deprecated Buffer constructor usage and README formatting. (PR #7371)

CI / Maintenance

  • Chore: fix issues with YAML. (PR #7355)
  • CI: update workflow YAMLs. (PR #7372)
  • CI: fix run condition. (PR #7373)
  • Dev deps: bump karma-sourcemap-loader from 0.3.8 to 0.4.0. (PR #7360)
  • Chore(release): prepare release 1.13.5. (PR #7379)

New Contributors

Full Changelog: axios/axios@v1.13.4...v1.13.5

v1.13.4

Overview

The release addresses issues discovered in v1.13.3 and includes significant CI/CD improvements.

Full Changelog: v1.13.3...v1.13.4

What's New in v1.13.4

Bug Fixes

  • fix: issues with version 1.13.3 (#7352) (ee90dfc)
    • Fixed issues discovered in v1.13.3 release

... (truncated)

Commits
  • 29f7542 chore(release): prepare release 1.13.5 (#7379)
  • 431c3a3 ci: fix run condition (#7373)
  • 9ff3a78 ci: update ymls (#7372)
  • 265b712 docs: fix deprecated Buffer constructor and formatting issues in README (#7371)
  • 475e75a feat: add input validation to isAbsoluteURL (#7326)
  • 28c7215 fix: Denial of Service via proto Key in mergeConfig (#7369)
  • 04cf019 docs: clarify object check comment (#7323)
  • 696fa75 fix: status is missing in AxiosError on and after v1.13.3 (#7368)
  • 569f028 fix: added a option to choose between legacy and the new request/response int...
  • 44b7c9f chore(deps-dev): bump karma-sourcemap-loader (#7360)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for axios since your current version.


Updates @slack/rtm-api from 5.0.5 to 7.0.4

Release notes

Sourced from @​slack/rtm-api's releases.

@​slack/rtm-api@​7.0.4

What's Changed

This release updates internal dependencies to use more secure versions 🔏

📚 Documentation

🤖 Dependencies

  • chore(rtm-api): bump @​slack/web-api to 7.10.0 in #2342 - Thanks @​zimeg!
  • chore(deps-dev): bump @​biomejs/biome to v2 for all packages in #2281 - Thanks @​mwbrooks!

🧰 Maintenance

Package: https://www.npmjs.com/package/@​slack/rtm-api/v/7.0.4 Full Changelog: https://github.com/slackapi/node-slack-sdk/compare/@​slack/rtm-api@​7.0.3...@​slack/rtm-api@​7.0.4 Milestone: https://github.com/slackapi/node-slack-sdk/milestone/150?closed=1

@​slack/rtm-api@​7.0.3

What's Changed

This release includes an update of @slack/web-api to bump internal dependencies to supported versions.

Maintenance 🧰

Full Changelog: https://github.com/slackapi/node-slack-sdk/compare/@​slack/rtm-api@​7.0.2...@​slack/rtm-api@​7.0.3 Milestone: https://github.com/slackapi/node-slack-sdk/milestone/135

@​slack/rtm-api@​7.0.2

What's Changed

Full Changelog: https://github.com/slackapi/node-slack-sdk/compare/@​slack/web-api@​7.8.0...@​slack/rtm-api@​7.0.2

@​slack/rtm-api@​7.0.1

What's Changed

This patch release bumps the minimum version of axios to 1.7.4 to address a CVE - see Axios 1.7.4 release notes for more information.

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by e-zim, a new releaser for @​slack/rtm-api since your current version.


Updates @slack/web-api from 5.10.0 to 7.13.0

Release notes

Sourced from @​slack/web-api's releases.

@​slack/web-api@​7.13.0

What's Changed

👾 Enhancements

 const list = await app.client.slackLists.create({
      name: 'Test List - SlackLists API',
      description_blocks: [
        {
          type: 'rich_text',
          elements: [
            {
              type: 'rich_text_section',
              elements: [
                {
                  type: 'text',
                  text: 'List to keep track of tasks!',
                },
              ],
            },
          ],
        },
      ],
      schema: [
        {
          key: 'task_name',
          name: 'Task Name',
          type: 'text',
          is_primary_column: true,
        },
        {
          key: 'due_date',
          name: 'Due Date',
          type: 'date',
        },
        {
          key: 'status',
          name: 'Status',
          type: 'select',
          options: {
            choices: [
              { value: 'not_started', label: 'Not Started', color: 'red' },
              { value: 'in_progress', label: 'In Progress', color: 'yellow' },
              { value: 'completed', label: 'Completed', color: 'green' },
            ],
</tr></table> 

... (truncated)

Commits
  • 5d4092a chore(web-api): release @​slack/web-api@​7.13.0 (#2445)
  • b5df62f docs(web-api): note the chat stream buffer size default (#2418)
  • be50825 feat(web-api): add slackLists methods (#2421)
  • 9633e00 docs: fixes broken links in docs sidebar (#2444)
  • b396b04 docs(maintainers): update release steps with recent examples (#2442)
  • 533acb2 chore(types): release @​slack/types@​2.19.0 (#2441)
  • e2e1fa7 docs: add steps to package packages and reference for local development (#2437)
  • dcda03d docs(types): remove note of maximum length for raw_text (#2440)
  • 8da8e09 ci: use selected files to upload results to codecov instead of file (#2439)
  • 90ed66e feat(types): add table block (#2426)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by slackhq, a new releaser for @​slack/web-api since your current version.


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps [axios](https://github.com/axios/axios), [@slack/rtm-api](https://github.com/slackapi/node-slack-sdk) and [@slack/web-api](https://github.com/slackapi/node-slack-sdk). These dependencies needed to be updated together.

Updates `axios` from 0.19.2 to 1.13.5
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v0.19.2...v1.13.5)

Updates `@slack/rtm-api` from 5.0.5 to 7.0.4
- [Release notes](https://github.com/slackapi/node-slack-sdk/releases)
- [Commits](https://github.com/slackapi/node-slack-sdk/compare/@slack/rtm-api@5.0.5...@slack/rtm-api@7.0.4)

Updates `@slack/web-api` from 5.10.0 to 7.13.0
- [Release notes](https://github.com/slackapi/node-slack-sdk/releases)
- [Commits](https://github.com/slackapi/node-slack-sdk/compare/@slack/web-api@5.10.0...@slack/web-api@7.13.0)

---
updated-dependencies:
- dependency-name: axios
  dependency-version: 1.13.5
  dependency-type: direct:production
- dependency-name: "@slack/rtm-api"
  dependency-version: 7.0.4
  dependency-type: direct:production
- dependency-name: "@slack/web-api"
  dependency-version: 7.13.0
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Feb 10, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants