rds_ssm_connect 1.7.11 → 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')
@@ -100,13 +104,11 @@ jobs:
100
104
  # Find the updater artifact — must match what generate-update-json.js URLs point to:
101
105
  # macOS: .app.tar.gz, Linux: .AppImage, Windows: -setup.exe
102
106
  UPDATER_FILE=""
103
- for pattern in "$BUNDLE"/macos/*.app.tar.gz "$BUNDLE"/appimage/*.AppImage "$BUNDLE"/nsis/*-setup.exe; do
104
- for f in $pattern; do
105
- if [ -f "$f" ]; then
106
- UPDATER_FILE="$f"
107
- break 2
108
- fi
109
- done
107
+ for f in "$BUNDLE"/macos/*.app.tar.gz "$BUNDLE"/appimage/*.AppImage "$BUNDLE"/nsis/*-setup.exe; do
108
+ if [ -f "$f" ]; then
109
+ UPDATER_FILE="$f"
110
+ break
111
+ fi
110
112
  done
111
113
 
112
114
  if [ -z "$UPDATER_FILE" ]; then
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.11' }
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rds_ssm_connect",
3
- "version": "1.7.11",
3
+ "version": "1.7.13",
4
4
  "type": "module",
5
5
  "repository": {
6
6
  "type": "git",
@@ -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
 
@@ -3057,7 +3057,7 @@ checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539"
3057
3057
 
3058
3058
  [[package]]
3059
3059
  name = "rds-ssm-connect"
3060
- version = "1.7.6"
3060
+ version = "1.7.13"
3061
3061
  dependencies = [
3062
3062
  "reqwest 0.12.28",
3063
3063
  "semver",
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "rds-ssm-connect"
3
- version = "1.7.11"
3
+ version = "1.7.13"
4
4
  description = "Secure RDS connections through AWS SSM"
5
5
  authors = ["Iaroslav Pyrogov"]
6
6
  edition = "2024"
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://schema.tauri.app/config/2",
3
3
  "productName": "RDS SSM Connect",
4
- "version": "1.7.11",
4
+ "version": "1.7.13",
5
5
  "identifier": "com.rds-ssm-connect.desktop",
6
6
  "build": {
7
7
  "beforeDevCommand": "npm run dev:vite",