-
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
Release v0.27.0 #1912
Release v0.27.0 #1912
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just one little question, but not blocking. LGTM.
// We can use the offline mode because it was already downloaded | ||
// by the `build.rs` dependencies requirements. | ||
"--offline".to_string(), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did we just not need this before? It seems like the wasm_executor_path
is the "offline" path. Is that right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It was not needed, I just tried to cover all the cases of how this crate could be used. I assumed that because we will build fuel-core-wasm-executor
as a dependency, it would pull all required crates. But it is not true because dependency may have different(bumped) dependencies, while to build a WASM bytecode, we are using --locked.
Oh. Looks like you need to bump another location, maybe? |
Version v0.27.0
Added
Executor::VERSION
on each release.Changed
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.FuelBlockMerkleData
andFuelBlockMerkleMetadata
in the off-chain table. These tables are checked when querying message proofs.Block
in validation codeCROO
opcode. Also include consensus parameters in bench output.discovery_works
test.version
field to theBlock
andBlockHeader
GraphQL entities. Added correspondingversion
field to theBlock
andBlockHeader
client types infuel-core-client
.ExecutionKind
andExecutionType
, removethread_block_transaction
concept, removePartialBlockComponent
type, refactor awayinner
functions.fuel-core run
no longer has--chain
as an option. It has been replaced by--snapshot
.Breaking
fuel-vm
upgraded to0.50.0
. More information in the changelog.What's Changed
croo
opcode benchmark to depend on the contract size by @xgreenx in Updatedcroo
opcode benchmark to depend on the contract size #1876discovery_works
test by @xgreenx in Return the old behaviour for thediscovery_works
test #1879cargo update
by @github-actions in Weeklycargo update
#1880Block
in validation by @MitchTurner in Use ref instead of ownedBlock
in validation #1886cargo update
by @github-actions in Weeklycargo update
#1893cargo update
by @github-actions in Weeklycargo update
#1903Executor::VERSION
on each release by @xgreenx in Enforce increasing of theExecutor::VERSION
on each release #1898fuel-vm
to0.50.0
by @xgreenx in Bumped the version of thefuel-vm
to0.50.0
#1910New Contributors
Full Changelog: v0.26.0...v0.27.0