[PR #2235] [CLOSED] Develop 2.4 #12338

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/2235
Author: @caliman484u
Created: 7/13/2018
Status: Closed

Base: developHead: develop-2.4


📝 Commits (10+)

  • 0969c45 Closes #1842: Implement support for Django 2.0
  • 0bb632c Allow Django 1.11
  • 9725f19 Code formatting cleanup
  • 72c518b Updated tests for recently added model fields
  • db3cbaf Introduced WritableNestedSerializer
  • 7241783 Started merging writable serializers (WIP)
  • 821fb1e Finished merging writable serializers
  • c72d70d Removed nested serializers for ManyToMany relationships temporarily
  • 9de1a8c Introduced SerializedPKRelatedField to represent serialized ManyToManyFields
  • aeaa47e Avoid a bug in DRF v3.8.2

📊 Changes

210 files changed (+8632 additions, -3062 deletions)

View changed files

📝 README.md (+1 -1)
📝 docs/configuration/optional-settings.md (+62 -0)
📝 docs/data-model/extras.md (+6 -0)
📝 docs/installation/ldap.md (+2 -2)
📝 docs/installation/migrating-to-python3.md (+3 -0)
📝 docs/installation/netbox.md (+2 -35)
📝 docs/installation/upgrading.md (+1 -1)
📝 docs/installation/web-server.md (+1 -1)
docs/miscellaneous/webhooks.md (+167 -0)
📝 netbox/circuits/api/serializers.py (+13 -39)
📝 netbox/circuits/api/views.py (+2 -5)
📝 netbox/circuits/apps.py (+5 -0)
📝 netbox/circuits/filters.py (+6 -0)
📝 netbox/circuits/forms.py (+8 -5)
netbox/circuits/migrations/0011_tags.py (+27 -0)
netbox/circuits/migrations/0012_change_logging.py (+45 -0)
📝 netbox/circuits/models.py (+153 -35)
📝 netbox/circuits/tables.py (+3 -0)
📝 netbox/circuits/tests/test_api.py (+6 -2)
📝 netbox/circuits/urls.py (+5 -0)

...and 80 more files

📄 Description

Fixes:


🔄 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/2235 **Author:** [@caliman484u](https://github.com/caliman484u) **Created:** 7/13/2018 **Status:** ❌ Closed **Base:** `develop` ← **Head:** `develop-2.4` --- ### 📝 Commits (10+) - [`0969c45`](https://github.com/netbox-community/netbox/commit/0969c458b377b07396af6d3a8d6c6eb6ee9f79f9) Closes #1842: Implement support for Django 2.0 - [`0bb632c`](https://github.com/netbox-community/netbox/commit/0bb632c6429ac95ac9c075a93974f6ae86c9bed5) Allow Django 1.11 - [`9725f19`](https://github.com/netbox-community/netbox/commit/9725f19bae03e4fee07a014c9b342e6cea5eebcc) Code formatting cleanup - [`72c518b`](https://github.com/netbox-community/netbox/commit/72c518bcb7f9b353359b6560c26722464be930cc) Updated tests for recently added model fields - [`db3cbaf`](https://github.com/netbox-community/netbox/commit/db3cbaf83bc5938ee7b513091e5664e96378d957) Introduced WritableNestedSerializer - [`7241783`](https://github.com/netbox-community/netbox/commit/7241783249eb3b751d73de836d6266209ceaf462) Started merging writable serializers (WIP) - [`821fb1e`](https://github.com/netbox-community/netbox/commit/821fb1e01e040e646f1980ff0abfa8c3160e0ae9) Finished merging writable serializers - [`c72d70d`](https://github.com/netbox-community/netbox/commit/c72d70d114419d33941407fee97c9a0606da17d6) Removed nested serializers for ManyToMany relationships temporarily - [`9de1a8c`](https://github.com/netbox-community/netbox/commit/9de1a8c36311738b4463355766ddb4cf12e0e31a) Introduced SerializedPKRelatedField to represent serialized ManyToManyFields - [`aeaa47e`](https://github.com/netbox-community/netbox/commit/aeaa47e91df5d287d02bea2a33e9ee4d74b5b56b) Avoid a bug in DRF v3.8.2 ### 📊 Changes **210 files changed** (+8632 additions, -3062 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+1 -1) 📝 `docs/configuration/optional-settings.md` (+62 -0) 📝 `docs/data-model/extras.md` (+6 -0) 📝 `docs/installation/ldap.md` (+2 -2) 📝 `docs/installation/migrating-to-python3.md` (+3 -0) 📝 `docs/installation/netbox.md` (+2 -35) 📝 `docs/installation/upgrading.md` (+1 -1) 📝 `docs/installation/web-server.md` (+1 -1) ➕ `docs/miscellaneous/webhooks.md` (+167 -0) 📝 `netbox/circuits/api/serializers.py` (+13 -39) 📝 `netbox/circuits/api/views.py` (+2 -5) 📝 `netbox/circuits/apps.py` (+5 -0) 📝 `netbox/circuits/filters.py` (+6 -0) 📝 `netbox/circuits/forms.py` (+8 -5) ➕ `netbox/circuits/migrations/0011_tags.py` (+27 -0) ➕ `netbox/circuits/migrations/0012_change_logging.py` (+45 -0) 📝 `netbox/circuits/models.py` (+153 -35) 📝 `netbox/circuits/tables.py` (+3 -0) 📝 `netbox/circuits/tests/test_api.py` (+6 -2) 📝 `netbox/circuits/urls.py` (+5 -0) _...and 80 more files_ </details> ### 📄 Description <!-- Thank you for your interest in contributing to NetBox! Please note that our contribution policy requires that a feature request or bug report be opened for approval prior to filing a pull request. This helps avoid wasting time and effort on something that we might not be able to accept. Please indicate the relevant feature request or bug report below. --> ### Fixes: <!-- Please include a summary of the proposed changes below. --> --- <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:20:57 +01:00
adam closed this issue 2025-12-29 22:20:57 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12338