| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2026-05-16 | 69.6 kB | |
| v9.5.0 source code.tar.gz | 2026-05-16 | 46.7 MB | |
| v9.5.0 source code.zip | 2026-05-16 | 48.4 MB | |
| Totals: 3 Items | 95.1 MB | 0 | |
What's Changed
Take 2 mn to read MegaLinter v9.5.0 announcements
- Breaking changes
-
Docker images published only to GitHub Container Registry (
ghcr.io) until OIDC-based publishing to Docker Hub is implemented. The Docker Hub registry (docker.io/oxsecurity/megalinter) is frozen at v9.4.0: pulls ofoxsecurity/megalinter:v9(or:beta, or any flavor tag) will keep returning v9.4.0. To get v9.5.0 and later from CI tools other than GitHub Actions (GitLab CI, Azure Pipelines, Bitbucket, Jenkins, Drone, rawdocker run, …), switch your image references:oxsecurity/megalinter:v9→ghcr.io/oxsecurity/megalinter:v9oxsecurity/megalinter:beta→ghcr.io/oxsecurity/megalinter:betaoxsecurity/megalinter-<flavor>:v9→ghcr.io/oxsecurity/megalinter-<flavor>:v9
GitHub Action users (
uses: oxsecurity/megalinter@v9) andmega-linter-runnerusers are not affected, as both already pull fromghcr.io. -
ESLint-based linters upgraded to v10+. Legacy
.eslintrc.*configs are no longer supported: you must migrate to flat-config (eslint.config.js) to keep usingJAVASCRIPT_ES,TYPESCRIPT_ES,JSX_ESLINT,TSX_ESLINT, andJSON_ESLINT_PLUGIN_JSONC. -
Airbnb and Standard ESLint configs replaced (they never shipped ESLint 9+ support):
extends: ["airbnb"]→extends: ["airbnb-extended"]extends: ["standard"]→extends: ["neostandard"]
-
Core
- User notifications system: linters can surface structured "Notices" to end users in the PR comment / report footer (used for ESLint migration, deprecated options, etc.), replaces the ad-hoc migration warnings
- Security: more default hidden environment variables, so a compromised linter cannot leak your secrets
- Upgrade .NET runtime to 10.0 (csharpier, dotnet-format, roslynator, devskim, tsqllint, vbdotnet-format)
-
Upgrade GO runtime to 1.26.3
-
New linters
- osv-scanner: trivy-like vulnerability scanner by Google
-
zizmor: GitHub Actions static analysis
-
Disabled linters
- KICS (until upstream security issue is fixed)
-
Spectral (crashing)
-
Re-enabled linters
-
Trivy (v0.70.0): the supply chain security incident is resolved
-
Deprecated linters
-
Removed linters
-
Media
-
Linters enhancements
- ESLint: legacy
.eslintrc.*configs are now detected and a migration notice is emitted in the report so users know they need to switch to flat-config - shellcheck: honour the
BASH_SHELLCHECK_CONFIG_FILEvariable /.shellcheckrcconfig file - raku (Rakudo): now ships on ARM64 too
- scala: linter installation is now deterministic (same binary across rebuilds)
- v8r (JSON/YAML schema validation): output now shows only validation errors (no more "no schema found" or success noise)
- lychee: removed the deprecated
exclude_mailoption (no longer supported by lychee upstream) -
Faster image pulls: several linters (Lua/StyLua arm64, clj-kondo, kubescape, ls-lint, dotenv-linter) now use pre-built Alpine binaries instead of compiling from source
-
Fixes
- Console output: linters now show their log sections (not only on errors), the results table and reporter logs are printed after linters complete, and parallel-run logs are no longer interleaved
YAML_V8R_CONFIG_FILE/JSON_V8R_CONFIG_FILEare now correctly applied (the v8r--catalogsoption is wired through)- lychee: fix the configured
headers/ Accept settings being ignored - Custom flavor builder: works correctly for repositories whose name contains uppercase characters
-
Docs: corrected the documented default value for the pre-commands
cwdoption -
Reporters
- Comment reporters (GitHub, GitLab, Azure DevOps, Bitbucket) now work when running MegaLinter from Jenkins CI
- GitlabCommentReporter activates as soon as
GITLAB_ACCESS_TOKEN_MEGALINTERis set (no longer requiresCI_JOB_TOKEN) - BitbucketCommentReporter: per-linter sections rendered as
###headings (Bitbucket Cloud markdown was displaying the previous<details>HTML tags as literal text) -
Display a default user notification on PR/console reports inviting users to read the MegaLinter 9.5.0 release announcement. Can be disabled by setting
SECURITY_SUGGESTIONS: false. -
Flavors
-
Multi-arch images: In custom flavors, linters can now build for
linux/arm64in addition tolinux/amd64whenever possible (Apple Silicon, AWS Graviton, Ampere…) -
Doc
- Add documentation for the megalinter-ado Azure DevOps extension and the megalinter-mcp-server MCP server
-
Explicitly discourage the use of Personal Access Tokens (PAT) in workflows for security reasons
-
mega-linter-runner
- New
--list-vars [pattern]flag (with--json) lists every MegaLinter env variable that can be passed via-e, with type, default, allowed values and examples (handy for AI coding agents) -
-e ENABLE_LINTERS=YAML_PRETTIER,YAML_YAMLLINTno longer silently drops values after the first comma (#7500). The--env=KEY=VALUElong form is also accepted. -
Dev
- Add
CLAUDE.mdand a set of/add-linter,/update-linter-version,/review-descriptor,/fix-linter-test,/add-reporter,/add-flavor,/build,/diagnose-config,/fix-security-issueskills to help work on MegaLinter with coding agents (Claude Code, GitHub Copilot, Codex, gemini-cli…) - Migrate copilot-instructions into Claude Code Agents & Skills
-
New descriptor capabilities for custom linter integrations:
cli_lint_extra_args_afterper lint mode (list_of_files/project/file), a{file}template variable usable in command-line args, and a customizable files separator -
CI
- Run ARM linter jobs only when the commit message contains "ARM" (avoids 200 jobs per PR)
- Do not push a fix commit if only markdown or JSON files were updated
- Run osv-scanner on MegaLinter's own sources
- Optimize the linter-job matrix for dependabot and renovate PRs
- Exclude test dependencies from dependabot
- Faster Docker image builds: optimized Dockerfile layer order, buildx layer cache (
type=gha, zstd-compressed) on all deploy workflows, DEV pipeline split into parallel jobs sharing the image via cache, and cargo-based tools (sarif-fmt, zizmor, shellcheck-sarif, stylua) built in parallel multi-stage builders so the Rust toolchain no longer ships in the final image (except for clippy) -
Hardened MegaLinter's own GitHub Actions workflows against script injection via untrusted PR contexts (zizmor findings)
-
Linter versions upgrades (62)
- actionlint from 1.7.11 to 1.7.12
- ansible-lint from 26.2.0 to 26.4.0
- bicep_linter from 0.41.2 to 0.43.8
- black from 26.1.0 to 26.3.1
- cfn-lint from 1.45.0 to 3.14
- checkov from 3.2.506 to 3.2.529
- clippy from 0.1.93 to 0.1.95
- clj-kondo from 2026.01.19 to 2025.01.16
- code-analyzer-apex from 5.10.0 to 5.12.0
- code-analyzer-aura from 5.10.0 to 5.12.0
- code-analyzer-lwc from 5.10.0 to 5.12.0
- codespell from 2.4.1 to 2.4.2
- cspell from 9.7.0 to 10.0.0
- dartanalyzer from 3.11.1 to 3.11.6
- dotnet-format from 9.0.114 to 10.0.108
- eslint from 9.39.4 to 10.3.0
- gitleaks from 8.30.0 to 8.30.1
- golangci-lint from 2.10.1 to 2.11.4
- grype from 0.109.0 to 0.112.0
- htmlhint from 1.9.1 to 1.9.2
- isort from 8.0.0 to 8.0.1
- jscpd from 4.0.8 to 4.1.1
- kics from 2.1.19 to 2.1.20
- kingfisher from 1.84.0 to 1.99.0
- kubescape from 4.0.2 to 4.0.8
- lychee from 0.18.0 to 0.24.2
- markdownlint from 0.47.0 to 0.48.0
- npm-groovy-lint from 16.2.0 to 17.0.5
- npm-package-json-lint from 9.1.0 to 10.4.0
- osv-scanner from 2.3.5 to 2.3.8
- php-cs-fixer from 3.94.2 to 3.95.2
- phpstan from 2.1.40 to 2.1.54
- pmd from 7.22.0 to 7.24.0
- powershell from 7.5.4 to 7.6.1
- powershell_formatter from 7.5.4 to 7.6.1
- prettier from 3.8.1 to 3.8.3
- psalm from Psalm.6.15.1@ to Psalm.6.16.1@
- pyright from 1.1.408 to 1.1.409
- raku from 2025.11 to 2026.03
- revive from 1.14.0 to 1.15.0
- robocop from 8.2.2 to 8.2.8
- rubocop from 1.85.0 to 1.86.2
- ruff from 0.15.4 to 0.15.13
- ruff-format from 0.15.4 to 0.15.13
- rumdl from 0.1.32 to 0.1.93
- secretlint from 11.3.1 to 11.7.1
- semgrep from 1.153.1 to 1.163.0
- shfmt from 3.12.0 to 3.13.1
- snakefmt from 0.11.4 to 1.1.0
- snakemake from 9.16.3 to 9.21.0
- sqlfluff from 4.0.4 to 4.2.1
- stylelint from 16.26.1 to 17.11.0
- stylua from 2.0.0 to 2.4.1
- syft from 1.42.1 to 1.44.0
- terraform-fmt from 1.14.5 to 1.15.2
- terragrunt from 0.99.4 to 1.0.4
- tflint from 0.61.0 to 0.62.1
- trivy from 0.69.1 to 0.70.0
- trivy-sbom from 0.69.1 to 0.70.0
- trufflehog from 3.93.6 to 3.95.3
- vale from 3.13.1 to 3.14.2
- zizmor from 1.23.1 to 1.25.0
Pull Requests
- [automation] Auto-update linters version, help and documentation by @nvuillam in https://github.com/oxsecurity/megalinter/pull/7308
- chore(deps): update dependency isort to v8.0.1 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7307
- chore(deps): update dependency eslint-plugin-jsonc to v3.1.1 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7309
- chore(deps): update dependency rumdl to v0.1.33 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7313
- chore(deps): bump simple-git from 3.32.2 to 3.32.3 in /mega-linter-runner by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7311
- chore(deps): bump mem-fs from 4.1.3 to 4.1.4 in /mega-linter-runner by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7310
- chore(deps): update dependency aquasecurity/trivy to v0.69.2 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7317
- [automation] Auto-update linters version, help and documentation by @nvuillam in https://github.com/oxsecurity/megalinter/pull/7323
- chore(deps): update dependency cfn-lint to v1.46.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7331
- chore(deps): update dependency rumdl to v0.1.42 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7330
- [automation] Auto-update linters version, help and documentation by @nvuillam in https://github.com/oxsecurity/megalinter/pull/7332
- chore(deps): update dependency npm-groovy-lint to v17 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7319
- chore(deps): update dependency @salesforce/cli to v2.124.7 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7314
- chore(deps): update dependency aquasecurity/trivy to v0.69.3 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7349
- [automation] Auto-update linters version, help and documentation by @nvuillam in https://github.com/oxsecurity/megalinter/pull/7350
- fix(deps): update dependency yeoman-generator to v8 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7321
- chore(deps): update alpine/terragrunt docker tag to v1.14.6 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7316
- dotnet 10 upgrade by @paulgartner1 in https://github.com/oxsecurity/megalinter/pull/7315
- chore(deps): update dependency anchore/grype to v0.109.1 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7352
- chore(deps): update dependency anchore/syft to v1.42.2 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7353
- chore(deps): update dependency checkov to v3.2.508 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7354
- chore(deps): update dependency codespell to v2.4.2 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7355
- chore(deps): update dependency graphql to v16.13.1 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7358
- chore(deps): update dependency htmlhint to v1.9.2 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7359
- chore(deps): update dependency rubocop to v1.85.1 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7363
- chore(deps): update dependency ruff to v0.15.5 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7365
- chore(deps): update dependency rumdl to v0.1.44 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7366
- chore(deps): bump tar from 7.5.9 to 7.5.10 in /mega-linter-runner in the npm_and_yarn group across 1 directory by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7335
- chore(deps): update dependency mike to v2.1.4 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7361
- chore(deps): update dependency mkdocs-material to v9.7.4 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7362
- chore(deps): update dependency fs-extra to v11.3.4 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7357
- [automation] Auto-update linters version, help and documentation by @nvuillam in https://github.com/oxsecurity/megalinter/pull/7364
- chore(deps): update checkmarx/kics docker tag to v2.1.20 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7351
- chore(deps): update dependency langchain_core to v1.2.18 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7360
- chore(deps): bump fastapi from 0.134.0 to 0.135.1 in /.config/python/dev by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7345
- chore(deps): bump redis from 7.2.1 to 7.3.0 in /.config/python/dev by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7344
- chore(deps): bump langchain-core from 1.2.16 to 1.2.17 in /.config/python/dev by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7342
- chore(deps): bump mkdocs-material from 9.7.3 to 9.7.4 in /.config/python/dev by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7340
- chore(deps): bump docker/setup-buildx-action from 3 to 4 by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7346
- chore(deps): bump docker/metadata-action from 5 to 6 by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7343
- chore(deps): bump docker/setup-qemu-action from 3 to 4 by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7347
- chore(deps): bump docker/login-action from 3 to 4 by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7338
- [automation] Auto-update linters version, help and documentation by @nvuillam in https://github.com/oxsecurity/megalinter/pull/7367
- chore(deps): bump docker/build-push-action from 6 to 7 by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7341
- [automation] Auto-update linters version, help and documentation by @nvuillam in https://github.com/oxsecurity/megalinter/pull/7368
- chore(deps): update mvdan/shfmt docker tag to v3.13.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7395
- chore(deps): update dependency semgrep to v1.155.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7393
- chore(deps): update dependency rust-lang/rust to v1.94.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7392
- chore(deps): update dependency mongodb/kingfisher to v1.88.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7390
- chore(deps): update dependency mgechev/revive to v1.15.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7389
- chore(deps): update dependency golangci/golangci-lint to v2.11.3 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7387
- chore(deps): update dependency ansible-lint to v26.3.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7386
- chore(deps): update dependency @salesforce/cli to v2.126.4 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7385
- chore(deps): update dependency black to v26.3.1 [security] by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7376
- chore(deps): bump simple-git from 3.32.3 to 3.33.0 in /mega-linter-runner by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7371
- chore(deps): update trufflesecurity/trufflehog docker tag to v3.93.8 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7383
- chore(deps): update jdkato/vale docker tag to v3.14.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7404
- chore(deps): update dependency ruff to v0.15.6 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7377
- chore(deps): update dependency rumdl to v0.1.51 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7378
- chore(deps): update ghcr.io/astral-sh/uv docker tag to v0.10.10 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7379
- chore(deps): update dependency powershell/powershell to v7.5.5 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7398
- chore(deps): update dependency eslint to v10.0.3 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7356
- chore(deps): update dependency dart to v3.11.2 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7397
- chore(deps): update python docker tag to v3.12.13 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7381
- chore(deps): update langchain (patch) by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7380
- chore(deps): update dependency yeoman-generator to v8.1.1 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7403
- chore(deps): lock file maintenance by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7322
- Disable trivy by @nvuillam in https://github.com/oxsecurity/megalinter/pull/7422
- [automation] Auto-update linters version, help and documentation by @nvuillam in https://github.com/oxsecurity/megalinter/pull/7407
- chore(deps): update dependency snakefmt to v0.11.5 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7400
- chore(deps): update dependency snakemake to v9.18.1 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7402
- chore(deps): update dependency phpstan/phpstan to v2.1.44 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7437
- chore(deps): update dependency kubescape/kubescape to v4.0.3 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7434
- chore(deps): update dependency rumdl to v0.1.60 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7440
- chore(deps): update dependency dart to v3.11.4 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7430
- chore(deps): update dependency anchore/syft to v1.42.3 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7428
- chore(deps): update alpine/terragrunt docker tag to v1.14.7 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7427
- chore(deps): update dependency @salesforce/cli to v2.127.2 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7446
- chore(deps): update dependency cfn-lint to v1.47.1 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7448
- chore(deps): update dependency anchore/grype to v0.110.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7447
- chore(deps): update ghcr.io/astral-sh/uv docker tag to v0.10.12 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7441
- chore(deps): update zricethezav/gitleaks docker tag to v8.30.1 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7445
- chore(deps): update dependency powershell/powershell to v7.6.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7452
- chore(deps): update dependency eslint to v10.1.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7449
- chore(deps): update dependency rubocop to v1.86.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7457
- chore(deps): update dependency semgrep to v1.156.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7458
- chore(deps): update dependency mongodb/kingfisher to v1.90.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7451
- chore(deps): update dependency vimeo/psalm to v6.16.1 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7460
- chore(deps): update dependency snakefmt to v1 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7467
- chore(deps): update redis docker tag to v8.6.2 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7444
- chore(deps): update trufflesecurity/trufflehog docker tag to v3.94.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7464
- chore(deps): update dependency requests to v2.33.0 [security] by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7472
- chore(deps): update dependency rubocop-github to v0.27.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7401
- chore(deps): update dependency ruff to v0.15.7 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7439
- chore(deps): update dependency @salesforce/cli to v2.128.5 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7473
- chore(deps): bump the uv group across 2 directories with 2 updates by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7470
- chore(deps): bump requests from 2.24.0 to 2.33.0 in /.automation/test/repository_syft in the pip group across 1 directory by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7469
- chore(deps): update dependency importlib-metadata to v9 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7466
- fix(deps): update langchain to ~=1.4.0 (minor) by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7465
- chore(deps): update tflint plugin terraform-linters/tflint-ruleset-google to v0.39.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7463
- chore(deps): update secretlint monorepo to v11.4.0 (minor) by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7462
- chore(deps): update ghcr.io/astral-sh/uv docker tag to v0.11.1 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7461
- chore(deps): update dependency uvicorn to v0.42.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7459
- chore(deps): update dependency requests to v2.33.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7456
- chore(deps): update dependency pytest-cov to v7.1.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7455
- chore(deps): update node.js to v24.14.1 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7443
- chore(deps): update jdkato/vale docker tag to v3.14.1 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7442
- chore(deps): update dependency robotframework-robocop to v8.2.3 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7438
- chore(deps): update dependency mkdocs-material to v9.7.6 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7436
- chore(deps): update dependency fastapi to v0.135.2 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7432
- chore(deps): update dependency eslint-plugin-jsonc to v3.1.2 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7431
- chore(deps): update dependency checkov to v3.2.510 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7429
- chore(deps): update dependency psscriptanalyzer to 1.25.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7453
- chore(deps): bump langchain-core from 1.2.19 to 1.2.20 in /.config/python/dev by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7415
- chore(deps): update salesforce packages (patch) by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7382
- chore(deps): update dependency sfdx-hardis to v6.27.2 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7399
- chore(deps): bump fastapi from 0.134.0 to 0.135.1 in /server by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7337
- feat(deps): upgrade lychee from v0.18 to v0.23 and use semver by @bdovaz in https://github.com/oxsecurity/megalinter/pull/7468
- [automation] Auto-update linters version, help and documentation by @github-actions[bot] in https://github.com/oxsecurity/megalinter/pull/7426
- chore(deps): update dependency golangci/golangci-lint to v2.11.4 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7433
- chore(deps): update dependency checkov to v3.2.511 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7474
- chore(deps): update dependency sfdx-hardis to v7 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7406
- chore(deps): update typescript-eslint monorepo to v8.57.2 (minor) - autoclosed by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7405
- chore(deps): update dependency virtualenv to v21.2.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7394
- chore(deps): update dependency redis to v7.4.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7391
- chore(deps): update tflint plugin terraform-linters/tflint-ruleset-aws to v0.46.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7396
- chore(deps): update dependency markdownlint-cli to v0.48.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7388
- fix(deps): update dependency yeoman-environment to v6 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7320
- chore(deps): update dependency pygithub to v2.9.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7454
- chore(deps): bump actions/setup-node from 6.1.0 to 6.2.0 by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/6975
- chore(deps): lock file maintenance by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7476
- [automation] Auto-update linters version, help and documentation by @github-actions[bot] in https://github.com/oxsecurity/megalinter/pull/7477
- chore(deps): update dependency pmd/pmd to v7.23.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7480
- chore(deps): update dependency graphql to v16.13.2 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7479
- chore(deps): update dependency checkov to v3.2.513 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7481
- chore(deps): update dependency robotframework-robocop to v8.2.4 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7483
- chore(deps): update dependency ruff to v0.15.8 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7484
- chore(deps): update dependency rumdl to v0.1.62 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7485
- chore(deps): update dependency rust-lang/rust to v1.94.1 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7486
- chore(deps): update dependency snakemake to v9.18.2 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7487
- chore(deps): update trufflesecurity/trufflehog docker tag to v3.94.1 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7489
- chore(deps): update dependency sfdx-hardis to v7.5.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7490
- feat: build linters for linux/arm64 where possible in deploy-*-linters.yml by @bdovaz in https://github.com/oxsecurity/megalinter/pull/6989
- chore(deps): update ghcr.io/astral-sh/uv docker tag to v0.11.2 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7488
- chore(deps): update dependency eslint-plugin-jest to v29.15.1 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7482
- chore(deps): bump python-gitlab from 8.1.0 to 8.2.0 in /.config/python/dev by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7496
- chore(deps): bump langchain-core from 1.2.22 to 1.2.23 in /.config/python/dev by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7495
- [automation] Auto-update linters version, help and documentation by @github-actions[bot] in https://github.com/oxsecurity/megalinter/pull/7493
- chore(deps): bump regex from 2026.2.28 to 2026.4.4 in /.config/python/dev by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7510
- chore(deps): bump langchain-core from 1.2.23 to 1.2.26 in /.config/python/dev by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7509
- chore(deps): bump fastapi from 0.135.2 to 0.135.3 in /.config/python/dev by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7506
- chore(deps): bump pymdown-extensions from 10.21 to 10.21.2 in /.config/python/dev by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7504
- chore(deps): bump the npm_and_yarn group across 7 directories with 6 updates by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7501
- chore(deps): bump the uv group across 1 directory with 2 updates by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7499
- chore(deps): bump lodash-es from 4.17.23 to 4.18.1 in /mega-linter-runner in the npm_and_yarn group across 1 directory by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7502
- chore(deps): bump uvicorn from 0.42.0 to 0.43.0 in /server by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7503
- chore(deps): bump requests from 2.33.0 to 2.33.1 in /.config/python/dev by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7508
- chore(deps): update dependency sqlfluff to v4.1.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7491
- chore(deps): bump pygments from 2.19.2 to 2.20.0 in /server by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7505
- chore(deps): bump fastapi from 0.135.2 to 0.135.3 in /server by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7507
- Add arm compatibility to Rakudo by @bdovaz in https://github.com/oxsecurity/megalinter/pull/7515
- chore(deps): update dependency pygments to v2.20.0 [security] by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7513
- [automation] Auto-update linters version, help and documentation by @github-actions[bot] in https://github.com/oxsecurity/megalinter/pull/7514
- chore(deps): bump actions/github-script from 8 to 9 by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7523
- chore(deps): bump python-multipart from 0.0.22 to 0.0.26 in /.config/python/dev by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7522
- [automation] Auto-update linters version, help and documentation by @github-actions[bot] in https://github.com/oxsecurity/megalinter/pull/7517
- Disable spectral by @nvuillam in https://github.com/oxsecurity/megalinter/pull/7578
- chore(deps): update dependency anchore/syft to v1.42.4 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7531
- chore(deps): update dependency checkov to v3.2.521 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7532
- chore(deps): update dependency rubocop to v1.86.1 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7543
- chore(deps): update dependency prettier to v3.8.2 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7539
- chore(deps): update dependency phpstan/phpstan to v2.1.49 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7538
- chore(deps): update dependency npm-groovy-lint to v17.0.3 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7537
- chore(deps): update dependency jscpd to v4.0.9 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7535
- chore(deps): update dependency azure/bicep to v0.42.1 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7555
- chore(deps): update dependency anchore/grype to v0.111.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7553
- chore(deps): update dependency cspell to v9.8.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7557
- chore(deps): update dependency mongodb/kingfisher to v1.95.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7561
- chore(deps): update dependency ansible-lint to v26.4.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7554
- chore(deps): update dependency snakemake to v9.19.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7566
- chore(deps): update dependency semgrep to v1.159.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7563
- chore(deps): update dependency eslint to v10.2.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7558
- chore(deps): update dependency cfn-lint to v1.48.1 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7556
- chore(deps): update rhysd/actionlint docker tag to v1.7.12 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7550
- chore(deps): update ghcr.io/astral-sh/uv docker tag to v0.11.7 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7548
- chore(deps): update trufflesecurity/trufflehog docker tag to v3.94.3 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7552
- chore(deps): update mvdan/shfmt docker tag to v3.13.1 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7549
- chore(deps): update dependency rumdl to v0.1.73 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7545
- chore(deps): update dependency ruff to v0.15.11 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7544
- chore(deps): update dependency robotframework-robocop to v8.2.7 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7542
- chore(deps): update dependency phpstan/phpstan to v2.1.50 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7581
- chore(deps): update dependency cspell to v10 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7575
- chore(deps): update alpine/terragrunt docker tag to v1.14.8 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7529
- chore(deps): bump the uv group across 2 directories with 4 updates by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7569
- chore(deps): update dependency npm-groovy-lint to v17.0.4 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7580
- chore(deps): update dependency prettier to v3.8.3 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7582
- fix(deps): update dependency langchain-ollama to ~=1.1.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7574
- chore(deps): update typescript-eslint monorepo to v8.58.2 (minor) by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7573
- chore(deps): update tflint plugin terraform-linters/tflint-ruleset-aws to v0.47.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7572
- chore(deps): update secretlint monorepo to v11.7.1 (minor) by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7571
- chore(deps): update dependency python-multipart to v0.0.26 [security] by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7570
- chore(deps): update dependency simple-git to v3.36.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7565
- chore(deps): update dependency sfdx-hardis to v7.7.1 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7564
- chore(deps): update dependency mike to v2.2.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7560
- chore(deps): update dependency friendsofphp/php-cs-fixer to v3.95.1 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7559
- chore(deps): update dependency yeoman-environment to v6.0.1 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7547
- chore(deps): update dependency virtualenv to v21.2.4 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7546
- chore(deps): update dependency pygithub to v2.9.1 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7540
- chore(deps): update dependency lightning-flow-scanner to v6.19.3 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7536
- chore(deps): update dependency @salesforce/plugin-packaging to v2.25.17 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7530
- chore(deps): update dependency eslint-plugin-jest to v29.15.2 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7534
- chore(deps): update dependency click to v8.3.2 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7533
- chore(deps): update dependency langchain_core to v1.2.28 [security] by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7518
- no new push for json by @nvuillam in https://github.com/oxsecurity/megalinter/pull/7587
- [automation] Auto-update linters version, help and documentation by @github-actions[bot] in https://github.com/oxsecurity/megalinter/pull/7568
- Fix Docker image name failures for repos with uppercase characters in custom flavor builder by @Copilot in https://github.com/oxsecurity/megalinter/pull/7326
- Broaden default secured environment variables using regex patterns by @nvuillam in https://github.com/oxsecurity/megalinter/pull/7597
- chore(deps): update dependency rust-lang/rust to v1.95.0 - autoclosed by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7595
- chore(deps): update dependency kubescape/kubescape to v4.0.5 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7591
- chore(deps): update dependency dart to v3.11.5 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7589
- chore(deps): update dependency typescript to v6 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7492
- chore(deps): update dependency rq to v2.8.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7594
- chore(deps): update dependency fastapi to v0.136.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7593
- chore(deps): update node.js to v24.15.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7596
- chore(deps): update langchain (patch) - autoclosed by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7592
- chore(deps): update dependency @stoplight/spectral-cli to v6.15.1 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7588
- chore(deps): update dependency npm-package-json-lint to v10 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7583
- chore(deps): bump the uv group across 1 directory with 2 updates by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7585
- chore(deps): update python docker tag by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7567
- chore(deps): bump langchain-core from 1.2.31 to 1.3.0 in /.config/python/dev by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7600
- chore(deps-dev): bump eslint from 10.2.0 to 10.2.1 in /mega-linter-runner by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7601
- Fix incorrect default value for pre-commands
cwdin documentation by @Copilot in https://github.com/oxsecurity/megalinter/pull/7602 - Add osv-scanner by @nvuillam in https://github.com/oxsecurity/megalinter/pull/7577
- [automation] Auto-update linters version, help and documentation by @github-actions[bot] in https://github.com/oxsecurity/megalinter/pull/7599
- Activate osv-scanner and configure exclusions by @nvuillam in https://github.com/oxsecurity/megalinter/pull/7607
- chore(deps): bump aiohttp from 3.13.4 to 3.13.5 in /.config/python/dev by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7611
- chore(deps): bump orjson from 3.11.7 to 3.11.8 in /.config/python/dev by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7609
- chore(deps): bump langsmith from 0.7.31 to 0.7.32 in /.config/python/dev by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7610
- chore(deps): update dependency rumdl to v0.1.75 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7619
- Fix YAML_V8R_CONFIG_FILE / JSON_V8R_CONFIG_FILE not recognized by @Copilot in https://github.com/oxsecurity/megalinter/pull/7617
- [automation] Auto-update linters version, help and documentation by @github-actions[bot] in https://github.com/oxsecurity/megalinter/pull/7618
- chore(deps): update dependency stylelint to v17 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7075
- [automation] Auto-update linters version, help and documentation by @github-actions[bot] in https://github.com/oxsecurity/megalinter/pull/7620
- Add BASH_SHELLCHECK_CONFIG_FILE support via shellcheck descriptor config fields by @Copilot in https://github.com/oxsecurity/megalinter/pull/7625
- chore(deps): update dependency rumdl to v0.1.78 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7622
- chore(deps): update dependency pyright to v1.1.409 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7621
- fix(deps): update dependency uuid to v14 [security] by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7630
- Add documentation, rules, and skills for MegaLinter by @nvuillam in https://github.com/oxsecurity/megalinter/pull/7629
- chore(deps): update dependency gitpython to v3.1.47 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7627
- chore(deps): update dependency langchain_openai to v1.1.16 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7628
- chore(deps): bump the npm_and_yarn group across 3 directories with 19 updates by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7631
- chore(deps): bump the npm_and_yarn group across 2 directories with 2 updates by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7632
- chore(deps): update alpine/terragrunt docker tag to v1.14.9 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7633
- chore(deps): update dependency anchore/grype to v0.111.1 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7634
- Disable KICS for security risk by @nvuillam in https://github.com/oxsecurity/megalinter/pull/7637
- [automation] Auto-update linters version, help and documentation by @github-actions[bot] in https://github.com/oxsecurity/megalinter/pull/7626
- chore(deps): update dependency click to v8.3.3 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7635
- chore(deps): update dependency langsmith to v0.7.34 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7636
- chore(deps): update dependency langsmith to v0.7.35 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7639
- fix: Ensure CI systems recognize linter output sections by @nvuillam in https://github.com/oxsecurity/megalinter/pull/7650
- chore(deps): update dependency fastapi to v0.136.1 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7638
- chore(deps): update dependency langsmith to v0.7.36 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7641
- chore(deps): bump uvicorn from 0.44.0 to 0.46.0 in /server by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7642
- chore(deps): bump actions/setup-node from 6.3.0 to 6.4.0 by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7643
- chore(deps): bump langsmith from 0.7.35 to 0.7.36 in /.config/python/dev by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7648
- chore(deps): bump langchain-openai from 1.1.16 to 1.2.1 in /.config/python/dev by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7644
- [automation] Auto-update linters version, help and documentation by @github-actions[bot] in https://github.com/oxsecurity/megalinter/pull/7640
- chore(deps): update dependency powershell/powershell to v7.6.1 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7652
- chore(deps): update dependency phpstan/phpstan to v2.1.51 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7651
- [automation] Auto-update linters version, help and documentation by @github-actions[bot] in https://github.com/oxsecurity/megalinter/pull/7653
- chore(deps): update dependency langsmith to v0.7.37 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7655
- Security: fix script injection via untrusted PR contexts in GitHub Actions workflows by @Copilot in https://github.com/oxsecurity/megalinter/pull/7658
- fix: prevent script injection via untrusted PR contexts in workflow files by @Copilot in https://github.com/oxsecurity/megalinter/pull/7660
- chore(deps): update dependency gitpython to v3.1.49 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7656
- docs(plugins): 📝 add community tools for MegaLinter integration by @RolfMoleman in https://github.com/oxsecurity/megalinter/pull/7649
- feat(linter): add zizmor to analyze github actions by @lancra in https://github.com/oxsecurity/megalinter/pull/7497
- fix: improve console reporting and linter output handling for parallel runs by @nvuillam in https://github.com/oxsecurity/megalinter/pull/7662
- chore(deps): update dependency checkov to v3.2.526 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7661
- chore(deps): update dependency pip to v26.1 [security] by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7654
- chore(deps): update dependency langsmith to v0.7.38 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7665
- [automation] Auto-update linters version, help and documentation by @github-actions[bot] in https://github.com/oxsecurity/megalinter/pull/7663
- chore(deps): update dependency npm-package-json-lint to v10.2.2 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7666
- chore(deps): update dependency phpstan/phpstan to v2.1.54 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7667
- chore(deps): update dependency ruff to v0.15.12 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7669
- Zizmor fixes on MegaLinter repo by @nvuillam in https://github.com/oxsecurity/megalinter/pull/7664
- Fix persist-credentials in workflows by @nvuillam in https://github.com/oxsecurity/megalinter/pull/7681
- chore(deps): bump python-gitlab from 8.2.0 to 8.3.0 in /.config/python/dev by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7678
- chore(deps): bump langchain-mistralai from 1.1.2 to 1.1.3 in /.config/python/dev by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7675
- chore(deps): bump langsmith from 0.7.38 to 0.8.0 in /.config/python/dev by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7673
- chore(deps): bump langchain-anthropic from 1.4.1 to 1.4.2 in /.config/python/dev by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7672
- chore(deps): bump yeoman-environment from 6.0.1 to 6.1.0 in /mega-linter-runner by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7679
- chore(deps-dev): bump eslint from 10.2.1 to 10.3.0 in /mega-linter-runner by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7677
- chore(deps): update dependency rumdl to v0.1.87 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7680
- chore(deps): bump python-multipart from 0.0.26 to 0.0.27 in /.config/python/dev by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7676
- chore(deps): bump python-multipart from 0.0.26 to 0.0.27 in /server by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7671
- chore(deps): update dependency python-multipart to v0.0.27 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7668
- [automation] Auto-update linters version, help and documentation by @github-actions[bot] in https://github.com/oxsecurity/megalinter/pull/7670
- chore(deps): bump yeoman-generator from 8.1.2 to 8.2.2 in /mega-linter-runner by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7674
- [automation] Auto-update linters version, help and documentation by @github-actions[bot] in https://github.com/oxsecurity/megalinter/pull/7685
- chore(deps): update dependency typescript to v6.0.3 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7684
- feat: add Jenkins support for comment reporting and enhance related reporters by @nvuillam in https://github.com/oxsecurity/megalinter/pull/7712
- fix test classes by @nvuillam in https://github.com/oxsecurity/megalinter/pull/7714
- chore(deps): update dependency skaji/cpm to v1 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7710
- fix(deps): update langchain (minor) by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7708
- chore(deps): update trufflesecurity/trufflehog docker tag to v3.95.2 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7706
- chore(deps): update lycheeverse/lychee docker tag to v0.24.2 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7704
- chore(deps): update dependency virtualenv to v21.3.1 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7702
- chore(deps): update dependency stylelint to v17.9.1 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7701
- chore(deps): update tflint plugin terraform-linters/tflint-ruleset-azurerm to v0.32.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7705
- chore(deps): update dependency snakefmt to v1.1.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7699
- chore(deps): update dependency pmd/pmd to v7.24.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7696
- chore(deps): update dependency npm-package-json-lint to v10.4.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7695
- chore(deps): update dependency semgrep to v1.161.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7697
- chore(deps): update dependency sfdx-hardis to v7.11.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7698
- chore(deps): update dependency rumdl to v0.1.89 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7683
- chore(deps): update dependency kubescape/kubescape to v4.0.6 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7686
- chore(deps): update ghcr.io/terraform-linters/tflint docker tag to v0.62.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7703
- chore(deps): update dependency cfn-lint to v1.50.1 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7691
- chore(deps): update dependency anchore/syft to v1.44.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7690
- chore(deps): update alpine/terragrunt docker tag to v1.15.1 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7688
- chore(deps): update dependency diff to v9 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7709
- chore(deps): update dependency snakemake to v9.20.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7700
- chore(deps): update dependency anchore/grype to v0.112.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7689
- chore(deps): update dependency mongodb/kingfisher to v1.99.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7694
- [automation] Auto-update linters version, help and documentation by @github-actions[bot] in https://github.com/oxsecurity/megalinter/pull/7715
- chore(deps): update typescript-eslint monorepo to v8.59.1 (minor) by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7707
- chore(deps): update dependency eslint-plugin-vue to v10.9.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7692
- chore(deps): update ghcr.io/astral-sh/uv docker tag to v0.11.11 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7687
- Remove deprecated exclude_mail lychee configuration by @bdovaz in https://github.com/oxsecurity/megalinter/pull/7716
- Fix secretlint issues by @bdovaz in https://github.com/oxsecurity/megalinter/pull/7717
- Upgrade python packages by @nvuillam in https://github.com/oxsecurity/megalinter/pull/7732
- Reactivate trivy as it's safe again by @nvuillam in https://github.com/oxsecurity/megalinter/pull/7733
- chore(deps): bump urllib3 from 2.6.3 to 2.7.0 in /.config/python/dev by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7730
- chore(deps): bump langchain-anthropic from 1.4.2 to 1.4.3 in /.config/python/dev by @dependabot[bot] in https://github.com/oxsecurity/megalinter/pull/7724
- chore(deps): update dependency rumdl to v0.1.91 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7743
- chore(deps): update dependency stylelint to v17.11.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7758
- chore(deps): update dependency semgrep to v1.162.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7754
- chore(deps): update dependency graphql to v16.14.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7751
- chore(deps): update dependency azure/bicep to v0.43.8 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7749
- chore(deps): update redis docker tag to v8.6.3 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7747
- chore(deps): update golang docker tag to v1.26.3 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7746
- chore(deps): update dependency dart to v3.11.6 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7736
- chore(deps): update dependency checkov to v3.2.527 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7735
- chore(deps): update dependency sfdx-hardis to v7.12.1 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7756
- chore(deps): update dependency rubocop-rails to v2.35.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7753
- chore(deps): update dependency skaji/cpm to v1.1.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7757
- chore(deps): update ghcr.io/astral-sh/uv docker tag to v0.11.12 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7745
- chore(deps): update dependency bartlett/sarif-php-converters to v1.6.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7750
- chore(deps): lock file maintenance by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7722
- chore(deps): update dependency pip to v26.1.1 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7742
- chore(deps): update dependency orjson to v3.11.9 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7741
- chore(deps): update dependency langchain_mistralai to v1.1.4 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7739
- chore(deps): update dependency fs-extra to v11.3.5 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7738
- [automation] Auto-update linters version, help and documentation by @github-actions[bot] in https://github.com/oxsecurity/megalinter/pull/7763
- feat: enhance BitbucketCommentReporter to support markdown rendering adjustments by @nvuillam in https://github.com/oxsecurity/megalinter/pull/7770
- chore(deps): update dependency langsmith to v0.8.3 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7740
- chore(deps): update alpine/terragrunt docker tag to v1.15.2 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7764
- chore(deps): update dependency checkov to v3.2.528 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7766
- chore(deps): update dependency python-multipart to v0.0.28 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7767
- chore(deps): update dependency regex to v2026.5.9 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7768
- chore(deps): lock file maintenance by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7769
- chore(deps): update dependency python to v3.14.5 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7771
- chore(deps): update typescript-eslint monorepo to v8.59.2 (patch) by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7748
- chore(deps): update dependency semver to v7.8.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7755
- chore(deps): update dependency robotframework-robocop to v8.2.8 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7772
- chore(deps): update ghcr.io/astral-sh/uv docker tag to v0.11.13 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7773
- chore(deps): update trufflesecurity/trufflehog docker tag to v3.95.3 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7774
- fix(deps): update langchain to ~=1.4.0 (minor) by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7776
- chore(deps): update salesforce packages (minor) by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7475
- chore(deps): update dependency eslint-plugin-vue to v10.9.1 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7737
- [automation] Auto-update linters version, help and documentation by @github-actions[bot] in https://github.com/oxsecurity/megalinter/pull/7777
- chore(deps): update dependency requests to v2.34.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7775
- chore(deps): update dependency jscpd to v4.1.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7752
- [automation] Auto-update linters version, help and documentation by @github-actions[bot] in https://github.com/oxsecurity/megalinter/pull/7778
- Fix dependencies by @nvuillam in https://github.com/oxsecurity/megalinter/pull/7786
- Improve workflows performances by @nvuillam in https://github.com/oxsecurity/megalinter/pull/7787
- feat: add cache-cleanup workflow and switch to zstd compression for buildx cache by @nvuillam in https://github.com/oxsecurity/megalinter/pull/7789
- Add file variable by @bdovaz in https://github.com/oxsecurity/megalinter/pull/7782
- Add files separator by @bdovaz in https://github.com/oxsecurity/megalinter/pull/7783
- Fix lychee header settting by @bdovaz in https://github.com/oxsecurity/megalinter/pull/7784
- Add extra_args_after for each lint mode by @bdovaz in https://github.com/oxsecurity/megalinter/pull/7785
- Enhance: Optimize linter installations for faster builds by @nvuillam in https://github.com/oxsecurity/megalinter/pull/7790
- [automation] Auto-update linters version, help and documentation by @github-actions[bot] in https://github.com/oxsecurity/megalinter/pull/7791
- chore(deps): update dependency @salesforce/plugin-packaging to v2.27.17 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7792
- chore(deps): update dependency langsmith to v0.8.4 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7795
- chore(deps): update dependency sqlfluff to v4.2.1 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7813
- chore(deps): update dependency snakemake to v9.21.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7812
- chore(deps): update dependency sfdx-hardis to v7.13.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7811
- chore(deps): update dependency pytest-rerunfailures to v16.2 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7809
- chore(deps): update dependency cfn-lint to v1.51.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7807
- chore(deps): update dependency @salesforce/cli to v2.134.6 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7806
- chore(deps): update typescript-eslint monorepo to v8.59.3 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7805
- chore(deps): update dependency semgrep to v1.163.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7810
- chore(deps): update ghcr.io/terraform-linters/tflint docker tag to v0.62.1 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7803
- chore(deps): update dependency virtualenv to v21.3.3 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7801
- chore(deps): update dependency rumdl to v0.1.92 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7800
- chore(deps): update dependency ruff to v0.15.13 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7799
- chore(deps): update dependency requests to v2.34.2 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7797
- chore(deps): update dependency pymdown-extensions to v10.21.3 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7796
- chore(deps): update dependency johnnymorganz/stylua to v2.0.2 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7794
- chore(deps): update dependency checkov to v3.2.529 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7793
- chore(deps): lock file maintenance by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7817
- chore(deps): update dependency uvicorn to v0.47.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7815
- For dependabot and renovate PRs, optimize the list of linter jobs that are triggered by @nvuillam in https://github.com/oxsecurity/megalinter/pull/7818
- chore(deps): update ghcr.io/astral-sh/uv docker tag to v0.11.14 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7802
- chore(deps): update python docker tag to v3.14.5 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7804
- chore(deps): update dependency johnnymorganz/stylua to v2.4.1 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7808
- chore(deps): update dependency stylelint-scss to v7.1.1 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7814
- chore(deps): update dependency friendsofphp/php-cs-fixer to v3.95.2 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7819
- chore(deps): update dependency jscpd to v4.1.1 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7820
- [automation] Auto-update linters version, help and documentation by @github-actions[bot] in https://github.com/oxsecurity/megalinter/pull/7821
- Optimize dockerfile order by @nvuillam in https://github.com/oxsecurity/megalinter/pull/7823
- chore(deps): update dependency zizmor to 1.25.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7816
- chore(deps): update dependency rubocop to v1.86.2 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7798
- Upgrade ESLint to 9.39.4 and update configurations across descriptors by @opravil-jan in https://github.com/oxsecurity/megalinter/pull/7780
- Determinism in the installation of the scala linter by @bdovaz in https://github.com/oxsecurity/megalinter/pull/7781
- [automation] Auto-update linters version, help and documentation by @github-actions[bot] in https://github.com/oxsecurity/megalinter/pull/7824
- feat: enhance mega-linter-runner CLI options and add environment variable handling by @nvuillam in https://github.com/oxsecurity/megalinter/pull/7826
- Upgrade to eslint 10 by @nvuillam in https://github.com/oxsecurity/megalinter/pull/7827
- chore(deps): update dependency rumdl to v0.1.93 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7825
- chore(deps): update dependency langsmith to v0.8.5 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7828
- Eslint legacy detection & warning by @nvuillam in https://github.com/oxsecurity/megalinter/pull/7831
- chore(deps): update dependency @stoplight/spectral-cli to v6.16.0 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7830
- feat: implement user notifications system and replace migration warnings by @nvuillam in https://github.com/oxsecurity/megalinter/pull/7833
- chore(deps): update jdkato/vale docker tag to v3.14.2 by @renovate[bot] in https://github.com/oxsecurity/megalinter/pull/7829
- [automation] Auto-update linters version, help and documentation by @github-actions[bot] in https://github.com/oxsecurity/megalinter/pull/7832
- Doc + prepare 9.5.0 release by @nvuillam in https://github.com/oxsecurity/megalinter/pull/7836
New Contributors
- @paulgartner1 made their first contribution in https://github.com/oxsecurity/megalinter/pull/7315
- @Copilot made their first contribution in https://github.com/oxsecurity/megalinter/pull/7326
- @RolfMoleman made their first contribution in https://github.com/oxsecurity/megalinter/pull/7649
- @lancra made their first contribution in https://github.com/oxsecurity/megalinter/pull/7497
- @opravil-jan made their first contribution in https://github.com/oxsecurity/megalinter/pull/7780
Full Changelog: https://github.com/oxsecurity/megalinter/compare/v9.4.0...v9.5.0
