Skip to content

Update ggshield version to v1.41.0 #89

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 26, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ggshield_version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.40.0
1.41.0

Unchanged files with check annotations Beta

import * as fs from "fs";
import * as os from "os";
import * as tar from "tar";
const AdmZip = require("adm-zip");

Check warning on line 6 in src/test/suite/lib/ggshield-resolver-utils.test.ts

GitHub Actions / build-and-test (macos-latest)

Variable name `AdmZip` must match one of the following formats: camelCase, UPPER_CASE

Check warning on line 6 in src/test/suite/lib/ggshield-resolver-utils.test.ts

GitHub Actions / build-and-test (windows-latest)

Variable name `AdmZip` must match one of the following formats: camelCase, UPPER_CASE

Check warning on line 6 in src/test/suite/lib/ggshield-resolver-utils.test.ts

GitHub Actions / build-and-test (ubuntu-latest)

Variable name `AdmZip` must match one of the following formats: camelCase, UPPER_CASE

Check warning on line 6 in src/test/suite/lib/ggshield-resolver-utils.test.ts

GitHub Actions / build-and-test (windows-latest)

Variable name `AdmZip` must match one of the following formats: camelCase, UPPER_CASE

Check warning on line 6 in src/test/suite/lib/ggshield-resolver-utils.test.ts

GitHub Actions / build-and-test (ubuntu-latest)

Variable name `AdmZip` must match one of the following formats: camelCase, UPPER_CASE

Check warning on line 6 in src/test/suite/lib/ggshield-resolver-utils.test.ts

GitHub Actions / build-and-test (macos-latest)

Variable name `AdmZip` must match one of the following formats: camelCase, UPPER_CASE
import * as getGGShieldUtils from "../../../lib/ggshield-resolver-utils";
import { ExtensionContext, window, OutputChannel } from "vscode";
import axios, { AxiosRequestConfig } from "axios";
import { Agent } from "https";
const AdmZip = require("adm-zip");

Check warning on line 7 in src/lib/ggshield-resolver-utils.ts

GitHub Actions / build-and-test (macos-latest)

Variable name `AdmZip` must match one of the following formats: camelCase, UPPER_CASE

Check warning on line 7 in src/lib/ggshield-resolver-utils.ts

GitHub Actions / build-and-test (windows-latest)

Variable name `AdmZip` must match one of the following formats: camelCase, UPPER_CASE

Check warning on line 7 in src/lib/ggshield-resolver-utils.ts

GitHub Actions / build-and-test (ubuntu-latest)

Variable name `AdmZip` must match one of the following formats: camelCase, UPPER_CASE

Check warning on line 7 in src/lib/ggshield-resolver-utils.ts

GitHub Actions / build-and-test (windows-latest)

Variable name `AdmZip` must match one of the following formats: camelCase, UPPER_CASE

Check warning on line 7 in src/lib/ggshield-resolver-utils.ts

GitHub Actions / build-and-test (ubuntu-latest)

Variable name `AdmZip` must match one of the following formats: camelCase, UPPER_CASE

Check warning on line 7 in src/lib/ggshield-resolver-utils.ts

GitHub Actions / build-and-test (macos-latest)

Variable name `AdmZip` must match one of the following formats: camelCase, UPPER_CASE
import { ExtensionContext, OutputChannel } from "vscode";
const defaultRequestConfig = {
headers: { "User-Agent": "GitGuardian-VSCode-Extension" },

Check warning on line 11 in src/lib/ggshield-resolver-utils.ts

GitHub Actions / build-and-test (macos-latest)

Object Literal Property name `User-Agent` must match one of the following formats: camelCase

Check warning on line 11 in src/lib/ggshield-resolver-utils.ts

GitHub Actions / build-and-test (windows-latest)

Object Literal Property name `User-Agent` must match one of the following formats: camelCase

Check warning on line 11 in src/lib/ggshield-resolver-utils.ts

GitHub Actions / build-and-test (ubuntu-latest)

Object Literal Property name `User-Agent` must match one of the following formats: camelCase

Check warning on line 11 in src/lib/ggshield-resolver-utils.ts

GitHub Actions / build-and-test (windows-latest)

Object Literal Property name `User-Agent` must match one of the following formats: camelCase

Check warning on line 11 in src/lib/ggshield-resolver-utils.ts

GitHub Actions / build-and-test (ubuntu-latest)

Object Literal Property name `User-Agent` must match one of the following formats: camelCase

Check warning on line 11 in src/lib/ggshield-resolver-utils.ts

GitHub Actions / build-and-test (macos-latest)

Object Literal Property name `User-Agent` must match one of the following formats: camelCase
timeout: 30_000,
} satisfies AxiosRequestConfig;