@aria-cli/wireguard 1.0.41 → 1.0.45
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/dist/db-owner-fencing.d.ts +3 -3
- package/dist/network-state-store.d.ts +12 -5
- package/dist/network-state-store.js +31 -19
- package/dist/network.d.ts +2 -2
- package/index.js +52 -52
- package/npm/darwin-arm64/package.json +1 -1
- package/npm/darwin-x64/package.json +1 -1
- package/npm/linux-arm64-gnu/package.json +1 -1
- package/npm/linux-x64-gnu/package.json +1 -1
- package/npm/win32-x64-msvc/package.json +1 -1
- package/package.json +12 -9
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import type
|
|
1
|
+
import type { SqliteDatabase } from "@aria-cli/tools";
|
|
2
2
|
export declare class StaleOwnerError extends Error {
|
|
3
3
|
readonly kind: "StaleOwnerError";
|
|
4
4
|
readonly claimedGeneration: number;
|
|
5
5
|
readonly currentGeneration: number;
|
|
6
6
|
constructor(claimed: number, current: number);
|
|
7
7
|
}
|
|
8
|
-
export declare function ensureOwnerEpochTable(db:
|
|
9
|
-
export declare function claimDbOwnerEpoch(db:
|
|
8
|
+
export declare function ensureOwnerEpochTable(db: SqliteDatabase): void;
|
|
9
|
+
export declare function claimDbOwnerEpoch(db: SqliteDatabase, generation: number): void;
|
|
10
10
|
//# sourceMappingURL=db-owner-fencing.d.ts.map
|
|
@@ -7,9 +7,9 @@
|
|
|
7
7
|
* drift across multiple DB paths.
|
|
8
8
|
*
|
|
9
9
|
* PeerRegistry, RevocationStore, and other network stores all use the Database
|
|
10
|
-
*
|
|
10
|
+
* exposed through withConnection().
|
|
11
11
|
*/
|
|
12
|
-
import type
|
|
12
|
+
import type { SqliteDatabase } from "@aria-cli/tools";
|
|
13
13
|
export interface NetworkStateStoreOptions {
|
|
14
14
|
/** Base ARIA home directory (e.g., ~/.aria) */
|
|
15
15
|
ariaHome: string;
|
|
@@ -25,11 +25,18 @@ export declare class NetworkStateStore {
|
|
|
25
25
|
get path(): string;
|
|
26
26
|
/** Whether the store has been opened */
|
|
27
27
|
get isOpen(): boolean;
|
|
28
|
+
getConnection(): SqliteDatabase | null;
|
|
28
29
|
/** Open the database, creating schema if needed */
|
|
29
|
-
open():
|
|
30
|
+
open(): SqliteDatabase;
|
|
30
31
|
private reconcilePeerTableSchema;
|
|
31
|
-
|
|
32
|
-
|
|
32
|
+
withConnection<T>(fn: (db: SqliteDatabase) => T): T;
|
|
33
|
+
getCapabilities(): {
|
|
34
|
+
backend: "bun";
|
|
35
|
+
compatibilityBackend?: "better-sqlite3" | "node:sqlite";
|
|
36
|
+
loadableExtensions: boolean;
|
|
37
|
+
customSQLiteConfigured: boolean;
|
|
38
|
+
customSQLitePath?: string;
|
|
39
|
+
};
|
|
33
40
|
/**
|
|
34
41
|
* Claim the owner epoch for this runtime on the shared network state DB.
|
|
35
42
|
* Must be called after open() and before any durable writes.
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
* drift across multiple DB paths.
|
|
9
9
|
*
|
|
10
10
|
* PeerRegistry, RevocationStore, and other network stores all use the Database
|
|
11
|
-
*
|
|
11
|
+
* exposed through withConnection().
|
|
12
12
|
*/
|
|
13
13
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
14
14
|
if (k2 === undefined) k2 = k;
|
|
@@ -49,6 +49,7 @@ exports.canonicalNetworkStatePath = canonicalNetworkStatePath;
|
|
|
49
49
|
const fs = __importStar(require("node:fs"));
|
|
50
50
|
const path = __importStar(require("node:path"));
|
|
51
51
|
const network_runtime_1 = require("@aria-cli/tools/network-runtime");
|
|
52
|
+
const sqlite_1 = require("@aria-cli/tools/sqlite");
|
|
52
53
|
/**
|
|
53
54
|
* Canonical schema for the network state DB.
|
|
54
55
|
*
|
|
@@ -125,6 +126,9 @@ class NetworkStateStore {
|
|
|
125
126
|
get isOpen() {
|
|
126
127
|
return this.db !== null;
|
|
127
128
|
}
|
|
129
|
+
getConnection() {
|
|
130
|
+
return this.db;
|
|
131
|
+
}
|
|
128
132
|
/** Open the database, creating schema if needed */
|
|
129
133
|
open() {
|
|
130
134
|
if (this.db)
|
|
@@ -132,38 +136,35 @@ class NetworkStateStore {
|
|
|
132
136
|
// Ensure directory exists
|
|
133
137
|
const dir = path.dirname(this.dbPath);
|
|
134
138
|
fs.mkdirSync(dir, { recursive: true });
|
|
135
|
-
|
|
136
|
-
// eslint-disable-next-line @typescript-eslint/no-require-imports
|
|
137
|
-
const BetterSqlite3 = require("better-sqlite3");
|
|
138
|
-
this.db = new BetterSqlite3(this.dbPath);
|
|
139
|
+
const db = (0, sqlite_1.openBunRuntimeSqliteDatabase)({ path: this.dbPath });
|
|
139
140
|
try {
|
|
140
|
-
|
|
141
|
-
|
|
141
|
+
db.pragma("journal_mode = WAL");
|
|
142
|
+
db.pragma("busy_timeout = 5000");
|
|
142
143
|
// Create schema
|
|
143
|
-
|
|
144
|
-
this.reconcilePeerTableSchema(
|
|
145
|
-
|
|
144
|
+
db.exec(SCHEMA_SQL);
|
|
145
|
+
this.reconcilePeerTableSchema(db);
|
|
146
|
+
db.exec(NETWORK_PEERS_INDEX_SQL);
|
|
146
147
|
// Track schema version
|
|
147
|
-
const versionRow =
|
|
148
|
+
const versionRow = db
|
|
148
149
|
.prepare("SELECT version FROM network_schema_version LIMIT 1")
|
|
149
150
|
.get();
|
|
150
151
|
if (!versionRow) {
|
|
151
|
-
|
|
152
|
+
db
|
|
152
153
|
.prepare("INSERT INTO network_schema_version (version) VALUES (?)")
|
|
153
154
|
.run(CURRENT_SCHEMA_VERSION);
|
|
154
155
|
}
|
|
155
156
|
else if (versionRow.version < CURRENT_SCHEMA_VERSION) {
|
|
156
|
-
|
|
157
|
+
db
|
|
157
158
|
.prepare("UPDATE network_schema_version SET version = ?")
|
|
158
159
|
.run(CURRENT_SCHEMA_VERSION);
|
|
159
160
|
}
|
|
160
161
|
}
|
|
161
162
|
catch (error) {
|
|
162
|
-
|
|
163
|
-
this.db = null;
|
|
163
|
+
db.close();
|
|
164
164
|
throw error;
|
|
165
165
|
}
|
|
166
|
-
|
|
166
|
+
this.db = db;
|
|
167
|
+
return db;
|
|
167
168
|
}
|
|
168
169
|
reconcilePeerTableSchema(db) {
|
|
169
170
|
const tableRow = db
|
|
@@ -217,9 +218,20 @@ class NetworkStateStore {
|
|
|
217
218
|
}
|
|
218
219
|
throw new Error(`Legacy network_peers schema requires hard reset: ${legacySchemaProblems.join(", ")}`);
|
|
219
220
|
}
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
221
|
+
withConnection(fn) {
|
|
222
|
+
return fn(this.open());
|
|
223
|
+
}
|
|
224
|
+
getCapabilities() {
|
|
225
|
+
const db = this.open();
|
|
226
|
+
return {
|
|
227
|
+
backend: "bun",
|
|
228
|
+
...(db.kind !== "bun" ? { compatibilityBackend: db.kind } : {}),
|
|
229
|
+
loadableExtensions: db.capabilities.loadableExtensions,
|
|
230
|
+
customSQLiteConfigured: db.capabilities.customSQLiteConfigured,
|
|
231
|
+
...(db.capabilities.customSQLitePath
|
|
232
|
+
? { customSQLitePath: db.capabilities.customSQLitePath }
|
|
233
|
+
: {}),
|
|
234
|
+
};
|
|
223
235
|
}
|
|
224
236
|
/**
|
|
225
237
|
* Claim the owner epoch for this runtime on the shared network state DB.
|
package/dist/network.d.ts
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
* the DB, creates tunnels, and starts them. New peers join via invite tokens
|
|
11
11
|
* that encode the leader's public key + endpoint + PSK.
|
|
12
12
|
*/
|
|
13
|
-
import type
|
|
13
|
+
import type { SqliteDatabase } from "@aria-cli/tools";
|
|
14
14
|
import { type NetworkPeerRepairFailureRef, type NetworkPeerRepairResultRef, type NetworkPeerRevocationFailureRef, type NetworkPeerRevocationResultRef, type NetworkPeerRegistrationFailureRef, type NetworkPeerRegistrationResultRef, type NodeId, type ControlEndpointAdvertisement, type DeliveryAck, type LegacyPeerRegistryStatus, type TlsCaFingerprint, type TransportInviteToken, type PrincipalFingerprint, type PeerTransportId, type TransportEndpointAdvertisement } from "@aria-cli/tools";
|
|
15
15
|
import { ResilientTunnel } from "./resilient-tunnel.js";
|
|
16
16
|
/** Network configuration persisted to disk */
|
|
@@ -81,7 +81,7 @@ export type InviteToken = TransportInviteToken;
|
|
|
81
81
|
*/
|
|
82
82
|
export declare class PeerRegistry {
|
|
83
83
|
private db;
|
|
84
|
-
constructor(db:
|
|
84
|
+
constructor(db: SqliteDatabase);
|
|
85
85
|
private reconcileSchema;
|
|
86
86
|
/** Add or update a peer */
|
|
87
87
|
upsert(peer: {
|
package/index.js
CHANGED
|
@@ -77,8 +77,8 @@ function requireNative() {
|
|
|
77
77
|
try {
|
|
78
78
|
const binding = require('@aria-cli/wireguard-android-arm64')
|
|
79
79
|
const bindingPackageVersion = require('@aria-cli/wireguard-android-arm64/package.json').version
|
|
80
|
-
if (bindingPackageVersion !== '1.0.
|
|
81
|
-
throw new Error(`Native binding package version mismatch, expected 1.0.
|
|
80
|
+
if (bindingPackageVersion !== '1.0.45' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
81
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.45 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
82
82
|
}
|
|
83
83
|
return binding
|
|
84
84
|
} catch (e) {
|
|
@@ -93,8 +93,8 @@ function requireNative() {
|
|
|
93
93
|
try {
|
|
94
94
|
const binding = require('@aria-cli/wireguard-android-arm-eabi')
|
|
95
95
|
const bindingPackageVersion = require('@aria-cli/wireguard-android-arm-eabi/package.json').version
|
|
96
|
-
if (bindingPackageVersion !== '1.0.
|
|
97
|
-
throw new Error(`Native binding package version mismatch, expected 1.0.
|
|
96
|
+
if (bindingPackageVersion !== '1.0.45' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
97
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.45 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
98
98
|
}
|
|
99
99
|
return binding
|
|
100
100
|
} catch (e) {
|
|
@@ -114,8 +114,8 @@ function requireNative() {
|
|
|
114
114
|
try {
|
|
115
115
|
const binding = require('@aria-cli/wireguard-win32-x64-gnu')
|
|
116
116
|
const bindingPackageVersion = require('@aria-cli/wireguard-win32-x64-gnu/package.json').version
|
|
117
|
-
if (bindingPackageVersion !== '1.0.
|
|
118
|
-
throw new Error(`Native binding package version mismatch, expected 1.0.
|
|
117
|
+
if (bindingPackageVersion !== '1.0.45' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
118
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.45 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
119
119
|
}
|
|
120
120
|
return binding
|
|
121
121
|
} catch (e) {
|
|
@@ -130,8 +130,8 @@ function requireNative() {
|
|
|
130
130
|
try {
|
|
131
131
|
const binding = require('@aria-cli/wireguard-win32-x64-msvc')
|
|
132
132
|
const bindingPackageVersion = require('@aria-cli/wireguard-win32-x64-msvc/package.json').version
|
|
133
|
-
if (bindingPackageVersion !== '1.0.
|
|
134
|
-
throw new Error(`Native binding package version mismatch, expected 1.0.
|
|
133
|
+
if (bindingPackageVersion !== '1.0.45' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
134
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.45 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
135
135
|
}
|
|
136
136
|
return binding
|
|
137
137
|
} catch (e) {
|
|
@@ -147,8 +147,8 @@ function requireNative() {
|
|
|
147
147
|
try {
|
|
148
148
|
const binding = require('@aria-cli/wireguard-win32-ia32-msvc')
|
|
149
149
|
const bindingPackageVersion = require('@aria-cli/wireguard-win32-ia32-msvc/package.json').version
|
|
150
|
-
if (bindingPackageVersion !== '1.0.
|
|
151
|
-
throw new Error(`Native binding package version mismatch, expected 1.0.
|
|
150
|
+
if (bindingPackageVersion !== '1.0.45' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
151
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.45 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
152
152
|
}
|
|
153
153
|
return binding
|
|
154
154
|
} catch (e) {
|
|
@@ -163,8 +163,8 @@ function requireNative() {
|
|
|
163
163
|
try {
|
|
164
164
|
const binding = require('@aria-cli/wireguard-win32-arm64-msvc')
|
|
165
165
|
const bindingPackageVersion = require('@aria-cli/wireguard-win32-arm64-msvc/package.json').version
|
|
166
|
-
if (bindingPackageVersion !== '1.0.
|
|
167
|
-
throw new Error(`Native binding package version mismatch, expected 1.0.
|
|
166
|
+
if (bindingPackageVersion !== '1.0.45' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
167
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.45 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
168
168
|
}
|
|
169
169
|
return binding
|
|
170
170
|
} catch (e) {
|
|
@@ -182,8 +182,8 @@ function requireNative() {
|
|
|
182
182
|
try {
|
|
183
183
|
const binding = require('@aria-cli/wireguard-darwin-universal')
|
|
184
184
|
const bindingPackageVersion = require('@aria-cli/wireguard-darwin-universal/package.json').version
|
|
185
|
-
if (bindingPackageVersion !== '1.0.
|
|
186
|
-
throw new Error(`Native binding package version mismatch, expected 1.0.
|
|
185
|
+
if (bindingPackageVersion !== '1.0.45' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
186
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.45 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
187
187
|
}
|
|
188
188
|
return binding
|
|
189
189
|
} catch (e) {
|
|
@@ -198,8 +198,8 @@ function requireNative() {
|
|
|
198
198
|
try {
|
|
199
199
|
const binding = require('@aria-cli/wireguard-darwin-x64')
|
|
200
200
|
const bindingPackageVersion = require('@aria-cli/wireguard-darwin-x64/package.json').version
|
|
201
|
-
if (bindingPackageVersion !== '1.0.
|
|
202
|
-
throw new Error(`Native binding package version mismatch, expected 1.0.
|
|
201
|
+
if (bindingPackageVersion !== '1.0.45' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
202
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.45 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
203
203
|
}
|
|
204
204
|
return binding
|
|
205
205
|
} catch (e) {
|
|
@@ -214,8 +214,8 @@ function requireNative() {
|
|
|
214
214
|
try {
|
|
215
215
|
const binding = require('@aria-cli/wireguard-darwin-arm64')
|
|
216
216
|
const bindingPackageVersion = require('@aria-cli/wireguard-darwin-arm64/package.json').version
|
|
217
|
-
if (bindingPackageVersion !== '1.0.
|
|
218
|
-
throw new Error(`Native binding package version mismatch, expected 1.0.
|
|
217
|
+
if (bindingPackageVersion !== '1.0.45' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
218
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.45 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
219
219
|
}
|
|
220
220
|
return binding
|
|
221
221
|
} catch (e) {
|
|
@@ -234,8 +234,8 @@ function requireNative() {
|
|
|
234
234
|
try {
|
|
235
235
|
const binding = require('@aria-cli/wireguard-freebsd-x64')
|
|
236
236
|
const bindingPackageVersion = require('@aria-cli/wireguard-freebsd-x64/package.json').version
|
|
237
|
-
if (bindingPackageVersion !== '1.0.
|
|
238
|
-
throw new Error(`Native binding package version mismatch, expected 1.0.
|
|
237
|
+
if (bindingPackageVersion !== '1.0.45' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
238
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.45 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
239
239
|
}
|
|
240
240
|
return binding
|
|
241
241
|
} catch (e) {
|
|
@@ -250,8 +250,8 @@ function requireNative() {
|
|
|
250
250
|
try {
|
|
251
251
|
const binding = require('@aria-cli/wireguard-freebsd-arm64')
|
|
252
252
|
const bindingPackageVersion = require('@aria-cli/wireguard-freebsd-arm64/package.json').version
|
|
253
|
-
if (bindingPackageVersion !== '1.0.
|
|
254
|
-
throw new Error(`Native binding package version mismatch, expected 1.0.
|
|
253
|
+
if (bindingPackageVersion !== '1.0.45' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
254
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.45 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
255
255
|
}
|
|
256
256
|
return binding
|
|
257
257
|
} catch (e) {
|
|
@@ -271,8 +271,8 @@ function requireNative() {
|
|
|
271
271
|
try {
|
|
272
272
|
const binding = require('@aria-cli/wireguard-linux-x64-musl')
|
|
273
273
|
const bindingPackageVersion = require('@aria-cli/wireguard-linux-x64-musl/package.json').version
|
|
274
|
-
if (bindingPackageVersion !== '1.0.
|
|
275
|
-
throw new Error(`Native binding package version mismatch, expected 1.0.
|
|
274
|
+
if (bindingPackageVersion !== '1.0.45' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
275
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.45 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
276
276
|
}
|
|
277
277
|
return binding
|
|
278
278
|
} catch (e) {
|
|
@@ -287,8 +287,8 @@ function requireNative() {
|
|
|
287
287
|
try {
|
|
288
288
|
const binding = require('@aria-cli/wireguard-linux-x64-gnu')
|
|
289
289
|
const bindingPackageVersion = require('@aria-cli/wireguard-linux-x64-gnu/package.json').version
|
|
290
|
-
if (bindingPackageVersion !== '1.0.
|
|
291
|
-
throw new Error(`Native binding package version mismatch, expected 1.0.
|
|
290
|
+
if (bindingPackageVersion !== '1.0.45' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
291
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.45 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
292
292
|
}
|
|
293
293
|
return binding
|
|
294
294
|
} catch (e) {
|
|
@@ -305,8 +305,8 @@ function requireNative() {
|
|
|
305
305
|
try {
|
|
306
306
|
const binding = require('@aria-cli/wireguard-linux-arm64-musl')
|
|
307
307
|
const bindingPackageVersion = require('@aria-cli/wireguard-linux-arm64-musl/package.json').version
|
|
308
|
-
if (bindingPackageVersion !== '1.0.
|
|
309
|
-
throw new Error(`Native binding package version mismatch, expected 1.0.
|
|
308
|
+
if (bindingPackageVersion !== '1.0.45' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
309
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.45 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
310
310
|
}
|
|
311
311
|
return binding
|
|
312
312
|
} catch (e) {
|
|
@@ -321,8 +321,8 @@ function requireNative() {
|
|
|
321
321
|
try {
|
|
322
322
|
const binding = require('@aria-cli/wireguard-linux-arm64-gnu')
|
|
323
323
|
const bindingPackageVersion = require('@aria-cli/wireguard-linux-arm64-gnu/package.json').version
|
|
324
|
-
if (bindingPackageVersion !== '1.0.
|
|
325
|
-
throw new Error(`Native binding package version mismatch, expected 1.0.
|
|
324
|
+
if (bindingPackageVersion !== '1.0.45' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
325
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.45 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
326
326
|
}
|
|
327
327
|
return binding
|
|
328
328
|
} catch (e) {
|
|
@@ -339,8 +339,8 @@ function requireNative() {
|
|
|
339
339
|
try {
|
|
340
340
|
const binding = require('@aria-cli/wireguard-linux-arm-musleabihf')
|
|
341
341
|
const bindingPackageVersion = require('@aria-cli/wireguard-linux-arm-musleabihf/package.json').version
|
|
342
|
-
if (bindingPackageVersion !== '1.0.
|
|
343
|
-
throw new Error(`Native binding package version mismatch, expected 1.0.
|
|
342
|
+
if (bindingPackageVersion !== '1.0.45' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
343
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.45 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
344
344
|
}
|
|
345
345
|
return binding
|
|
346
346
|
} catch (e) {
|
|
@@ -355,8 +355,8 @@ function requireNative() {
|
|
|
355
355
|
try {
|
|
356
356
|
const binding = require('@aria-cli/wireguard-linux-arm-gnueabihf')
|
|
357
357
|
const bindingPackageVersion = require('@aria-cli/wireguard-linux-arm-gnueabihf/package.json').version
|
|
358
|
-
if (bindingPackageVersion !== '1.0.
|
|
359
|
-
throw new Error(`Native binding package version mismatch, expected 1.0.
|
|
358
|
+
if (bindingPackageVersion !== '1.0.45' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
359
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.45 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
360
360
|
}
|
|
361
361
|
return binding
|
|
362
362
|
} catch (e) {
|
|
@@ -373,8 +373,8 @@ function requireNative() {
|
|
|
373
373
|
try {
|
|
374
374
|
const binding = require('@aria-cli/wireguard-linux-loong64-musl')
|
|
375
375
|
const bindingPackageVersion = require('@aria-cli/wireguard-linux-loong64-musl/package.json').version
|
|
376
|
-
if (bindingPackageVersion !== '1.0.
|
|
377
|
-
throw new Error(`Native binding package version mismatch, expected 1.0.
|
|
376
|
+
if (bindingPackageVersion !== '1.0.45' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
377
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.45 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
378
378
|
}
|
|
379
379
|
return binding
|
|
380
380
|
} catch (e) {
|
|
@@ -389,8 +389,8 @@ function requireNative() {
|
|
|
389
389
|
try {
|
|
390
390
|
const binding = require('@aria-cli/wireguard-linux-loong64-gnu')
|
|
391
391
|
const bindingPackageVersion = require('@aria-cli/wireguard-linux-loong64-gnu/package.json').version
|
|
392
|
-
if (bindingPackageVersion !== '1.0.
|
|
393
|
-
throw new Error(`Native binding package version mismatch, expected 1.0.
|
|
392
|
+
if (bindingPackageVersion !== '1.0.45' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
393
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.45 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
394
394
|
}
|
|
395
395
|
return binding
|
|
396
396
|
} catch (e) {
|
|
@@ -407,8 +407,8 @@ function requireNative() {
|
|
|
407
407
|
try {
|
|
408
408
|
const binding = require('@aria-cli/wireguard-linux-riscv64-musl')
|
|
409
409
|
const bindingPackageVersion = require('@aria-cli/wireguard-linux-riscv64-musl/package.json').version
|
|
410
|
-
if (bindingPackageVersion !== '1.0.
|
|
411
|
-
throw new Error(`Native binding package version mismatch, expected 1.0.
|
|
410
|
+
if (bindingPackageVersion !== '1.0.45' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
411
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.45 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
412
412
|
}
|
|
413
413
|
return binding
|
|
414
414
|
} catch (e) {
|
|
@@ -423,8 +423,8 @@ function requireNative() {
|
|
|
423
423
|
try {
|
|
424
424
|
const binding = require('@aria-cli/wireguard-linux-riscv64-gnu')
|
|
425
425
|
const bindingPackageVersion = require('@aria-cli/wireguard-linux-riscv64-gnu/package.json').version
|
|
426
|
-
if (bindingPackageVersion !== '1.0.
|
|
427
|
-
throw new Error(`Native binding package version mismatch, expected 1.0.
|
|
426
|
+
if (bindingPackageVersion !== '1.0.45' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
427
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.45 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
428
428
|
}
|
|
429
429
|
return binding
|
|
430
430
|
} catch (e) {
|
|
@@ -440,8 +440,8 @@ function requireNative() {
|
|
|
440
440
|
try {
|
|
441
441
|
const binding = require('@aria-cli/wireguard-linux-ppc64-gnu')
|
|
442
442
|
const bindingPackageVersion = require('@aria-cli/wireguard-linux-ppc64-gnu/package.json').version
|
|
443
|
-
if (bindingPackageVersion !== '1.0.
|
|
444
|
-
throw new Error(`Native binding package version mismatch, expected 1.0.
|
|
443
|
+
if (bindingPackageVersion !== '1.0.45' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
444
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.45 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
445
445
|
}
|
|
446
446
|
return binding
|
|
447
447
|
} catch (e) {
|
|
@@ -456,8 +456,8 @@ function requireNative() {
|
|
|
456
456
|
try {
|
|
457
457
|
const binding = require('@aria-cli/wireguard-linux-s390x-gnu')
|
|
458
458
|
const bindingPackageVersion = require('@aria-cli/wireguard-linux-s390x-gnu/package.json').version
|
|
459
|
-
if (bindingPackageVersion !== '1.0.
|
|
460
|
-
throw new Error(`Native binding package version mismatch, expected 1.0.
|
|
459
|
+
if (bindingPackageVersion !== '1.0.45' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
460
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.45 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
461
461
|
}
|
|
462
462
|
return binding
|
|
463
463
|
} catch (e) {
|
|
@@ -476,8 +476,8 @@ function requireNative() {
|
|
|
476
476
|
try {
|
|
477
477
|
const binding = require('@aria-cli/wireguard-openharmony-arm64')
|
|
478
478
|
const bindingPackageVersion = require('@aria-cli/wireguard-openharmony-arm64/package.json').version
|
|
479
|
-
if (bindingPackageVersion !== '1.0.
|
|
480
|
-
throw new Error(`Native binding package version mismatch, expected 1.0.
|
|
479
|
+
if (bindingPackageVersion !== '1.0.45' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
480
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.45 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
481
481
|
}
|
|
482
482
|
return binding
|
|
483
483
|
} catch (e) {
|
|
@@ -492,8 +492,8 @@ function requireNative() {
|
|
|
492
492
|
try {
|
|
493
493
|
const binding = require('@aria-cli/wireguard-openharmony-x64')
|
|
494
494
|
const bindingPackageVersion = require('@aria-cli/wireguard-openharmony-x64/package.json').version
|
|
495
|
-
if (bindingPackageVersion !== '1.0.
|
|
496
|
-
throw new Error(`Native binding package version mismatch, expected 1.0.
|
|
495
|
+
if (bindingPackageVersion !== '1.0.45' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
496
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.45 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
497
497
|
}
|
|
498
498
|
return binding
|
|
499
499
|
} catch (e) {
|
|
@@ -508,8 +508,8 @@ function requireNative() {
|
|
|
508
508
|
try {
|
|
509
509
|
const binding = require('@aria-cli/wireguard-openharmony-arm')
|
|
510
510
|
const bindingPackageVersion = require('@aria-cli/wireguard-openharmony-arm/package.json').version
|
|
511
|
-
if (bindingPackageVersion !== '1.0.
|
|
512
|
-
throw new Error(`Native binding package version mismatch, expected 1.0.
|
|
511
|
+
if (bindingPackageVersion !== '1.0.45' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
512
|
+
throw new Error(`Native binding package version mismatch, expected 1.0.45 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
513
513
|
}
|
|
514
514
|
return binding
|
|
515
515
|
} catch (e) {
|
package/package.json
CHANGED
|
@@ -1,27 +1,32 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aria-cli/wireguard",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.45",
|
|
4
4
|
"description": "WireGuard native addon for ARIA secure networking (boringtun via napi-rs)",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"exports": {
|
|
8
8
|
".": {
|
|
9
|
+
"bun": "./index.ts",
|
|
9
10
|
"import": "./dist/index.js",
|
|
10
11
|
"require": "./dist/index.js"
|
|
11
12
|
},
|
|
12
13
|
"./network": {
|
|
14
|
+
"bun": "./network.ts",
|
|
13
15
|
"import": "./dist/network.js",
|
|
14
16
|
"require": "./dist/network.js"
|
|
15
17
|
},
|
|
16
18
|
"./network-state-store": {
|
|
19
|
+
"bun": "./network-state-store.ts",
|
|
17
20
|
"import": "./dist/network-state-store.js",
|
|
18
21
|
"require": "./dist/network-state-store.js"
|
|
19
22
|
},
|
|
20
23
|
"./tunnel": {
|
|
24
|
+
"bun": "./tunnel.ts",
|
|
21
25
|
"import": "./dist/tunnel.js",
|
|
22
26
|
"require": "./dist/tunnel.js"
|
|
23
27
|
},
|
|
24
28
|
"./nat": {
|
|
29
|
+
"bun": "./nat.ts",
|
|
25
30
|
"import": "./dist/nat.js",
|
|
26
31
|
"require": "./dist/nat.js"
|
|
27
32
|
}
|
|
@@ -49,20 +54,18 @@
|
|
|
49
54
|
"test:lanes": "bun tests/print-test-lane-manifest.ts"
|
|
50
55
|
},
|
|
51
56
|
"dependencies": {
|
|
52
|
-
"better-sqlite3": "^12.6.2",
|
|
53
57
|
"ws": "^8.19.0"
|
|
54
58
|
},
|
|
55
59
|
"devDependencies": {
|
|
56
60
|
"@napi-rs/cli": "^3.0.0",
|
|
57
|
-
"@types/better-sqlite3": "^7.6.13",
|
|
58
61
|
"@types/ws": "^8.5.10"
|
|
59
62
|
},
|
|
60
63
|
"optionalDependencies": {
|
|
61
|
-
"@aria-cli/wireguard-darwin-arm64": "1.0.
|
|
62
|
-
"@aria-cli/wireguard-darwin-x64": "1.0.
|
|
63
|
-
"@aria-cli/wireguard-linux-x64-gnu": "1.0.
|
|
64
|
-
"@aria-cli/wireguard-linux-arm64-gnu": "1.0.
|
|
65
|
-
"@aria-cli/wireguard-win32-x64-msvc": "1.0.
|
|
64
|
+
"@aria-cli/wireguard-darwin-arm64": "1.0.45",
|
|
65
|
+
"@aria-cli/wireguard-darwin-x64": "1.0.45",
|
|
66
|
+
"@aria-cli/wireguard-linux-x64-gnu": "1.0.45",
|
|
67
|
+
"@aria-cli/wireguard-linux-arm64-gnu": "1.0.45",
|
|
68
|
+
"@aria-cli/wireguard-win32-x64-msvc": "1.0.45"
|
|
66
69
|
},
|
|
67
70
|
"files": [
|
|
68
71
|
"index.js",
|
|
@@ -74,6 +77,6 @@
|
|
|
74
77
|
"!**/*.tsbuildinfo"
|
|
75
78
|
],
|
|
76
79
|
"engines": {
|
|
77
|
-
"
|
|
80
|
+
"bun": ">=1.3.11"
|
|
78
81
|
}
|
|
79
82
|
}
|