@valkey/valkey-glide 1.3.4-rc01 → 1.3.4-rc2

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
@@ -19,7 +19,9 @@ Linux:
19
19
 
20
20
  macOS:
21
21
 
22
- - macOS 14.7 (Apple silicon/aarch_64)
22
+ - macOS (Apple silicon/aarch_64 and Intel/x86_64)
23
+ Testing are being done on macOS arm64 platforms.
24
+ Please note that the package is not tested on macOS intel platforms, only minimal testing is done during CD.
23
25
 
24
26
  Alpine:
25
27
 
package/build-ts/index.js CHANGED
@@ -48,6 +48,9 @@ function loadNativeBinding() {
48
48
  case "arm64":
49
49
  nativeBinding = require("@valkey/valkey-glide-darwin-arm64");
50
50
  break;
51
+ case "x64":
52
+ nativeBinding = require("@valkey/valkey-glide-darwin-x64");
53
+ break;
51
54
  default:
52
55
  throw new Error(`Unsupported OS: ${process_1.platform}, architecture: ${process_1.arch}`);
53
56
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@valkey/valkey-glide",
3
3
  "types": "build-ts/index.d.ts",
4
- "version": "1.3.4-rc01",
4
+ "version": "1.3.4-rc2",
5
5
  "description": "General Language Independent Driver for the Enterprise (GLIDE) for Valkey",
6
6
  "main": "build-ts/index.js",
7
7
  "module": "build-ts/index.js",
@@ -40,11 +40,12 @@
40
40
  "typescript": "^4.9.4"
41
41
  },
42
42
  "optionalDependencies": {
43
- "@valkey/valkey-glide-darwin-arm64": "1.3.4-rc01",
44
- "@valkey/valkey-glide-linux-arm64": "1.3.4-rc01",
45
- "@valkey/valkey-glide-linux-x64": "1.3.4-rc01",
46
- "@valkey/valkey-glide-linux-musl-arm64": "1.3.4-rc01",
47
- "@valkey/valkey-glide-linux-musl-x64": "1.3.4-rc01"
43
+ "@valkey/valkey-glide-darwin-arm64": "1.3.4-rc2",
44
+ "@valkey/valkey-glide-darwin-x64": "1.3.4-rc2",
45
+ "@valkey/valkey-glide-linux-arm64": "1.3.4-rc2",
46
+ "@valkey/valkey-glide-linux-x64": "1.3.4-rc2",
47
+ "@valkey/valkey-glide-linux-musl-arm64": "1.3.4-rc2",
48
+ "@valkey/valkey-glide-linux-musl-x64": "1.3.4-rc2"
48
49
  },
49
50
  "eslintConfig": {
50
51
  "extends": [