From 3dbf32babc4b7dc7cacd9445ef332b53b511746e Mon Sep 17 00:00:00 2001 From: tonjen Date: Thu, 23 Mar 2023 15:19:32 +0000 Subject: [PATCH 1/2] Update dependencies ever-sdk version --- lerna.json | 2 +- packages/core/package.json | 2 +- packages/lib-node/lib/Cargo.toml | 2 +- packages/lib-node/package.json | 2 +- packages/lib-react-native-jsi/package.json | 2 +- packages/lib-react-native/android/lib/Cargo.toml | 2 +- packages/lib-react-native/ios/lib/Cargo.toml | 2 +- packages/lib-react-native/package.json | 2 +- packages/lib-web/lib/Cargo.toml | 2 +- packages/lib-web/package.json | 2 +- packages/tests-node/package.json | 2 +- packages/tests-react-native-jsi/package.json | 2 +- packages/tests-react-native/package.json | 2 +- packages/tests-web/package.json | 2 +- packages/tests/package.json | 2 +- 15 files changed, 15 insertions(+), 15 deletions(-) diff --git a/lerna.json b/lerna.json index b805642f..2524c411 100644 --- a/lerna.json +++ b/lerna.json @@ -3,7 +3,7 @@ "packages": [ "packages/*" ], - "version": "1.42.0", + "version": "1.42.1", "command": { "version": { "message": "Release" diff --git a/packages/core/package.json b/packages/core/package.json index 180747c8..b9ec2ede 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@eversdk/core", - "version": "1.42.0", + "version": "1.42.1", "description": "TON Client for Java Script", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/lib-node/lib/Cargo.toml b/packages/lib-node/lib/Cargo.toml index 5d392cf9..77e4cb54 100644 --- a/packages/lib-node/lib/Cargo.toml +++ b/packages/lib-node/lib/Cargo.toml @@ -10,7 +10,7 @@ crate-type = [ 'staticlib' ] [dependencies] libc = '0.2' -ton_client = { git = 'https://github.com/tonlabs/TON-SDK.git', tag = '1.42.0'} +ton_client = { git = 'https://github.com/tonlabs/TON-SDK.git', tag = '1.42.1'} [profile.release] lto = true diff --git a/packages/lib-node/package.json b/packages/lib-node/package.json index 4a7ad378..ec782f90 100644 --- a/packages/lib-node/package.json +++ b/packages/lib-node/package.json @@ -1,6 +1,6 @@ { "name": "@eversdk/lib-node", - "version": "1.42.0", + "version": "1.42.1", "description": "TON Client NodeJs AddOn", "repository": { "type": "git", diff --git a/packages/lib-react-native-jsi/package.json b/packages/lib-react-native-jsi/package.json index edec3541..534ce3d4 100644 --- a/packages/lib-react-native-jsi/package.json +++ b/packages/lib-react-native-jsi/package.json @@ -1,6 +1,6 @@ { "name": "@eversdk/lib-react-native-jsi", - "version": "1.42.0", + "version": "1.42.1", "description": "TON Client React Native JSI Module", "main": "lib/commonjs/index", "module": "lib/module/index", diff --git a/packages/lib-react-native/android/lib/Cargo.toml b/packages/lib-react-native/android/lib/Cargo.toml index f09e7580..b3ec16a6 100644 --- a/packages/lib-react-native/android/lib/Cargo.toml +++ b/packages/lib-react-native/android/lib/Cargo.toml @@ -11,7 +11,7 @@ crate-type = [ 'cdylib' ] [dependencies] lazy_static = '1.4.0' jni = { default-features = false, version = '0.12.0' } -ton_client = { git = 'https://github.com/tonlabs/TON-SDK.git', tag = '1.42.0' } +ton_client = { git = 'https://github.com/tonlabs/TON-SDK.git', tag = '1.42.1' } openssl = { features = [ 'vendored' ], version = '0.10' } [profile.release] diff --git a/packages/lib-react-native/ios/lib/Cargo.toml b/packages/lib-react-native/ios/lib/Cargo.toml index 6e7539c9..58b9a519 100644 --- a/packages/lib-react-native/ios/lib/Cargo.toml +++ b/packages/lib-react-native/ios/lib/Cargo.toml @@ -10,7 +10,7 @@ crate-type = [ 'staticlib' ] [dependencies] libc = '0.2' -ton_client = { git = 'https://github.com/tonlabs/TON-SDK.git', tag = '1.42.0' } +ton_client = { git = 'https://github.com/tonlabs/TON-SDK.git', tag = '1.42.1' } [profile.release] lto = true diff --git a/packages/lib-react-native/package.json b/packages/lib-react-native/package.json index e75270d4..042b7112 100644 --- a/packages/lib-react-native/package.json +++ b/packages/lib-react-native/package.json @@ -1,6 +1,6 @@ { "name": "@eversdk/lib-react-native", - "version": "1.42.0", + "version": "1.42.1", "description": "TON Client React Native Module", "main": "index.js", "repository": { diff --git a/packages/lib-web/lib/Cargo.toml b/packages/lib-web/lib/Cargo.toml index 09b400e9..517b59e4 100644 --- a/packages/lib-web/lib/Cargo.toml +++ b/packages/lib-web/lib/Cargo.toml @@ -28,7 +28,7 @@ lazy_static = '1.4.0' # just to fix building of rand for WASM: getrandom = { default-features = false, features = [ 'js' ], version = '0.2.2' } -ton_client = { default-features = false, features = [ 'wasm' ], git = 'https://github.com/tonlabs/TON-SDK.git', tag = '1.42.0' } +ton_client = { default-features = false, features = [ 'wasm' ], git = 'https://github.com/tonlabs/TON-SDK.git', tag = '1.42.1' } [dependencies.web-sys] version = '0.3.57' diff --git a/packages/lib-web/package.json b/packages/lib-web/package.json index b5888eac..f1d8f922 100644 --- a/packages/lib-web/package.json +++ b/packages/lib-web/package.json @@ -1,6 +1,6 @@ { "name": "@eversdk/lib-web", - "version": "1.42.0", + "version": "1.42.1", "description": "TON Client WASM module for browsers", "main": "index.js", "repository": { diff --git a/packages/tests-node/package.json b/packages/tests-node/package.json index fdd8adf4..b91319fd 100644 --- a/packages/tests-node/package.json +++ b/packages/tests-node/package.json @@ -1,6 +1,6 @@ { "name": "@eversdk/tests-node", - "version": "1.42.0", + "version": "1.42.1", "private": true, "description": "TON Client Tests runner on NodeJs", "main": "index.js", diff --git a/packages/tests-react-native-jsi/package.json b/packages/tests-react-native-jsi/package.json index bdb8f307..00d2e9f6 100644 --- a/packages/tests-react-native-jsi/package.json +++ b/packages/tests-react-native-jsi/package.json @@ -1,6 +1,6 @@ { "name": "@eversdk/tests-react-native-jsi", - "version": "1.42.0", + "version": "1.42.1", "private": true, "main": "index.js", "browser": true, diff --git a/packages/tests-react-native/package.json b/packages/tests-react-native/package.json index 0b5f50c6..d678a2e3 100644 --- a/packages/tests-react-native/package.json +++ b/packages/tests-react-native/package.json @@ -1,6 +1,6 @@ { "name": "@eversdk/tests-react-native", - "version": "1.42.0", + "version": "1.42.1", "private": true, "main": "index.js", "browser": true, diff --git a/packages/tests-web/package.json b/packages/tests-web/package.json index 50665b38..83df05e1 100644 --- a/packages/tests-web/package.json +++ b/packages/tests-web/package.json @@ -1,6 +1,6 @@ { "name": "@eversdk/tests-web", - "version": "1.42.0", + "version": "1.42.1", "private": true, "description": "TON Client WASM module tests runner", "scripts": { diff --git a/packages/tests/package.json b/packages/tests/package.json index bea10e06..04af55c0 100644 --- a/packages/tests/package.json +++ b/packages/tests/package.json @@ -1,6 +1,6 @@ { "name": "@eversdk/tests", - "version": "1.42.0", + "version": "1.42.1", "private": true, "description": "TON Client Tests", "main": "dist/index.js", From 8b9567bbf9a918b9656ea03b457b1d39de94abdc Mon Sep 17 00:00:00 2001 From: Sergei Voronezhskii Date: Thu, 23 Mar 2023 18:40:08 +0300 Subject: [PATCH 2/2] Version 1.42.1 --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ae6a0a0..6a523b03 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ All notable changes to this project will be documented in this file. +## [1.42.1] – 2023-03-23 + +### Fixed + +- Client was notified about every REMP status timeout. Now it is notified only once when fallback +scenario is started + ## [1.42.0] – 2023-03-22 ### New