-
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
#1893
Merged
Merged
Weekly cargo update
#1893
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
�[1m�[32m Updating�[0m anyhow v1.0.82 -> v1.0.83 �[1m�[32m Updating�[0m cc v1.0.96 -> v1.0.97 �[1m�[32m Updating�[0m ena v0.14.2 -> v0.14.3 �[1m�[32m Updating�[0m errno v0.3.8 -> v0.3.9 �[1m�[32m Updating�[0m getrandom v0.2.14 -> v0.2.15 �[1m�[32m Updating�[0m num v0.4.2 -> v0.4.3 �[1m�[32m Updating�[0m num-bigint v0.4.4 -> v0.4.5 �[1m�[32m Updating�[0m num-complex v0.4.5 -> v0.4.6 �[1m�[32m Updating�[0m num-rational v0.4.1 -> v0.4.2 �[1m�[32m Updating�[0m parity-scale-codec v3.6.9 -> v3.6.12 �[1m�[32m Updating�[0m parity-scale-codec-derive v3.6.9 -> v3.6.12 �[1m�[32m Updating�[0m paste v1.0.14 -> v1.0.15 �[1m�[32m Updating�[0m petgraph v0.6.4 -> v0.6.5 �[1m�[32m Updating�[0m prettyplease v0.2.19 -> v0.2.20 �[1m�[31m Removing�[0m proc-macro-crate v2.0.0 �[1m�[32m Updating�[0m proc-macro2 v1.0.81 -> v1.0.82 �[1m�[32m Updating�[0m rustc-demangle v0.1.23 -> v0.1.24 �[1m�[32m Updating�[0m rustversion v1.0.15 -> v1.0.16 �[1m�[32m Updating�[0m ryu v1.0.17 -> v1.0.18 �[1m�[32m Updating�[0m scale-info v2.11.2 -> v2.11.3 �[1m�[32m Updating�[0m scale-info-derive v2.11.2 -> v2.11.3 �[1m�[32m Updating�[0m security-framework v2.10.0 -> v2.11.0 �[1m�[32m Updating�[0m security-framework-sys v2.10.0 -> v2.11.0 �[1m�[32m Updating�[0m semver v1.0.22 -> v1.0.23 �[1m�[32m Updating�[0m serde v1.0.200 -> v1.0.201 �[1m�[32m Updating�[0m serde_derive v1.0.200 -> v1.0.201 �[1m�[32m Updating�[0m serde_json v1.0.116 -> v1.0.117 �[1m�[32m Updating�[0m syn v2.0.60 -> v2.0.63 �[1m�[32m Updating�[0m thiserror v1.0.59 -> v1.0.60 �[1m�[32m Updating�[0m thiserror-impl v1.0.59 -> v1.0.60 �[1m�[31m Removing�[0m toml_edit v0.20.7 �[1m�[32m Updating�[0m winnow v0.6.7 -> v0.6.8 �[1m�[32m Updating�[0m zerocopy v0.7.33 -> v0.7.34 �[1m�[32m Updating�[0m zerocopy-derive v0.7.33 -> v0.7.34
xgreenx
approved these changes
May 13, 2024
Merged
xgreenx
added a commit
that referenced
this pull request
May 29, 2024
## Version v0.27.0 ### Added - [#1898](#1898): Enforce increasing of the `Executor::VERSION` on each release. ### Changed - [#1906](#1906): Makes `cli::snapshot::Command` members public such that clients can create and execute snapshot commands programmatically. This enables snapshot execution in external programs, such as the regenesis test suite. - [#1891](#1891): Regenesis now preserves `FuelBlockMerkleData` and `FuelBlockMerkleMetadata` in the off-chain table. These tables are checked when querying message proofs. - [#1886](#1886): Use ref to `Block` in validation code - [#1876](#1876): Updated benchmark to include the worst scenario for `CROO` opcode. Also include consensus parameters in bench output. - [#1879](#1879): Return the old behaviour for the `discovery_works` test. - [#1848](#1848): Added `version` field to the `Block` and `BlockHeader` GraphQL entities. Added corresponding `version` field to the `Block` and `BlockHeader` client types in `fuel-core-client`. - [#1873](#1873): Separate dry runs from block production in executor code, remove `ExecutionKind` and `ExecutionType`, remove `thread_block_transaction` concept, remove `PartialBlockComponent` type, refactor away `inner` functions. - [#1900](#1900): Update the root README as `fuel-core run` no longer has `--chain` as an option. It has been replaced by `--snapshot`. #### Breaking - [#1894](#1894): Use testnet configuration for local testnet. - [#1894](#1894): Removed support for helm chart. - [#1910](#1910): `fuel-vm` upgraded to `0.50.0`. More information in the [changelog](https://github.com/FuelLabs/fuel-vm/releases/tag/v0.50.0). ## What's Changed * feat: Support block and header versions gql by @bvrooman in #1848 * Updated `croo` opcode benchmark to depend on the contract size by @xgreenx in #1876 * Return the old behaviour for the `discovery_works` test by @xgreenx in #1879 * Weekly `cargo update` by @github-actions in #1880 * Separate production from dry runs in executor & Cleanup all execution paths :) by @MitchTurner in #1873 * Use ref instead of owned `Block` in validation by @MitchTurner in #1886 * Weekly `cargo update` by @github-actions in #1893 * ci: fix typos programmatically by @sdankel in #1890 * feat: Preserve message proofs post-regenesis by @bvrooman in #1891 * chore: update README fuel-core run options by @K1-R1 in #1900 * Weekly `cargo update` by @github-actions in #1903 * chore: Make snapshot command members pub accessible by @bvrooman in #1906 * Use testnet configuration for local testnet by @xgreenx in #1894 * Enforce increasing of the `Executor::VERSION` on each release by @xgreenx in #1898 * Bumped the version of the `fuel-vm` to `0.50.0` by @xgreenx in #1910 ## New Contributors * @K1-R1 made their first contribution in #1900 **Full Changelog**: v0.26.0...v0.27.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
: