Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ and this project adheres to

## [Unreleased]

### Fixed

- @cosmjs/crypto: Set min version of @noble/hashes to 1.8.0 to avoid errors like

> Cannot find module '@noble/hashes/legacy.js' from
> '../../node_modules/@cosmjs/crypto/build/ripemd.js'

We use `@noble/hashes/legacy.js` for ripemd which is only available in ^1.8.0.

## [0.35.1] - 2025-10-22

### Deprecated
Expand Down
2 changes: 1 addition & 1 deletion packages/crypto/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"@cosmjs/math": "workspace:^",
"@cosmjs/utils": "workspace:^",
"@noble/curves": "^1.9.2",
"@noble/hashes": "^1",
"@noble/hashes": "^1.8.0",
"libsodium-wrappers-sumo": "^0.7.11"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ __metadata:
"@cosmjs/utils": "workspace:^"
"@istanbuljs/nyc-config-typescript": "npm:^1.0.1"
"@noble/curves": "npm:^1.9.2"
"@noble/hashes": "npm:^1"
"@noble/hashes": "npm:^1.8.0"
"@types/jasmine": "npm:^4"
"@types/karma-firefox-launcher": "npm:^2"
"@types/karma-jasmine": "npm:^4"
Expand Down Expand Up @@ -1177,7 +1177,7 @@ __metadata:
languageName: node
linkType: hard

"@noble/hashes@npm:1.8.0, @noble/hashes@npm:^1, @noble/hashes@npm:^1.7.1":
"@noble/hashes@npm:1.8.0, @noble/hashes@npm:^1.7.1, @noble/hashes@npm:^1.8.0":
version: 1.8.0
resolution: "@noble/hashes@npm:1.8.0"
checksum: 10c0/06a0b52c81a6fa7f04d67762e08b2c476a00285858150caeaaff4037356dd5e119f45b2a530f638b77a5eeca013168ec1b655db41bae3236cb2e9d511484fc77
Expand Down
Loading