ci(changesets): versioning packages - v0.92.0
@ master
#2696
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.
Summary
In this release, we:
call
method a non-blocking calldeployContract
method a non-blocking callProvider
andAccount
classesfuel-core
to v0.31.0sway
/forc
to v0.61.2Breaking
deployContract
a non-blocking call, by @Torres-ssfAccount
methods, by @Torres-ssflaunchNode.cleanup
not killing node in last test of test group, by @nedsalkInvocationResult
fromprogram
package, by @Torres-ssfFeatures
Link
component, by @petertonysmith94Fixes
launchTestNode
interfaces, by @nedsalkChores
fuel-core
to0.31.0
, by @arboleyaJsonAbi
interface fromabi-coder
inabi-typegen
, by @nedsalkforc
to0.61.2
, by @arboleyaMigration Notes
Features
#2692 - Implement non-blocking contract call
The
call
method in theBaseInvocationScope
class no longer waits for transaction execution, making it non-blocking. This change affects how transaction responses are handled.#2597 - Made
deployContract
a non-blocking callThe
deployContract
method no longer returns the contract instance directly. Instead, it returns an object containing thetransactionId
, thecontractId
, and awaitForResult
function.#2408 - Implement pagination for
Account
methodsFixes
#2718 -
launchNode.cleanup
not killing node in last test of test groupThe
killNode
andKillNodeParams
functionality has been internalized and the method and interface have been deleted so they're no longer exported. It's marked as a breaking change for pedantic reasons and there shouldn't really be any affected users given that they kill nodes viacleanup
which is unchanged, so no migration notes are necessary.Chores
#2652 - Remove
InvocationResult
fromprogram
packageThe classes
FunctionInvocationResult
,InvocationCallResult
, andInvocationResult
have been removed. This change will not affect most users as the response for a contract call or script call remains the same; only the type name has changed.