Skip to content

Beacon v4.4.0 #3117

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

Merged
merged 16 commits into from
Mar 14, 2025
Merged

Beacon v4.4.0 #3117

merged 16 commits into from
Mar 14, 2025

Conversation

hui-an-yang
Copy link
Collaborator

Thank you for your contribution to Taquito.

Before submitting this PR, please make sure:

  • Your code builds cleanly without any errors or warnings
  • You have run the linter against the changes
  • You have added unit tests (if relevant/appropriate)
  • You have added integration tests (if relevant/appropriate)
  • All public methods or types have TypeDoc coverage with a complete description, and ideally an @example
  • You have added or updated corresponding documentation
  • If relevant, you have written a first draft summary describing the change for inclusion in Release Notes.

In this PR, please also make sure:

  • You have linked this PR to the issue by putting closes #TICKETNUMBER in the description box (when applicable)
  • You have added a concise description on your changes

Release Note Draft Snippet

If relevant, please write a summary of your change that will be suitable for
inclusion in the Release Notes for the next Taquito release.

Copy link

github-actions bot commented Feb 20, 2025

A new deploy preview is available on Cloudflare Pages at https://4eefa09c.taquito-test-dapp.pages.dev

Copy link

github-actions bot commented Feb 20, 2025

New packages have been deployed to the preview repository at https://npm.preview.tezostaquito.io/.

Published packages:

npm i @taquito/beacon-wallet@21.0.3-3822428-- --registry https://npm.preview.tezostaquito.io/
npm i @taquito/utils@21.0.3-3822428-- --registry https://npm.preview.tezostaquito.io/
npm i @taquito/sapling@21.0.3-3822428-- --registry https://npm.preview.tezostaquito.io/
npm i @taquito/http-utils@21.0.3-3822428-- --registry https://npm.preview.tezostaquito.io/
npm i @taquito/local-forging@21.0.3-3822428-- --registry https://npm.preview.tezostaquito.io/
npm i @taquito/signer@21.0.3-3822428-- --registry https://npm.preview.tezostaquito.io/
npm i @taquito/michelson-encoder@21.0.3-3822428-- --registry https://npm.preview.tezostaquito.io/
npm i @taquito/tzip12@21.0.3-3822428-- --registry https://npm.preview.tezostaquito.io/
npm i @taquito/core@21.0.3-3822428-- --registry https://npm.preview.tezostaquito.io/
npm i @taquito/timelock@21.0.3-3822428-- --registry https://npm.preview.tezostaquito.io/
npm i @taquito/contracts-library@21.0.3-3822428-- --registry https://npm.preview.tezostaquito.io/
npm i @taquito/ledger-signer@21.0.3-3822428-- --registry https://npm.preview.tezostaquito.io/
npm i @taquito/remote-signer@21.0.3-3822428-- --registry https://npm.preview.tezostaquito.io/
npm i @taquito/taquito@21.0.3-3822428-- --registry https://npm.preview.tezostaquito.io/
npm i @taquito/rpc@21.0.3-3822428-- --registry https://npm.preview.tezostaquito.io/
npm i @taquito/wallet-connect@21.0.3-3822428-- --registry https://npm.preview.tezostaquito.io/
npm i @taquito/tzip16@21.0.3-3822428-- --registry https://npm.preview.tezostaquito.io/
npm i @taquito/michel-codec@21.0.3-3822428-- --registry https://npm.preview.tezostaquito.io/

Copy link

cloudflare-workers-and-pages bot commented Mar 4, 2025

Deploying taquito with  Cloudflare Pages  Cloudflare Pages

Latest commit: 8b8b042
Status: ✅  Deploy successful!
Preview URL: https://39e08b5b.taquito.pages.dev
Branch Preview URL: https://beacon-v4-4-0.taquito.pages.dev

View logs

@hui-an-yang
Copy link
Collaborator Author

hui-an-yang commented Mar 13, 2025

Hey @roxaneletourneau & @GImbrailo
I find Node.js CI / lint-and-test (lts/Jod) (pull_request) to be failing at ci
I've tried cloning a fresh repo check out this branch and use lts/Jod then npm ci, npm run build and npm run test without any issue locally.
Wondering if any of you have any insight of the reason and how to fix it?

@hui-an-yang
Copy link
Collaborator Author

I created issue1252 in actions/setup-node@v4 repo, waiting for information to resolve ci failure before merging in main

@roxaneletourneau
Copy link
Collaborator

Hey @roxaneletourneau & @GImbrailo I find Node.js CI / lint-and-test (lts/Jod) (pull_request) to be failing at ci I've tried cloning a fresh repo check out this branch and use lts/Jod then npm ci, npm run build and npm run test without any issue locally. Wondering if any of you have any insight of the reason and how to fix it?

I tried running npm ci with the latest node version on my laptop because I am using Linux like the CI, and I confirm it also failed locally. I had to install missing dependencies to fix it:
sudo apt install -y libusb-1.0-0-dev libudev-dev pkg-config

@hui-an-yang
Copy link
Collaborator Author

hui-an-yang commented Mar 14, 2025

I tried running npm ci with the latest node version on my laptop because I am using Linux like the CI, and I confirm it also failed locally. I had to install missing dependencies to fix it:
sudo apt install -y libusb-1.0-0-dev libudev-dev pkg-config

@roxaneletourneau Thank you for confirming it failed locally on linux too, I have updated issue1252 in actions/setup-node@v4 repo and created issue57470 in node repo. Hoping they'll fix it in the upcoming versions.
I'll update our ci to use node v22.13.1 for now and update our readme to suggest it's compatible with v22.13.1 if using anything above on a linux machine please run sudo apt install -y libusb-1.0-0-dev libudev-dev pkg-config to preinstall these dependencies.
Can let me know what do you think with the temporary fix for now while waiting node to response and fix in the future.

@roxaneletourneau
Copy link
Collaborator

I tried running npm ci with the latest node version on my laptop because I am using Linux like the CI, and I confirm it also failed locally. I had to install missing dependencies to fix it:
sudo apt install -y libusb-1.0-0-dev libudev-dev pkg-config

@roxaneletourneau Thank you for confirming it failed locally on linux too, I have updated issue1252 in actions/setup-node@v4 repo and created issue57470 in node repo. Hoping they'll fix it in the upcoming versions. I'll update our ci to use node v22.13.1 for now and update our readme to suggest it's compatible with v22.13.1 if using anything above on a linux machine please run sudo apt install -y libusb-1.0-0-dev libudev-dev pkg-config to preinstall these dependencies. Can let me know what do you think with the temporary fix for now while waiting node to response and fix in the future.

Sound like a good plan to me :)

…gression when npm i

BREAKING CHANGE: for people using node lts/jod(22.14.0) and above on a linux mahcine might need to
manually run `sudo apt install -y libusb-1.0-0-dev libudev-dev pkg-config` to successfully   `npm ci
` or `npm i`
@hui-an-yang hui-an-yang merged commit a08da68 into master Mar 14, 2025
11 checks passed
@hui-an-yang hui-an-yang deleted the beacon-v4.4.0 branch March 14, 2025 22:09
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