-
Notifications
You must be signed in to change notification settings - Fork 2
Develop #145
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
Develop #145
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
44a7259
PDX-0: fix(ci): filter internal commits from Slack release notes
mrdailey99 74d90e0
PDX-0: fix(ci): use git describe to find previous tag for Slack relea…
mrdailey99 dd113d3
Merge remote-tracking branch 'origin/develop' into fix/mcp-tool-names…
mrdailey99 0cbed7a
PDX-0: fix(mcp): case-insensitive path comparison for Windows drive l…
mrdailey99 5cd635f
PDX-0: fix(ci): replace || "" with || true in PREV tag lookup
mrdailey99 346d50c
PDX-0: fix(ci): quote $RANGE, fix dot.notation regex, add unit tests …
mrdailey99 014e86f
PDX-0: chore: bump version to 1.5.0-beta.16
mrdailey99 596abf2
PDX-0: docs: document Windows case-insensitive path comparison in sec…
mrdailey99 5a43cbc
PDX-0: fix(mcp): fix macOS symlink resolution and backslash path norm…
mrdailey99 8c4e6a4
PDX-0: docs(mcp): add step-reference fallback guidance to testcase to…
mrdailey99 dcd27c6
PDX-0: fix(ci): use npx mocha instead of node .bin/mocha for Windows …
mrdailey99 9eaf4eb
PDX-0: feat(mcp): add compound value generation and VAR-REF-002 detec…
mrdailey99 18216d8
PDX-0: docs(mcp): document VAR-REF-002 error code for embedded variab…
mrdailey99 21891de
PDX-0: feat(mcp): emit class="compound" for {VarName} tokens embedded…
mrdailey99 f43e6b6
PDX-0: fix(security): address PR 143 review findings in pathPolicy, D…
mrdailey99 14368b9
Merge pull request #143 from ProvarTesting/fix/mcp-tool-names-underscore
mrdailey99 b24a214
PDX-0: Merge branch develop into worktree-fix+compound-value-emission
mrdailey99 3d71c55
PDX-0: fix(security): catch PATH_TRAVERSAL in test_case_path before p…
mrdailey99 d2664c0
Merge pull request #144 from ProvarTesting/worktree-fix+compound-valu…
mrdailey99 eeda921
PDX-0: fix(mcp): address PR #145 review comments for security hardening
mrdailey99 d0cff8c
Merge branch 'develop' into fix/mcp-tool-names-underscore
mrdailey99 9b5f32d
PDX-0: fix(mcp): address PR #146 review comments for root-path and te…
mrdailey99 be5d441
Merge pull request #146 from ProvarTesting/fix/mcp-tool-names-underscore
mrdailey99 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed in eeda921. Added trailing-separator normalization inside the .some callback: strip trailing path.sep from the base key before comparison, but only when the base is not a filesystem root (/ on Unix, C:\ on Windows). Added two regression tests in pathPolicy.test.ts covering the trailing-sep-on-allowed-root case for both child-path and exact-match checks.