-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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(release): v0.97.0
@ master
#3347
Open
fuel-service-user
wants to merge
2
commits into
master
Choose a base branch
from
changeset-release/master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
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
fuel-service-user
requested review from
digorithm,
arboleya,
Torres-ssf,
Dhaiwat10,
danielbate,
nedsalk,
petertonysmith94 and
maschad
as code owners
October 21, 2024 12:09
The latest updates on your projects. Learn more about Vercel for Git ↗︎
1 Skipped Deployment
|
CodSpeed Performance ReportMerging #3347 will not alter performanceComparing Summary
|
fuel-service-user
force-pushed
the
changeset-release/master
branch
from
October 21, 2024 12:57
3d9cacc
to
9ff8ec2
Compare
fuel-service-user
force-pushed
the
changeset-release/master
branch
from
October 21, 2024 14:08
9ff8ec2
to
019aea3
Compare
fuel-service-user
force-pushed
the
changeset-release/master
branch
from
October 21, 2024 14:45
019aea3
to
4d01273
Compare
fuel-service-user
force-pushed
the
changeset-release/master
branch
from
October 21, 2024 15:09
4d01273
to
99917d3
Compare
fuel-service-user
force-pushed
the
changeset-release/master
branch
from
October 21, 2024 16:01
99917d3
to
09e040f
Compare
fuel-service-user
force-pushed
the
changeset-release/master
branch
from
October 21, 2024 16:45
09e040f
to
6b169e3
Compare
fuel-service-user
force-pushed
the
changeset-release/master
branch
from
November 13, 2024 03:16
4ea094b
to
3551f15
Compare
fuel-service-user
force-pushed
the
changeset-release/master
branch
from
November 13, 2024 05:09
3551f15
to
6ebfcaf
Compare
fuel-service-user
force-pushed
the
changeset-release/master
branch
from
November 13, 2024 06:57
6ebfcaf
to
cc44481
Compare
fuel-service-user
force-pushed
the
changeset-release/master
branch
from
November 13, 2024 07:52
cc44481
to
0345bb3
Compare
fuel-service-user
force-pushed
the
changeset-release/master
branch
from
November 13, 2024 11:38
0345bb3
to
64d052c
Compare
fuel-service-user
force-pushed
the
changeset-release/master
branch
from
November 13, 2024 12:46
64d052c
to
30a7dd8
Compare
fuel-service-user
force-pushed
the
changeset-release/master
branch
from
November 14, 2024 03:24
30a7dd8
to
9093bb4
Compare
fuel-service-user
force-pushed
the
changeset-release/master
branch
from
November 14, 2024 03:52
9093bb4
to
814a1cd
Compare
fuel-service-user
force-pushed
the
changeset-release/master
branch
from
November 14, 2024 12:06
814a1cd
to
3fbc91a
Compare
Coverage Report:
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
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:
getMessageByNonce
provider endpointfuel-core
tov0.40.0
Provider.getTransactions
forc
tov0.66.4
blockId
property from responses when listing transactionsforc
tov0.66.2
getCoins
provider endpointBreaking
onDeploy
fuels config supports all Sway program types, by @YaTut1901abi
inPredicate
constructor, by @nedsalkgetTransactions
query, by @Torres-ssfblockId
in transaction list responses, by @Torres-ssfFeatures
fuels
version, by @Dhaiwat10Fixes
create-fuels
deps forfuels-ts
, by @petertonysmith94Chores
fuel-core
to0.40.0
, by @arboleyanode_modules
in template tests, by @danielbateforc
to0.66.4
, by @arboleyaforc
to0.66.2
, by @petertonysmith94Docs
provider
docs snippets, by @petertonysmith94Migration Notes
Features
#3383 -
onDeploy
fuels config supports all Sway program typesonDeploy
callback method for thefuels.config.ts
. Instead of just emitting the deployed contracts (as an array), it will now emit an object withcontracts
,predicates
andscripts
.Fixes
#3298 - Remove unnecessary nonce from message gql queries
nonce
property fromProvider.operations.getMessageByNonce()
. This can still be retrieved byProvider.getMessageByNonce()
.Chores
#3389 - Refactor predicate and script deployment
ContractFactory.deployAsBlobTxForScript
has been removed in favor ofPredicate.deploy
andScript.deploy
:#3387 - Mandate
abi
inPredicate
constructorInstantiating a
Predicate
now requires providing itsabi
. If you want to use thePredicate
as anAccount
, please instantiate it via theAccount
class#3336 - Optimize
getTransactions
queryThe response format for
Provider.getTransactions
remains the same. However, the response format for the queryProvider.operations.getTransactions
has been modified.#3379 - Remove
blockId
in transaction list responsesThe
blockId
property has been removed from the following GraphQL queries used to list past transactions:If the
blockId
is required for a given transaction, it needs to be queried separately withgetTransactionSummary
helper:Note: The
blockId
is still available in the result for a submitted transaction.#3301 - Optimize coin gql queries
The
Provider.operations.getCoins()
andProvider.operations.getCoinsToSpend
function no longer return the owner. These methods shouldn't be called directly but are used internally to formulate responses from the SDK.Removed the property
owner
from theProvider.operations.getCoinsToSpend()
function. Suggest to use the owner from the input parameters.