[PR #1316] [MERGED] Release v2.0.8 #12186

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/1316
Author: @jeremystretch
Created: 7/5/2017
Status: Merged
Merged: 7/5/2017
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

  • c00eea7 Post-release version bump
  • 9d89eed Fixes #1281: Show LLDP neighbors tab on device view only if necessary conditions are met
  • ea869d4 Fixes #1282: Fixed tooltips on "mark connected/planned" toggle buttons for device connections
  • afdf575 Fixes #1279: Fix primary_ip assignment during IP address import
  • 5aba1d9 Fixes #1288: Corrected permission name for deleting image attachments
  • adfcb5f Fixes #1295: Docstring typo
  • 3f82be7 Closes #1298: Calculate prefix utilization based on its status (container or non-container)
  • 97b67d0 Fixes #1299: Corrected permission to add a service to a device
  • cd5a86b Closes #1303: Highlight installed interface connections in green on device view
  • e081070 Preserve fileextension, regardless of upper or lower case on imageuploads

📊 Changes

18 files changed (+105 additions, -94 deletions)

View changed files

📝 netbox/extras/api/customfields.py (+4 -0)
📝 netbox/extras/models.py (+1 -1)
📝 netbox/extras/views.py (+1 -1)
📝 netbox/ipam/forms.py (+12 -5)
📝 netbox/ipam/models.py (+18 -14)
📝 netbox/ipam/tables.py (+1 -1)
📝 netbox/ipam/views.py (+0 -13)
📝 netbox/netbox/settings.py (+1 -1)
📝 netbox/templates/dcim/device.html (+3 -3)
📝 netbox/templates/dcim/inc/consoleport.html (+12 -12)
📝 netbox/templates/dcim/inc/consoleserverport.html (+12 -12)
📝 netbox/templates/dcim/inc/device_header.html (+1 -1)
📝 netbox/templates/dcim/inc/interface.html (+2 -2)
📝 netbox/templates/dcim/inc/poweroutlet.html (+12 -12)
📝 netbox/templates/dcim/inc/powerport.html (+12 -12)
📝 netbox/templates/users/userkey.html (+6 -0)
📝 netbox/utilities/forms.py (+6 -3)
📝 netbox/utilities/views.py (+1 -1)

📄 Description

Enhancements

  • #1298 - Calculate prefix utilization based on its status (container or non-container)
  • #1303 - Highlight installed interface connections in green on device view
  • #1315 - Enforce lowercase file extensions for image attachments

Bug Fixes

  • #1279 - Fix primary_ip assignment during IP address import
  • #1281 - Show LLDP neighbors tab on device view only if necessary conditions are met
  • #1282 - Fixed tooltips on "mark connected/planned" toggle buttons for device connections
  • #1288 - Corrected permission name for deleting image attachments
  • #1289 - Retain inside NAT assignment when editing an IP address
  • #1297 - Allow passing custom field choice selection PKs to API as string-quoted integers
  • #1299 - Corrected permission name for adding services to devices

🔄 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/1316 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 7/5/2017 **Status:** ✅ Merged **Merged:** 7/5/2017 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`c00eea7`](https://github.com/netbox-community/netbox/commit/c00eea79911269351a27acc28be92d2b90abe0d1) Post-release version bump - [`9d89eed`](https://github.com/netbox-community/netbox/commit/9d89eed873d628d4f5c31e87a4866dbe4b9da39b) Fixes #1281: Show LLDP neighbors tab on device view only if necessary conditions are met - [`ea869d4`](https://github.com/netbox-community/netbox/commit/ea869d4ffc127575f45e8574319bf1575c41bba0) Fixes #1282: Fixed tooltips on "mark connected/planned" toggle buttons for device connections - [`afdf575`](https://github.com/netbox-community/netbox/commit/afdf5750b585ad5abad060d4ecf016bee9a1c5e7) Fixes #1279: Fix primary_ip assignment during IP address import - [`5aba1d9`](https://github.com/netbox-community/netbox/commit/5aba1d9aec316443fa1e8358e92debffeadb3c6a) Fixes #1288: Corrected permission name for deleting image attachments - [`adfcb5f`](https://github.com/netbox-community/netbox/commit/adfcb5f7b691c0a7189783f7b603b3d589af69a0) Fixes #1295: Docstring typo - [`3f82be7`](https://github.com/netbox-community/netbox/commit/3f82be71929d080f4eec4446a13f3bdfc593606d) Closes #1298: Calculate prefix utilization based on its status (container or non-container) - [`97b67d0`](https://github.com/netbox-community/netbox/commit/97b67d0f93a197c100ad68aaecc4dd3188f447bd) Fixes #1299: Corrected permission to add a service to a device - [`cd5a86b`](https://github.com/netbox-community/netbox/commit/cd5a86bfcfa71f1fe1caeb3b35c1426d038626f2) Closes #1303: Highlight installed interface connections in green on device view - [`e081070`](https://github.com/netbox-community/netbox/commit/e08107063a585956c778544ec611b0f63e23f4c4) Preserve fileextension, regardless of upper or lower case on imageuploads ### 📊 Changes **18 files changed** (+105 additions, -94 deletions) <details> <summary>View changed files</summary> 📝 `netbox/extras/api/customfields.py` (+4 -0) 📝 `netbox/extras/models.py` (+1 -1) 📝 `netbox/extras/views.py` (+1 -1) 📝 `netbox/ipam/forms.py` (+12 -5) 📝 `netbox/ipam/models.py` (+18 -14) 📝 `netbox/ipam/tables.py` (+1 -1) 📝 `netbox/ipam/views.py` (+0 -13) 📝 `netbox/netbox/settings.py` (+1 -1) 📝 `netbox/templates/dcim/device.html` (+3 -3) 📝 `netbox/templates/dcim/inc/consoleport.html` (+12 -12) 📝 `netbox/templates/dcim/inc/consoleserverport.html` (+12 -12) 📝 `netbox/templates/dcim/inc/device_header.html` (+1 -1) 📝 `netbox/templates/dcim/inc/interface.html` (+2 -2) 📝 `netbox/templates/dcim/inc/poweroutlet.html` (+12 -12) 📝 `netbox/templates/dcim/inc/powerport.html` (+12 -12) 📝 `netbox/templates/users/userkey.html` (+6 -0) 📝 `netbox/utilities/forms.py` (+6 -3) 📝 `netbox/utilities/views.py` (+1 -1) </details> ### 📄 Description ## Enhancements * [#1298](https://github.com/digitalocean/netbox/issues/1298) - Calculate prefix utilization based on its status (container or non-container) * [#1303](https://github.com/digitalocean/netbox/issues/1303) - Highlight installed interface connections in green on device view * [#1315](https://github.com/digitalocean/netbox/issues/1315) - Enforce lowercase file extensions for image attachments ## Bug Fixes * [#1279](https://github.com/digitalocean/netbox/issues/1279) - Fix primary_ip assignment during IP address import * [#1281](https://github.com/digitalocean/netbox/issues/1281) - Show LLDP neighbors tab on device view only if necessary conditions are met * [#1282](https://github.com/digitalocean/netbox/issues/1282) - Fixed tooltips on "mark connected/planned" toggle buttons for device connections * [#1288](https://github.com/digitalocean/netbox/issues/1288) - Corrected permission name for deleting image attachments * [#1289](https://github.com/digitalocean/netbox/issues/1289) - Retain inside NAT assignment when editing an IP address * [#1297](https://github.com/digitalocean/netbox/issues/1297) - Allow passing custom field choice selection PKs to API as string-quoted integers * [#1299](https://github.com/digitalocean/netbox/issues/1299) - Corrected permission name for adding services to devices --- <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:06 +01:00
adam closed this issue 2025-12-29 22:20:06 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12186