Skip to content

Commit f69cd78

Browse files
chore(release): v2.69.0-beta.1 (#3215)
Signed-off-by: venilinvasilev <[email protected]>
1 parent df7dec0 commit f69cd78

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,15 @@ 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.69.0-beta.1
89

10+
### Added
11+
- `WebClient.forMirrorNetwork()` factory method now works and correctly initializes and updates the address book during initialization.
12+
- `WebClient` now supports scheduled network updates via the `scheduleNetworkUpdate: true` option, and manual updates using the `updateNetwork()` method.
13+
- `AddressBookQuery` is now supported in browser environments.
14+
- `MirrorNodeContractCallQuery` is now supported in browser environments.
15+
- `MirrorNodeContractЕstimateQuery` is now supported in browser environments. [#3092](https://github.com/hiero-ledger/hiero-sdk-js/pull/3092)
16+
- For `Mainnet`, `Testnet`, and `Previewnet`, a fallback mechanism is in place: if the mirror node returns null or missing `grpc_proxy_endpoint` values, the SDK will retain and use the hardcoded list of gRPC web proxy endpoints.
917

1018
## v2.68.0
1119

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.68.0",
3+
"version": "2.69.0-beta.1",
44
"description": "Hiero SDK",
55
"types": "./lib/index.d.ts",
66
"main": "./lib/index.cjs",

src/network/AddressBookQueryWeb.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ export default class AddressBookQueryWeb extends Query {
8080
}
8181

8282
/**
83-
* @private
8483
* Page limit for the query
84+
* @private
8585
* @type {?number}
8686
*/
8787
this._limit = null;
@@ -261,6 +261,7 @@ export default class AddressBookQueryWeb extends Query {
261261

262262
const nodes = data.nodes || [];
263263

264+
// eslint-disable-next-line ie11/no-loop-func
264265
this._addresses = nodes.map((node) =>
265266
NodeAddress.fromJSON({
266267
nodeId: node.node_id.toString(),
@@ -313,6 +314,7 @@ export default class AddressBookQueryWeb extends Query {
313314
}
314315

315316
// Wait before next attempt
317+
// eslint-disable-next-line ie11/no-loop-func
316318
await new Promise((resolve) => setTimeout(resolve, delay));
317319
continue;
318320
}

0 commit comments

Comments
 (0)