refactor(dynamic): enhance Rust receiver construction with recursive dependency resolution, add Liquibase changelog context detection, and expand test coverage

This commit is contained in:
elipeter 2026-05-24 22:18:59 -05:00
parent acec041676
commit 8786d1b71e
6 changed files with 546 additions and 25 deletions

View file

@ -1270,6 +1270,20 @@ fn framework_project_files_for_entry(entry_file: &str, lang: Lang) -> ProjectFil
"routes/api.php",
"app/Config/Routes.php",
],
Lang::Java => &[
"changelog.xml",
"changelog.yaml",
"changelog.yml",
"changelog.json",
"db/changelog/db.changelog-master.xml",
"db/changelog/db.changelog-master.yaml",
"db/changelog/db.changelog-master.yml",
"db/changelog/db.changelog-master.json",
"src/main/resources/db/changelog/db.changelog-master.xml",
"src/main/resources/db/changelog/db.changelog-master.yaml",
"src/main/resources/db/changelog/db.changelog-master.yml",
"src/main/resources/db/changelog/db.changelog-master.json",
],
_ => &[],
};
ProjectFileIndex::from_root(&root, rel_paths)