@valkey/valkey-glide-darwin-arm64 1.3.5-rc9 → 2.0.0-rc5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -27,23 +27,30 @@ Refer to the [Supported Engine Versions table](https://github.com/valkey-io/valk
27
27
 
28
28
  The release of Valkey GLIDE was tested on the following platforms:
29
29
 
30
- Linux:
30
+ ### Linux GNU
31
31
 
32
- - Ubuntu 22.04.5 (x86_64/amd64 and arm64/aarch64)
33
- - Amazon Linux 2023 (AL2023) (x86_64/amd64 and arm64/aarch64)
32
+ Linux with **glibc 2.17** or higher.
34
33
 
35
- macOS:
34
+ ### MacOS (Darwin)
36
35
 
37
- - macOS 14.7 (Apple silicon/aarch_64)
38
- - macOS 13.7 (x86_64/amd64)
36
+ MacOS Apple Silicon/aarch_64 and x86_64/amd64.
39
37
 
40
- Alpine:
38
+ - Full tests are running on MacOS 15.0 arm64/aarch64
39
+ - Minimal tests are running on: MacOS 13.5 x86*64/amd64*(We do not recommend using MacOS Intel for production, It is supported for development purposes)\_
40
+
41
+ ### Alpine
42
+
43
+ All alpine versions that are using _musl libc_ 1.2.3 (All Alpine non deprecated alpine versions) or higher should be supported.
44
+ Tests are running on:
41
45
 
42
46
  - node:alpine (x86_64/amd64 and arm64/aarch64)
43
47
 
44
48
  ## NodeJS supported version
45
49
 
46
50
  Node.js 16 or higher.
51
+ **For npm users on linux it is recommended to use npm >=11 since it support optional download base on libc, yarn users should not be concerned**
52
+
53
+ - Note: The library is dependent on the [protobufjs library](https://protobufjs.github.io/protobuf.js/#installation), which add a size to the package. The package is using the protobufjs/minimal version, hence, if size matter, bundlers should be able to strip the unused code. It should reduce the size of the dependency from 19kb gzipped to 6.5kb gzipped.
47
54
 
48
55
  ### Building & Testing
49
56
 
@@ -75,6 +82,8 @@ const client = await GlideClient.createClient({
75
82
  addresses: addresses,
76
83
  // if the server uses TLS, you'll need to enable it. Otherwise, the connection attempt will time out silently.
77
84
  // useTLS: true,
85
+ // It is recommended to set a timeout for your specific use case
86
+ requestTimeout: 500, // 500ms timeout
78
87
  clientName: "test_standalone_client",
79
88
  });
80
89
  // The empty array signifies that there are no additional arguments.
@@ -102,6 +111,8 @@ const client = await GlideClusterClient.createClient({
102
111
  addresses: addresses,
103
112
  // if the cluster nodes use TLS, you'll need to enable it. Otherwise the connection attempt will time out silently.
104
113
  // useTLS: true,
114
+ // It is recommended to set a timeout for your specific use case
115
+ requestTimeout: 500, // 500ms timeout
105
116
  clientName: "test_cluster_client",
106
117
  });
107
118
  // The empty array signifies that there are no additional arguments.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@valkey/valkey-glide-darwin-arm64",
3
- "version": "1.3.5-rc9",
3
+ "version": "2.0.0-rc5",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/valkey-io/valkey-glide.git"
Binary file