-
Notifications
You must be signed in to change notification settings - Fork 2.8k
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
Weekly cargo update
#2197
Merged
Merged
Weekly cargo update
#2197
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
info: syncing channel updates for '1.79.0-x86_64-unknown-linux-gnu' info: latest update on 2024-06-13, rust version 1.79.0 (129f3b996 2024-06-10) info: downloading component 'rust-std' for 'wasm32-unknown-unknown' info: installing component 'rust-std' for 'wasm32-unknown-unknown' �[1m�[32m Locking�[0m 28 packages to latest compatible versions �[1m�[32m Updating�[0m addr2line v0.22.0 -> v0.24.1 �[1m�[31m Removing�[0m adler v1.0.2 �[1m�[32m Updating�[0m anyhow v1.0.87 -> v1.0.88 �[1m�[32m Updating�[0m arrayref v0.3.8 -> v0.3.9 �[1m�[32m Updating�[0m aws-config v1.5.5 -> v1.5.6 �[1m�[32m Updating�[0m aws-runtime v1.4.2 -> v1.4.3 �[1m�[32m Updating�[0m aws-sdk-kms v1.42.0 -> v1.43.0 �[1m�[32m Updating�[0m aws-sdk-sso v1.41.0 -> v1.42.0 �[1m�[32m Updating�[0m aws-sdk-ssooidc v1.42.0 -> v1.43.0 �[1m�[32m Updating�[0m aws-sdk-sts v1.41.0 -> v1.42.0 �[1m�[32m Updating�[0m aws-sigv4 v1.2.3 -> v1.2.4 �[1m�[32m Updating�[0m aws-smithy-http v0.60.10 -> v0.60.11 �[1m�[32m Updating�[0m aws-smithy-types v1.2.4 -> v1.2.6 �[1m�[32m Updating�[0m aws-smithy-xml v0.60.8 -> v0.60.9 �[1m�[32m Updating�[0m backtrace v0.3.73 -> v0.3.74 �[1m�[32m Updating�[0m enum-as-inner v0.6.0 -> v0.6.1 �[1m�[32m Updating�[0m gimli v0.29.0 -> v0.31.0 �[1m�[32m Updating�[0m lz4-sys v1.10.0 -> v1.11.0 �[1m�[32m Updating�[0m memmap2 v0.9.4 -> v0.9.5 �[1m�[31m Removing�[0m miniz_oxide v0.7.4 �[1m�[32m Updating�[0m once_cell v1.19.0 -> v1.20.0 �[1m�[32m Updating�[0m plotters v0.3.6 -> v0.3.7 �[1m�[32m Updating�[0m plotters-backend v0.3.6 -> v0.3.7 �[1m�[32m Updating�[0m plotters-svg v0.3.6 -> v0.3.7 �[1m�[32m Updating�[0m redox_syscall v0.5.3 -> v0.5.4 �[1m�[32m Updating�[0m rustix v0.38.36 -> v0.38.37 �[1m�[32m Updating�[0m rustls v0.23.12 -> v0.23.13 �[1m�[32m Updating�[0m rustls-webpki v0.102.7 -> v0.102.8 �[1m�[32m Updating�[0m unicode-ident v1.0.12 -> v1.0.13 �[1m�[32m Updating�[0m xml-rs v0.8.21 -> v0.8.22 �[1m�[36mnote�[0m�[1m:�[0m pass `--verbose` to see 262 unchanged dependencies behind latest
github-actions
bot
added
the
no changelog
Skip the CI check of the changelog modification
label
Sep 15, 2024
github-actions
bot
requested review from
xgreenx,
Dentosal and
MitchTurner
as code owners
September 15, 2024 00:19
xgreenx
approved these changes
Sep 15, 2024
xgreenx
added
no changelog
Skip the CI check of the changelog modification
and removed
no changelog
Skip the CI check of the changelog modification
labels
Sep 15, 2024
MitchTurner
approved these changes
Sep 15, 2024
Merged
xgreenx
added a commit
that referenced
this pull request
Sep 18, 2024
## Version v0.36.0 ### Added - [2135](#2135): Added metrics logging for number of blocks served over the p2p req/res protocol. - [2151](#2151): Added limitations on gas used during dry_run in API. - [2188](#2188): Added the new variant `V2` for the `ConsensusParameters` which contains the new `block_transaction_size_limit` parameter. - [2163](#2163): Added runnable task for fetching block committer data. - [2204](#2204): Added `dnsaddr` resolution for TLD without suffixes. ### Changed #### Breaking - [2199](#2199): Applying several breaking changes to the WASM interface from backlog: - Get the module to execute WASM byte code from the storage first, an fallback to the built-in version in the case of the `FUEL_ALWAYS_USE_WASM`. - Added `host_v1` with a new `peek_next_txs_size` method, that accepts `tx_number_limit` and `size_limit`. - Added new variant of the return type to pass the validation result. It removes block serialization and deserialization and should improve performance. - Added a V1 execution result type that uses `JSONError` instead of postcard serialized error. It adds flexibility of how variants of the error can be managed. More information about it in FuelLabs/fuel-vm#797. The change also moves `TooManyOutputs` error to the top. It shows that `JSONError` works as expected. - [2145](#2145): feat: Introduce time port in PoA service. - [2155](#2155): Added trait declaration for block committer data - [2142](#2142): Added benchmarks for varied forms of db lookups to assist in optimizations. - [2158](#2158): Log the public address of the signing key, if it is specified - [2188](#2188): Upgraded the `fuel-vm` to `0.57.0`. More information in the [release](https://github.com/FuelLabs/fuel-vm/releases/tag/v0.57.0). ## What's Changed * chore(p2p_service): add metrics for number of blocks requested over p2p req/res protocol by @rymnc in #2135 * Weekly `cargo update` by @github-actions in #2149 * Debug V1 algorightm and use more realistic values in gas price analysis by @MitchTurner in #2129 * feat(gas_price_service): include trait declaration for block committer data by @rymnc in #2155 * Convert gas price analysis tool to CLI by @MitchTurner in #2156 * chore: add benchmarks for varied forms of lookups by @rymnc in #2142 * Add label nochangelog on weekly cargo update by @AurelienFT in #2152 * Log consensus-key signer address if specified by @acerone85 in #2158 * chore(rocks_db): move ShallowTempDir to benches crate by @rymnc in #2168 * chore(benches): conditional dropping of databases in benchmarks by @rymnc in #2170 * feat: Introduce time port in PoA service by @netrome in #2145 * Get DA costs from predefined data by @MitchTurner in #2157 * chore(shallow_temp_dir): panic if not panicking by @rymnc in #2172 * chore: Add initial CODEOWNERS file by @netrome in #2179 * Weekly `cargo update` by @github-actions in #2177 * fix(db_lookup_times): rework core logic of benchmark by @rymnc in #2159 * Add verification on transaction dry_run that they don't spend more than block gas limit by @AurelienFT in #2151 * bug: fix algorithm overflow issues by @MitchTurner in #2173 * feat(gas_price_service): create runnable task for expensive background polling for da metadata by @rymnc in #2163 * Weekly `cargo update` by @github-actions in #2197 * Fix bug with gas price factor in V1 algorithm by @MitchTurner in #2201 * Applying several breaking changes to the WASM interface from backlog by @xgreenx in #2199 * chore(p2p): dnsaddr recursive resolution by @rymnc in #2204 ## New Contributors * @acerone85 made their first contribution in #2158 **Full Changelog**: v0.35.0...v0.36.0
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Automation to keep dependencies in
Cargo.lock
current.The following is the output from
cargo update
: