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

release v4.10.0 #7096

Merged
merged 3 commits into from
Jun 17, 2024
Merged

release v4.10.0 #7096

merged 3 commits into from
Jun 17, 2024

Conversation

luu-alex
Copy link
Contributor

@luu-alex luu-alex commented Jun 11, 2024

[4.10.0]

Added

web3

web3-core

web3-eth

web3-eth-ens

  • getText now supports first param Address
  • getName has optional second param checkInterfaceSupport

web3-types

web3-rpc-providers

  • RC release

Fixed

web3-eth-ens

  • getName reverse resolution

@luu-alex luu-alex changed the title version bump and changelog updates v4.10.0 Jun 11, 2024
@luu-alex luu-alex changed the title v4.10.0 release v4.10.0 Jun 11, 2024
@luu-alex luu-alex marked this pull request as ready for review June 11, 2024 17:23
Copy link

github-actions bot commented Jun 11, 2024

Bundle Stats

Hey there, this message comes from a GitHub action that helps you and reviewers to understand how these changes affect the size of this project's bundle.

As this PR is updated, I'll keep you updated on how the bundle size is impacted.

Total

Files count Total bundle size % Changed
10 630.13 kB → 630.13 kB (+1 B) +0.00%
Changeset
File Δ Size
src/version.ts 📈 +1 B (+0.54%) 186 B → 187 B
View detailed bundle breakdown

Added

No assets were added

Removed

No assets were removed

Bigger

Asset File Size % Changed
web3.min.js 610.84 kB → 610.84 kB (+1 B) +0.00%

Smaller

No assets were smaller

Unchanged

Asset File Size % Changed
../lib/commonjs/index.d.ts 8.69 kB 0%
../lib/commonjs/accounts.d.ts 3.89 kB 0%
../lib/commonjs/types.d.ts 2.67 kB 0%
../lib/commonjs/web3.d.ts 1.35 kB 0%
../lib/commonjs/web3_eip6963.d.ts 1.2 kB 0%
../lib/commonjs/abi.d.ts 999 B 0%
../lib/commonjs/eth.exports.d.ts 280 B 0%
../lib/commonjs/providers.exports.d.ts 183 B 0%
../lib/commonjs/version.d.ts 60 B 0%

Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

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

Benchmark

Benchmark suite Current: d6d4c6d Previous: 7f8e504 Ratio
processingTx 9134 ops/sec (±3.70%) 9412 ops/sec (±3.41%) 1.03
processingContractDeploy 39080 ops/sec (±8.62%) 37961 ops/sec (±7.80%) 0.97
processingContractMethodSend 19117 ops/sec (±8.81%) 19198 ops/sec (±6.60%) 1.00
processingContractMethodCall 39345 ops/sec (±6.22%) 39395 ops/sec (±5.47%) 1.00
abiEncode 44045 ops/sec (±7.18%) 44551 ops/sec (±6.60%) 1.01
abiDecode 30102 ops/sec (±9.45%) 30560 ops/sec (±7.70%) 1.02
sign 1563 ops/sec (±3.93%) 1612 ops/sec (±0.84%) 1.03
verify 381 ops/sec (±0.40%) 374 ops/sec (±0.51%) 0.98

This comment was automatically generated by workflow using github-action-benchmark.

Copy link

codecov bot commented Jun 11, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 94.75%. Comparing base (7a51c33) to head (d6d4c6d).
Report is 1 commits behind head on 4.x.

Additional details and impacted files
@@           Coverage Diff           @@
##              4.x    #7096   +/-   ##
=======================================
  Coverage   94.75%   94.75%           
=======================================
  Files         215      215           
  Lines        8334     8334           
  Branches     2296     2296           
=======================================
  Hits         7897     7897           
  Misses        437      437           
Flag Coverage Δ
UnitTests 94.75% <100.00%> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

Components Coverage Δ
web3 ∅ <ø> (∅)
web3-core ∅ <ø> (∅)
web3-errors ∅ <ø> (∅)
web3-eth ∅ <ø> (∅)
web3-eth-abi ∅ <ø> (∅)
web3-eth-accounts ∅ <ø> (∅)
web3-eth-contract ∅ <ø> (∅)
web3-eth-ens ∅ <ø> (∅)
web3-eth-iban ∅ <ø> (∅)
web3-eth-personal ∅ <ø> (∅)
web3-net ∅ <ø> (∅)
web3-providers-http ∅ <ø> (∅)
web3-providers-ipc ∅ <ø> (∅)
web3-providers-ws ∅ <ø> (∅)
web3-rpc-methods ∅ <ø> (∅)
web3-utils ∅ <ø> (∅)
web3-validator ∅ <ø> (∅)

@@ -1,6 +1,6 @@
{
"name": "web3-rpc-providers",
"version": "0.1.0",
"version": "1.0.0-alpha.0",
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
"version": "1.0.0-alpha.0",
"version": "1.0.0-rc.0",

"web3-eth-iban": "^4.0.7",
"web3-eth-personal": "^4.0.8",
"web3-net": "^4.1.0",
"web3-providers-http": "^4.1.0",
"web3-providers-ws": "^4.0.7",
"web3-rpc-methods": "^1.3.0",
"web3-types": "^1.6.0",
"web3-rpc-providers": "^1.0.0-alpha.0",
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
"web3-rpc-providers": "^1.0.0-alpha.0",
"web3-rpc-providers": "^1.0.0-rc.0",

Copy link
Contributor

@jdevcs jdevcs left a comment

Choose a reason for hiding this comment

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

lgtm, just need rpc providers version to be rc @luu-alex

Copy link

cloudflare-workers-and-pages bot commented Jun 12, 2024

Deploying web3-js-docs with  Cloudflare Pages  Cloudflare Pages

Latest commit: d6d4c6d
Status: ✅  Deploy successful!
Preview URL: https://81740d28.web3-js-docs.pages.dev
Branch Preview URL: https://head.web3-js-docs.pages.dev

View logs

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.

3 participants