Skip to content

Commit

Permalink
Merge pull request #451 from tonlabs/1.34.3-rc
Browse files Browse the repository at this point in the history
Version 1.34.3
  • Loading branch information
d3p authored Jun 17, 2022
2 parents aa446a8 + 55dd21b commit aae1aa9
Show file tree
Hide file tree
Showing 18 changed files with 645 additions and 506 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
All notable changes to this project will be documented in this file.

## [1.34.3] – 2022-06-08

### New

- send `accessKey` header in api requests (specified in `config.network.accessKey`)

### Fixed

- send headers in `info` api requests

## [1.34.2] – 2022-05-30

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"packages": [
"packages/*"
],
"version": "1.34.2",
"version": "1.34.3",
"command": {
"version": {
"message": "Release"
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eversdk/core",
"version": "1.34.2",
"version": "1.34.3",
"description": "TON Client for Java Script",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/lib-node/lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ crate-type = [ 'staticlib' ]

[dependencies]
libc = '0.2'
ton_client = { git = 'https://github.com/tonlabs/TON-SDK.git', tag = '1.34.2' }
ton_client = { git = 'https://github.com/tonlabs/TON-SDK.git', tag = '1.34.3' }

[profile.release]
lto = true
2 changes: 1 addition & 1 deletion packages/lib-node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eversdk/lib-node",
"version": "1.34.2",
"version": "1.34.3",
"description": "TON Client NodeJs AddOn",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/lib-react-native-jsi/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eversdk/lib-react-native-jsi",
"version": "1.34.2",
"version": "1.34.3",
"description": "TON Client React Native JSI Module",
"main": "lib/commonjs/index",
"module": "lib/module/index",
Expand Down
2 changes: 1 addition & 1 deletion packages/lib-react-native/android/lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.34.2' }
ton_client = { git = 'https://github.com/tonlabs/TON-SDK.git', tag = '1.34.3' }
openssl = { features = [ 'vendored' ], version = '0.10' }

[profile.release]
Expand Down
2 changes: 1 addition & 1 deletion packages/lib-react-native/ios/lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ crate-type = [ 'staticlib' ]

[dependencies]
libc = '0.2'
ton_client = { git = 'https://github.com/tonlabs/TON-SDK.git', tag = '1.34.2' }
ton_client = { git = 'https://github.com/tonlabs/TON-SDK.git', tag = '1.34.3' }

[profile.release]
lto = true
2 changes: 1 addition & 1 deletion packages/lib-react-native/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eversdk/lib-react-native",
"version": "1.34.2",
"version": "1.34.3",
"description": "TON Client React Native Module",
"main": "index.js",
"repository": {
Expand Down
1 change: 1 addition & 0 deletions packages/lib-web/build/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ fn fix_wrapper_script(wrapper: String) -> String {
for (exp, rep) in &[
("\nexport function ", "\nfunction "),
("\nexport default init;\n", ""),
("export \\{ initSync \\}", ""),
("\n\\s*input\\s*=\\s*new\\s+URL\\('[a-z_]+\\.wasm',\\s*import\\.meta\\.url\\);\n", ""),
("\\s*import\\s*\\*\\s*as\\s+__wbg_star\\d+\\s+from\\s*'env'\\s*;\\s*\r?\n", ""),
("getObject\\(arg0\\) instanceof Window", "true"),
Expand Down
2 changes: 1 addition & 1 deletion packages/lib-web/lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.34.2' }
ton_client = { default-features = false, features = [ 'wasm' ], git = 'https://github.com/tonlabs/TON-SDK.git', tag = '1.34.3' }

[dependencies.web-sys]
version = '0.3.57'
Expand Down
2 changes: 1 addition & 1 deletion packages/lib-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eversdk/lib-web",
"version": "1.34.2",
"version": "1.34.3",
"description": "TON Client WASM module for browsers",
"main": "index.js",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/tests-node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eversdk/tests-node",
"version": "1.34.2",
"version": "1.34.3",
"private": true,
"description": "TON Client Tests runner on NodeJs",
"main": "index.js",
Expand Down
Loading

0 comments on commit aae1aa9

Please sign in to comment.