Skip to content

Commit

Permalink
ci(changesets): versioning packages (#4)
Browse files Browse the repository at this point in the history
This PR was opened by the [Changesets
release](https://github.com/changesets/action) GitHub action. When
you're ready to do a release, you can merge this and publish to npm
yourself or [setup this action to publish
automatically](https://github.com/changesets/action#with-publishing). 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
## @fuels/playwright-utils@0.48.0



## fuels-wallet@0.48.0

### Major Changes

- [https://github.com/FuelLabs/fuels-wallet/pull/1784](https://github.com/FuelLabs/fuels-wallet/pull/1784)
[`b3aa7cec`](FuelLabs@b3aa7ce)
Thanks [@Dhanraj30](https://github.com/Dhanraj30)! - chore: make address
checksummed on Receive Page

### Minor Changes

- [https://github.com/FuelLabs/fuels-wallet/pull/1810](https://github.com/FuelLabs/fuels-wallet/pull/1810)
[`5ab72e4f`](FuelLabs@5ab72e4)
Thanks [@arthurgeron](https://github.com/arthurgeron)! - feat: prevent
users from importing public keys as private

### Patch Changes

- [https://github.com/FuelLabs/fuels-wallet/pull/1788](https://github.com/FuelLabs/fuels-wallet/pull/1788)
[`fd1e342a`](FuelLabs@fd1e342)
Thanks [@arthurgeron](https://github.com/arthurgeron)! - feat: show
token value converted to USD

- [https://github.com/FuelLabs/fuels-wallet/pull/1814](https://github.com/FuelLabs/fuels-wallet/pull/1814)
[`44cb7823`](FuelLabs@44cb782)
Thanks [@nelitow](https://github.com/nelitow)! - Audit package updates

- [https://github.com/FuelLabs/fuels-wallet/pull/1813](https://github.com/FuelLabs/fuels-wallet/pull/1813)
[`1bca7e3c`](FuelLabs@1bca7e3)
Thanks [@arthurgeron](https://github.com/arthurgeron)! - feat: use adf
version of pnpm

- [https://github.com/FuelLabs/fuels-wallet/pull/1802](https://github.com/FuelLabs/fuels-wallet/pull/1802)
[`37a5c22b`](FuelLabs@37a5c22)
Thanks [@LuizAsFight](https://github.com/LuizAsFight)! - chore: upgrade
checkout action to v4 + remove chainInfo machine

- [https://github.com/FuelLabs/fuels-wallet/pull/1805](https://github.com/FuelLabs/fuels-wallet/pull/1805)
[`f653d59f`](FuelLabs@f653d59)
Thanks [@arthurgeron](https://github.com/arthurgeron)! - fix: jest unit
tests

-   Updated dependencies \[]:
    -   @fuel-wallet/connections@0.48.0
    -   @fuels/playwright-utils@0.48.0

## @fuel-wallet/types@0.48.0

### Patch Changes

- [https://github.com/FuelLabs/fuels-wallet/pull/1788](https://github.com/FuelLabs/fuels-wallet/pull/1788)
[`fd1e342a`](FuelLabs@fd1e342)
Thanks [@arthurgeron](https://github.com/arthurgeron)! - feat: show
token value converted to USD

## @fuel-wallet/connections@0.48.0

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: LuizAsFight <felipebolsonigomes@gmail.com>
Co-authored-by: Luiz Gomes <8636507+LuizAsFight@users.noreply.github.com>
  • Loading branch information
3 people authored Feb 12, 2025
2 parents 6c09341 + db4e2a8 commit ee415e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-npm-changeset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ jobs:
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
if [[ "${{ github.event.head_commit.message }}" == "Merge pull request"* ]]; then
if [[ "${{ github.event.head_commit.message }}" == "ci(changesets): versioning packages"* ]]; then
PR_NUMBER=$(echo "${{ github.event.head_commit.message }}" | grep -o '#[0-9]\+' | tr -d '#')
if [ -n "$PR_NUMBER" ]; then
PR_TITLE=$(gh pr view "$PR_NUMBER" --json title -q .title)
if [[ "$PR_TITLE" == "ci(changesets): versioning packages" ]]; then
if [[ "$PR_TITLE" == "ci(changesets): versioning packages"* ]]; then
echo "is_changeset_pr=true" >> "$GITHUB_OUTPUT"
exit 0
fi
Expand Down

0 comments on commit ee415e8

Please sign in to comment.