[PR #474] [MERGED] Release v1.5.2 #12062

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/474
Author: @jeremystretch
Created: 8/16/2016
Status: Merged
Merged: 8/16/2016
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

  • 35aa8ac Post-release version bump
  • b74f338 Fixes #463: Prevent prepopulation of livesearch field with '---------'
  • bf1b8ab Enable custom export templates for Tenants
  • 4f774f8 Fixes #460: Corrected ordering of IP addresses with differing prefix lengths
  • 8faa16c Fixes #460: For real this time
  • 13136d0 Fixes #468: Added validation to prevent a connected interface from having its form factor set to 'virtual'
  • 78c3b25 Fixes #467: Include prefixes and IPs which inherit tenancy from their VRF in tenant stats
  • d045429 Fixes #469: Added missing import buttons to list views
  • 989ec72 Fixes #472: Hide the connection button for interfaces which have a circuit terminated to them
  • 2eb8b4f Release v1.5.2

📊 Changes

11 files changed (+66 additions, -9 deletions)

View changed files

📝 netbox/dcim/models.py (+7 -0)
📝 netbox/extras/models.py (+4 -3)
📝 netbox/ipam/models.py (+17 -0)
📝 netbox/netbox/settings.py (+1 -1)
📝 netbox/project-static/js/livesearch.js (+8 -2)
📝 netbox/templates/circuits/circuit_list.html (+4 -0)
📝 netbox/templates/circuits/provider_list.html (+4 -0)
📝 netbox/templates/dcim/inc/_interface.html (+4 -0)
📝 netbox/templates/ipam/aggregate_list.html (+4 -0)
📝 netbox/templates/tenancy/tenant_list.html (+4 -0)
📝 netbox/tenancy/views.py (+9 -3)

📄 Description

Bug Fixes

  • #460 - Corrected ordering of IP addresses with differing prefix lengths
  • #463 - Prevent prepopulation of livesearch field with '---------'
  • #467 - Include prefixes and IPs which inherit tenancy from their VRF in tenant stats
  • #468 - Don't allow connected interfaces to be changed to the "virtual" form factor
  • #469 - Added missing import buttons to list views
  • #472 - Hide the connection button for interfaces which have a circuit terminated to them

🔄 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/474 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 8/16/2016 **Status:** ✅ Merged **Merged:** 8/16/2016 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`35aa8ac`](https://github.com/netbox-community/netbox/commit/35aa8acd095aa59c8d5ab23b4e6fbe135c1899dc) Post-release version bump - [`b74f338`](https://github.com/netbox-community/netbox/commit/b74f338aa17577237fd5bac14e173de420b2deb6) Fixes #463: Prevent prepopulation of livesearch field with '---------' - [`bf1b8ab`](https://github.com/netbox-community/netbox/commit/bf1b8ab9b885960ba55f06669f51fe306e3e3b78) Enable custom export templates for Tenants - [`4f774f8`](https://github.com/netbox-community/netbox/commit/4f774f8ba618cb539e29e2aaf432bdc9b4e6e663) Fixes #460: Corrected ordering of IP addresses with differing prefix lengths - [`8faa16c`](https://github.com/netbox-community/netbox/commit/8faa16c831544aa4bec2e3fc16fc9e32462b43ae) Fixes #460: For real this time - [`13136d0`](https://github.com/netbox-community/netbox/commit/13136d0ccb97513544d1dfa887eceb3d9f52f97f) Fixes #468: Added validation to prevent a connected interface from having its form factor set to 'virtual' - [`78c3b25`](https://github.com/netbox-community/netbox/commit/78c3b25f0a1b93b5b0c02602208e48b9cc1ed7c0) Fixes #467: Include prefixes and IPs which inherit tenancy from their VRF in tenant stats - [`d045429`](https://github.com/netbox-community/netbox/commit/d045429b510cd6b83b3fbceea603ea5b82155ee7) Fixes #469: Added missing import buttons to list views - [`989ec72`](https://github.com/netbox-community/netbox/commit/989ec721d31f5d4c4bf485a82cca4766c5cc4856) Fixes #472: Hide the connection button for interfaces which have a circuit terminated to them - [`2eb8b4f`](https://github.com/netbox-community/netbox/commit/2eb8b4fe71ee1a129eabdda53d3b3cd13dbba7f6) Release v1.5.2 ### 📊 Changes **11 files changed** (+66 additions, -9 deletions) <details> <summary>View changed files</summary> 📝 `netbox/dcim/models.py` (+7 -0) 📝 `netbox/extras/models.py` (+4 -3) 📝 `netbox/ipam/models.py` (+17 -0) 📝 `netbox/netbox/settings.py` (+1 -1) 📝 `netbox/project-static/js/livesearch.js` (+8 -2) 📝 `netbox/templates/circuits/circuit_list.html` (+4 -0) 📝 `netbox/templates/circuits/provider_list.html` (+4 -0) 📝 `netbox/templates/dcim/inc/_interface.html` (+4 -0) 📝 `netbox/templates/ipam/aggregate_list.html` (+4 -0) 📝 `netbox/templates/tenancy/tenant_list.html` (+4 -0) 📝 `netbox/tenancy/views.py` (+9 -3) </details> ### 📄 Description ## Bug Fixes - [#460](https://github.com/digitalocean/netbox/issues/460) - Corrected ordering of IP addresses with differing prefix lengths - [#463](https://github.com/digitalocean/netbox/issues/463) - Prevent prepopulation of livesearch field with '---------' - [#467](https://github.com/digitalocean/netbox/issues/467) - Include prefixes and IPs which inherit tenancy from their VRF in tenant stats - [#468](https://github.com/digitalocean/netbox/issues/468) - Don't allow connected interfaces to be changed to the "virtual" form factor - [#469](https://github.com/digitalocean/netbox/issues/469) - Added missing import buttons to list views - [#472](https://github.com/digitalocean/netbox/issues/472) - Hide the connection button for interfaces which have a circuit terminated to them --- <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:25 +01:00
adam closed this issue 2025-12-29 22:19:26 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12062