Skip to content

Commit 6057d2e

Browse files
author
Kinin-Code-Offical
committed
chore(release): v0.5.1
1 parent 4a3e8be commit 6057d2e

8 files changed

Lines changed: 572 additions & 662 deletions

File tree

.github/workflows/release.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,19 +25,22 @@ jobs:
2525
ref: ${{ env.RELEASE_TAG }}
2626

2727
- name: Prepare signing certificate
28+
id: prepare_signing
2829
shell: pwsh
2930
env:
30-
CLOUDSQLCTL_SIGN_CERT_B64: ${{ secrets.CLOUDSQLCTL_SIGN_CERT_B64 }}
31-
CLOUDSQLCTL_SIGN_PWD: ${{ secrets.CLOUDSQLCTL_SIGN_PWD }}
31+
CLOUDSQLCTL_SIGN_CERT_B64: ${{ secrets['CLOUDSQLCTL_SIGN_CERT_B64'] }}
32+
CLOUDSQLCTL_SIGN_PWD: ${{ secrets['CLOUDSQLCTL_SIGN_PWD'] }}
3233
run: |
3334
if (-not $env:CLOUDSQLCTL_SIGN_CERT_B64) {
3435
Write-Host "Signing cert not provided; skipping signing setup."
36+
"sign_enabled=false" | Out-File -FilePath $env:GITHUB_OUTPUT -Append
3537
exit 0
3638
}
3739
$certPath = Join-Path $env:RUNNER_TEMP "cloudsqlctl-signing.pfx"
3840
[IO.File]::WriteAllBytes($certPath, [Convert]::FromBase64String($env:CLOUDSQLCTL_SIGN_CERT_B64))
3941
"CLOUDSQLCTL_SIGN_CERT=$certPath" | Out-File -FilePath $env:GITHUB_ENV -Append
4042
"CLOUDSQLCTL_SIGN_PWD=$env:CLOUDSQLCTL_SIGN_PWD" | Out-File -FilePath $env:GITHUB_ENV -Append
43+
"sign_enabled=true" | Out-File -FilePath $env:GITHUB_OUTPUT -Append
4144
4245
- name: Use Node.js 22.x
4346
uses: actions/setup-node@v4
@@ -70,7 +73,7 @@ jobs:
7073
run: npm run installer
7174

7275
- name: Sign artifacts
73-
if: ${{ env.CLOUDSQLCTL_SIGN_CERT != '' }}
76+
if: steps.prepare_signing.outputs.sign_enabled == 'true'
7477
shell: pwsh
7578
run: |
7679
powershell -ExecutionPolicy Bypass -File tools/sign-exe.ps1 -ExePath "bin/cloudsqlctl.exe"

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

33
# Changelog
44

5+
## [0.5.1] - 2026-03-02
6+
7+
### Changed
8+
9+
- bump @types/node from 25.0.3 to 25.1.0 (#55)
10+
- bump commander from 14.0.2 to 14.0.3 (#57)
11+
- bump prettier from 3.7.4 to 3.8.1 (#58)
12+
- bump axios in the npm_and_yarn group across 1 directory (#60)
13+
- bump inquirer from 13.1.0 to 13.2.2 (#59)
14+
- bump commander from 12.1.0 to 14.0.2 (#49)
15+
- bump inquirer from 9.3.8 to 13.1.0 (#50)
16+
- bump @types/extract-zip from 2.0.0 to 2.0.3 (#52)
17+
- bump typescript-eslint from 8.50.0 to 8.51.0 (#53)
18+
- bump globals from 16.5.0 to 17.0.0 (#54)
19+
- update commands reference for v0.5.0
20+
521
## [0.5.0] - 2025-12-22
622

723
### Added

docs/commands.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Cloud SQL Proxy CLI Reference
22

3-
**Version:** 0.5.0
4-
**Generated:** 2025-12-22
3+
**Version:** 0.5.1
4+
**Generated:** 2026-03-02
55

66
## Overview
77

0 commit comments

Comments
 (0)