Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Snyk] Upgrade commander from 3.0.1 to 12.1.0 #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

OKEAMAH
Copy link
Member

@OKEAMAH OKEAMAH commented Aug 16, 2024

snyk-top-banner

Snyk has created this PR to upgrade commander from 3.0.1 to 12.1.0.

ℹ️ Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify and fix newly disclosed vulnerabilities when they affect your project.


⚠️ Warning: This PR contains major version upgrade(s), and may be a breaking change.

  • The recommended version is 49 versions ahead of your current version.

  • The recommended version was released on 3 months ago.

Release notes
Package name: commander
  • 12.1.0 - 2024-05-18

    Added

    • auto-detect special node flags node --eval and node --print when call .parse() with no arguments (#2164)

    Changed

    • prefix require of Node.js core modules with node: (#2170)
    • format source files with Prettier (#2180)
    • switch from StandardJS to directly calling ESLint for linting (#2153)
    • extend security support for previous major version of Commander (#2150)

    Removed

    • removed unimplemented Option.fullDescription from TypeScript definition (#2191)
  • 12.0.0 - 2024-02-03

    Added

    • .addHelpOption() as another way of configuring built-in help option (#2006)
    • .helpCommand() for configuring built-in help command (#2087)

    Fixed

    • Breaking: use non-zero exit code when spawned executable subcommand terminates due to a signal (#2023)
    • Breaking: check passThroughOptions constraints when using .addCommand and throw if parent command does not have .enablePositionalOptions() enabled (#1937)

    Changed

    • Breaking: Commander 12 requires Node.js v18 or higher (#2027)
    • Breaking: throw an error if add an option with a flag which is already in use (#2055)
    • Breaking: throw an error if add a command with name or alias which is already in use (#2059)
    • Breaking: throw error when calling .storeOptionsAsProperties() after setting an option value (#1928)
    • replace non-standard JSDoc of @ api private with documented @ private (#1949)
    • .addHelpCommand() now takes a Command (passing string or boolean still works as before but deprecated) (#2087)
    • refactor internal implementation of built-in help option (#2006)
    • refactor internal implementation of built-in help command (#2087)

    Deprecated

    • .addHelpCommand() passing string or boolean (use .helpCommand() or pass a Command) (#2087)

    Removed

    • Breaking: removed default export of a global Command instance from CommonJS (use the named program export instead) (#2017)

    Migration Tips

    global program

    If you are using the deprecated default import of the global Command object, you need to switch to using a named import (or create a new Command).

    // const program = require('commander');
    const { program } = require('commander');

    option and command clashes

    A couple of configuration problems now throw an error, which will pick up issues in existing programs:

    • adding an option which uses the same flag as a previous option
    • adding a command which uses the same name or alias as a previous command
  • 12.0.0-1 - 2024-01-19

    Added

    • .addHelpOption() as another way of configuring built-in help option (#2006)
    • .helpCommand() for configuring built-in help command (#2087)

    Changed

    • .addHelpCommand() now takes a Command (passing string or boolean still works as before but deprecated) (#2087)
    • refactor internal implementation of built-in help option (#2006)
    • refactor internal implementation of built-in help command (#2087)

    Deprecated

    • .addHelpCommand() passing string or boolean (use .helpCommand() or pass a Command) (#2087)
  • 12.0.0-0 - 2023-11-11

    Fixed

    • Breaking: use non-zero exit code when spawned executable subcommand terminates due to a signal (#2023)
    • Breaking: check passThroughOptions constraints when using .addCommand and throw if parent command does not have .enablePositionalOptions() enabled (#1937)

    Changed

    • Breaking: Commander 12 requires Node.js v18 or higher (#2027)
    • Breaking: throw an error if add an option with a flag which is already in use (#2055)
    • Breaking: throw an error if add a command with name or alias which is already in use (#2059)
    • Breaking: throw error when calling .storeOptionsAsProperties() after setting an option value (#1928)
    • replace non-standard JSDoc of @ api private with documented @ private (#1949)

    Removed

    • Breaking: removed default export of a global Command instance from CommonJS (use the named program export instead) (#2017)

    Migration Tips

    global program

    If you are using the deprecated default import of the global Command object, you need to switch to using a named import (or create a new Command).

    // const program = require('commander');
    const { program } = require('commander');

    option and command clashes

    A couple of configuration problems now throw an error, which will pick up issues in existing programs:

    • adding an option which uses the same flag as a previous option
    • adding a command which uses the same name or alias as a previous command
  • 11.1.0 - 2023-10-13

    Fixed

    • TypeScript: update OptionValueSource to allow any string, to match supported use of custom sources (#1983)
    • TypeScript: add that Command.version() can also be used as getter (#1982)
    • TypeScript: add null return type to Commands.executableDir(), for when not configured (#1965)
    • subcommands with an executable handler and only a short help flag are now handled correctly by the parent's help command (#1930)

    Added

    • registeredArguments property on Command with the array of defined Argument (like Command.options for Option) (#2010)
    • TypeScript declarations for Option properties: envVar, presetArg (#2019)
    • TypeScript declarations for Argument properties: argChoices, defaultValue, defaultValueDescription (#2019)
    • example file which shows how to configure help to display any custom usage in the list of subcommands (#1896)

    Changed

    • (developer) refactor TypeScript configs for multiple use-cases, and enable checks in JavaScript files in supporting editors (#1969)

    Deprecated

    • Command._args was private anyway, but now available as registeredArguments (#2010)
  • 11.0.0 - 2023-06-16

    Fixed

    • help command works when help option is disabled (#1864)

    Changed

    • leading and trailing spaces are now ignored by the .arguments() method (#1874)
    • refine "types" exports for ESM to follow TypeScript guidelines (#1886)
    • Breaking: Commander 11 requires Node.js v16 or higher
  • 10.0.1 - 2023-04-15

    Added

    Fixed

    • remove unused Option.optionFlags property from TypeScript definition (#1844)

    Changed

    • assume boolean option intended if caller passes string instead of hash to .implies() (#1854)
  • 10.0.0 - 2023-01-14

    Added

    • wrap command description in help (#1804)

    Changed

    • Breaking: Commander 10 requires Node.js v14 or higher
  • 9.5.0 - 2023-01-07

    Added

    • .getOptionValueSourceWithGlobals() (#1832)
    • showGlobalOptions for .configureHelp{} and Help (#1828)
  • 9.4.1 - 2022-09-30

    Fixed

    • .setOptionValue() now also clears option source (#1795)
    • TypeScript: add implied to OptionValueSource for option values set by using .implies() (#1794)
    • TypeScript : add undefined to return type of .getOptionValueSource() (#1794)

    Changed

    • additions to README
  • 9.4.0 - 2022-07-15
  • 9.3.0 - 2022-05-28
  • 9.2.0 - 2022-04-15
  • 9.1.0 - 2022-03-18
  • 9.0.0 - 2022-01-29
  • 9.0.0-1 - 2022-01-14
  • 9.0.0-0 - 2021-12-22
  • 8.3.0 - 2021-10-22
  • 8.2.0 - 2021-09-10
  • 8.1.0 - 2021-07-27
  • 8.0.0 - 2021-06-25
  • 8.0.0-2 - 2021-06-06
  • 8.0.0-1 - 2021-05-31
  • 8.0.0-0 - 2021-05-22
  • 7.2.0 - 2021-03-21
  • 7.1.0 - 2021-02-15
  • 7.0.0 - 2021-01-15
  • 7.0.0-2 - 2020-12-14
  • 7.0.0-1 - 2020-11-21
  • 7.0.0-0 - 2020-10-25
  • 6.2.1 - 2020-12-14
  • 6.2.0 - 2020-10-25
  • 6.1.0 - 2020-08-28
  • 6.0.0 - 2020-07-19
  • 6.0.0-0 - 2020-06-20
  • 5.1.0 - 2020-04-25
  • 5.0.0 - 2020-03-14
  • 5.0.0-4 - 2020-03-03
  • 5.0.0-3 - 2020-02-20
  • 5.0.0-2 - 2020-02-11
  • 5.0.0-1 - 2020-02-08
  • 5.0.0-0 - 2020-02-01
  • 4.1.1 - 2020-02-03
  • 4.1.0 - 2020-01-06
  • 4.0.1 - 2019-11-11
  • 4.0.0 - 2019-11-01
  • 4.0.0-1 - 2019-10-08
  • 4.0.0-0 - 2019-10-01
  • 3.0.2 - 2019-09-26
  • 3.0.1 - 2019-08-30
from commander GitHub release notes

Important

  • Warning: This PR contains a major version upgrade, and may be a breaking change.
  • Check the changes in this PR to ensure they won't cause issues with your project.
  • This PR was automatically created by Snyk using the credentials of a real user.

Note: You are seeing this because you or someone else with access to this repository has authorized Snyk to open upgrade PRs.

For more information:

Snyk has created this PR to upgrade commander from 3.0.1 to 12.1.0.

See this package in npm:
commander

See this project in Snyk:
https://app.snyk.io/org/okeamah/project/7d35db6c-f6d1-4df2-ad10-47318c3a5675?utm_source=github&utm_medium=referral&page=upgrade-pr
Copy link

@sourcery-ai sourcery-ai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We have skipped reviewing this pull request. Here's why:

  • It seems to have been created by a bot ('[Snyk]' found in title). We assume it knows what it's doing!
  • We don't review packaging changes - Let us know if you'd like us to change this.

Copy link

New and removed dependencies detected. Learn more about Socket for GitHub ↗︎

Package New capabilities Transitives Size Publisher
npm/[email protected] environment 0 186 kB abetomo

🚮 Removed packages: npm/[email protected]

View full report↗︎

Copy link

🚨 Potential security issues detected. Learn more about Socket for GitHub ↗︎

To accept the risk, merge this PR and you will not be notified again.

Alert Package NoteCI
Install scripts npm/[email protected]
  • Install script: preinstall
  • Source: node index.js
🚫

View full report↗︎

Next steps

What is an install script?

Install scripts are run when the package is installed. The majority of malware in npm is hidden in install scripts.

Packages should not be running non-essential scripts during install and there are often solutions to problems people solve with install scripts that can be run at publish time instead.

Take a deeper look at the dependency

Take a moment to review the security alert above. Review the linked package source code to understand the potential risk. Ensure the package is not malicious before proceeding. If you're unsure how to proceed, reach out to your security team or ask the Socket team for help at support [AT] socket [DOT] dev.

Remove the package

If you happen to install a dependency that Socket reports as Known Malware you should immediately remove it and select a different dependency. For other alert types, you may may wish to investigate alternative packages or consider if there are other ways to mitigate the specific risk posed by the dependency.

Mark a package as acceptable risk

To ignore an alert, reply with a comment starting with @SocketSecurity ignore followed by a space separated list of ecosystem/package-name@version specifiers. e.g. @SocketSecurity ignore npm/[email protected] or ignore all packages with @SocketSecurity ignore-all

OKEAMAH added a commit that referenced this pull request Aug 22, 2024
![snyk-top-banner](https://github.com/andygongea/OWASP-Benchmark/assets/818805/c518c423-16fe-447e-b67f-ad5a49b5d123)


<h3>Snyk has created this PR to upgrade web3 from 1.7.4 to 4.11.0.</h3>

:information_source: Keep your dependencies up-to-date. This makes it
easier to fix existing vulnerabilities and to more quickly identify and
fix newly disclosed vulnerabilities when they affect your project.

<hr/>

⚠️ **Warning:** This PR contains major version upgrade(s), and may be a
breaking change.

- The recommended version is **302 versions** ahead of your current
version.

- The recommended version was released on **21 days ago**.

#### Issues fixed by the recommended upgrade:

|  | Issue | Score | Exploit Maturity |

:-------------------------:|:-------------------------|:-------------------------|:-------------------------
![high
severity](https://res.cloudinary.com/snyk/image/upload/w_20,h_20/v1561977819/icon/h.png
'high severity') | Improper Verification of Cryptographic
Signature<br/>[SNYK-JS-BROWSERIFYSIGN-6037026](https://snyk.io/vuln/SNYK-JS-BROWSERIFYSIGN-6037026)
| **63** | No Known Exploit
![high
severity](https://res.cloudinary.com/snyk/image/upload/w_20,h_20/v1561977819/icon/h.png
'high severity') | Denial of Service
(DoS)<br/>[SNYK-JS-DECODEURICOMPONENT-3149970](https://snyk.io/vuln/SNYK-JS-DECODEURICOMPONENT-3149970)
| **63** | Proof of Concept
![high
severity](https://res.cloudinary.com/snyk/image/upload/w_20,h_20/v1561977819/icon/h.png
'high severity') | Regular Expression Denial of Service
(ReDoS)<br/>[SNYK-JS-ES5EXT-6095076](https://snyk.io/vuln/SNYK-JS-ES5EXT-6095076)
| **63** | Proof of Concept
![medium
severity](https://res.cloudinary.com/snyk/image/upload/w_20,h_20/v1561977819/icon/m.png
'medium severity') | Regular Expression Denial of Service
(ReDoS)<br/>[SNYK-JS-HTTPCACHESEMANTICS-3248783](https://snyk.io/vuln/SNYK-JS-HTTPCACHESEMANTICS-3248783)
| **63** | Proof of Concept
![medium
severity](https://res.cloudinary.com/snyk/image/upload/w_20,h_20/v1561977819/icon/m.png
'medium severity') | Regular Expression Denial of Service
(ReDoS)<br/>[SNYK-JS-COOKIEJAR-3149984](https://snyk.io/vuln/SNYK-JS-COOKIEJAR-3149984)
| **63** | Proof of Concept



<details>
<summary><b>Release notes</b></summary>
<br/>
  <details>
    <summary>Package name: <b>web3</b></summary>
    <ul>
      <li>
<b>4.11.0</b> - <a
href="https://github.com/web3/web3.js/releases/tag/v4.11.0">2024-07-11</a></br><h2>[4.11.0]</h2>
<h3>Fixed</h3>
<h4>web3-eth-abi</h4>
<ul>
<li>fix encodedata in EIP-712 (<a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="2345189302"
data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7095"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7095/hovercard"
href="https://github.com/web3/web3.js/pull/7095">#7095</a>)</li>
</ul>
<h4>web3-utils</h4>
<ul>
<li><code>_sendPendingRequests</code> will catch unhandled errors from
<code>_sendToSocket</code> (<a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="2239483872"
data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/6968"
data-hovercard-type="issue"
data-hovercard-url="/web3/web3.js/issues/6968/hovercard"
href="https://github.com/web3/web3.js/issues/6968">#6968</a>)</li>
</ul>
<h4>web3-eth</h4>
<ul>
<li>Fixed geth issue when running a new instance, transactions will
index when there are no blocks created (<a class="issue-link
js-issue-link" data-error-text="Failed to load title"
data-id="2349350779" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7098"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7098/hovercard"
href="https://github.com/web3/web3.js/pull/7098">#7098</a>)</li>
</ul>
<h3>Changed</h3>
<h4>web3-eth-accounts</h4>
<ul>
<li>baseTransaction method updated (<a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="2345189302"
data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7095"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7095/hovercard"
href="https://github.com/web3/web3.js/pull/7095">#7095</a>)</li>
</ul>
<h4>web3-providers-ws</h4>
<ul>
<li>Update dependancies (<a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="2359042478"
data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7109"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7109/hovercard"
href="https://github.com/web3/web3.js/pull/7109">#7109</a>)</li>
</ul>
<h4>web3-rpc-providers</h4>
<ul>
<li>Change request return type <code>Promise&lt;ResultType&gt;</code> to
<code>Promise&lt;JsonRpcResponseWithResult&lt;ResultType&gt;&gt;</code>
(<a class="issue-link js-issue-link" data-error-text="Failed to load
title" data-id="2352030152" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7102"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7102/hovercard"
href="https://github.com/web3/web3.js/pull/7102">#7102</a>)</li>
</ul>
<h3>Added</h3>
<h4>web3-eth-contract</h4>
<ul>
<li><code>populateTransaction</code> was added to contract methods (<a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="2371516761" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7124"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7124/hovercard"
href="https://github.com/web3/web3.js/pull/7124">#7124</a>)</li>
<li>Contract has <code>setTransactionMiddleware</code> and
<code>getTransactionMiddleware</code> for automatically passing to
<code>sentTransaction</code> for <code>deploy</code> and
<code>send</code> functions (<a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="2388988914"
data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7138"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7138/hovercard"
href="https://github.com/web3/web3.js/pull/7138">#7138</a>)</li>
</ul>
<h4>web3-rpc-providers</h4>
<ul>
<li>When error is returned with code 429, throw rate limit error (<a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="2352030152" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7102"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7102/hovercard"
href="https://github.com/web3/web3.js/pull/7102">#7102</a>)</li>
</ul>
<h4>web3</h4>
<ul>
<li><code>web3.eth.Contract</code> will get transaction middleware and
use it, if <code>web3.eth</code> has transaction middleware. (<a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="2388988914" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7138"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7138/hovercard"
href="https://github.com/web3/web3.js/pull/7138">#7138</a>)</li>
</ul>
      </li>
      <li>
        <b>4.10.1-dev.89711ab.0</b> - 2024-07-10
      </li>
      <li>
        <b>4.10.1-dev.1436228.0</b> - 2024-07-09
      </li>
      <li>
<b>4.10.0</b> - <a
href="https://github.com/web3/web3.js/releases/tag/v4.10.0">2024-06-17</a></br><h2>[4.10.0]</h2>
<h3>Added</h3>
<h4>web3</h4>
<ul>
<li>Now when existing packages are added in web3, will be avalible for
plugins via context. (<a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="2338555038"
data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7088"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7088/hovercard"
href="https://github.com/web3/web3.js/pull/7088">#7088</a>)</li>
</ul>
<h4>web3-core</h4>
<ul>
<li>Now when existing packages are added in web3, will be avalible for
plugins via context. (<a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="2338555038"
data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7088"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7088/hovercard"
href="https://github.com/web3/web3.js/pull/7088">#7088</a>)</li>
</ul>
<h4>web3-eth</h4>
<ul>
<li><code>sendTransaction</code> in <code>rpc_method_wrappers</code>
accepts optional param of <code>TransactionMiddleware</code> (<a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="2338555038" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7088"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7088/hovercard"
href="https://github.com/web3/web3.js/pull/7088">#7088</a>)</li>
<li>WebEth has <code>setTransactionMiddleware</code> and
<code>getTransactionMiddleware</code> for automatically passing to
<code>sentTransaction</code> (<a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="2338555038"
data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7088"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7088/hovercard"
href="https://github.com/web3/web3.js/pull/7088">#7088</a>)</li>
</ul>
<h4>web3-eth-ens</h4>
<ul>
<li><code>getText</code> now supports first param Address</li>
<li><code>getName</code> has optional second param
checkInterfaceSupport</li>
</ul>
<h3>web3-types</h3>
<ul>
<li>Added <code>result</code> as optional <code>never</code> and
<code>error</code> as optional <code>never in type
</code>JsonRpcNotification` (<a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="2340855419"
data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7091"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7091/hovercard"
href="https://github.com/web3/web3.js/pull/7091">#7091</a>)</li>
<li>Added <code>JsonRpcNotfication</code> as a union type in
<code>JsonRpcResponse</code> (<a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="2340855419"
data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7091"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7091/hovercard"
href="https://github.com/web3/web3.js/pull/7091">#7091</a>)</li>
</ul>
<h3>web3-rpc-providers</h3>
<ul>
<li>Alpha release</li>
</ul>
<h3>Fixed</h3>
<h4>web3-eth-ens</h4>
<ul>
<li><code>getName</code> reverse resolution</li>
</ul>
<h2>What's Changed</h2>
<ul>
<li>release/v4.9.0 by <a class="user-mention notranslate"
data-hovercard-type="user"
data-hovercard-url="/users/luu-alex/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://github.com/luu-alex">@ luu-alex</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="2311160434" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7057"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7057/hovercard"
href="https://github.com/web3/web3.js/pull/7057">#7057</a></li>
<li>fix(docs): intro by <a class="user-mention notranslate"
data-hovercard-type="user"
data-hovercard-url="/users/danforbes/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://github.com/danforbes">@ danforbes</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="2311000089" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7056"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7056/hovercard"
href="https://github.com/web3/web3.js/pull/7056">#7056</a></li>
<li>coverage increase by <a class="user-mention notranslate"
data-hovercard-type="user" data-hovercard-url="/users/jdevcs/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self" href="https://github.com/jdevcs">@
jdevcs</a> in <a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="2308257803"
data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7051"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7051/hovercard"
href="https://github.com/web3/web3.js/pull/7051">#7051</a></li>
<li>6992 getText update and getName fix by <a class="user-mention
notranslate" data-hovercard-type="user"
data-hovercard-url="/users/jdevcs/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self" href="https://github.com/jdevcs">@
jdevcs</a> in <a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="2303112780"
data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7047"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7047/hovercard"
href="https://github.com/web3/web3.js/pull/7047">#7047</a></li>
<li>web3 external provider - Quicknode by <a class="user-mention
notranslate" data-hovercard-type="user"
data-hovercard-url="/users/jdevcs/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self" href="https://github.com/jdevcs">@
jdevcs</a> in <a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="2271918707"
data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7019"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7019/hovercard"
href="https://github.com/web3/web3.js/pull/7019">#7019</a></li>
<li>fix(docs): quickstart by <a class="user-mention notranslate"
data-hovercard-type="user"
data-hovercard-url="/users/danforbes/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://github.com/danforbes">@ danforbes</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="2315405942" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7062"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7062/hovercard"
href="https://github.com/web3/web3.js/pull/7062">#7062</a></li>
<li>Fix SNYK for 4.x by <a class="user-mention notranslate"
data-hovercard-type="user" data-hovercard-url="/users/avkos/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self" href="https://github.com/avkos">@
avkos</a> in <a class="issue-link js-issue-link" data-error-text="Failed
to load title" data-id="2319883284" data-permission-text="Title is
private" data-url="https://github.com/web3/web3.js/issues/7064"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7064/hovercard"
href="https://github.com/web3/web3.js/pull/7064">#7064</a></li>
<li>Use .snyk file for all projects by <a class="user-mention
notranslate" data-hovercard-type="user"
data-hovercard-url="/users/avkos/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self" href="https://github.com/avkos">@
avkos</a> in <a class="issue-link js-issue-link" data-error-text="Failed
to load title" data-id="2323973072" data-permission-text="Title is
private" data-url="https://github.com/web3/web3.js/issues/7071"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7071/hovercard"
href="https://github.com/web3/web3.js/pull/7071">#7071</a></li>
<li>fix(docs): sidebar by <a class="user-mention notranslate"
data-hovercard-type="user"
data-hovercard-url="/users/danforbes/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://github.com/danforbes">@ danforbes</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="2315836907" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7063"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7063/hovercard"
href="https://github.com/web3/web3.js/pull/7063">#7063</a></li>
<li>fix(docs): mastering providers by <a class="user-mention
notranslate" data-hovercard-type="user"
data-hovercard-url="/users/danforbes/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://github.com/danforbes">@ danforbes</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="2321877989" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7070"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7070/hovercard"
href="https://github.com/web3/web3.js/pull/7070">#7070</a></li>
<li>Remove .snyk files by <a class="user-mention notranslate"
data-hovercard-type="user" data-hovercard-url="/users/avkos/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self" href="https://github.com/avkos">@
avkos</a> in <a class="issue-link js-issue-link" data-error-text="Failed
to load title" data-id="2325924879" data-permission-text="Title is
private" data-url="https://github.com/web3/web3.js/issues/7073"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7073/hovercard"
href="https://github.com/web3/web3.js/pull/7073">#7073</a></li>
<li>100% Coverage web3-utills by <a class="user-mention notranslate"
data-hovercard-type="user"
data-hovercard-url="/users/Muhammad-Altabba/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://github.com/Muhammad-Altabba">@ Muhammad-Altabba</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="2297704065" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7042"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7042/hovercard"
href="https://github.com/web3/web3.js/pull/7042">#7042</a></li>
<li>chore(docs): formatting by <a class="user-mention notranslate"
data-hovercard-type="user"
data-hovercard-url="/users/danforbes/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://github.com/danforbes">@ danforbes</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="2325895072" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7072"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7072/hovercard"
href="https://github.com/web3/web3.js/pull/7072">#7072</a></li>
<li>update gas estimation test by <a class="user-mention notranslate"
data-hovercard-type="user"
data-hovercard-url="/users/luu-alex/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://github.com/luu-alex">@ luu-alex</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="2326269077" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7074"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7074/hovercard"
href="https://github.com/web3/web3.js/pull/7074">#7074</a></li>
<li>fix(docs): contract-tutorial-hardhat-node by <a class="user-mention
notranslate" data-hovercard-type="user"
data-hovercard-url="/users/danforbes/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://github.com/danforbes">@ danforbes</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="2326538836" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7076"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7076/hovercard"
href="https://github.com/web3/web3.js/pull/7076">#7076</a></li>
<li>fix(docs): header-nav by <a class="user-mention notranslate"
data-hovercard-type="user"
data-hovercard-url="/users/danforbes/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://github.com/danforbes">@ danforbes</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="2332200412" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7082"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7082/hovercard"
href="https://github.com/web3/web3.js/pull/7082">#7082</a></li>
<li>fix(docs): introduction by <a class="user-mention notranslate"
data-hovercard-type="user"
data-hovercard-url="/users/danforbes/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://github.com/danforbes">@ danforbes</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="2333964262" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7083"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7083/hovercard"
href="https://github.com/web3/web3.js/pull/7083">#7083</a></li>
<li>fix(docs): contracts-tutorial by <a class="user-mention notranslate"
data-hovercard-type="user"
data-hovercard-url="/users/danforbes/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://github.com/danforbes">@ danforbes</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="2336696485" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7084"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7084/hovercard"
href="https://github.com/web3/web3.js/pull/7084">#7084</a></li>
<li>chore(docs): provider-tutorials by <a class="user-mention
notranslate" data-hovercard-type="user"
data-hovercard-url="/users/danforbes/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://github.com/danforbes">@ danforbes</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="2336711941" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7085"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7085/hovercard"
href="https://github.com/web3/web3.js/pull/7085">#7085</a></li>
<li>fix(docs): mastering-accounts by <a class="user-mention notranslate"
data-hovercard-type="user"
data-hovercard-url="/users/danforbes/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://github.com/danforbes">@ danforbes</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="2339365470" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7089"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7089/hovercard"
href="https://github.com/web3/web3.js/pull/7089">#7089</a></li>
<li>transaction middleware by <a class="user-mention notranslate"
data-hovercard-type="user" data-hovercard-url="/users/jdevcs/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self" href="https://github.com/jdevcs">@
jdevcs</a> in <a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="2338555038"
data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7088"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7088/hovercard"
href="https://github.com/web3/web3.js/pull/7088">#7088</a></li>
<li>add test coverage to web3-core by <a class="user-mention
notranslate" data-hovercard-type="user"
data-hovercard-url="/users/luu-alex/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://github.com/luu-alex">@ luu-alex</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="2340855419" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7091"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7091/hovercard"
href="https://github.com/web3/web3.js/pull/7091">#7091</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a class="commit-link"
href="https://github.com/web3/web3.js/compare/v4.9.0...v4.10.0"><tt>v4.9.0...v4.10.0</tt></a></p>
      </li>
      <li>
        <b>4.9.1-dev.fd2982d.0</b> - 2024-05-23
      </li>
      <li>
        <b>4.9.1-dev.f687df6.0</b> - 2024-05-29
      </li>
      <li>
        <b>4.9.1-dev.b63af9f.0</b> - 2024-05-30
      </li>
      <li>
        <b>4.9.1-dev.962b99f.0</b> - 2024-05-24
      </li>
      <li>
        <b>4.9.1-dev.9086b98.0</b> - 2024-05-30
      </li>
      <li>
        <b>4.9.1-dev.7537f03.0</b> - 2024-05-23
      </li>
      <li>
        <b>4.9.1-dev.692987a.0</b> - 2024-05-24
      </li>
      <li>
        <b>4.9.1-dev.683be62.0</b> - 2024-05-28
      </li>
      <li>
        <b>4.9.1-dev.22c07ad.0</b> - 2024-05-27
      </li>
      <li>
        <b>4.9.1-dev.7084665.0</b> - 2024-05-29
      </li>
      <li>
<b>4.9.0</b> - <a
href="https://github.com/web3/web3.js/releases/tag/v4.9.0">2024-05-23</a></br><h2>What's
Changed</h2>
<ul>
<li>Release/4.8.0 by <a class="user-mention notranslate"
data-hovercard-type="user"
data-hovercard-url="/users/luu-alex/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://github.com/luu-alex">@ luu-alex</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="2247024958" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/6982"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/6982/hovercard"
href="https://github.com/web3/web3.js/pull/6982">#6982</a></li>
<li>web3 middleware by <a class="user-mention notranslate"
data-hovercard-type="user" data-hovercard-url="/users/jdevcs/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self" href="https://github.com/jdevcs">@
jdevcs</a> in <a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="2223385627"
data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/6951"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/6951/hovercard"
href="https://github.com/web3/web3.js/pull/6951">#6951</a></li>
<li>Add default return format to the context by <a class="user-mention
notranslate" data-hovercard-type="user"
data-hovercard-url="/users/avkos/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self" href="https://github.com/avkos">@
avkos</a> in <a class="issue-link js-issue-link" data-error-text="Failed
to load title" data-id="2213189335" data-permission-text="Title is
private" data-url="https://github.com/web3/web3.js/issues/6947"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/6947/hovercard"
href="https://github.com/web3/web3.js/pull/6947">#6947</a></li>
<li>Events guide 6741 by <a class="user-mention notranslate"
data-hovercard-type="user"
data-hovercard-url="/users/SantiagoDevRel/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://github.com/SantiagoDevRel">@ SantiagoDevRel</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="2247756676" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/6983"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/6983/hovercard"
href="https://github.com/web3/web3.js/pull/6983">#6983</a></li>
<li>Fix towei scientific notation by <a class="user-mention notranslate"
data-hovercard-type="user"
data-hovercard-url="/users/luu-alex/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://github.com/luu-alex">@ luu-alex</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="2192231311" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/6908"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/6908/hovercard"
href="https://github.com/web3/web3.js/pull/6908">#6908</a></li>
<li>fix(validator): generate abi name if not provided by <a
class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/MaxMustermann2/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://github.com/MaxMustermann2">@ MaxMustermann2</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="2246767533" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/6981"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/6981/hovercard"
href="https://github.com/web3/web3.js/pull/6981">#6981</a></li>
<li>Plugin guide 6840 draft by <a class="user-mention notranslate"
data-hovercard-type="user"
data-hovercard-url="/users/SantiagoDevRel/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://github.com/SantiagoDevRel">@ SantiagoDevRel</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="2209429076" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/6941"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/6941/hovercard"
href="https://github.com/web3/web3.js/pull/6941">#6941</a></li>
<li>Compare package size (wihtout image) by <a class="user-mention
notranslate" data-hovercard-type="user"
data-hovercard-url="/users/SantiagoDevRel/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://github.com/SantiagoDevRel">@ SantiagoDevRel</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="2258378367" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/6994"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/6994/hovercard"
href="https://github.com/web3/web3.js/pull/6994">#6994</a></li>
<li>fixed broken links by <a class="user-mention notranslate"
data-hovercard-type="user"
data-hovercard-url="/users/SantiagoDevRel/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://github.com/SantiagoDevRel">@ SantiagoDevRel</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="2263508164" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7005"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7005/hovercard"
href="https://github.com/web3/web3.js/pull/7005">#7005</a></li>
<li>Added plugin videos to guide by <a class="user-mention notranslate"
data-hovercard-type="user"
data-hovercard-url="/users/SantiagoDevRel/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://github.com/SantiagoDevRel">@ SantiagoDevRel</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="2263450010" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7004"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7004/hovercard"
href="https://github.com/web3/web3.js/pull/7004">#7004</a></li>
<li>Utils guide by <a class="user-mention notranslate"
data-hovercard-type="user"
data-hovercard-url="/users/SantiagoDevRel/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://github.com/SantiagoDevRel">@ SantiagoDevRel</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="2266114025" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7008"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7008/hovercard"
href="https://github.com/web3/web3.js/pull/7008">#7008</a></li>
<li>Add the missing types to the ”accounts“ by <a class="user-mention
notranslate" data-hovercard-type="user"
data-hovercard-url="/users/jdevcs/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self" href="https://github.com/jdevcs">@
jdevcs</a> in <a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="2269084910"
data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7011"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7011/hovercard"
href="https://github.com/web3/web3.js/pull/7011">#7011</a></li>
<li>Add extra changes to make possibility add eip4844 type as a plugin
by <a class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/avkos/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self" href="https://github.com/avkos">@
avkos</a> in <a class="issue-link js-issue-link" data-error-text="Failed
to load title" data-id="2261774453" data-permission-text="Title is
private" data-url="https://github.com/web3/web3.js/issues/7000"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7000/hovercard"
href="https://github.com/web3/web3.js/pull/7000">#7000</a></li>
<li>add drips funding by <a class="user-mention notranslate"
data-hovercard-type="user"
data-hovercard-url="/users/GregTheGreek/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://github.com/GregTheGreek">@ GregTheGreek</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="2273782779" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7023"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7023/hovercard"
href="https://github.com/web3/web3.js/pull/7023">#7023</a></li>
<li>Tests &amp; ESLint Improvements by <a class="user-mention
notranslate" data-hovercard-type="user"
data-hovercard-url="/users/avkos/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self" href="https://github.com/avkos">@
avkos</a> in <a class="issue-link js-issue-link" data-error-text="Failed
to load title" data-id="2269533376" data-permission-text="Title is
private" data-url="https://github.com/web3/web3.js/issues/7012"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7012/hovercard"
href="https://github.com/web3/web3.js/pull/7012">#7012</a></li>
<li>Added troubleshooting example by <a class="user-mention notranslate"
data-hovercard-type="user"
data-hovercard-url="/users/SantiagoDevRel/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://github.com/SantiagoDevRel">@ SantiagoDevRel</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="2267462792" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7009"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7009/hovercard"
href="https://github.com/web3/web3.js/pull/7009">#7009</a></li>
<li>Implement a way to know which response corresponds to which request
in the middleware by <a class="user-mention notranslate"
data-hovercard-type="user" data-hovercard-url="/users/avkos/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self" href="https://github.com/avkos">@
avkos</a> in <a class="issue-link js-issue-link" data-error-text="Failed
to load title" data-id="2278502713" data-permission-text="Title is
private" data-url="https://github.com/web3/web3.js/issues/7028"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7028/hovercard"
href="https://github.com/web3/web3.js/pull/7028">#7028</a></li>
<li>Add type checking to unit tests by <a class="user-mention
notranslate" data-hovercard-type="user"
data-hovercard-url="/users/avkos/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self" href="https://github.com/avkos">@
avkos</a> in <a class="issue-link js-issue-link" data-error-text="Failed
to load title" data-id="2275734785" data-permission-text="Title is
private" data-url="https://github.com/web3/web3.js/issues/7027"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7027/hovercard"
href="https://github.com/web3/web3.js/pull/7027">#7027</a></li>
<li>fix(glossary): links by <a class="user-mention notranslate"
data-hovercard-type="user"
data-hovercard-url="/users/danforbes/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://github.com/danforbes">@ danforbes</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="2283922307" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7034"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7034/hovercard"
href="https://github.com/web3/web3.js/pull/7034">#7034</a></li>
<li>Add interactive code editor for tutorials by <a class="user-mention
notranslate" data-hovercard-type="user"
data-hovercard-url="/users/avkos/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self" href="https://github.com/avkos">@
avkos</a> in <a class="issue-link js-issue-link" data-error-text="Failed
to load title" data-id="2286732644" data-permission-text="Title is
private" data-url="https://github.com/web3/web3.js/issues/7036"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7036/hovercard"
href="https://github.com/web3/web3.js/pull/7036">#7036</a></li>
<li>fix: web3-validator browser target removed by <a class="user-mention
notranslate" data-hovercard-type="user"
data-hovercard-url="/users/PeKne/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self" href="https://github.com/PeKne">@
PeKne</a> in <a class="issue-link js-issue-link" data-error-text="Failed
to load title" data-id="2271218849" data-permission-text="Title is
private" data-url="https://github.com/web3/web3.js/issues/7016"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7016/hovercard"
href="https://github.com/web3/web3.js/pull/7016">#7016</a></li>
<li>catching promise - legacy provider error by <a class="user-mention
notranslate" data-hovercard-type="user"
data-hovercard-url="/users/luu-alex/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://github.com/luu-alex">@ luu-alex</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="2272401384" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7022"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7022/hovercard"
href="https://github.com/web3/web3.js/pull/7022">#7022</a></li>
<li>web3modal documentation by <a class="user-mention notranslate"
data-hovercard-type="user"
data-hovercard-url="/users/luu-alex/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://github.com/luu-alex">@ luu-alex</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="2294187374" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7041"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7041/hovercard"
href="https://github.com/web3/web3.js/pull/7041">#7041</a></li>
<li>add gas conditional if simple transaction by <a class="user-mention
notranslate" data-hovercard-type="user"
data-hovercard-url="/users/luu-alex/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://github.com/luu-alex">@ luu-alex</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="2298726504" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7043"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7043/hovercard"
href="https://github.com/web3/web3.js/pull/7043">#7043</a></li>
<li>fix(<a class="issue-link js-issue-link" data-error-text="Failed to
load title" data-id="2301478195" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7044"
data-hovercard-type="issue"
data-hovercard-url="/web3/web3.js/issues/7044/hovercard"
href="https://github.com/web3/web3.js/issues/7044">#7044</a>): toWei
trim strings with more than 20 decimal places by <a class="user-mention
notranslate" data-hovercard-type="user"
data-hovercard-url="/users/gordon-to/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://github.com/gordon-to">@ gordon-to</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="2302194681" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7045"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7045/hovercard"
href="https://github.com/web3/web3.js/pull/7045">#7045</a></li>
<li>allow fromwei and toWei to accept numbers as units by <a
class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/luu-alex/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://github.com/luu-alex">@ luu-alex</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="2308435831" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7052"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7052/hovercard"
href="https://github.com/web3/web3.js/pull/7052">#7052</a></li>
<li>use bigint power by <a class="user-mention notranslate"
data-hovercard-type="user"
data-hovercard-url="/users/luu-alex/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://github.com/luu-alex">@ luu-alex</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="2310758020" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7054"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7054/hovercard"
href="https://github.com/web3/web3.js/pull/7054">#7054</a></li>
<li>Fix format schema with list of objects by <a class="user-mention
notranslate" data-hovercard-type="user"
data-hovercard-url="/users/avkos/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self" href="https://github.com/avkos">@
avkos</a> in <a class="issue-link js-issue-link" data-error-text="Failed
to load title" data-id="2293968262" data-permission-text="Title is
private" data-url="https://github.com/web3/web3.js/issues/7040"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7040/hovercard"
href="https://github.com/web3/web3.js/pull/7040">#7040</a></li>
<li>6801 Fill gas price when baseFeePerGas==='0x0' by <a
class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/avkos/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self" href="https://github.com/avkos">@
avkos</a> in <a class="issue-link js-issue-link" data-error-text="Failed
to load title" data-id="2307184527" data-permission-text="Title is
private" data-url="https://github.com/web3/web3.js/issues/7050"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7050/hovercard"
href="https://github.com/web3/web3.js/pull/7050">#7050</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/MaxMustermann2/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://github.com/MaxMustermann2">@ MaxMustermann2</a> made their
first contribution in <a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="2246767533"
data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/6981"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/6981/hovercard"
href="https://github.com/web3/web3.js/pull/6981">#6981</a></li>
<li><a class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/danforbes/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://github.com/danforbes">@ danforbes</a> made their first
contribution in <a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="2283922307"
data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7034"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7034/hovercard"
href="https://github.com/web3/web3.js/pull/7034">#7034</a></li>
<li><a class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/PeKne/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self" href="https://github.com/PeKne">@
PeKne</a> made their first contribution in <a class="issue-link
js-issue-link" data-error-text="Failed to load title"
data-id="2271218849" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7016"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7016/hovercard"
href="https://github.com/web3/web3.js/pull/7016">#7016</a></li>
<li><a class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/gordon-to/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://github.com/gordon-to">@ gordon-to</a> made their first
contribution in <a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="2302194681"
data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/7045"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/7045/hovercard"
href="https://github.com/web3/web3.js/pull/7045">#7045</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a class="commit-link"
href="https://github.com/web3/web3.js/compare/v4.8.0...v4.9.0"><tt>v4.8.0...v4.9.0</tt></a></p>
      </li>
      <li>
        <b>4.8.1-dev.f4e55bd.0</b> - 2024-05-22
      </li>
      <li>
        <b>4.8.1-dev.f44dc5b.0</b> - 2024-05-09
      </li>
      <li>
        <b>4.8.1-dev.f216540.0</b> - 2024-05-06
      </li>
      <li>
        <b>4.8.1-dev.ed2781f.0</b> - 2024-04-25
      </li>
      <li>
        <b>4.8.1-dev.ebbbf1e.0</b> - 2024-04-30
      </li>
      <li>
        <b>4.8.1-dev.e29deea.0</b> - 2024-04-18
      </li>
      <li>
        <b>4.8.1-dev.e0fc158.0</b> - 2024-05-22
      </li>
      <li>
        <b>4.8.1-dev.de3e8f8.0</b> - 2024-04-26
      </li>
      <li>
        <b>4.8.1-dev.dd172c7.0</b> - 2024-04-18
      </li>
      <li>
        <b>4.8.1-dev.d4e937d.0</b> - 2024-04-19
      </li>
      <li>
        <b>4.8.1-dev.c62ef79.0</b> - 2024-05-06
      </li>
      <li>
        <b>4.8.1-dev.b413ebd.0</b> - 2024-05-02
      </li>
      <li>
        <b>4.8.1-dev.ac2e180.0</b> - 2024-05-22
      </li>
      <li>
        <b>4.8.1-dev.93296c2.0</b> - 2024-04-18
      </li>
      <li>
        <b>4.8.1-dev.88b7e2e.0</b> - 2024-05-02
      </li>
      <li>
        <b>4.8.1-dev.866469d.0</b> - 2024-05-14
      </li>
      <li>
        <b>4.8.1-dev.7be0060.0</b> - 2024-04-23
      </li>
      <li>
        <b>4.8.1-dev.7a470c9.0</b> - 2024-05-01
      </li>
      <li>
        <b>4.8.1-dev.5fd9dbb.0</b> - 2024-04-23
      </li>
      <li>
        <b>4.8.1-dev.5d2f2aa.0</b> - 2024-05-06
      </li>
      <li>
        <b>4.8.1-dev.553f270.0</b> - 2024-05-21
      </li>
      <li>
        <b>4.8.1-dev.53e2466.0</b> - 2024-04-22
      </li>
      <li>
        <b>4.8.1-dev.419c8d3.0</b> - 2024-04-25
      </li>
      <li>
        <b>4.8.1-dev.3904a46.0</b> - 2024-05-22
      </li>
      <li>
        <b>4.8.1-dev.32b6b29.0</b> - 2024-05-21
      </li>
      <li>
        <b>4.8.1-dev.2f73aa5.0</b> - 2024-05-16
      </li>
      <li>
        <b>4.8.1-dev.1ab7a6b.0</b> - 2024-04-18
      </li>
      <li>
        <b>4.8.1-dev.12c2515.0</b> - 2024-05-13
      </li>
      <li>
        <b>4.8.1-dev.408125.0</b> - 2024-05-13
      </li>
      <li>
<b>4.8.0</b> - <a
href="https://github.com/web3/web3.js/releases/tag/v4.8.0">2024-04-18</a></br><h2>[4.8.0]</h2>
<h3>Changed</h3>
<h4>web3-eth-abi</h4>
<ul>
<li>Dependencies updated</li>
</ul>
<h4>web3-eth-accounts</h4>
<ul>
<li>Dependencies updated</li>
</ul>
<h3>Fixed</h3>
<h4>web3-eth-contract</h4>
<ul>
<li>Fix an issue with smart contract function overloading (<a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="2204160872" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/6922"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/6922/hovercard"
href="https://github.com/web3/web3.js/pull/6922">#6922</a>)</li>
</ul>
<h4>web3-utils</h4>
<ul>
<li>fixed toHex incorrectly hexing Uint8Arrays and Buffer (<a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="2227303874" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/6957"
data-hovercard-type="issue"
data-hovercard-url="/web3/web3.js/issues/6957/hovercard"
href="https://github.com/web3/web3.js/issues/6957">#6957</a>)</li>
<li>fixed isUint8Array not returning true for Buffer (<a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="2227303874" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/6957"
data-hovercard-type="issue"
data-hovercard-url="/web3/web3.js/issues/6957/hovercard"
href="https://github.com/web3/web3.js/issues/6957">#6957</a>)</li>
</ul>
<h3>Added</h3>
<h4>web3-eth-contract</h4>
<ul>
<li>Added a console warning in case of an ambiguous call to a solidity
method with parameter overloading (<a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="2209695331"
data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/6942"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/6942/hovercard"
href="https://github.com/web3/web3.js/pull/6942">#6942</a>)</li>
<li>Added contract.deploy(...).decodeData(...) and
contract.decodeMethodData(...) that decode data based on the ABI (<a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="2222628324" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/6950"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/6950/hovercard"
href="https://github.com/web3/web3.js/pull/6950">#6950</a>)</li>
</ul>
<h4>web3-eth</h4>
<ul>
<li>method <code>getBlock</code> now includes properties of eip 4844,
4895, 4788 when returning block (<a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="2206489284"
data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/6933"
data-hovercard-type="issue"
data-hovercard-url="/web3/web3.js/issues/6933/hovercard"
href="https://github.com/web3/web3.js/issues/6933">#6933</a>)</li>
<li>update type <code>withdrawalsSchema</code>, <code>blockSchema</code>
and <code>blockHeaderSchema</code> schemas to include properties of eip
4844, 4895, 4788 (<a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="2206489284"
data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/6933"
data-hovercard-type="issue"
data-hovercard-url="/web3/web3.js/issues/6933/hovercard"
href="https://github.com/web3/web3.js/issues/6933">#6933</a>)</li>
</ul>
<h4>web3-types</h4>
<ul>
<li>Added <code>signature</code> to type
<code>AbiFunctionFragment</code> (<a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="2204160872"
data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/6922"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/6922/hovercard"
href="https://github.com/web3/web3.js/pull/6922">#6922</a>)</li>
<li>update type <code>Withdrawals</code>, <code>block</code> and
<code>BlockHeaderOutput</code> to include properties of eip 4844, 4895,
4788 (<a class="issue-link js-issue-link" data-error-text="Failed to
load title" data-id="2206489284" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/6933"
data-hovercard-type="issue"
data-hovercard-url="/web3/web3.js/issues/6933/hovercard"
href="https://github.com/web3/web3.js/issues/6933">#6933</a>)</li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/ymonye/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self" href="https://github.com/ymonye">@
ymonye</a> made their first contribution in <a class="issue-link
js-issue-link" data-error-text="Failed to load title"
data-id="2207926057" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/6937"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/6937/hovercard"
href="https://github.com/web3/web3.js/pull/6937">#6937</a></li>
</ul>
      </li>
      <li>
        <b>4.7.1-dev.ce59737.0</b> - 2024-04-07
      </li>
      <li>
        <b>4.7.1-dev.bfb4f6f.0</b> - 2024-04-08
      </li>
      <li>
        <b>4.7.1-dev.a173a8f.0</b> - 2024-03-26
      </li>
      <li>
        <b>4.7.1-dev.67d8a74.0</b> - 2024-04-04
      </li>
      <li>
        <b>4.7.1-dev.5a579fa.0</b> - 2024-04-05
      </li>
      <li>
        <b>4.7.1-dev.578ebb6.0</b> - 2024-04-15
      </li>
      <li>
        <b>4.7.1-dev.5341c3a.0</b> - 2024-03-29
      </li>
      <li>
        <b>4.7.1-dev.526c6f5.0</b> - 2024-03-27
      </li>
      <li>
        <b>4.7.1-dev.1c03666.0</b> - 2024-04-15
      </li>
      <li>
<b>4.7.0</b> - <a
href="https://github.com/web3/web3.js/releases/tag/v4.7.0">2024-03-26</a></br><h2>[4.7.0]</h2>
<h3>added</h3>
<h4>web3-eth-contract</h4>
<ul>
<li>Types <code>ContractDeploySend</code>,
<code>ContractMethodSend</code>, <code>Web3PromiEvent</code> was
exported (<a class="issue-link js-issue-link" data-error-text="Failed to
load title" data-id="2180548722" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/6883"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/6883/hovercard"
href="https://github.com/web3/web3.js/pull/6883">#6883</a>)</li>
</ul>
<h4>web3-eth-ens</h4>
<ul>
<li>Added function getText and getName in ENS and resolver classes (<a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="2201013024" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/6914"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/6914/hovercard"
href="https://github.com/web3/web3.js/pull/6914">#6914</a>)</li>
</ul>
<h3>fixed</h3>
<h4>web3-validator</h4>
<ul>
<li>Multi-dimensional arrays(with a fix length) are now handled properly
when parsing ABIs (<a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="2124422956"
data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/6798"
data-hovercard-type="issue"
data-hovercard-url="/web3/web3.js/issues/6798/hovercard"
href="https://github.com/web3/web3.js/issues/6798">#6798</a>)</li>
</ul>
<h4>web3-utils</h4>
<ul>
<li>fixed erroneous parsing of big numbers in the
<code>toNumber(...)</code> function (<a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="2179454574"
data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/6880"
data-hovercard-type="issue"
data-hovercard-url="/web3/web3.js/issues/6880/hovercard"
href="https://github.com/web3/web3.js/issues/6880">#6880</a>)</li>
</ul>
<h2>Contributors</h2>
<p>Thank you to the community who have contributed to this release
😄:<br>
<a class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/sgerodes/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://github.com/sgerodes">@ sgerodes</a> <a class="issue-link
js-issue-link" data-error-text="Failed to load title"
data-id="2180445959" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/6882"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/6882/hovercard"
href="https://github.com/web3/web3.js/pull/6882">#6882</a><br>
<a class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/EtlesL/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self" href="https://github.com/EtlesL">@
EtlesL</a> <a class="issue-link js-issue-link" data-error-text="Failed
to load title" data-id="2155539244" data-permission-text="Title is
private" data-url="https://github.com/web3/web3.js/issues/6836"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/6836/hovercard"
href="https://github.com/web3/web3.js/pull/6836">#6836</a><br>
<a class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/Jouzep/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self" href="https://github.com/Jouzep">@
Jouzep</a> <a class="issue-link js-issue-link" data-error-text="Failed
to load title" data-id="2165436485" data-permission-text="Title is
private" data-url="https://github.com/web3/web3.js/issues/6853"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/6853/hovercard"
href="https://github.com/web3/web3.js/pull/6853">#6853</a><br>
<a class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/sarthak1dev/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://github.com/sarthak1dev">@ sarthak1dev</a> <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="2173303300" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/6867"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/6867/hovercard"
href="https://github.com/web3/web3.js/pull/6867">#6867</a><br>
<a class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/edison1105/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://github.com/edison1105">@ edison1105</a> <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="2180756685" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/6885"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/6885/hovercard"
href="https://github.com/web3/web3.js/pull/6885">#6885</a><br>
<a class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/gucovip/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://github.com/gucovip">@ gucovip</a> <a class="issue-link
js-issue-link" data-error-text="Failed to load title"
data-id="2180783208" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/6886"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/6886/hovercard"
href="https://github.com/web3/web3.js/pull/6886">#6886</a><br>
<a class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/testwill/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://github.com/testwill">@ testwill</a> <a class="issue-link
js-issue-link" data-error-text="Failed to load title"
data-id="2180928823" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/6889"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/6889/hovercard"
href="https://github.com/web3/web3.js/pull/6889">#6889</a><br>
<a class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/pengqiseven/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://github.com/pengqiseven">@ pengqiseven</a> <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="2177225650" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/6878"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/6878/hovercard"
href="https://github.com/web3/web3.js/pull/6878">#6878</a></p>
      </li>
      <li>
        <b>4.6.1-dev.f943944.0</b> - 2024-03-20
      </li>
      <li>
        <b>4.6.1-dev.e383ae3.0</b> - 2024-03-08
      </li>
      <li>
        <b>4.6.1-dev.d254316.0</b> - 2024-03-11
      </li>
      <li>
        <b>4.6.1-dev.c4e039a.0</b> - 2024-03-25
      </li>
      <li>
        <b>4.6.1-dev.a83e9d5.0</b> - 2024-03-25
      </li>
      <li>
        <b>4.6.1-dev.a1f9dc4.0</b> - 2024-03-12
      </li>
      <li>
        <b>4.6.1-dev.9657b86.0</b> - 2024-03-12
      </li>
      <li>
        <b>4.6.1-dev.6d0a0ae.0</b> - 2024-03-12
      </li>
      <li>
        <b>4.6.1-dev.6187f30.0</b> - 2024-03-12
      </li>
      <li>
        <b>4.6.1-dev.43e70c1.0</b> - 2024-03-12
      </li>
      <li>
        <b>4.6.1-dev.383af39.0</b> - 2024-03-12
      </li>
      <li>
        <b>4.6.1-dev.2373e94.0</b> - 2024-03-15
      </li>
      <li>
        <b>4.6.1-dev.1f81ff0.0</b> - 2024-03-20
      </li>
      <li>
        <b>4.6.1-dev.16a2c27.0</b> - 2024-03-14
      </li>
      <li>
<b>4.6.0</b> - <a
href="https://github.com/web3/web3.js/releases/tag/v4.6.0">2024-03-08</a></br><h2>[4.6.0]</h2>
<h3>Added</h3>
<h4>web3</h4>
<ul>
<li>Added EIP-6963 utility function <code>requestEIP6963Providers</code>
for multi provider discovery</li>
</ul>
<h4>web3-eth</h4>
<ul>
<li>Added <code>eth.getMaxPriorityFeePerGas</code> method (<a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="2095852522" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/6748"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/6748/hovercard"
href="https://github.com/web3/web3.js/pull/6748">#6748</a>)</li>
</ul>
<h4>web3-eth-ens</h4>
<ul>
<li>Added function <code>setAddress</code> in ENS and Resolver classes
(<a class="issue-link js-issue-link" data-error-text="Failed to load
title" data-id="1640585775" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/5956"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/5956/hovercard"
href="https://github.com/web3/web3.js/pull/5956">#5956</a>)</li>
</ul>
<h4>web3-rpc-methods</h4>
<ul>
<li>Added <code>getMaxPriorityFeePerGas</code> method (<a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="2095852522" data-permission-text="Title is private"
data-url="https://github.com/web3/web3.js/issues/6748"
data-hovercard-type="pull_request"
data-hovercard-url="/web3/web3.js/pull/6748/hovercard"
href="https://github.com/web3/web3.js/pull/6748">#6748</a>)</li>
</ul>
<h4>web3-types</h4>
<ul>
<li>Type <code>FeeData</code> to be filled by <code>await
web3.eth.calculateFeeData()</code> to be used with EIP-1559 transactions
(<a class="issue-link js-issue-link" data-error-text="Failed to lo…
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants