Changelog

Track the evolution of Code Pathfinder with detailed release notes and updates.

Release v1.3.0

v1.3.0January 26, 2026
View on GitHub

What's Changed

Full Changelog: https://github.com/shivasurya/code-pathfinder/compare/v1.2.2...v1.3.0

Release v1.2.2

v1.2.2January 20, 2026
View on GitHub

What's Changed

Full Changelog: https://github.com/shivasurya/code-pathfinder/compare/v1.2.1...v1.2.2

Release v1.2.1

v1.2.1January 19, 2026
View on GitHub

What's New

Run all security rules for a technology stack with a single category/all flag.

Why We Built This

Running comprehensive scans required specifying each bundle individually:

pathfinder scan --ruleset docker/security \
                  --ruleset docker/best-practice \
                  --ruleset docker/performance \
                  --project .

Now simplified to:

pathfinder scan --ruleset docker/all --project .

Benefits

  • Faster workflows: One command instead of multiple flags
  • Complete coverage: Automatically includes all available rules
  • Future-proof: New rules are included automatically as they're released
  • Flexible: Mix comprehensive scans with specific rule bundles

Quick Start

  # Scan all Docker rules
  pathfinder scan --ruleset docker/all --project .

  # Scan all Python rules
  pathfinder scan --ruleset python/all --project .

  # Scan all Docker Compose rules
  pathfinder scan --ruleset docker-compose/all --project .

  # Mix comprehensive + specific scans
  pathfinder scan --ruleset docker/all --ruleset python/django --project .

Available Categories

  • docker/all - All Dockerfile rules
  • docker-compose/all - All Docker Compose rules
  • python/all - All Python rules

New categories automatically support /all syntax as they're added.

What's Changed

Full Changelog: https://github.com/shivasurya/code-pathfinder/compare/v1.2.0...v1.2.1

Release v1.2.0

v1.2.0January 17, 2026
View on GitHub

🚀 Code Pathfinder v1.2.0 - Pre-Built Security Rules Are Here

We're thrilled to announce Code Pathfinder v1.2.0, bringing ready-to-use security rulesets that you can deploy in seconds!

✨ What's New

🎯 Pre-Built Python Security Rules

Stop writing security rules from scratch. Access battle-tested rulesets from our registry:

 pathfinder scan --project /path/to/src --ruleset docker/security --output sarif

Find SQL injections, unsafe deserialization, command injection vulnerabilities, and more - all configured and ready to run.

📦 Registry-Hosted Rulesets

Browse and use community-maintained rules at codepathfinder.dev/registry/:

  • docker/security - Docker security vulnerabilities
  • docker/best-practice - Dockerfile optimization
  • python/deserialization - Unsafe pickle.loads RCE detection
  • python/django - Django SQL injection patterns
  • python/flask - Flask security misconfigurations
  • More languages coming soon

🔧 Enhanced Python Compatibility

Expanded Python 3.9+ support with intelligent stdlib module discovery fallbacks, ensuring reliable analysis across different Python versions and environments.

🎯 What This Means for You

👉🏻 No more copy-pasting security rules or reinventing the wheel. Point to a ruleset, run your scan, and catch vulnerabilities before they hit production. Perfect for teams who want 👉🏻 powerful SAST without the configuration overhead.

What's Changed

Full Changelog: https://github.com/shivasurya/code-pathfinder/compare/v1.1.6...v1.2.0

Release v1.1.6

v1.1.6January 10, 2026
View on GitHub

Code Pathfinder v1.1.6

This release adds MCP (Model Context Protocol) server support and expands Python standard library coverage.

What's New

MCP Server Support

Code Pathfinder now functions as a Model Context Protocol server for AI-powered code analysis:

  • Protocol Foundation: Full MCP protocol handler implementation with standard tools support
  • HTTP Transport: Network access via HTTP transport layer for remote connections
  • Cursor-Based Pagination: Efficient handling of large result sets with cursor-based pagination
  • Error Handling: JSON-RPC 2.0 compliant error handling
  • Indexing & Analytics: Real-time indexing status tracking and optional analytics integration
  • Comprehensive Testing: Extensive test coverage for all MCP server components

Visit MCP setup guide page:

  • Code Pathfinder MCP Server Setup Guide

  • MCP Installation

  • MCP Toolbox reference

    Python Analysis Improvements

    • Expanded stdlib Coverage: Increased support for Python standard library versions, improving analysis accuracy across different Python environments

    Infrastructure

    • CI/CD Cleanup: Removed npm publish GitHub Action workflow

    Pull Requests

    • #453 - Remove npm publish GitHub Action workflow
    • #454 - Add MCP server foundation with protocol handler and tools
    • #455 - Add comprehensive test coverage for MCP server
    • #456 - Add robust error handling per JSON-RPC 2.0 spec
    • #457 - Add cursor-based pagination for large result sets
    • #458 - Add HTTP transport for network access
    • #459 - Add indexing status, analytics, and comprehensive tests
    • #460, #461 - Increase coverage for Python stdlib versions
    • #462 - Release v1.1.6

    Full Changelog: https://github.com/shivasurya/code-pathfinder/compare/v1.1.5...v1.1.6

Showing 1-5 of 30 releases
1 / 6

Stay Updated

Watch our GitHub repository to get notified about new releases.

Star on GitHub