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

ci(changesets): versioning packages - v0.92.0 @ master #2696

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

fuel-service-user
Copy link
Contributor

@fuel-service-user fuel-service-user commented Jul 4, 2024

Summary

In this release, we:

Breaking


Fixes

Chores


Migration Notes

Chores

#2652 - Remove InvocationResult from program package

The classes FunctionInvocationResult, InvocationCallResult, and InvocationResult 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.

// before
const callResult: FunctionInvocationResult = await contract.functions.xyz().call()

const dryRunResult: InvocationCallResult = await contract.functions.xyz().get()
const dryRunResult: InvocationCallResult = await contract.functions.xyz().dryRun()
const dryRunResult: InvocationCallResult = await contract.functions.xyz().simulate()


// after
const callResult: FunctionResult = await contract.functions.xyz().call()

const dryRunResult: DryRunResult = await contract.functions.xyz().get()
const dryRunResult: DryRunResult = await contract.functions.xyz().dryRun()
const dryRunResult: DryRunResult = await contract.functions.xyz().simulate()

@fuel-service-user fuel-service-user force-pushed the changeset-release/master branch 5 times, most recently from aa7d37d to 04ba887 Compare July 5, 2024 11:19
@fuel-service-user fuel-service-user changed the title ci(changesets): versioning packages - v0.91.1 @ master ci(changesets): versioning packages - v0.92.0 @ master Jul 5, 2024
@fuel-service-user fuel-service-user force-pushed the changeset-release/master branch 3 times, most recently from 8c1116c to b060639 Compare July 5, 2024 16:44
Copy link
Contributor

github-actions bot commented Jul 5, 2024

Coverage Report:

Lines Branches Functions Statements
79.62%(+0%) 71.4%(+0%) 77.28%(+0%) 79.71%(+0%)
Changed Files:

Coverage values did not change👌.

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.

None yet

1 participant