Skip to content
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
e370f21
feat: add automated dependency update workflow
jjuliano Dec 29, 2025
d656a91
docs: add workflow testing and quick start guides
jjuliano Dec 29, 2025
e069390
docs: add workflow testing and quick start guides
jjuliano Dec 29, 2025
8a41d7e
Merge branch 'auto-update-workflow' of https://github.com/kdeps/schem…
jjuliano Dec 29, 2025
a22129e
fix: correct asset copying logic in workflow
jjuliano Dec 29, 2025
51acbe2
Merge branch 'main' into auto-update-workflow-fix
jjuliano Dec 29, 2025
07713a3
fix: exclude case-insensitive filename conflicts
jjuliano Dec 30, 2025
1cf4a49
refactor: rename conflicting files instead of deleting
jjuliano Dec 30, 2025
0135e4c
feat: generic case-insensitive conflict resolution with auto-fixing
jjuliano Dec 30, 2025
74d3bf1
perf: optimize reference fixing in download_deps.sh
jjuliano Dec 30, 2025
81901cc
Merge branch 'main' into auto-update-workflow-fix
jjuliano Dec 30, 2025
3881c45
fix: simplify error handling in fix_references
jjuliano Dec 30, 2025
a7ec448
refactor: atomic conflict resolution - detect, rename, fix immediately
jjuliano Dec 30, 2025
e746706
feat: add final global reference check after conflict resolution
jjuliano Dec 30, 2025
e8b7aa2
Merge branch 'main' into auto-update-workflow-fix
jjuliano Dec 30, 2025
5b08be8
fix: preserve directory structure when updating references
jjuliano Dec 30, 2025
88d60d5
fix: prevent renamed files from creating new conflicts
jjuliano Dec 30, 2025
95ec93c
Merge branch 'main' into auto-update-workflow-fix
jjuliano Dec 31, 2025
e97169b
fix: remove 'local' keyword outside function
jjuliano Dec 31, 2025
0dbd5b2
Merge branch 'main' into auto-update-workflow-fix
jjuliano Dec 31, 2025
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
2 changes: 1 addition & 1 deletion scripts/download_deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ if [ "$CONFLICTS_RESOLVED" = true ] && [ -f /tmp/all_renames.txt ]; then

while IFS='|' read -r old_name new_path; do
# Extract just the new basename
local new_basename=$(basename "$new_path")
new_basename=$(basename "$new_path")

# Find any remaining references to old filename
remaining_refs=$(find "$DEPS_DIR" -name "*.pkl" -type f -print0 | \
Expand Down