Skip to content

chore(release): v2.63.0 beta.1 #3016

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 9 commits into from
Apr 2, 2025
Merged
Show file tree
Hide file tree
Changes from 8 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
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## v2.63.0-beta.1

## Beta release v2.63.0-beta.1

### Changed

- Replaced elliptic package with @noble/curves package by @venilinvasilev in #2937

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.


### Removed
- Removed support of non-normalized signatures by @venilinvasilev in #2937

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).

## v2.62.0

### Added
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hashgraph/sdk",
"version": "2.62.0",
"version": "2.63.0-beta.1",
"description": "Hiero SDK",
"types": "./lib/index.d.ts",
"main": "./lib/index.cjs",
Expand Down
2 changes: 1 addition & 1 deletion packages/cryptography/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hashgraph/cryptography",
"version": "1.5.0",
"version": "1.6.0-beta.1",
"description": "Cryptographic utilities and primitives for the Hiero SDK",
"main": "./lib/index.cjs",
"types": "./lib/index.d.ts",
Expand Down