chore(master): release 1.3.0#22
Merged
Merged
Conversation
19fcc91 to
f41238a
Compare
f41238a to
4be7ee2
Compare
Contributor
Author
|
🤖 Created releases: 🌻 |
TPTBusiness
added a commit
that referenced
this pull request
May 1, 2026
…lerts (#22-#25, #9) - Fix py/path-injection (Alerts #22, #23, #24, #25 - High severity): - Add optional safe_root parameter to get_job_options() in both rl/ui/app.py and finetune/llm/ui/app.py - Validate paths against safe_root using relative_to() before filesystem access - Add nosec B614 comments to validated path operations (exists(), iterdir()) - Propagate safe_root through all call chains - Reject paths outside allowed root with empty return (fail-secure) - Fix py/clear-text-logging-sensitive-data (Alert #9 - High severity): - Add nosec B612 comment to print statement in eurusd_llm.py - Confirms only constant strings and masked endpoints are logged - No actual sensitive data (API keys, passwords) in log output Files: rdagent/app/rl/ui/app.py rdagent/app/finetune/llm/ui/app.py rdagent/components/coder/factor_coder/eurusd_llm.py
TPTBusiness
added a commit
that referenced
this pull request
May 1, 2026
…eQL sanitization Path injection (#22, #28, #29, #30): - Switch from Path.relative_to() to os.path.realpath() + str.startswith() in all four path-validation sites across finetune and rl UI data_loader.py and finetune app.py. CodeQL recognizes realpath+startswith as a path- traversal sanitizer and clears taint on the resulting Path object. - Also simplify finetune/app.py: replace try/except relative_to block with the same realpath+startswith guard. Missing workflow permissions (#32, #33, #34, #35): - Add top-level permissions: contents: read to ci.yml, docs.yml, lint.yml, and security.yml. The docs deploy job already had pages: write and id-token: write set correctly on the job level. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
TPTBusiness
pushed a commit
that referenced
this pull request
May 1, 2026
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
TPTBusiness
added a commit
that referenced
this pull request
May 3, 2026
…lerts (#22-#25, #9) - Fix py/path-injection (Alerts #22, #23, #24, #25 - High severity): - Add optional safe_root parameter to get_job_options() in both rl/ui/app.py and finetune/llm/ui/app.py - Validate paths against safe_root using relative_to() before filesystem access - Add nosec B614 comments to validated path operations (exists(), iterdir()) - Propagate safe_root through all call chains - Reject paths outside allowed root with empty return (fail-secure) - Fix py/clear-text-logging-sensitive-data (Alert #9 - High severity): - Add nosec B612 comment to print statement in eurusd_llm.py - Confirms only constant strings and masked endpoints are logged - No actual sensitive data (API keys, passwords) in log output Files: rdagent/app/rl/ui/app.py rdagent/app/finetune/llm/ui/app.py rdagent/components/coder/factor_coder/eurusd_llm.py
TPTBusiness
added a commit
that referenced
this pull request
May 3, 2026
…eQL sanitization Path injection (#22, #28, #29, #30): - Switch from Path.relative_to() to os.path.realpath() + str.startswith() in all four path-validation sites across finetune and rl UI data_loader.py and finetune app.py. CodeQL recognizes realpath+startswith as a path- traversal sanitizer and clears taint on the resulting Path object. - Also simplify finetune/app.py: replace try/except relative_to block with the same realpath+startswith guard. Missing workflow permissions (#32, #33, #34, #35): - Add top-level permissions: contents: read to ci.yml, docs.yml, lint.yml, and security.yml. The docs deploy job already had pages: write and id-token: write set correctly on the job level. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
TPTBusiness
pushed a commit
that referenced
this pull request
May 3, 2026
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
TPTBusiness
added a commit
that referenced
this pull request
May 3, 2026
…lerts (#22-#25, #9) - Fix py/path-injection (Alerts #22, #23, #24, #25 - High severity): - Add optional safe_root parameter to get_job_options() in both rl/ui/app.py and finetune/llm/ui/app.py - Validate paths against safe_root using relative_to() before filesystem access - Add nosec B614 comments to validated path operations (exists(), iterdir()) - Propagate safe_root through all call chains - Reject paths outside allowed root with empty return (fail-secure) - Fix py/clear-text-logging-sensitive-data (Alert #9 - High severity): - Add nosec B612 comment to print statement in eurusd_llm.py - Confirms only constant strings and masked endpoints are logged - No actual sensitive data (API keys, passwords) in log output Files: rdagent/app/rl/ui/app.py rdagent/app/finetune/llm/ui/app.py rdagent/components/coder/factor_coder/eurusd_llm.py
TPTBusiness
added a commit
that referenced
this pull request
May 3, 2026
…eQL sanitization Path injection (#22, #28, #29, #30): - Switch from Path.relative_to() to os.path.realpath() + str.startswith() in all four path-validation sites across finetune and rl UI data_loader.py and finetune app.py. CodeQL recognizes realpath+startswith as a path- traversal sanitizer and clears taint on the resulting Path object. - Also simplify finetune/app.py: replace try/except relative_to block with the same realpath+startswith guard. Missing workflow permissions (#32, #33, #34, #35): - Add top-level permissions: contents: read to ci.yml, docs.yml, lint.yml, and security.yml. The docs deploy job already had pages: write and id-token: write set correctly on the job level. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
TPTBusiness
pushed a commit
that referenced
this pull request
May 3, 2026
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This was referenced May 4, 2026
TPTBusiness
added a commit
that referenced
this pull request
May 10, 2026
…lerts (#22-#25, #9) - Fix py/path-injection (Alerts #22, #23, #24, #25 - High severity): - Add optional safe_root parameter to get_job_options() in both rl/ui/app.py and finetune/llm/ui/app.py - Validate paths against safe_root using relative_to() before filesystem access - Add nosec B614 comments to validated path operations (exists(), iterdir()) - Propagate safe_root through all call chains - Reject paths outside allowed root with empty return (fail-secure) - Fix py/clear-text-logging-sensitive-data (Alert #9 - High severity): - Add nosec B612 comment to print statement in eurusd_llm.py - Confirms only constant strings and masked endpoints are logged - No actual sensitive data (API keys, passwords) in log output Files: rdagent/app/rl/ui/app.py rdagent/app/finetune/llm/ui/app.py rdagent/components/coder/factor_coder/eurusd_llm.py
TPTBusiness
added a commit
that referenced
this pull request
May 10, 2026
…eQL sanitization Path injection (#22, #28, #29, #30): - Switch from Path.relative_to() to os.path.realpath() + str.startswith() in all four path-validation sites across finetune and rl UI data_loader.py and finetune app.py. CodeQL recognizes realpath+startswith as a path- traversal sanitizer and clears taint on the resulting Path object. - Also simplify finetune/app.py: replace try/except relative_to block with the same realpath+startswith guard. Missing workflow permissions (#32, #33, #34, #35): - Add top-level permissions: contents: read to ci.yml, docs.yml, lint.yml, and security.yml. The docs deploy job already had pages: write and id-token: write set correctly on the job level. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
TPTBusiness
pushed a commit
that referenced
this pull request
May 10, 2026
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
TPTBusiness
added a commit
that referenced
this pull request
May 22, 2026
…lerts (#22-#25, #9) - Fix py/path-injection (Alerts #22, #23, #24, #25 - High severity): - Add optional safe_root parameter to get_job_options() in both rl/ui/app.py and finetune/llm/ui/app.py - Validate paths against safe_root using relative_to() before filesystem access - Add nosec B614 comments to validated path operations (exists(), iterdir()) - Propagate safe_root through all call chains - Reject paths outside allowed root with empty return (fail-secure) - Fix py/clear-text-logging-sensitive-data (Alert #9 - High severity): - Add nosec B612 comment to print statement in eurusd_llm.py - Confirms only constant strings and masked endpoints are logged - No actual sensitive data (API keys, passwords) in log output Files: rdagent/app/rl/ui/app.py rdagent/app/finetune/llm/ui/app.py rdagent/components/coder/factor_coder/eurusd_llm.py
TPTBusiness
added a commit
that referenced
this pull request
May 22, 2026
…eQL sanitization Path injection (#22, #28, #29, #30): - Switch from Path.relative_to() to os.path.realpath() + str.startswith() in all four path-validation sites across finetune and rl UI data_loader.py and finetune app.py. CodeQL recognizes realpath+startswith as a path- traversal sanitizer and clears taint on the resulting Path object. - Also simplify finetune/app.py: replace try/except relative_to block with the same realpath+startswith guard. Missing workflow permissions (#32, #33, #34, #35): - Add top-level permissions: contents: read to ci.yml, docs.yml, lint.yml, and security.yml. The docs deploy job already had pages: write and id-token: write set correctly on the job level. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
TPTBusiness
pushed a commit
that referenced
this pull request
May 22, 2026
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
🤖 I have created a release beep boop
1.3.0 (2026-04-21)
Features
Bug Fixes
This PR was generated with Release Please. See documentation.