[PR #1278] [MERGED] Release v2.0.7 #12185

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/1278
Author: @jeremystretch
Created: 6/15/2017
Status: Merged
Merged: 6/15/2017
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

  • 180446c Removed Debian/RHEL references from installation docs
  • 5456af6 Removed 'update-alternatives' from Python3 instructions
  • 54fa51e Post-release version bump
  • 469c52b Fixes #1263: Differentiate add and edit permissions for objects
  • 8eb9c45 Renamed AddViews to CreateViews for consistency
  • 252ab0f Fixes #1238: Fix error when editing an IP with a NAT assignment which has no assigned device
  • 16d6947 Fixes #1268: Fix CSV import error under Python 3
  • 78d7426 Fixes #1266: Prevent termination a circuit to an already-connected interface
  • fcacac7 Fixes #1265: Fix console/power/interface connection validation when selecting a device via live search
  • 29a71fd #1265: Improved livesearch UI Javascript

📊 Changes

23 files changed (+389 additions, -142 deletions)

View changed files

📝 docs/installation/netbox.md (+13 -11)
📝 docs/installation/postgresql.md (+5 -2)
📝 docs/installation/web-server.md (+1 -1)
📝 netbox/circuits/forms.py (+1 -1)
📝 netbox/circuits/urls.py (+4 -4)
📝 netbox/circuits/views.py (+24 -8)
📝 netbox/dcim/forms.py (+18 -5)
📝 netbox/dcim/urls.py (+27 -24)
📝 netbox/dcim/views.py (+149 -36)
📝 netbox/extras/models.py (+2 -1)
📝 netbox/ipam/forms.py (+9 -2)
📝 netbox/ipam/urls.py (+9 -9)
📝 netbox/ipam/views.py (+56 -20)
📝 netbox/netbox/settings.py (+1 -1)
📝 netbox/project-static/js/livesearch.js (+12 -2)
📝 netbox/secrets/urls.py (+1 -1)
📝 netbox/secrets/views.py (+6 -2)
netbox/templates/dcim/bulk_disconnect.html (+13 -0)
📝 netbox/templates/dcim/device.html (+19 -4)
📝 netbox/tenancy/urls.py (+2 -2)

...and 3 more files

📄 Description

Enhancements

  • #626 - Added bulk disconnect function for console/power/interface connections on device view

Bug Fixes

  • #1238 - Fix error when editing an IP with a NAT assignment which has no assigned device
  • #1263 - Differentiate add and edit permissions for objects
  • #1265 - Fix console/power/interface connection validation when selecting a device via live search
  • #1266 - Prevent terminating a circuit to an already-connected interface
  • #1268 - Fix CSV import error under Python 3
  • #1273 - Corrected status choices in IP address import form
  • #1274 - Exclude unterminated circuits from topology maps
  • #1275 - Raise validation error on prefix import when multiple VLANs are found

🔄 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/1278 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 6/15/2017 **Status:** ✅ Merged **Merged:** 6/15/2017 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`180446c`](https://github.com/netbox-community/netbox/commit/180446c34d634cba0b52ce1a307455a893bcbc8b) Removed Debian/RHEL references from installation docs - [`5456af6`](https://github.com/netbox-community/netbox/commit/5456af6867b1ee79ea01c90684d1904a3cd9b93e) Removed 'update-alternatives' from Python3 instructions - [`54fa51e`](https://github.com/netbox-community/netbox/commit/54fa51eeff14abfe1420a6e37401b3a91833807a) Post-release version bump - [`469c52b`](https://github.com/netbox-community/netbox/commit/469c52be28a9dc83a64e3413095469046e0a8a22) Fixes #1263: Differentiate add and edit permissions for objects - [`8eb9c45`](https://github.com/netbox-community/netbox/commit/8eb9c451a1f98d65edb0a8864f853e023ba9fd75) Renamed AddViews to CreateViews for consistency - [`252ab0f`](https://github.com/netbox-community/netbox/commit/252ab0fbab212b057d62a149da900519c69cef03) Fixes #1238: Fix error when editing an IP with a NAT assignment which has no assigned device - [`16d6947`](https://github.com/netbox-community/netbox/commit/16d694734b63bb5424ec1f64bebb5daf9a5f90b5) Fixes #1268: Fix CSV import error under Python 3 - [`78d7426`](https://github.com/netbox-community/netbox/commit/78d74261e99358fe434a78e54952323f5d607b46) Fixes #1266: Prevent termination a circuit to an already-connected interface - [`fcacac7`](https://github.com/netbox-community/netbox/commit/fcacac7c6f1a4c807c9ef142c9f3b6a6724f6698) Fixes #1265: Fix console/power/interface connection validation when selecting a device via live search - [`29a71fd`](https://github.com/netbox-community/netbox/commit/29a71fd9031fd023ef2cc330bc820b013e9a26c9) #1265: Improved livesearch UI Javascript ### 📊 Changes **23 files changed** (+389 additions, -142 deletions) <details> <summary>View changed files</summary> 📝 `docs/installation/netbox.md` (+13 -11) 📝 `docs/installation/postgresql.md` (+5 -2) 📝 `docs/installation/web-server.md` (+1 -1) 📝 `netbox/circuits/forms.py` (+1 -1) 📝 `netbox/circuits/urls.py` (+4 -4) 📝 `netbox/circuits/views.py` (+24 -8) 📝 `netbox/dcim/forms.py` (+18 -5) 📝 `netbox/dcim/urls.py` (+27 -24) 📝 `netbox/dcim/views.py` (+149 -36) 📝 `netbox/extras/models.py` (+2 -1) 📝 `netbox/ipam/forms.py` (+9 -2) 📝 `netbox/ipam/urls.py` (+9 -9) 📝 `netbox/ipam/views.py` (+56 -20) 📝 `netbox/netbox/settings.py` (+1 -1) 📝 `netbox/project-static/js/livesearch.js` (+12 -2) 📝 `netbox/secrets/urls.py` (+1 -1) 📝 `netbox/secrets/views.py` (+6 -2) ➕ `netbox/templates/dcim/bulk_disconnect.html` (+13 -0) 📝 `netbox/templates/dcim/device.html` (+19 -4) 📝 `netbox/tenancy/urls.py` (+2 -2) _...and 3 more files_ </details> ### 📄 Description ## Enhancements * [#626](https://github.com/digitalocean/netbox/issues/626) - Added bulk disconnect function for console/power/interface connections on device view ## Bug Fixes * [#1238](https://github.com/digitalocean/netbox/issues/1238) - Fix error when editing an IP with a NAT assignment which has no assigned device * [#1263](https://github.com/digitalocean/netbox/issues/1263) - Differentiate add and edit permissions for objects * [#1265](https://github.com/digitalocean/netbox/issues/1265) - Fix console/power/interface connection validation when selecting a device via live search * [#1266](https://github.com/digitalocean/netbox/issues/1266) - Prevent terminating a circuit to an already-connected interface * [#1268](https://github.com/digitalocean/netbox/issues/1268) - Fix CSV import error under Python 3 * [#1273](https://github.com/digitalocean/netbox/issues/1273) - Corrected status choices in IP address import form * [#1274](https://github.com/digitalocean/netbox/issues/1274) - Exclude unterminated circuits from topology maps * [#1275](https://github.com/digitalocean/netbox/issues/1275) - Raise validation error on prefix import when multiple VLANs are found --- <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:05 +01:00
adam closed this issue 2025-12-29 22:20:05 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12185