rds_ssm_connect 1.7.11 → 1.7.12

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.
@@ -100,13 +100,11 @@ jobs:
100
100
  # Find the updater artifact — must match what generate-update-json.js URLs point to:
101
101
  # macOS: .app.tar.gz, Linux: .AppImage, Windows: -setup.exe
102
102
  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
103
+ for f in "$BUNDLE"/macos/*.app.tar.gz "$BUNDLE"/appimage/*.AppImage "$BUNDLE"/nsis/*-setup.exe; do
104
+ if [ -f "$f" ]; then
105
+ UPDATER_FILE="$f"
106
+ break
107
+ fi
110
108
  done
111
109
 
112
110
  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.12' }
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.12",
4
4
  "type": "module",
5
5
  "repository": {
6
6
  "type": "git",
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "rds-ssm-connect"
3
- version = "1.7.11"
3
+ version = "1.7.12"
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.12",
5
5
  "identifier": "com.rds-ssm-connect.desktop",
6
6
  "build": {
7
7
  "beforeDevCommand": "npm run dev:vite",