You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix MediaRestore path corruption for files containing "media" in their paths (#601)
This PR fixes a critical bug in the `mediarestore` command where files containing "media" in their path were being corrupted during restoration. The fix removes an unnecessary string replacement operation that was incorrectly modifying file paths.
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: Archmonger <16909269+Archmonger@users.noreply.github.com>
Co-authored-by: Mark Bakhit <archiethemonger@gmail.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Copy file name to clipboardExpand all lines: .github/copilot-instructions.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -90,11 +90,14 @@ Modern development process using Hatch:
90
90
6.**Auto-format code**: `hatch run lint:format` (2 seconds)
91
91
7.**Test documentation**: `hatch run docs:build` (2 seconds)
92
92
8.**Update documentation** when making changes to Python source code (required)
93
+
9.**Add changelog entry** for all significant changes (bug fixes, new features, breaking changes) to `CHANGELOG.md` under the "Unreleased" section
93
94
94
95
Always run `hatch run lint:check` before committing. The CI (.github/workflows/build.yml) includes comprehensive checks across all supported Python/Django combinations.
95
96
96
97
**IMPORTANT**: Documentation must be updated whenever changes are made to Python source code. This is enforced as part of the development workflow.
97
98
99
+
**IMPORTANT**: Significant changes must always include a changelog entry in `CHANGELOG.md` under the appropriate category (Added, Changed, Deprecated, Removed, Fixed, Security) in the "Unreleased" section.
0 commit comments