Skip to content

Commit 86f43af

Browse files
chore(release): 6.4.0 [skip ci]
# [6.4.0](v6.3.1...v6.4.0) (2026-01-15) ### Features * support connectTimeout ([#228](#228)) ([8747daa](8747daa))
1 parent 8747daa commit 86f43af

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# [6.4.0](https://github.com/Rapsssito/react-native-tcp-socket/compare/v6.3.1...v6.4.0) (2026-01-15)
2+
3+
4+
### Features
5+
6+
* support connectTimeout ([#228](https://github.com/Rapsssito/react-native-tcp-socket/issues/228)) ([8747daa](https://github.com/Rapsssito/react-native-tcp-socket/commit/8747daaf369ab2fbd88b061c860ab7283e002021))
7+
18
## [6.3.1](https://github.com/Rapsssito/react-native-tcp-socket/compare/v6.3.0...v6.3.1) (2026-01-03)
29

310

coverage/coverage-final.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

lib/types/Socket.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
* tls?: boolean,
1818
* tlsCheckValidity?: boolean,
1919
* tlsCert?: any,
20+
* connectTimeout?: number,
2021
* }} ConnectionOptions
2122
*
2223
* @typedef {object} ReadableEvents
@@ -253,7 +254,7 @@ export type ConnectionOptions = {
253254
tls?: boolean | undefined;
254255
tlsCheckValidity?: boolean | undefined;
255256
tlsCert?: any;
256-
connectTimeout?: number;
257+
connectTimeout?: number | undefined;
257258
};
258259
export type ReadableEvents = {
259260
pause: () => void;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "react-native-tcp-socket",
33
"title": "React Native Tcp Socket",
4-
"version": "6.3.1",
4+
"version": "6.4.0",
55
"description": "React Native TCP socket API for Android & iOS with SSL/TLS support",
66
"main": "src/index.js",
77
"types": "lib/types/index.d.ts",

0 commit comments

Comments
 (0)