[PR #94] [MERGED] Feature Patch Management through policies and auto approval #3477

Closed
opened 2026-03-14 07:22:13 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/amidaware/tacticalrmm/pull/94
Author: @sadnub
Created: 9/6/2020
Status: Merged
Merged: 9/8/2020
Merged by: @wh1te909

Base: developHead: feature-policy-patch


📝 Commits (10+)

📊 Changes

27 files changed (+1003 additions, -318 deletions)

View changed files

📝 .vscode/settings.json (+1 -1)
api/tacticalrmm/agents/migrations/0013_agent_patches_last_installed.py (+18 -0)
api/tacticalrmm/agents/migrations/0014_remove_agent_managed_by_wsus.py (+17 -0)
📝 api/tacticalrmm/agents/models.py (+135 -3)
📝 api/tacticalrmm/api/views.py (+14 -5)
📝 api/tacticalrmm/automation/serializers.py (+3 -0)
📝 api/tacticalrmm/automation/urls.py (+2 -0)
📝 api/tacticalrmm/automation/views.py (+31 -0)
📝 api/tacticalrmm/tacticalrmm/celery.py (+8 -0)
📝 api/tacticalrmm/tacticalrmm/settings.py (+1 -1)
api/tacticalrmm/winupdate/migrations/0003_auto_20200828_0134.py (+26 -0)
api/tacticalrmm/winupdate/migrations/0004_auto_20200904_0103.py (+38 -0)
api/tacticalrmm/winupdate/migrations/0005_auto_20200905_2114.py (+38 -0)
📝 api/tacticalrmm/winupdate/models.py (+23 -7)
📝 api/tacticalrmm/winupdate/tasks.py (+129 -75)
📝 api/tacticalrmm/winupdate/views.py (+10 -2)
📝 docker/docker-compose.dev.yml (+20 -1)
📝 docker/docker-compose.override.yml (+29 -0)
📝 install.sh (+44 -3)
📝 update.sh (+51 -3)

...and 7 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/amidaware/tacticalrmm/pull/94 **Author:** [@sadnub](https://github.com/sadnub) **Created:** 9/6/2020 **Status:** ✅ Merged **Merged:** 9/8/2020 **Merged by:** [@wh1te909](https://github.com/wh1te909) **Base:** `develop` ← **Head:** `feature-policy-patch` --- ### 📝 Commits (10+) - [`f93d7bb`](https://github.com/amidaware/tacticalrmm/commit/f93d7bb1304ab586190402a244e990e9aaa1d337) winupdate UI start - [`b596e1d`](https://github.com/amidaware/tacticalrmm/commit/b596e1d451409ddbb738de9a2417a8a5eb0f15d8) docker dev fix - [`8fd5328`](https://github.com/amidaware/tacticalrmm/commit/8fd5328ea97b57f62c34c5a78ee82b7de7ce577c) winupdate UI start - [`84d7241`](https://github.com/amidaware/tacticalrmm/commit/84d7241030c6b655241e320c521cc5e121d6a7be) UI improvements - [`e1c07c6`](https://github.com/amidaware/tacticalrmm/commit/e1c07c6ed9f3e28e21ed7f416ac773ebbc2c246e) fix merge conflicts - [`2b86d07`](https://github.com/amidaware/tacticalrmm/commit/2b86d07e2369fd9a927d641e56ff0525f17dead5) Finish up Patch Policy - [`e5c05bb`](https://github.com/amidaware/tacticalrmm/commit/e5c05bbfff350c49bcf90527ea11a506eff7c0ec) Merge branch 'develop' of https://github.com/wh1te909/tacticalrmm into develop - [`9791ae5`](https://github.com/amidaware/tacticalrmm/commit/9791ae54faab534593357d97e1ab726bc1dc95b2) winupdate UI start - [`ef3b8aa`](https://github.com/amidaware/tacticalrmm/commit/ef3b8aa42c4b53e07afe187b83c3a6fb8a7c18a6) UI improvements - [`44f446c`](https://github.com/amidaware/tacticalrmm/commit/44f446ce7546336cd6aabc37449e98880eb01903) Finish up Patch Policy ### 📊 Changes **27 files changed** (+1003 additions, -318 deletions) <details> <summary>View changed files</summary> 📝 `.vscode/settings.json` (+1 -1) ➕ `api/tacticalrmm/agents/migrations/0013_agent_patches_last_installed.py` (+18 -0) ➕ `api/tacticalrmm/agents/migrations/0014_remove_agent_managed_by_wsus.py` (+17 -0) 📝 `api/tacticalrmm/agents/models.py` (+135 -3) 📝 `api/tacticalrmm/api/views.py` (+14 -5) 📝 `api/tacticalrmm/automation/serializers.py` (+3 -0) 📝 `api/tacticalrmm/automation/urls.py` (+2 -0) 📝 `api/tacticalrmm/automation/views.py` (+31 -0) 📝 `api/tacticalrmm/tacticalrmm/celery.py` (+8 -0) 📝 `api/tacticalrmm/tacticalrmm/settings.py` (+1 -1) ➕ `api/tacticalrmm/winupdate/migrations/0003_auto_20200828_0134.py` (+26 -0) ➕ `api/tacticalrmm/winupdate/migrations/0004_auto_20200904_0103.py` (+38 -0) ➕ `api/tacticalrmm/winupdate/migrations/0005_auto_20200905_2114.py` (+38 -0) 📝 `api/tacticalrmm/winupdate/models.py` (+23 -7) 📝 `api/tacticalrmm/winupdate/tasks.py` (+129 -75) 📝 `api/tacticalrmm/winupdate/views.py` (+10 -2) 📝 `docker/docker-compose.dev.yml` (+20 -1) 📝 `docker/docker-compose.override.yml` (+29 -0) 📝 `install.sh` (+44 -3) 📝 `update.sh` (+51 -3) _...and 7 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-14 07:22:13 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/tacticalrmm#3477
No description provided.