[PR #14086] [MERGED] Closes #14036: Move extras.plugins to netbox.plugins #14309

Closed
opened 2025-12-29 23:23:43 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/14086
Author: @jeremystretch
Created: 10/19/2023
Status: Merged
Merged: 10/20/2023
Merged by: @jeremystretch

Base: featureHead: 14036-move-plugins


📝 Commits (4)

  • e5871de Move extras.plugins to netbox.plugins & add deprecation warnings
  • 92f3612 Move plugin template tags from extras to utilities
  • c872f85 Move plugins tests from extras to netbox
  • c1b9c9d Add TODO reminders for v4.0

📊 Changes

38 files changed (+579 additions, -528 deletions)

View changed files

📝 netbox/extras/plugins/__init__.py (+3 -142)
📝 netbox/extras/plugins/navigation.py (+4 -69)
📝 netbox/extras/plugins/registration.py (+4 -61)
📝 netbox/extras/plugins/templates.py (+4 -70)
📝 netbox/extras/plugins/urls.py (+4 -38)
📝 netbox/extras/plugins/utils.py (+4 -34)
📝 netbox/extras/plugins/views.py (+4 -86)
📝 netbox/netbox/api/views.py (+1 -1)
📝 netbox/netbox/configuration_testing.py (+1 -1)
netbox/netbox/plugins/__init__.py (+148 -0)
netbox/netbox/plugins/navigation.py (+72 -0)
netbox/netbox/plugins/registration.py (+64 -0)
netbox/netbox/plugins/templates.py (+73 -0)
netbox/netbox/plugins/urls.py (+41 -0)
netbox/netbox/plugins/utils.py (+37 -0)
netbox/netbox/plugins/views.py (+89 -0)
📝 netbox/netbox/settings.py (+1 -1)
📝 netbox/netbox/tests/dummy_plugin/__init__.py (+3 -3)
📝 netbox/netbox/tests/dummy_plugin/admin.py (+0 -0)
📝 netbox/netbox/tests/dummy_plugin/api/serializers.py (+1 -1)

...and 18 more files

📄 Description

Fixes: #14036

  • Moves plugin resources from extras.plugins to netbox.plugins
  • Retain backward compatibility & add deprecation warnings

🔄 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/14086 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 10/19/2023 **Status:** ✅ Merged **Merged:** 10/20/2023 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `feature` ← **Head:** `14036-move-plugins` --- ### 📝 Commits (4) - [`e5871de`](https://github.com/netbox-community/netbox/commit/e5871ded4e776ea868bc37fe4fb069d0d004f1a8) Move extras.plugins to netbox.plugins & add deprecation warnings - [`92f3612`](https://github.com/netbox-community/netbox/commit/92f3612f30349f763c75041f59350a5856a02b27) Move plugin template tags from extras to utilities - [`c872f85`](https://github.com/netbox-community/netbox/commit/c872f8572b6276bfe644ebe2c8245648af1b75cd) Move plugins tests from extras to netbox - [`c1b9c9d`](https://github.com/netbox-community/netbox/commit/c1b9c9de760dba351a98728d45a24bc0d09e7127) Add TODO reminders for v4.0 ### 📊 Changes **38 files changed** (+579 additions, -528 deletions) <details> <summary>View changed files</summary> 📝 `netbox/extras/plugins/__init__.py` (+3 -142) 📝 `netbox/extras/plugins/navigation.py` (+4 -69) 📝 `netbox/extras/plugins/registration.py` (+4 -61) 📝 `netbox/extras/plugins/templates.py` (+4 -70) 📝 `netbox/extras/plugins/urls.py` (+4 -38) 📝 `netbox/extras/plugins/utils.py` (+4 -34) 📝 `netbox/extras/plugins/views.py` (+4 -86) 📝 `netbox/netbox/api/views.py` (+1 -1) 📝 `netbox/netbox/configuration_testing.py` (+1 -1) ➕ `netbox/netbox/plugins/__init__.py` (+148 -0) ➕ `netbox/netbox/plugins/navigation.py` (+72 -0) ➕ `netbox/netbox/plugins/registration.py` (+64 -0) ➕ `netbox/netbox/plugins/templates.py` (+73 -0) ➕ `netbox/netbox/plugins/urls.py` (+41 -0) ➕ `netbox/netbox/plugins/utils.py` (+37 -0) ➕ `netbox/netbox/plugins/views.py` (+89 -0) 📝 `netbox/netbox/settings.py` (+1 -1) 📝 `netbox/netbox/tests/dummy_plugin/__init__.py` (+3 -3) 📝 `netbox/netbox/tests/dummy_plugin/admin.py` (+0 -0) 📝 `netbox/netbox/tests/dummy_plugin/api/serializers.py` (+1 -1) _...and 18 more files_ </details> ### 📄 Description ### Fixes: #14036 - Moves plugin resources from `extras.plugins` to `netbox.plugins` - Retain backward compatibility & add deprecation warnings --- <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 23:23:43 +01:00
adam closed this issue 2025-12-29 23:23:43 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#14309