Skip to content

Commit f22107e

Browse files
chore(release): v2.63.0 beta.1 (#3016)
* chore: bump sdk Signed-off-by: Ivaylo Nikolov <[email protected]> * chore: bump cryptography sdk Signed-off-by: Ivaylo Nikolov <[email protected]> * docs: changelog Signed-off-by: Ivaylo Nikolov <[email protected]> * docs: update changelog Signed-off-by: Ivaylo Nikolov <[email protected]> * docs: update changelog.md Signed-off-by: Ivaylo Nikolov <[email protected]> * docs: removed deps from changelog Signed-off-by: Ivaylo Nikolov <[email protected]> * docs: add additional info about elliptic removal Signed-off-by: Ivaylo Nikolov <[email protected]> * docs: update formatting Signed-off-by: Ivaylo Nikolov <[email protected]> --------- Signed-off-by: Ivaylo Nikolov <[email protected]>
1 parent dbda8ca commit f22107e

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,20 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## v2.63.0-beta.1
9+
10+
### Changed
11+
12+
- Replaced elliptic package with @noble/curves package by @venilinvasilev in #2937
13+
14+
Unlike elliptic, @noble/curves automatically enforces a normalized s value in ECDSA signatures, aligning with best practices in cryptographic security. This ensures better interoperability while preventing malleability-related issues.
15+
16+
### Removed
17+
18+
- Removed support of non-normalized signatures by @venilinvasilev in #2937
19+
20+
This is NOT a Breaking Change. The SDK continues to function exactly as before, as @noble/curves produces valid signatures compatible with existing verification logic. The normalized s value behavior is already an industry standard (Ethereum's EIP-2, Bitcoin's BIP-66).
21+
822
## v2.62.0
923

1024
### Added

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hashgraph/sdk",
3-
"version": "2.62.0",
3+
"version": "2.63.0-beta.1",
44
"description": "Hiero SDK",
55
"types": "./lib/index.d.ts",
66
"main": "./lib/index.cjs",

packages/cryptography/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hashgraph/cryptography",
3-
"version": "1.5.0",
3+
"version": "1.6.0-beta.1",
44
"description": "Cryptographic utilities and primitives for the Hiero SDK",
55
"main": "./lib/index.cjs",
66
"types": "./lib/index.d.ts",

0 commit comments

Comments
 (0)