[PR #5999] [MERGED] Closes #151: Add object journaling #13085

Closed
opened 2025-12-29 22:25:19 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/5999
Author: @jeremystretch
Created: 3/17/2021
Status: Merged
Merged: 3/17/2021
Merged by: @jeremystretch

Base: featureHead: 151-journaling


📝 Commits (9)

  • 1f1a62d Initial work on #151: Object journaling
  • 64d11d3 Fix conditional display journal & change log tabs
  • 8be4fbb Add JournalEntry list view w/filtering
  • f2c079d Add JournalEntry tests
  • 7f1d9ae Skip secondary check if get_absolute_url() not defined for model
  • 956e272 Add bulk edit, delete views for journal entries
  • bd95d2b Changelog and documentation for #151
  • 82fbd97 Add kind field to JournalEntry
  • 7e65a3d Add JournalEntry filter for kind

📊 Changes

31 files changed (+743 additions, -21 deletions)

View changed files

docs/models/extras/journalentry.md (+5 -0)
📝 docs/release-notes/version-2.11.md (+4 -0)
📝 netbox/circuits/urls.py (+3 -1)
📝 netbox/dcim/urls.py (+10 -1)
📝 netbox/dcim/views.py (+5 -1)
📝 netbox/extras/api/nested_serializers.py (+9 -0)
📝 netbox/extras/api/serializers.py (+45 -0)
📝 netbox/extras/api/urls.py (+3 -0)
📝 netbox/extras/api/views.py (+11 -0)
📝 netbox/extras/choices.py (+26 -0)
📝 netbox/extras/filters.py (+32 -0)
📝 netbox/extras/forms.py (+74 -2)
netbox/extras/migrations/0058_journalentry.py (+31 -0)
📝 netbox/extras/models/__init__.py (+2 -1)
📝 netbox/extras/models/models.py (+49 -0)
📝 netbox/extras/tables.py (+45 -1)
📝 netbox/extras/tests/test_api.py (+51 -0)
📝 netbox/extras/tests/test_filters.py (+95 -1)
📝 netbox/extras/tests/test_views.py (+38 -2)
📝 netbox/extras/urls.py (+8 -0)

...and 11 more files

📄 Description

Closes: #151

  • Introduces the JournalEntry object to store historical notes about an object
  • Adds relevant views, REST API serializers, and tests

🔄 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/netbox-community/netbox/pull/5999 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 3/17/2021 **Status:** ✅ Merged **Merged:** 3/17/2021 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `feature` ← **Head:** `151-journaling` --- ### 📝 Commits (9) - [`1f1a62d`](https://github.com/netbox-community/netbox/commit/1f1a62da673c1fe3968892bb6629715ea8304ac0) Initial work on #151: Object journaling - [`64d11d3`](https://github.com/netbox-community/netbox/commit/64d11d32c883395e9cdf6e8c5b3daa12bb14f093) Fix conditional display journal & change log tabs - [`8be4fbb`](https://github.com/netbox-community/netbox/commit/8be4fbbce3a8c78338f974ba008eb5663670f707) Add JournalEntry list view w/filtering - [`f2c079d`](https://github.com/netbox-community/netbox/commit/f2c079de87dce7c09269013f0790cd7979f27d6d) Add JournalEntry tests - [`7f1d9ae`](https://github.com/netbox-community/netbox/commit/7f1d9aeaf801f68f5961793b87bf749074196262) Skip secondary check if get_absolute_url() not defined for model - [`956e272`](https://github.com/netbox-community/netbox/commit/956e2728c29b50c5f1fb42c49bbddca22644f36e) Add bulk edit, delete views for journal entries - [`bd95d2b`](https://github.com/netbox-community/netbox/commit/bd95d2b852373b2805df36e980d1e641c130a513) Changelog and documentation for #151 - [`82fbd97`](https://github.com/netbox-community/netbox/commit/82fbd975f11707546fabe8b8daca1f59a2c72796) Add kind field to JournalEntry - [`7e65a3d`](https://github.com/netbox-community/netbox/commit/7e65a3d3b46fc511fe42fad997787ef3d0a6fb36) Add JournalEntry filter for kind ### 📊 Changes **31 files changed** (+743 additions, -21 deletions) <details> <summary>View changed files</summary> ➕ `docs/models/extras/journalentry.md` (+5 -0) 📝 `docs/release-notes/version-2.11.md` (+4 -0) 📝 `netbox/circuits/urls.py` (+3 -1) 📝 `netbox/dcim/urls.py` (+10 -1) 📝 `netbox/dcim/views.py` (+5 -1) 📝 `netbox/extras/api/nested_serializers.py` (+9 -0) 📝 `netbox/extras/api/serializers.py` (+45 -0) 📝 `netbox/extras/api/urls.py` (+3 -0) 📝 `netbox/extras/api/views.py` (+11 -0) 📝 `netbox/extras/choices.py` (+26 -0) 📝 `netbox/extras/filters.py` (+32 -0) 📝 `netbox/extras/forms.py` (+74 -2) ➕ `netbox/extras/migrations/0058_journalentry.py` (+31 -0) 📝 `netbox/extras/models/__init__.py` (+2 -1) 📝 `netbox/extras/models/models.py` (+49 -0) 📝 `netbox/extras/tables.py` (+45 -1) 📝 `netbox/extras/tests/test_api.py` (+51 -0) 📝 `netbox/extras/tests/test_filters.py` (+95 -1) 📝 `netbox/extras/tests/test_views.py` (+38 -2) 📝 `netbox/extras/urls.py` (+8 -0) _...and 11 more files_ </details> ### 📄 Description ### Closes: #151 - Introduces the JournalEntry object to store historical notes about an object - Adds relevant views, REST API serializers, and tests --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
adam added the pull-request label 2025-12-29 22:25:19 +01:00
adam closed this issue 2025-12-29 22:25:19 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#13085