rds_ssm_connect 1.7.3 → 1.7.4

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.4",
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
 
@@ -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.4"
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.4"
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.3",
4
+ "version": "1.7.4",
5
5
  "identifier": "com.rds-ssm-connect.desktop",
6
6
  "build": {
7
7
  "beforeDevCommand": "npm run dev:vite",