Skip to content

Commit

Permalink
remove native package references for MacOS x64 architecture (valkey-i…
Browse files Browse the repository at this point in the history
…o#2824)

* remove native package references for MacOS x64 architecture

Signed-off-by: jbrinkman <[email protected]>
  • Loading branch information
jbrinkman authored Dec 18, 2024
1 parent e0b4186 commit 36452b7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#### Changes

* 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)
* Java: bump `netty` version ([#2777](https://github.com/valkey-io/valkey-glide/pull/2777))
* Node: Remove native package references for MacOs x64 architecture ([#2799](https://github.com/valkey-io/valkey-glide/issues/2799))

#### Breaking Changes

Expand All @@ -13,6 +15,7 @@
## 1.2.0 (2024-11-27)

#### Changes

* Node: Client API for retrieving internal statistics ([#2727](https://github.com/valkey-io/valkey-glide/pull/2727))
* Python: Client API for retrieving internal statistics ([#2707](https://github.com/valkey-io/valkey-glide/pull/2707))
* 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))
Expand Down Expand Up @@ -107,7 +110,9 @@

#### Breaking Changes


#### Fixes

* Core: UDS Socket Handling Rework ([#2482](https://github.com/valkey-io/valkey-glide/pull/2482))

#### Operational Enhancements
Expand Down
3 changes: 0 additions & 3 deletions node/npm/glide/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,6 @@ function loadNativeBinding() {
break;
case "darwin":
switch (arch) {
case "x64":
nativeBinding = require("@scope/valkey-glide-darwin-x64");
break;
case "arm64":
nativeBinding = require("@scope/valkey-glide-darwin-arm64");
break;
Expand Down
1 change: 0 additions & 1 deletion node/npm/glide/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
},
"optionalDependencies": {
"${scope}valkey-glide-darwin-arm64": "${package_version}",
"${scope}valkey-glide-darwin-x64": "${package_version}",
"${scope}valkey-glide-linux-arm64": "${package_version}",
"${scope}valkey-glide-linux-x64": "${package_version}",
"${scope}valkey-glide-linux-musl-arm64": "${package_version}",
Expand Down

0 comments on commit 36452b7

Please sign in to comment.