Skip to content

Bump axios and tronweb#45

Closed
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/multi-34c266191e
Closed

Bump axios and tronweb#45
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/multi-34c266191e

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot bot commented on behalf of github Sep 13, 2025

Bumps axios to 1.12.1 and updates ancestor dependency tronweb. These dependencies need to be updated together.

Updates axios from 0.30.0 to 1.12.1

Release notes

Sourced from axios's releases.

Release v1.12.1

Release notes:

Bug Fixes

Contributors to this release

Release v1.12.0

Release notes:

Bug Fixes

Features

  • adapter: surface low‑level network error details; attach original error via cause (#6982) (78b290c)
  • fetch: add fetch, Request, Response env config variables for the adapter; (#7003) (c959ff2)
  • support reviver on JSON.parse (#5926) (2a97634), closes #5924
  • types: extend AxiosResponse interface to include custom headers type (#6782) (7960d34)

Contributors to this release

Release v1.11.0

Release notes:

Bug Fixes

... (truncated)

Changelog

Sourced from axios's changelog.

1.12.1 (2025-09-12)

Bug Fixes

Contributors to this release

1.12.0 (2025-09-11)

Bug Fixes

Features

  • adapter: surface low‑level network error details; attach original error via cause (#6982) (78b290c)
  • fetch: add fetch, Request, Response env config variables for the adapter; (#7003) (c959ff2)
  • support reviver on JSON.parse (#5926) (2a97634), closes #5924
  • types: extend AxiosResponse interface to include custom headers type (#6782) (7960d34)

Contributors to this release

1.11.0 (2025-07-22)

Bug Fixes

... (truncated)

Commits

Updates tronweb from 4.4.0 to 6.0.2

Release notes

Sourced from tronweb's releases.

v6.0.2

  • Bump axios from 1.7.4 to 1.8.3.
  • Fix npm audit problems.

v6.0.1

  • Support deserialize TriggerSmartContract transaction by raw_data_hex.
  • Replace @tronweb3/google-protobuf with google-protobuf.
  • Fix some type errors and API return type compatibility issues.

v6.0.0

  • Fix tronprotocol/tronweb#543, replace type AxiosHeaders with InstanceType.
  • Add type for value field in the return of the creation by TransactionBuilder methods.
  • Fix known type errors.
  • Bump axios from 1.6.8 to 1.7.4 and webpack from 5.78.0 to 5.94.0.
  • Add TronWeb.address.toChecksumAddress and TronWeb.address.isChecksumAddress APIs.
  • Fix the wrong action of deocdeInput API in Contract module. tronprotocol/tronweb#557

v6.0.0-beta.4

  • Replace ethers@v5/abi with abiCoder of ethers@v6.
  • Bump ethers from v6.11.1 to v6.13.1.
  • Export all Types and enum objects.
  • Move typescript and other dev dependencies into devDependencies field in package.json.
  • Change headers type in TronWeb constructor.

v6.0.0-beta.3

  • Support recovering transaction signer address by trx.ecRecover.
  • Support both base58 format and hex format address field in keys of updateAccountPermissions params.
  • Support type for contract instance.

v6.0.0-beta.2

  • Bump ethers from 6.8.0 to 6.11.1
  • Bump ethereum-cryptography from 2.1.2 to 2.1.3
  • Bump axios from 1.6.2 to 1.6.8

v6.0.0-beta.1

  • Support TIP586 with trx.getBandwidthPrices and trx.getEnergyPrices.
  • Support custom block header info when creating transaction.

v6.0.0-beta.0

  • Add full type definition for Typescript.
  • Change Default exports to Named exports.
  • Change TronWeb.createRandom(options) to TronWeb.createRandom(password, path, wordlist).
  • Change TronWeb.fromMnemonic(mnemonic, path, wordlist) to TronWeb.fromMnemonic(mnemonic, path, password, wordlist).
  • All methods in Trx and TransactionBuilder perform an strict check for type and position of parameters.
  • All methods in TronWeb will throw an Error instance instead of a string. e.message should be used to access error information.
  • Update TronWeb#event API with new backend service(#422).
  • Remove Contract#watch() method.
  • Support multi-dimension address array parameters in TransactionBuilder#triggerSmartContract()(#433).

v5.3.4

... (truncated)

Changelog

Sourced from tronweb's changelog.

Change Log

6.0.4

New Features

  • Improve type inference in Contract module when using typescript.
    • The Contract now infers method signatures based on the provided ABI.
    • To enable accurate inference, the ABI should be defined using the as const assertion or passed directly into tronWeb.contract().

Change

  • Change the return behavior of the contract.new() method.
    • Previously, this method mutated the current instance and used the ABI stored on the Tron blockchain, which proved to be unreliable. It now returns a new instance that uses the ABI provided in the options parameter.
  • Export GetEventResultOptions and EventResponse.
  • Allow using length as the value of the name field in the ABI, but you cannot use result['length'] to read its value.
  • Bump axios from 1.8.3 to 1.11.0, bump eslint from 9.22.0 to 9.31.0.

Bug Fixes

  • Fix the issue where addUpdateData treats numeric strings as numbers.#629
    • Starting from TronWeb v6.0.4, addUpdateData will use TronWeb.fromUtf8 to convert the provided data string—unless it starts with '0x'.
    • If the resulting data string has an odd length, a '0' will be prepended to ensure even length.

6.0.3

  • Add support for deserializing 6 more transactions.
  • Fix npm audit issues.
  • Fix the error in the abi variable within transactionBuilder.createSmartContract.
  • Export Method class.
  • Add missing fields in internal_transactions.

6.0.2

  • Bump axios from 1.7.4 to 1.8.3.
  • Fix npm audit problems.

6.0.1

  • Support deserialize TriggerSmartContract transaction by raw_data_hex.
  • Replace @tronweb3/google-protobuf with google-protobuf.
  • Fix some type errors and API return type compatibility issues.

6.0.0

  • Fix issue543, replace type AxiosHeaders with InstanceType.
  • Add type for value field in the return of the creation by TransactionBuilder methods.
  • Fix known type errors.
  • Bump axios from 1.6.8 to 1.7.4 and webpack from 5.78.0 to 5.94.0.
  • Add TronWeb.address.toChecksumAddress and TronWeb.address.isChecksumAddress APIs.
  • Fix the wrong action of deocdeInput API in Contract module. #557

6.0.0-beta.4

  • Replace ethers@v5/abi with abiCoder of ethers@v6.
  • Bump ethers from v6.11.1 to v6.13.1.
  • Export all Types and enum objects.

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by tronweb.dev, a new releaser for tronweb 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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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) to 1.12.1 and updates ancestor dependency [tronweb](https://github.com/tronprotocol/tronweb). These dependencies need to be updated together.


Updates `axios` from 0.30.0 to 1.12.1
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v0.30.0...v1.12.1)

Updates `tronweb` from 4.4.0 to 6.0.2
- [Release notes](https://github.com/tronprotocol/tronweb/releases)
- [Changelog](https://github.com/tronprotocol/tronweb/blob/master/CHANGELOG.md)
- [Commits](tronprotocol/tronweb@v4.4.0...v6.0.2)

---
updated-dependencies:
- dependency-name: axios
  dependency-version: 1.12.1
  dependency-type: indirect
- dependency-name: tronweb
  dependency-version: 6.0.2
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Sep 13, 2025
@dependabot @github
Copy link
Copy Markdown
Author

dependabot bot commented on behalf of github Feb 11, 2026

Superseded by #58.

@dependabot dependabot bot closed this Feb 11, 2026
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/multi-34c266191e branch February 11, 2026 14:58
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