[PR #694] [MERGED] Release v1.7.1 #12101

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/694
Author: @jeremystretch
Created: 11/15/2016
Status: Merged
Merged: 11/15/2016
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

  • 1f3f978 Post-release version bump
  • 13cdc44 #667: Initial work on RIR statistics
  • e496dc7 Add Graphviz to Topology Maps
  • 9c7f55d Fixes #674: Correct status assignment on IP address import
  • 7dfd32a Fixes #676: Server error when bulk editing device types
  • 07e34fb Fixes #678: Server error on device import specifying an invalid device type
  • d891c8c Incorporated stats into RIR list view
  • a0ee6b0 Closes #667: Added stats to RIR list view
  • 99c2911 PEP8 fix
  • f569561 Another PEP8 fix

📊 Changes

12 files changed (+189 additions, -38 deletions)

View changed files

📝 Dockerfile (+1 -1)
📝 netbox/dcim/forms.py (+10 -2)
📝 netbox/dcim/models.py (+4 -2)
📝 netbox/ipam/forms.py (+9 -7)
📝 netbox/ipam/models.py (+20 -10)
📝 netbox/ipam/tables.py (+31 -2)
📝 netbox/ipam/views.py (+79 -2)
📝 netbox/netbox/settings.py (+1 -1)
📝 netbox/project-static/css/base.css (+3 -0)
📝 netbox/templates/dcim/device.html (+9 -11)
📝 netbox/templates/ipam/rir_list.html (+15 -0)
📝 netbox/templates/utilities/render_field.html (+7 -0)

📄 Description

Improvements

  • #667 - Added prefix utilization statistics to the RIR list view
  • #685 - When assigning an IP to a device, automatically select the interface if only one exists

Bug Fixes

  • #674 - Fix assignment of status to imported IP addresses
  • #676 - Server error when bulk editing device types
  • #678 - Server error on device import specifying an invalid device type
  • #691 - Allow the assignment of power ports to PDUs
  • #692 - Form errors are not displayed on checkbox fields

🔄 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/694 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 11/15/2016 **Status:** ✅ Merged **Merged:** 11/15/2016 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`1f3f978`](https://github.com/netbox-community/netbox/commit/1f3f9781d9ed23917f98821dcc07ff2418910990) Post-release version bump - [`13cdc44`](https://github.com/netbox-community/netbox/commit/13cdc44cafcf59954fab1b2be407764290f44e2b) #667: Initial work on RIR statistics - [`e496dc7`](https://github.com/netbox-community/netbox/commit/e496dc710fd5ca3794e07cff530fe75a8fd5b436) Add Graphviz to Topology Maps - [`9c7f55d`](https://github.com/netbox-community/netbox/commit/9c7f55d8d07c10dda44d84ec7912ed837c1e6725) Fixes #674: Correct status assignment on IP address import - [`7dfd32a`](https://github.com/netbox-community/netbox/commit/7dfd32a5c4730738e2c2e2036ed9bca3ec0de096) Fixes #676: Server error when bulk editing device types - [`07e34fb`](https://github.com/netbox-community/netbox/commit/07e34fbe842cf26ab5b6f425361d5267d388998d) Fixes #678: Server error on device import specifying an invalid device type - [`d891c8c`](https://github.com/netbox-community/netbox/commit/d891c8c98121604fd7dffe8aafd996a8b9bc086d) Incorporated stats into RIR list view - [`a0ee6b0`](https://github.com/netbox-community/netbox/commit/a0ee6b0d58cbc986702e81f44e1ff8f78a37ab3b) Closes #667: Added stats to RIR list view - [`99c2911`](https://github.com/netbox-community/netbox/commit/99c2911a6699863f4a54318c61f552ba0b9e1a05) PEP8 fix - [`f569561`](https://github.com/netbox-community/netbox/commit/f5695619971e3ee8a483e79b99d551d479bb5aae) Another PEP8 fix ### 📊 Changes **12 files changed** (+189 additions, -38 deletions) <details> <summary>View changed files</summary> 📝 `Dockerfile` (+1 -1) 📝 `netbox/dcim/forms.py` (+10 -2) 📝 `netbox/dcim/models.py` (+4 -2) 📝 `netbox/ipam/forms.py` (+9 -7) 📝 `netbox/ipam/models.py` (+20 -10) 📝 `netbox/ipam/tables.py` (+31 -2) 📝 `netbox/ipam/views.py` (+79 -2) 📝 `netbox/netbox/settings.py` (+1 -1) 📝 `netbox/project-static/css/base.css` (+3 -0) 📝 `netbox/templates/dcim/device.html` (+9 -11) 📝 `netbox/templates/ipam/rir_list.html` (+15 -0) 📝 `netbox/templates/utilities/render_field.html` (+7 -0) </details> ### 📄 Description ## Improvements * [#667](https://github.com/digitalocean/netbox/issues/667) - Added prefix utilization statistics to the RIR list view * [#685](https://github.com/digitalocean/netbox/issues/685) - When assigning an IP to a device, automatically select the interface if only one exists ## Bug Fixes * [#674](https://github.com/digitalocean/netbox/issues/674) - Fix assignment of status to imported IP addresses * [#676](https://github.com/digitalocean/netbox/issues/676) - Server error when bulk editing device types * [#678](https://github.com/digitalocean/netbox/issues/678) - Server error on device import specifying an invalid device type * [#691](https://github.com/digitalocean/netbox/issues/691) - Allow the assignment of power ports to PDUs * [#692](https://github.com/digitalocean/netbox/issues/692) - Form errors are not displayed on checkbox fields --- <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:38 +01:00
adam closed this issue 2025-12-29 22:19:38 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12101