-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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 #1833
Merged
Merged
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 and
nedsalk
as code owners
March 5, 2024 15:24
github-actions
bot
force-pushed
the
changeset-release/master
branch
5 times, most recently
from
March 7, 2024 10:30
c0bb1f7
to
654f8d0
Compare
github-actions
bot
force-pushed
the
changeset-release/master
branch
3 times, most recently
from
March 8, 2024 18:37
fbeea2d
to
1df4163
Compare
fuel-service-user
force-pushed
the
changeset-release/master
branch
10 times, most recently
from
March 14, 2024 05:30
b31484f
to
2daaa17
Compare
arboleya
previously approved these changes
Mar 14, 2024
danielbate
previously approved these changes
Mar 14, 2024
Torres-ssf
previously approved these changes
Mar 14, 2024
Dhaiwat10
previously approved these changes
Mar 14, 2024
petertonysmith94
previously approved these changes
Mar 14, 2024
fuel-service-user
dismissed stale reviews from petertonysmith94, Dhaiwat10, Torres-ssf, danielbate, and arboleya
via
March 14, 2024 14:57
d78fe98
fuel-service-user
force-pushed
the
changeset-release/master
branch
from
March 14, 2024 14:57
2daaa17
to
d78fe98
Compare
arboleya
requested review from
Dhaiwat10,
Torres-ssf,
petertonysmith94,
arboleya and
danielbate
March 14, 2024 15:04
Torres-ssf
approved these changes
Mar 14, 2024
arboleya
approved these changes
Mar 14, 2024
Coverage Report:
Changed Files:
|
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.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to master, this PR will be updated.
Releases
@fuel-ts/account@0.77.0
Minor Changes
Fuel
toNetworkFuel
Ethereum
toNetworkEthereum
Predicate
constructorThis is a BREAKING change since the API for the
Predicate
constructor has changed:Predicate
constructor now accepts an object with the following properties:bytecode
: The bytecode of the predicate.abi
: The JSON ABI of the predicate (optional).provider
: The provider for interacting with the predicate.inputData
: The predicate input data (optional).configurableConstants
: The configurable constants for the predicate (optional).This change was made with readability and ease-of-use in mind, since having too many arguments in a 'flat' constructor can be confusing. Consider a scenario where you want to create a Predicate with configurables but no input data:
undefined
as theinputData
argument, which is not ideal. By using the object-based constructor, you can now pass an object with the properties you want to set, and the constructor will handle the rest:setData
method has been removed. If you want to pass in the predicate data after instantiating thePredicate
or if you want to use a different data than the one passed in the constructor, you will have to create a newPredicate
instance, by @Dhaiwat10 (See #1826)requestMiddleware
toProviderOptions
as a way to allow the user the modification of each fetch call's request, by @nedsalk (See #1822)Patch Changes
sha256
,keccak
andscrypt
to@noble/hashes
, by @danielbate (See #1786)SqueezedOut
status update when callingsubmitAndAwait
subscription atProvider.sendTransaction
SqueezedOut
status update when calling statusChange subscrition atTransactionResponse.waitForResult
, by @Torres-ssf (See #1829)create-fuels@0.77.0
Minor Changes
create-fuels
template app now provides a local faucet and uses a local burner wallet to execute transactions.Previously, the app was using a hardcoded key to sign all transactions. This key is now being used as the key for the faucet, and the burner wallet is being used to execute transactions.
For convenience, the burner wallet is persisted in local storage so that it can be used across multiple sessions.
The burner wallet is also topped up with 10,000 coins on first load.
This is an important step towards adding support for the Fuel Wallet SDK, which will allow users to sign transactions using their own wallets, by @Dhaiwat10 (See #1864)
@fuel-ts/abi-coder@0.77.0
Patch Changes
sha256
,keccak
andscrypt
to@noble/hashes
, by @danielbate (See #1786)@fuel-ts/abi-typegen@0.77.0
Patch Changes
@fuel-ts/address@0.77.0
Patch Changes
sha256
,keccak
andscrypt
to@noble/hashes
, by @danielbate (See #1786)@fuel-ts/contract@0.77.0
Patch Changes
sha256
,keccak
andscrypt
to@noble/hashes
, by @danielbate (See #1786)@fuel-ts/crypto@0.77.0
Patch Changes
sha256
,keccak
andscrypt
to@noble/hashes
, by @danielbate (See #1786)@fuel-ts/errors@0.77.0
Patch Changes
sha256
,keccak
andscrypt
to@noble/hashes
, by @danielbate (See #1786)SqueezedOut
status update when callingsubmitAndAwait
subscription atProvider.sendTransaction
SqueezedOut
status update when calling statusChange subscrition atTransactionResponse.waitForResult
, by @Torres-ssf (See #1829)fuels@0.77.0
Patch Changes
fuels
cli deployment fails due to unavailable node, by @nedsalk (See #1854)@fuel-ts/hasher@0.77.0
Patch Changes
sha256
,keccak
andscrypt
to@noble/hashes
, by @danielbate (See #1786)@fuel-ts/merkle@0.77.0
Patch Changes
sha256
,keccak
andscrypt
to@noble/hashes
, by @danielbate (See #1786)@fuel-ts/program@0.77.0
Patch Changes
get
method onBaseInvocationScope
, by @Torres-ssf (See #1860)@fuel-ts/transactions@0.77.0
Patch Changes
sha256
,keccak
andscrypt
to@noble/hashes
, by @danielbate (See #1786)@fuel-ts/versions@0.77.0
Patch Changes
fuel-core
(e.g. nightly builds), by @nedsalk (See #1855)@fuel-ts/forc@0.77.0
@fuel-ts/fuel-core@0.77.0
@fuel-ts/interfaces@0.77.0
@fuel-ts/math@0.77.0
@fuel-ts/script@0.77.0
@fuel-ts/utils@0.77.0
demo-wallet-sdk-react@0.1.1