rds_ssm_connect 1.7.12 → 1.7.13
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.
|
@@ -28,6 +28,10 @@ jobs:
|
|
|
28
28
|
rust_target: x86_64-unknown-linux-gnu
|
|
29
29
|
sidecar_target: node22-linux-x64
|
|
30
30
|
sidecar_triple: x86_64-unknown-linux-gnu
|
|
31
|
+
- platform: ubuntu-22.04-arm
|
|
32
|
+
rust_target: aarch64-unknown-linux-gnu
|
|
33
|
+
sidecar_target: node22-linux-arm64
|
|
34
|
+
sidecar_triple: aarch64-unknown-linux-gnu
|
|
31
35
|
- platform: windows-latest
|
|
32
36
|
rust_target: x86_64-pc-windows-msvc
|
|
33
37
|
sidecar_target: node22-win-x64
|
|
@@ -57,7 +61,7 @@ jobs:
|
|
|
57
61
|
if: startsWith(matrix.platform, 'ubuntu')
|
|
58
62
|
run: |
|
|
59
63
|
sudo apt-get update
|
|
60
|
-
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
|
|
64
|
+
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf xdg-utils
|
|
61
65
|
|
|
62
66
|
- name: Install dependencies (macOS)
|
|
63
67
|
if: startsWith(matrix.platform, 'macos')
|
package/connect.js
CHANGED
|
@@ -10,7 +10,7 @@ import { promisify } from 'node:util'
|
|
|
10
10
|
import { PROJECT_CONFIGS } from './envPortMapping.js'
|
|
11
11
|
|
|
12
12
|
// Package info for version checking
|
|
13
|
-
const packageJson = { name: 'rds_ssm_connect', version: '1.7.
|
|
13
|
+
const packageJson = { name: 'rds_ssm_connect', version: '1.7.13' }
|
|
14
14
|
|
|
15
15
|
const execAsync = promisify(exec)
|
|
16
16
|
|
package/package.json
CHANGED
|
@@ -39,6 +39,7 @@ const TARGET_TO_PLATFORM = {
|
|
|
39
39
|
'aarch64-apple-darwin': 'darwin-aarch64',
|
|
40
40
|
'x86_64-apple-darwin': 'darwin-x86_64',
|
|
41
41
|
'x86_64-unknown-linux-gnu': 'linux-x86_64',
|
|
42
|
+
'aarch64-unknown-linux-gnu': 'linux-aarch64',
|
|
42
43
|
'x86_64-pc-windows-msvc': 'windows-x86_64',
|
|
43
44
|
}
|
|
44
45
|
|
package/src-tauri/Cargo.lock
CHANGED
package/src-tauri/Cargo.toml
CHANGED