rds_ssm_connect 1.7.3 → 1.7.5

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-24.04-arm64
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
@@ -54,7 +58,7 @@ jobs:
54
58
  workspaces: src-tauri
55
59
 
56
60
  - name: Install dependencies (Ubuntu)
57
- if: matrix.platform == 'ubuntu-22.04'
61
+ if: startsWith(matrix.platform, 'ubuntu')
58
62
  run: |
59
63
  sudo apt-get update
60
64
  sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rds_ssm_connect",
3
- "version": "1.7.3",
3
+ "version": "1.7.5",
4
4
  "type": "module",
5
5
  "repository": {
6
6
  "type": "git",
@@ -49,6 +49,10 @@ const updateManifest = {
49
49
  url: `${releaseUrl}/${productName}_${version}_amd64.AppImage.tar.gz`,
50
50
  signature: '',
51
51
  },
52
+ 'linux-aarch64': {
53
+ url: `${releaseUrl}/${productName}_${version}_aarch64.AppImage.tar.gz`,
54
+ signature: '',
55
+ },
52
56
  'windows-x86_64': {
53
57
  url: `${releaseUrl}/${productName}_${version}_x64-setup.nsis.zip`,
54
58
  signature: '',
@@ -15,6 +15,7 @@ const TARGETS = [
15
15
  { triple: 'aarch64-apple-darwin', pkg: 'node22-macos-arm64' },
16
16
  { triple: 'x86_64-apple-darwin', pkg: 'node22-macos-x64' },
17
17
  { triple: 'x86_64-unknown-linux-gnu', pkg: 'node22-linux-x64' },
18
+ { triple: 'aarch64-unknown-linux-gnu', pkg: 'node22-linux-arm64' },
18
19
  { triple: 'x86_64-pc-windows-msvc', pkg: 'node22-win-x64' },
19
20
  ]
20
21
 
package/src/App.svelte CHANGED
@@ -206,7 +206,7 @@ async function openUrl(url) {
206
206
  async function loadProfiles() {
207
207
  if (!selectedProject) return
208
208
  try {
209
- profiles = await invoke('listprofiles', { projectKey: selectedProject })
209
+ profiles = await invoke('list_profiles', { projectKey: selectedProject })
210
210
  selectedProfile = ''
211
211
  } catch (err) {
212
212
  errorMessage = `Failed to load profiles: ${err}`
@@ -3057,7 +3057,7 @@ checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539"
3057
3057
 
3058
3058
  [[package]]
3059
3059
  name = "rds-ssm-connect"
3060
- version = "1.7.3"
3060
+ version = "1.7.5"
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.3"
3
+ version = "1.7.5"
4
4
  description = "Secure RDS connections through AWS SSM"
5
5
  authors = ["Iaroslav Pyrogov"]
6
6
  edition = "2024"
@@ -133,7 +133,7 @@ async fn ensure_sidecar(
133
133
  // Get current PATH and extend with common installation locations
134
134
  let current_path = std::env::var("PATH").unwrap_or_default();
135
135
  let extended_path = format!(
136
- "{}:/usr/local/bin:/opt/homebrew/bin:{}/.local/bin",
136
+ "{}:/usr/local/bin:/opt/homebrew/bin:/home/linuxbrew/.linuxbrew/bin:{}/.local/bin",
137
137
  current_path,
138
138
  std::env::var("HOME").unwrap_or_default()
139
139
  );
@@ -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.3",
4
+ "version": "1.7.5",
5
5
  "identifier": "com.rds-ssm-connect.desktop",
6
6
  "build": {
7
7
  "beforeDevCommand": "npm run dev:vite",