Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Open
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
5118134
fix(security): char-safe truncation in sanitize_system_prompt Fixes #…
May 19, 2026
f490a41
trigger: rebuild after repo cleanup
May 19, 2026
7218d53
fix(clippy): remaining field-reassign-with-default and unnecessary ca…
May 19, 2026
952b7e4
trigger: rebuild with clean repo
May 19, 2026
9dee7d0
trigger: rebuild webhook test
May 19, 2026
2d66e2c
trigger: full-clone pipeline test Refs #1721
May 19, 2026
5958b2a
trigger: pipeline test with full clone Refs #1721
May 19, 2026
b58044f
trigger: depth=1 fetch pipeline test Refs #1721
May 19, 2026
b0b43dd
ci: e2e pipeline test from local Refs #1721
May 19, 2026
83c114d
ci: selective refspec pipeline test Refs #1721
May 19, 2026
58c6a57
ci: final pipeline test with webhook ready Refs #1721
May 19, 2026
f65d8b9
style: cargo fmt for role_llm_api_key test Refs #1721
May 19, 2026
bdd1156
fix: remove accidentally committed project.rs Refs #1721
May 19, 2026
85b19a5
ci: fresh clone pipeline test Refs #1721
May 19, 2026
0b1ebf9
fix(build-runner): tee output to file and fix BUILD.md parsing
May 19, 2026
26f5b87
feat(config): implement project-level config discovery for .terraphim/
May 19, 2026
59cd233
feat(config): implement project-level config discovery for .terraphim/
May 19, 2026
82c7467
fix(config): remove needless borrows in project.rs clippy warnings
May 19, 2026
af9f0f5
Merge remote-tracking branch 'origin/push-1721' into push-1721
May 19, 2026
64136b2
docs: update project-level config discovery documentation
May 19, 2026
6fea5ad
fix(security): char-safe truncation in sanitize_system_prompt and bui…
May 19, 2026
9a4a83a
docs: add release announcement for v2026.05.19
May 19, 2026
2f3ada1
Merge remote-tracking branch 'origin/push-1721' into push-1721
May 19, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix(config): remove needless borrows in project.rs clippy warnings
- cargo clippy -D warnings caught &real.join() where real.join() works
- Affects create_dir_all and canonicalize calls in test

Refs #1721
  • Loading branch information
Alex committed May 19, 2026
commit 82c746757d522ab3ba5973348a24e16c9dc5d2db
6 changes: 3 additions & 3 deletions crates/terraphim_config/src/project.rs
Original file line number Diff line number Diff line change
Expand Up @@ -163,10 +163,10 @@ mod tests {
let temp = TempDir::new().unwrap();
let real = temp.path().join("real");
let linked = temp.path().join("linked");
fs::create_dir_all(&real.join(".terraphim")).unwrap();
fs::create_dir_all(&real.join("src")).unwrap();
fs::create_dir_all(real.join(".terraphim")).unwrap();
fs::create_dir_all(real.join("src")).unwrap();
std::os::unix::fs::symlink(&real, &linked).unwrap();
let canonical = std::fs::canonicalize(&real.join(".terraphim")).unwrap();
let canonical = std::fs::canonicalize(real.join(".terraphim")).unwrap();
let result = discover(Some(&linked.join("src"))).unwrap();
assert_eq!(result, Some(canonical));
}
Expand Down