Skip to content

Commit eca814c

Browse files
chore(release): v2.62.0 (#3012)
Signed-off-by: venilinvasilev <[email protected]>
1 parent 7a50424 commit eca814c

File tree

6 files changed

+41
-11
lines changed

6 files changed

+41
-11
lines changed

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,36 @@ 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.62.0
9+
10+
### Added
11+
12+
- Added support for hollow account detection (`num=0` with alias) in `AccountId`. This improves account alias handling and protobuf conversion logic. by @ivaylonikolov7 in #2994
13+
14+
### Changed
15+
16+
- Improved `AccountId` behavior with more explicit protobuf conversion in the following scenarios:
17+
- Both `AccountId` number and alias are set
18+
- Only alias is set
19+
- Only `AccountId` number is set
20+
Comprehensive test coverage was added. by @ivaylonikolov7 in #2994
21+
22+
### Documentation
23+
24+
- Added documentation for mirror node contract queries, providing guidance on usage patterns and expected behavior. by @ivaylonikolov7 in #2993
25+
26+
### Tests
27+
28+
- Added unit tests for `PublicKey.verifyTransaction` to ensure robust signature validation logic. by @0xivanov in #2971
29+
30+
### Dependencies
31+
32+
- **Development Dependencies**:
33+
- Bumped `chromedriver` from `133.0.3` to `134.0.5` (including cryptography package).
34+
- Bumped `sinon` from `19.0.2` to `20.0.0`.
35+
- Bumped `vite` from `6.1.0` to `6.1.3` (including cryptography package).
36+
- Bumped `axios` from `1.7.7` to `1.8.2` in `/examples/simple_rest_signature_provider`.
37+
838
## v2.62.0-beta.3
939

1040
### Added

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hashgraph/sdk",
3-
"version": "2.62.0-beta.3",
3+
"version": "2.62.0",
44
"description": "Hiero SDK",
55
"types": "./lib/index.d.ts",
66
"main": "./lib/index.cjs",
@@ -60,7 +60,7 @@
6060
"@ethersproject/bytes": "^5.8.0",
6161
"@ethersproject/rlp": "^5.8.0",
6262
"@grpc/grpc-js": "^1.12.6",
63-
"@hashgraph/cryptography": "1.5.0-beta.5",
63+
"@hashgraph/cryptography": "1.5.0",
6464
"@hashgraph/proto": "2.17.0-beta.1",
6565
"bignumber.js": "^9.1.1",
6666
"bn.js": "^5.1.1",

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-beta.5",
3+
"version": "1.5.0",
44
"description": "Cryptographic utilities and primitives for the Hiero SDK",
55
"main": "./lib/index.cjs",
66
"types": "./lib/index.d.ts",

pnpm-lock.yaml

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/client/addressbooks/mainnet.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/integration/ScheduleCreateIntegrationTest.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ describe("ScheduleCreate", function () {
3636
const keyList = KeyList.of(key1.publicKey, key2.publicKey);
3737

3838
const { accountId } = await createAccount(env.client, (transaction) =>
39-
transaction.setKeyWithoutAlias(keyList)
39+
transaction.setKeyWithoutAlias(keyList),
4040
);
4141

4242
expect(accountId).to.be.not.null;

0 commit comments

Comments
 (0)