[PR #814] [MERGED] Release v1.8.2 #12121

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/814
Author: @jeremystretch
Created: 1/18/2017
Status: Merged
Merged: 1/18/2017
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

  • 99cd78c Post-release version bump
  • 23c6451 Fixes #776: Prevent circuits from appearing twice while searching
  • 381eb66 Added alternative installations section
  • 09fe328 Standardized template names
  • dbf9840 Corrected permissions for device component form rendering
  • ac72e90 Fixes #778: Refactored order_interfaces() to fix InterfaceTemplate ordering within a table
  • 73ae87a Updated circuits documentation
  • 1486a89 Update CONTRIBUTING.md
  • 2ef1e62 Merge pull request #781 from zevlag/patch-1
  • c9e7c12 Closes #284: Added interface_ordering field to DeviceType

📊 Changes

53 files changed (+433 additions, -275 deletions)

View changed files

📝 CONTRIBUTING.md (+3 -4)
📝 README.md (+6 -3)
📝 docs/data-model/circuits.md (+13 -12)
📝 netbox/circuits/api/serializers.py (+2 -1)
📝 netbox/circuits/filters.py (+2 -1)
📝 netbox/circuits/forms.py (+4 -3)
netbox/circuits/migrations/0007_circuit_add_description.py (+20 -0)
📝 netbox/circuits/models.py (+2 -3)
📝 netbox/circuits/tables.py (+2 -3)
📝 netbox/circuits/views.py (+10 -6)
📝 netbox/dcim/api/serializers.py (+5 -4)
📝 netbox/dcim/forms.py (+8 -4)
netbox/dcim/migrations/0025_devicetype_add_interface_ordering.py (+20 -0)
📝 netbox/dcim/models.py (+45 -81)
📝 netbox/dcim/tables.py (+4 -2)
📝 netbox/dcim/tests/test_apis.py (+1 -0)
📝 netbox/dcim/views.py (+39 -30)
📝 netbox/ipam/forms.py (+7 -3)
📝 netbox/ipam/models.py (+31 -19)
📝 netbox/ipam/tables.py (+6 -5)

...and 33 more files

📄 Description

Improvements

  • #284 - Enabled toggling of interface display order per device type
  • #760 - Redirect user back to device view after deleting an assigned IP address
  • #783 - Add a description field to the Circuit model
  • #797 - Add description column to VLANs table
  • #803 - Clarify that no child objects are deleted when deleting a prefix
  • #805 - Linkify site column in device table

Bug Fixes

  • #776 - Prevent circuits from appearing twice while searching
  • #778 - Corrected an issue preventing multiple interfaces with the same position ID from appearing in a device's interface list
  • #785 - Trigger validation error when importing a prefix assigned to a nonexistent VLAN
  • #802 - Fixed enforcement of ENFORCE_GLOBAL_UNIQUE for prefixes
  • #807 - Redirect user back to form when adding IP addresses in bulk and "create and add another" is clicked
  • #810 - Suppress unique IP validation on invalid IP addresses and prefixes

🔄 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/814 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 1/18/2017 **Status:** ✅ Merged **Merged:** 1/18/2017 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`99cd78c`](https://github.com/netbox-community/netbox/commit/99cd78cbbf73ae6542b2aaf886905e8bd82c86ac) Post-release version bump - [`23c6451`](https://github.com/netbox-community/netbox/commit/23c6451524b677adc820b0388586df659b16570b) Fixes #776: Prevent circuits from appearing twice while searching - [`381eb66`](https://github.com/netbox-community/netbox/commit/381eb664cf74d390be1c5e9f34ad25d207312150) Added alternative installations section - [`09fe328`](https://github.com/netbox-community/netbox/commit/09fe328c3f22407a97c720e53c4b3c3faaa9f7a9) Standardized template names - [`dbf9840`](https://github.com/netbox-community/netbox/commit/dbf9840b269d384b3202b99c08ebe6a191637c8b) Corrected permissions for device component form rendering - [`ac72e90`](https://github.com/netbox-community/netbox/commit/ac72e90dcc000e8ae23c65e18b7452b96eeaa92b) Fixes #778: Refactored order_interfaces() to fix InterfaceTemplate ordering within a table - [`73ae87a`](https://github.com/netbox-community/netbox/commit/73ae87aa5733ebc98749c80bff8e53f437e22157) Updated circuits documentation - [`1486a89`](https://github.com/netbox-community/netbox/commit/1486a8901ad732035a73dd5f4787ee6374892065) Update CONTRIBUTING.md - [`2ef1e62`](https://github.com/netbox-community/netbox/commit/2ef1e623a3054d242bae7058d7b082c6de3409ea) Merge pull request #781 from zevlag/patch-1 - [`c9e7c12`](https://github.com/netbox-community/netbox/commit/c9e7c12463a529177a73df3d545756663218ac93) Closes #284: Added interface_ordering field to DeviceType ### 📊 Changes **53 files changed** (+433 additions, -275 deletions) <details> <summary>View changed files</summary> 📝 `CONTRIBUTING.md` (+3 -4) 📝 `README.md` (+6 -3) 📝 `docs/data-model/circuits.md` (+13 -12) 📝 `netbox/circuits/api/serializers.py` (+2 -1) 📝 `netbox/circuits/filters.py` (+2 -1) 📝 `netbox/circuits/forms.py` (+4 -3) ➕ `netbox/circuits/migrations/0007_circuit_add_description.py` (+20 -0) 📝 `netbox/circuits/models.py` (+2 -3) 📝 `netbox/circuits/tables.py` (+2 -3) 📝 `netbox/circuits/views.py` (+10 -6) 📝 `netbox/dcim/api/serializers.py` (+5 -4) 📝 `netbox/dcim/forms.py` (+8 -4) ➕ `netbox/dcim/migrations/0025_devicetype_add_interface_ordering.py` (+20 -0) 📝 `netbox/dcim/models.py` (+45 -81) 📝 `netbox/dcim/tables.py` (+4 -2) 📝 `netbox/dcim/tests/test_apis.py` (+1 -0) 📝 `netbox/dcim/views.py` (+39 -30) 📝 `netbox/ipam/forms.py` (+7 -3) 📝 `netbox/ipam/models.py` (+31 -19) 📝 `netbox/ipam/tables.py` (+6 -5) _...and 33 more files_ </details> ### 📄 Description ## Improvements * [#284](https://github.com/digitalocean/netbox/issues/284) - Enabled toggling of interface display order per device type * [#760](https://github.com/digitalocean/netbox/issues/760) - Redirect user back to device view after deleting an assigned IP address * [#783](https://github.com/digitalocean/netbox/issues/783) - Add a description field to the Circuit model * [#797](https://github.com/digitalocean/netbox/issues/797) - Add description column to VLANs table * [#803](https://github.com/digitalocean/netbox/issues/803) - Clarify that no child objects are deleted when deleting a prefix * [#805](https://github.com/digitalocean/netbox/issues/805) - Linkify site column in device table ## Bug Fixes * [#776](https://github.com/digitalocean/netbox/issues/776) - Prevent circuits from appearing twice while searching * [#778](https://github.com/digitalocean/netbox/issues/778) - Corrected an issue preventing multiple interfaces with the same position ID from appearing in a device's interface list * [#785](https://github.com/digitalocean/netbox/issues/785) - Trigger validation error when importing a prefix assigned to a nonexistent VLAN * [#802](https://github.com/digitalocean/netbox/issues/802) - Fixed enforcement of ENFORCE_GLOBAL_UNIQUE for prefixes * [#807](https://github.com/digitalocean/netbox/issues/807) - Redirect user back to form when adding IP addresses in bulk and "create and add another" is clicked * [#810](https://github.com/digitalocean/netbox/issues/810) - Suppress unique IP validation on invalid IP addresses and prefixes --- <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:19:44 +01:00
adam closed this issue 2025-12-29 22:19:44 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12121