Skip to content

Commit 36452b7

Browse files
authored
remove native package references for MacOS x64 architecture (valkey-io#2824)
* remove native package references for MacOS x64 architecture Signed-off-by: jbrinkman <[email protected]>
1 parent e0b4186 commit 36452b7

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#### Changes
2+
23
* Java: Bump protobuf (protoc) version ([#2561](https://github.com/valkey-io/valkey-glide/pull/2561), [#2802](https://github.com/valkey-io/valkey-glide/pull/2802)
34
* Java: bump `netty` version ([#2777](https://github.com/valkey-io/valkey-glide/pull/2777))
5+
* Node: Remove native package references for MacOs x64 architecture ([#2799](https://github.com/valkey-io/valkey-glide/issues/2799))
46

57
#### Breaking Changes
68

@@ -13,6 +15,7 @@
1315
## 1.2.0 (2024-11-27)
1416

1517
#### Changes
18+
1619
* Node: Client API for retrieving internal statistics ([#2727](https://github.com/valkey-io/valkey-glide/pull/2727))
1720
* Python: Client API for retrieving internal statistics ([#2707](https://github.com/valkey-io/valkey-glide/pull/2707))
1821
* Node, Python, Java: Adding support for replacing connection configured password ([#2651](https://github.com/valkey-io/valkey-glide/pull/2651), [#2659](https://github.com/valkey-io/valkey-glide/pull/2659), [#2677](https://github.com/valkey-io/valkey-glide/pull/2677))
@@ -107,7 +110,9 @@
107110

108111
#### Breaking Changes
109112

113+
110114
#### Fixes
115+
111116
* Core: UDS Socket Handling Rework ([#2482](https://github.com/valkey-io/valkey-glide/pull/2482))
112117

113118
#### Operational Enhancements

node/npm/glide/index.ts

-3
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,6 @@ function loadNativeBinding() {
5353
break;
5454
case "darwin":
5555
switch (arch) {
56-
case "x64":
57-
nativeBinding = require("@scope/valkey-glide-darwin-x64");
58-
break;
5956
case "arm64":
6057
nativeBinding = require("@scope/valkey-glide-darwin-arm64");
6158
break;

node/npm/glide/package.json

-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@
4141
},
4242
"optionalDependencies": {
4343
"${scope}valkey-glide-darwin-arm64": "${package_version}",
44-
"${scope}valkey-glide-darwin-x64": "${package_version}",
4544
"${scope}valkey-glide-linux-arm64": "${package_version}",
4645
"${scope}valkey-glide-linux-x64": "${package_version}",
4746
"${scope}valkey-glide-linux-musl-arm64": "${package_version}",

0 commit comments

Comments
 (0)