From 7333dba5b8ef8d1c81c983cec1865b15d928d355 Mon Sep 17 00:00:00 2001 From: ivaylonikolov7 Date: Wed, 22 Jan 2025 10:28:24 +0200 Subject: [PATCH] chore(release): v2.57.0 (#2809) * chore: update package.json versions Signed-off-by: Ivaylo Nikolov * docs: update changelog.md Signed-off-by: Ivaylo Nikolov * style: update whitespaces Signed-off-by: Ivaylo Nikolov * docs: update order of prs in changelog Signed-off-by: Ivaylo Nikolov --------- Signed-off-by: Ivaylo Nikolov --- CHANGELOG.md | 21 +++++++++++++++++++++ package.json | 4 ++-- src/contract/ContractInfoQuery.js | 2 +- src/transaction/Transaction.js | 2 +- 4 files changed, 25 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b791b765..63efd5809 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,27 @@ 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.57.0 + +* test: fix TopicMessage related tests by @ivaylonikolov7 in https://github.com/hiero-ledger/hiero-sdk-js/pull/2799 +* docs: documentation batch for classes by @ivaylonikolov7 in https://github.com/hiero-ledger/hiero-sdk-js/pull/2771 +* docs: update chunk size comments by @SimiHunjan in https://github.com/hiero-ledger/hiero-sdk-js/pull/2738 +* docs: update token-airdrop-example.js by @michielmulders in https://github.com/hiero-ledger/hiero-sdk-js/pull/2593 +* chore(deps): bumped Typescript version by @ivaylogarnev-limechain in https://github.com/hiero-ledger/hiero-sdk-js/pull/2797 +* chore(deps): bump renovatebot/github-action from 41.0.8 to 41.0.10 by @dependabot in https://github.com/hiero-ledger/hiero-sdk-js/pull/2805 +* chore(deps): bump typedoc by @ivaylonikolov in https://github.com/hiero-ledger/hiero-sdk-js/pull/2800 +* chore(deps): bump step-security/harden-runner from 2.10.3 to 2.10.4 by @dependabot in https://github.com/hiero-ledger/hiero-sdk-js/pull/2798 +* chore(deps-dev): bump c8 from 8.0.1 to 10.1.3 in /packages/cryptography by @dependabot in https://github.com/hiero-ledger/hiero-sdk-js/pull/2753 +* chore(deps-dev): bump mocha in /packages/cryptography by @dependabot in https://github.com/hiero-ledger/hiero-sdk-js/pull/2778 +* chore(deps): bump pino from 8.21.0 to 9.6.0 by dependabot in https://github.com/hiero-ledger/hiero-sdk-js/pull/2779 +* chore(deps-dev): bump nyc from 15.1.0 to 17.1.0 by @dependabot in https://github.com/hiero-ledger/hiero-sdk-js/pull/2794 +* chore(deps-dev): bump eslint-plugin-deprecation by @dependabot in https://github.com/hiero-ledger/hiero-sdk-js/pull/2780 +* chore(deps-dev): bump sinon from 18.0.1 to 19.0.2 by @dependabot in https://github.com/hiero-ledger/hiero-sdk-js/pull/2783 +* chore(deps-dev): bump geckodriver from 4.5.1 to 5.0.0 by @dependabot in https://github.com/hiero-ledger/hiero-sdk-js/pull/2787 +* chore(deps-dev): bump eslint-plugin-compat in /packages/cryptography by @dependabot in https://github.com/hiero-ledger/hiero-sdk-js/pull/2782 +* chore(deps-dev): bump chromedriver in /packages/cryptography by @dependabot in https://github.com/hiero-ledger/hiero-sdk-js/pull/2788 +* chore(deps-dev): bump chromedriver from 119.0.1 to 132.0.0 by @dependabot in https://github.com/hiero-ledger/hiero-sdk-js/pull/2784 + ## v2.57.0-beta.3 ## What's Changed diff --git a/package.json b/package.json index 93efeaf28..7b704e69f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@hashgraph/sdk", - "version": "2.57.0-beta.4", + "version": "2.57.0", "description": "Hederaâ„¢ Hashgraph SDK", "types": "./lib/index.d.ts", "main": "./lib/index.cjs", @@ -57,7 +57,7 @@ "@ethersproject/bytes": "^5.7.0", "@ethersproject/rlp": "^5.7.0", "@grpc/grpc-js": "1.8.2", - "@hashgraph/cryptography": "1.4.8-beta.11", + "@hashgraph/cryptography": "1.4.8-beta.12", "@hashgraph/proto": "2.16.0-beta.6", "axios": "^1.6.4", "bignumber.js": "^9.1.1", diff --git a/src/contract/ContractInfoQuery.js b/src/contract/ContractInfoQuery.js index e92d17ae6..a6c418afd 100644 --- a/src/contract/ContractInfoQuery.js +++ b/src/contract/ContractInfoQuery.js @@ -42,7 +42,7 @@ import Hbar from "../Hbar.js"; */ /** - * * A query that returns information about a smart contract instance. + * A query that returns information about a smart contract instance. * This includes the account that it owns, the contract's bytecode, and the timestamp when it will expire. * @augments {Query} */ diff --git a/src/transaction/Transaction.js b/src/transaction/Transaction.js index dcbb66f10..a8dcbbbc1 100644 --- a/src/transaction/Transaction.js +++ b/src/transaction/Transaction.js @@ -59,7 +59,7 @@ export const DEFAULT_RECORD_THRESHOLD = Hbar.fromTinybars( // 120 seconds const DEFAULT_TRANSACTION_VALID_DURATION = 120; -// The default message chunk size in bytes when splitting a given message. +// The default message chunk size in bytes when splitting a given message. // This value can be overriden using `setChunkSize` when preparing to submit a messsage via `TopicMessageSubmitTransaction`. export const CHUNK_SIZE = 1024;