Skip to content

Commit 4a7957a

Browse files
GordonBeemingclaudegitbutler-client
authored
fix: Update Rust crypto dependencies for security vulnerabilities (#82)
* fix: Update Rust crypto dependencies to address security vulnerabilities Upgrade aws-lc-sys 0.34.0 -> 0.39.0 (via aws-lc-rs 1.15.1 -> 1.16.2) and rustls-webpki 0.103.8 -> 0.103.10 to fix 6 security advisories: - GHSA-vw5v-4f2q-w9xf: PKCS7_verify certificate chain validation bypass - GHSA-65p9-r9h6-22vj: Timing side-channel in AES-CCM tag verification - GHSA-hfpc-8r3f-gw53: PKCS7_verify signature validation bypass - GHSA-394x-vwmw-crm3: X.509 name constraints bypass via wildcard/unicode CN - GHSA-9f94-5g5w-gf6r: CRL distribution point scope check logic error - GHSA-pwjx-qhcg-rvj4: CRLs not considered authoritative by distribution point Bump version to 2026.03.24. Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com> Co-authored-by: GitButler <gitbutler@gitbutler.com> * fix: Update copilot-instructions.md versioning docs Remove hardcoded "Current version" line that gets stale. Update Directory.Build.props description to reflect it reads from VERSION file. Add reference to scripts/bump-version.sh and VERSION file in checklist. Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com> Co-authored-by: GitButler <gitbutler@gitbutler.com> --------- Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com> Co-authored-by: GitButler <gitbutler@gitbutler.com>
1 parent b8db934 commit 4a7957a

9 files changed

Lines changed: 15 additions & 17 deletions

.github/copilot-instructions.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,6 @@ grep "BuildDate = " app/Infrastructure/BuildInfo.cs
7979
- Ensure both scripts are kept in sync regarding functionality and version numbers.
8080
- Both scripts MUST have identical version numbers at all times.
8181

82-
**Current version**: 2026.03.22
83-
8482
## Technology Stack
8583

8684
- **CLI Binary**: .NET 10 Native AOT (self-contained, cross-platform)

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2026.03.22
1+
2026.03.24

app/Infrastructure/BuildInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ public static class BuildInfo
1010
/// The build date in yyyy.MM.dd or yyyy.MM.dd.N format.
1111
/// This is replaced during build via MSBuild property.
1212
/// </summary>
13-
public const string BuildDate = "2026.03.22";
13+
public const string BuildDate = "2026.03.24";
1414
}

copilot_here.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# copilot_here PowerShell functions
2-
# Version: 2026.03.22
2+
# Version: 2026.03.24
33
# Repository: https://github.com/GordonBeeming/copilot_here
44

55
# Set console output encoding to UTF-8 for Unicode character support
@@ -23,7 +23,7 @@ $script:DefaultCopilotHereBin = Join-Path $script:DefaultCopilotHereBinDir $scri
2323

2424
$script:CopilotHereBin = if ($env:COPILOT_HERE_BIN) { $env:COPILOT_HERE_BIN } else { $script:DefaultCopilotHereBin }
2525
$script:CopilotHereReleaseUrl = "https://github.com/GordonBeeming/copilot_here/releases/download/cli-latest"
26-
$script:CopilotHereVersion = "2026.03.22"
26+
$script:CopilotHereVersion = "2026.03.24"
2727

2828
# Debug logging function
2929
function Write-CopilotDebug {

copilot_here.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# copilot_here shell functions
2-
# Version: 2026.03.22
2+
# Version: 2026.03.24
33
# Repository: https://github.com/GordonBeeming/copilot_here
44

55
# Configuration
66
COPILOT_HERE_BIN="${COPILOT_HERE_BIN:-$HOME/.local/bin/copilot_here}"
77
COPILOT_HERE_RELEASE_URL="https://github.com/GordonBeeming/copilot_here/releases/download/cli-latest"
8-
COPILOT_HERE_VERSION="2026.03.22"
8+
COPILOT_HERE_VERSION="2026.03.24"
99

1010
# Ensure user bin directory is on PATH (required for the native binary + shell integration checks)
1111
if [ -d "$HOME/.local/bin" ]; then

packaging/winget/GordonBeeming.CopilotHere.installer.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PackageIdentifier: GordonBeeming.CopilotHere
2-
PackageVersion: 2026.03.22
2+
PackageVersion: 2026.03.24
33
Installers:
44
- Architecture: x64
55
InstallerType: zip

packaging/winget/GordonBeeming.CopilotHere.locale.en-US.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PackageIdentifier: GordonBeeming.CopilotHere
2-
PackageVersion: 2026.03.22
2+
PackageVersion: 2026.03.24
33
PackageLocale: en-US
44
Publisher: Gordon Beeming
55
PackageName: copilot_here
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PackageIdentifier: GordonBeeming.CopilotHere
2-
PackageVersion: 2026.03.22
2+
PackageVersion: 2026.03.24
33
DefaultLocale: en-US
44
ManifestType: version
55
ManifestVersion: 1.6.0

proxy/Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)