Skip to content

Commit a9b4054

Browse files
authored
Merge pull request #47 from GitGuardian/salomevoltz/release-v0.4.1
chore(changelog): Add changelog for v0.4.1
2 parents e056f31 + 46a73e7 commit a9b4054

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# GitGuardian Secret Security Changelog
22

3+
## [0.4.1]
4+
5+
### Fixed
6+
7+
- Ensure all global environment variables are loaded before making API calls
8+
39
## [0.4.0]
410

511
### Modified

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"displayName": "GitGuardian",
55
"description": "Visual Studio Code extension designed to help developers safeguard their sensitive information from accidental leaks in their code",
66
"icon": "images/icon.png",
7-
"version": "0.4.0",
7+
"version": "0.4.1",
88
"publisher": "gitguardian-secret-security",
99
"engines": {
1010
"vscode": "^1.81.0"

src/lib/run-ggshield.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export function runGGShieldCommand(
2222
const { ggshieldPath, apiUrl, apiKey } = configuration;
2323
let env: NodeJS.ProcessEnv = {
2424
...process.env,
25-
GITGUARDIAN_API_URL: apiUrl,
25+
GITGUARDIAN_INSTANCE: apiUrl,
2626
GG_USER_AGENT: "gitguardian-vscode",
2727
};
2828

0 commit comments

Comments
 (0)