-
Notifications
You must be signed in to change notification settings - Fork 11
Feat/flash-backup-implementation #1409
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 52 commits
d31d86d
8df0ca5
f93c850
242697c
4c9e004
0be56f1
35a6d14
bf3b95b
68139cd
f5e4607
dada8e6
d3adbaf
00b1c1b
7be5890
54b0bc0
af5ffec
93d9530
db9b8c1
a5c7b9f
3ffde02
744f34f
8f83520
64c7145
5e9d09e
9d42499
1d3800c
7c26b01
d83d36c
69b8eb9
50b80b9
25f57f9
cebca3d
7f9f4c6
f29d4f5
f0c26b7
8befa23
6935990
333093a
8da7c6e
5b0862d
5fcb8da
015c6e5
90ed4b9
92f3d69
c273a3b
f126c95
87fc836
73ba3f0
f99264e
872559c
e7066c0
a406fdc
984b874
0d864fa
4c0b967
b663293
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| [api] | ||
| version="4.4.1" | ||
| version="4.8.0" | ||
| extraOrigins="https://google.com,https://test.com" | ||
| [local] | ||
| sandbox="yes" | ||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,25 @@ | ||||||
| [ | ||||||
| { | ||||||
| "id": "a68667b6-f4ef-4c47-aec3-d9886be78487", | ||||||
| "name": "Test", | ||||||
| "sourceType": "RAW", | ||||||
| "destinationType": "RCLONE", | ||||||
| "schedule": "0 2 * * *", | ||||||
| "enabled": true, | ||||||
| "sourceConfig": { | ||||||
| "label": "Raw file backup", | ||||||
| "sourcePath": "/Users/elibosley/Desktop", | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🛠️ Refactor suggestion Use generic path for development configuration. The hardcoded user-specific path - "sourcePath": "/Users/elibosley/Desktop",
+ "sourcePath": "/tmp/backup-test",📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||
| "excludePatterns": [], | ||||||
| "includePatterns": [] | ||||||
| }, | ||||||
| "destinationConfig": { | ||||||
| "type": "RCLONE", | ||||||
| "remoteName": "google_drives", | ||||||
| "destinationPath": "desktop" | ||||||
| }, | ||||||
| "createdAt": "2025-05-27T15:02:31.655Z", | ||||||
| "updatedAt": "2025-05-27T15:11:40.547Z", | ||||||
| "lastRunAt": "2025-05-27T15:07:37.139Z", | ||||||
| "lastRunStatus": "Failed: RClone group backup-job_1748358397105_sbo5j322k failed or timed out." | ||||||
| } | ||||||
| ] | ||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,10 +1,12 @@ | ||
| { | ||
| "version": "4.8.0", | ||
| "version": "4.9.5", | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Version inconsistency detected across configuration files. This file shows version 4.9.5 while 🤖 Prompt for AI Agents |
||
| "extraOrigins": [ | ||
| "https://google.com", | ||
| "https://test.com" | ||
| ], | ||
| "sandbox": true, | ||
| "ssoSubIds": [], | ||
| "plugins": ["unraid-api-plugin-connect"] | ||
| "plugins": [ | ||
| "unraid-api-plugin-connect" | ||
| ] | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| [api] | ||
| version="4.4.1" | ||
| version="4.8.0" | ||
| extraOrigins="https://google.com,https://test.com" | ||
| [local] | ||
| sandbox="yes" | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💡 Verification agent
🧩 Analysis chain
Version update looks good, but verify consistency across configs.
The version bump to 4.8.0 aligns with the new backup management features. However, ensure this version is consistent with other configuration files in the codebase.
🏁 Script executed:
Length of output: 380
Unify version fields across all dev configs
The bump to 4.8.0 in
api/dev/Unraid.net/myservers.cfg(andapi/dev/states/myservers.cfg) is correct, but I found these mismatches:The overall API config in
api/dev/configs/api.jsonremains at 4.9.5; please confirm if that should align with the myservers release or stay as-is.Once these are synced, the version will be consistent across the codebase.
🤖 Prompt for AI Agents