Skip to content

chore(deps): bump semgrep from 1.113.0 to 1.131.0 #1142

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 4, 2025

Bumps semgrep from 1.113.0 to 1.131.0.

Release notes

Sourced from semgrep's releases.

Release v1.131.0

1.131.0 - 2025-07-30

Fixed

  • Semgrep diff scans can now query the app for which merge base to use. This fixes the issue where some diff scans on shallow clones would use the wrong merge base, and do a diff scan on commits not in a PR. (better-merge-base)
  • Fix a possibility that an empty file be created in place of a missing input file. This bug had been introduced with Semgrep 1.115.0. (dont-create-missing-input-files)
  • When processing a target with debug logging enabled, we now only log the target path rather than the entire internal structure representation. This allows for more succinct log files and no longer introduces mid-entry newlines, which can break log-parsing tooling. (gh-4315)
  • Language server: Fixed a bug which broke the Sign in command (saf-2151)
  • CiScanComplete.dependencies is now populated with parsed dependencies (sc-2468)
  • Print error details when a SemgrepError exception is raised and causes semgrep to fail. (silent-semgrep-error)

Release v1.130.0

1.130.0 - 2025-07-23

Fixed

  • Fix the Python parser to correctly handle and parse valid structural dictionary patterns. (gh-11100)

Also includes changes from the canceled 1.129.0 release

Added

  • A warning is now printed for each exclude or include pattern found in rules that is considered ambiguous (paths.exclude, paths.include).

    Currently, a pattern that contains a middle slash such as src/*.c is considered floating or unanchored by our implementation. In order to be compliant with Gitignore and Semgrepignore, src/*.c should be treated as anchored. Since many programmers are unaware of this subtlety in the Gitignore specification, Semgrep now prints a warning asking the user to lift the ambiguity. A user will now be asked to change their pattern src/*.c into either /src/*.c (anchored) or **/src/*.c (floating). This clarifies the expected behavior for readers of Semgrep rules and will avoid problems when Semgrep rules adopt the Gitignore/Semgrepignore behavior. (rule-paths-middle-slash-patterns)

  • Secrets: Validation for AWS credentials which failed due to possibly transient reasons is now retried (3 attempts max). (scrt-917)

Fixed

... (truncated)

Changelog

Sourced from semgrep's changelog.

1.131.0 - 2025-07-30

Fixed

  • Semgrep diff scans can now query the app for which merge base to use. This fixes the issue where some diff scans on shallow clones would use the wrong merge base, and do a diff scan on commits not in a PR. (better-merge-base)
  • Fix a possibility that an empty file be created in place of a missing input file. This bug had been introduced with Semgrep 1.115.0. (dont-create-missing-input-files)
  • When processing a target with debug logging enabled, we now only log the target path rather than the entire internal structure representation. This allows for more succinct log files and no longer introduces mid-entry newlines, which can break log-parsing tooling. (gh-4315)
  • Language server: Fixed a bug which broke the Sign in command (saf-2151)
  • CiScanComplete.dependencies is now populated with parsed dependencies (sc-2468)
  • Print error details when a SemgrepError exception is raised and causes semgrep to fail. (silent-semgrep-error)

1.130.0 - 2025-07-23

Fixed

  • Fix the Python parser to correctly handle and parse valid structural dictionary patterns. (gh-11100)

(CANCELED) 1.129.0 - 2025-07-17

Added

  • A warning is now printed for each exclude or include pattern found in rules that is considered ambiguous (paths.exclude, paths.include).

    Currently, a pattern that contains a middle slash such as src/*.c is considered floating or unanchored by our implementation. In order to be compliant with Gitignore and Semgrepignore, src/*.c should be treated as anchored. Since many programmers are unaware of this subtlety in the Gitignore specification, Semgrep now prints a warning asking the user to lift the ambiguity. A user will now be asked to change their pattern src/*.c into either /src/*.c (anchored) or **/src/*.c (floating). This clarifies the expected behavior for readers of Semgrep rules and will avoid problems when Semgrep rules adopt the Gitignore/Semgrepignore behavior. (rule-paths-middle-slash-patterns)

  • Secrets: Validation for AWS credentials which failed due to possibly transient reasons is now retried (3 attempts max). (scrt-917)

Fixed

... (truncated)

Commits
  • 47fbfd8 chore: release version 1.131.0
  • ea1aa51semgrep/semgrep-proprietary#4364
  • e310926 perf: use git reset for diff scans when repo is clean (semgrep/semgrep-propri...
  • ff30572 Don't create an empty file when opening a missing file for reading (semgrep/s...
  • bd89690semgrep/semgrep-proprietary#4350
  • 7213b68 fix(commons): Arg.parse_argv should be recallable (semgrep/semgrep-proprietar...
  • be7b0c6semgrep/semgrep-proprietary#4354
  • df93561semgrep/semgrep-proprietary#4272
  • e325f48 chore: bump interfaces for merge base atd field (semgrep/semgrep-proprietary#...
  • 04afda4 chore: remove OSS/languages/\<lang>/orig_spec directories (semgrep/semgrep-p...
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Aug 4, 2025
@dependabot dependabot bot requested a review from behnazh-w as a code owner August 4, 2025 17:47
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Aug 4, 2025
@dependabot dependabot bot requested a review from tromai as a code owner August 4, 2025 17:47
@dependabot dependabot bot added the python Pull requests that update Python code label Aug 4, 2025
@oracle-contributor-agreement oracle-contributor-agreement bot added the OCA Verified All contributors have signed the Oracle Contributor Agreement. label Aug 4, 2025
Bumps [semgrep](https://github.com/returntocorp/semgrep) from 1.113.0 to 1.131.0.
- [Release notes](https://github.com/returntocorp/semgrep/releases)
- [Changelog](https://github.com/semgrep/semgrep/blob/develop/CHANGELOG.md)
- [Commits](semgrep/semgrep@v1.113.0...v1.131.0)

---
updated-dependencies:
- dependency-name: semgrep
  dependency-version: 1.131.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/pip/main/semgrep-1.131.0 branch from b329640 to 842d0af Compare August 5, 2025 00:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file OCA Verified All contributors have signed the Oracle Contributor Agreement. python Pull requests that update Python code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants