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(release): v0.99.0 @ master #3581

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

fuel-service-user
Copy link
Contributor

@fuel-service-user fuel-service-user commented Jan 13, 2025

Summary

In this release, we:

  • Allowed passing gasPrice to getTransactionCost functions to reduce possible network calls
  • Introduced bytecode helpers to compute the Bytecode ID and Legacy Blob ID
  • Added forc tests to the template
  • Updated how we calculate Blob ID so that it mirrors Bytecode ID
  • Added methods to allow querying the Explorer Asset API
  • Enable fuels callbacks to be asynchronous
  • Fixed incorrect offset usage for Interface.decodeArguments() function
  • Migrated CDN host from cdn.fuel.network to assets.fuel.network
  • Fixed a bug where fuels dev would hang after a Sway compilation error
  • Embedding node incompatibility warnings in GQL errors
  • Removed pageInfo from provider.operations.getBalances response
  • The Address constructor now accepts a range of different inputs
  • Upgraded forc to 0.66.6
  • Upgraded fuel-core to 0.40.4

Breaking

  • Chores

Features

Fixes

Chores


Migration Notes

Chores

#3652 - Remove pageInfo from getBalances GraphQl operations

The pageInfo field has been removed from the response of the provider.operations.getBalances query.

// before
const { balances, pageInfo } = await provider.operations.getBalances({
  first: 100,
  filter: { owner: wallet.address.toB256() },
});
// after
const { balances } = await provider.operations.getBalances({
  first: 100,
  filter: { owner: wallet.address.toB256() },
});

The getBalances method of the Provider class remains unchanged, as it never returned pageInfo:

// not affected
const { balances } = await provider.getBalances();

Copy link

vercel bot commented Jan 13, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
fuels-template ✅ Ready (Inspect) Visit Preview 💬 Add feedback Feb 3, 2025 7:58pm
ts-docs ✅ Ready (Inspect) Visit Preview 💬 Add feedback Feb 3, 2025 7:58pm
ts-docs-api ✅ Ready (Inspect) Visit Preview 💬 Add feedback Feb 3, 2025 7:58pm

@github-actions github-actions bot force-pushed the changeset-release/master branch from 34bfb46 to 37b0f40 Compare January 29, 2025 19:05
@github-actions github-actions bot changed the title ci(release): v0.98.1 @ master ci(release): v0.99.0 @ master Jan 31, 2025
@github-actions github-actions bot force-pushed the changeset-release/master branch from 419fe9e to bd1ecac Compare January 31, 2025 11:54
@github-actions github-actions bot force-pushed the changeset-release/master branch from bd1ecac to ea18411 Compare January 31, 2025 15:46
@github-actions github-actions bot force-pushed the changeset-release/master branch from ea18411 to 8a98903 Compare February 3, 2025 14:20
@github-actions github-actions bot force-pushed the changeset-release/master branch from 8a98903 to 251ed66 Compare February 3, 2025 15:14
Torres-ssf
Torres-ssf previously approved these changes Feb 3, 2025
Copy link
Contributor

github-actions bot commented Feb 3, 2025

Coverage Report:

Lines Branches Functions Statements
77.21%(+0.14%) 70.76%(+0.04%) 75.33%(+0.16%) 77.21%(+0.14%)
Changed Files:
Ok File (✨=New File) Lines Branches Functions Statements
🔴 ✨ packages/account/src/assets/asset-api.ts 100%
(+100%)
85.71%
(+85.71%)
100%
(+100%)
100%
(+100%)
🔴 packages/account/src/utils/predicate-script-loader-instructions.ts 36.17%
(+23.35%)
0%
(+0%)
44.44%
(+44.44%)
34.69%
(+22.5%)

@arboleya arboleya dismissed Torres-ssf’s stale review February 3, 2025 19:46

Not so fast. :)

@arboleya arboleya requested a review from Torres-ssf February 3, 2025 19:47
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.

2 participants