Skip to content

Commit b35dcc4

Browse files
committed
Merge remote-tracking branch 'origin/main' into fix/postinstall-npx-command
2 parents eab2d08 + 08a2932 commit b35dcc4

File tree

22 files changed

+252
-65
lines changed

22 files changed

+252
-65
lines changed

.github/workflows/release.yml

Lines changed: 24 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,10 @@ jobs:
6868
runner: macos-14
6969
archive: tar.gz
7070
build-tool: cargo
71+
- target: x86_64-unknown-linux-gnu
72+
runner: ubuntu-latest
73+
archive: tar.gz
74+
build-tool: cross
7175
- target: x86_64-unknown-linux-musl
7276
runner: ubuntu-latest
7377
archive: tar.gz
@@ -76,6 +80,10 @@ jobs:
7680
runner: ubuntu-latest
7781
archive: tar.gz
7882
build-tool: cross
83+
- target: aarch64-unknown-linux-musl
84+
runner: ubuntu-latest
85+
archive: tar.gz
86+
build-tool: cross
7987
- target: x86_64-pc-windows-msvc
8088
runner: windows-latest
8189
archive: zip
@@ -96,10 +104,18 @@ jobs:
96104
runner: ubuntu-latest
97105
archive: tar.gz
98106
build-tool: cross
107+
- target: arm-unknown-linux-musleabihf
108+
runner: ubuntu-latest
109+
archive: tar.gz
110+
build-tool: cross
99111
- target: i686-unknown-linux-gnu
100112
runner: ubuntu-latest
101113
archive: tar.gz
102114
build-tool: cross
115+
- target: i686-unknown-linux-musl
116+
runner: ubuntu-latest
117+
archive: tar.gz
118+
build-tool: cross
103119
runs-on: ${{ matrix.runner }}
104120
steps:
105121
- name: Checkout
@@ -254,10 +270,14 @@ jobs:
254270
255271
stage_unix socket-patch-aarch64-apple-darwin npm/socket-patch-darwin-arm64
256272
stage_unix socket-patch-x86_64-apple-darwin npm/socket-patch-darwin-x64
257-
stage_unix socket-patch-x86_64-unknown-linux-musl npm/socket-patch-linux-x64
258-
stage_unix socket-patch-aarch64-unknown-linux-gnu npm/socket-patch-linux-arm64
259-
stage_unix socket-patch-arm-unknown-linux-gnueabihf npm/socket-patch-linux-arm
260-
stage_unix socket-patch-i686-unknown-linux-gnu npm/socket-patch-linux-ia32
273+
stage_unix socket-patch-x86_64-unknown-linux-gnu npm/socket-patch-linux-x64-gnu
274+
stage_unix socket-patch-x86_64-unknown-linux-musl npm/socket-patch-linux-x64-musl
275+
stage_unix socket-patch-aarch64-unknown-linux-gnu npm/socket-patch-linux-arm64-gnu
276+
stage_unix socket-patch-aarch64-unknown-linux-musl npm/socket-patch-linux-arm64-musl
277+
stage_unix socket-patch-arm-unknown-linux-gnueabihf npm/socket-patch-linux-arm-gnu
278+
stage_unix socket-patch-arm-unknown-linux-musleabihf npm/socket-patch-linux-arm-musl
279+
stage_unix socket-patch-i686-unknown-linux-gnu npm/socket-patch-linux-ia32-gnu
280+
stage_unix socket-patch-i686-unknown-linux-musl npm/socket-patch-linux-ia32-musl
261281
stage_unix socket-patch-aarch64-linux-android npm/socket-patch-android-arm64
262282
263283
stage_win socket-patch-x86_64-pc-windows-msvc npm/socket-patch-win32-x64

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ members = ["crates/socket-patch-core", "crates/socket-patch-cli"]
33
resolver = "2"
44

55
[workspace.package]
6-
version = "2.0.0"
6+
version = "2.1.0"
77
edition = "2021"
88
license = "MIT"
99
repository = "https://github.com/SocketDev/socket-patch"
1010

1111
[workspace.dependencies]
12-
socket-patch-core = { path = "crates/socket-patch-core", version = "2.0.0" }
12+
socket-patch-core = { path = "crates/socket-patch-core", version = "2.1.0" }
1313
clap = { version = "4", features = ["derive"] }
1414
serde = { version = "1", features = ["derive"] }
1515
serde_json = "1"

npm/socket-patch-android-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@socketsecurity/socket-patch-android-arm64",
3-
"version": "2.0.0",
3+
"version": "2.1.0",
44
"description": "socket-patch binary for Android ARM64",
55
"os": [
66
"android"

npm/socket-patch-darwin-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@socketsecurity/socket-patch-darwin-arm64",
3-
"version": "2.0.0",
3+
"version": "2.1.0",
44
"description": "socket-patch binary for macOS ARM64",
55
"os": [
66
"darwin"

npm/socket-patch-darwin-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@socketsecurity/socket-patch-darwin-x64",
3-
"version": "2.0.0",
3+
"version": "2.1.0",
44
"description": "socket-patch binary for macOS x64",
55
"os": [
66
"darwin"
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "@socketsecurity/socket-patch-linux-arm-gnu",
3+
"version": "2.1.0",
4+
"description": "socket-patch binary for Linux ARM (glibc)",
5+
"os": [
6+
"linux"
7+
],
8+
"cpu": [
9+
"arm"
10+
],
11+
"libc": [
12+
"glibc"
13+
],
14+
"publishConfig": {
15+
"access": "public"
16+
},
17+
"license": "MIT",
18+
"repository": {
19+
"type": "git",
20+
"url": "https://github.com/SocketDev/socket-patch"
21+
}
22+
}

npm/socket-patch-linux-arm/package.json renamed to npm/socket-patch-linux-arm-musl/package.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
{
2-
"name": "@socketsecurity/socket-patch-linux-arm",
3-
"version": "2.0.0",
4-
"description": "socket-patch binary for Linux ARM",
2+
"name": "@socketsecurity/socket-patch-linux-arm-musl",
3+
"version": "2.1.0",
4+
"description": "socket-patch binary for Linux ARM (musl)",
55
"os": [
66
"linux"
77
],
88
"cpu": [
99
"arm"
1010
],
11+
"libc": [
12+
"musl"
13+
],
1114
"publishConfig": {
1215
"access": "public"
1316
},
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "@socketsecurity/socket-patch-linux-arm64-gnu",
3+
"version": "2.1.0",
4+
"description": "socket-patch binary for Linux ARM64 (glibc)",
5+
"os": [
6+
"linux"
7+
],
8+
"cpu": [
9+
"arm64"
10+
],
11+
"libc": [
12+
"glibc"
13+
],
14+
"publishConfig": {
15+
"access": "public"
16+
},
17+
"license": "MIT",
18+
"repository": {
19+
"type": "git",
20+
"url": "https://github.com/SocketDev/socket-patch"
21+
}
22+
}

npm/socket-patch-linux-arm64/package.json renamed to npm/socket-patch-linux-arm64-musl/package.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
{
2-
"name": "@socketsecurity/socket-patch-linux-arm64",
3-
"version": "2.0.0",
4-
"description": "socket-patch binary for Linux ARM64",
2+
"name": "@socketsecurity/socket-patch-linux-arm64-musl",
3+
"version": "2.1.0",
4+
"description": "socket-patch binary for Linux ARM64 (musl)",
55
"os": [
66
"linux"
77
],
88
"cpu": [
99
"arm64"
1010
],
11+
"libc": [
12+
"musl"
13+
],
1114
"publishConfig": {
1215
"access": "public"
1316
},
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "@socketsecurity/socket-patch-linux-ia32-gnu",
3+
"version": "2.1.0",
4+
"description": "socket-patch binary for Linux ia32 (glibc)",
5+
"os": [
6+
"linux"
7+
],
8+
"cpu": [
9+
"ia32"
10+
],
11+
"libc": [
12+
"glibc"
13+
],
14+
"publishConfig": {
15+
"access": "public"
16+
},
17+
"license": "MIT",
18+
"repository": {
19+
"type": "git",
20+
"url": "https://github.com/SocketDev/socket-patch"
21+
}
22+
}

0 commit comments

Comments
 (0)