[PR #736] [MERGED] Release v1.7.3 #12109

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

📋 Pull Request Information

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

Base: masterHead: develop


📝 Commits (9)

  • efb9593 Reverting GitHub test
  • 4a9b4c5 Fixes #732: Allow custom select field values to be deselected if the field is not required
  • fca8129 #724: Exempt API views from LoginRequiredMiddleware to enable basic HTTP authentication when LOGIN_REQUIRED is true
  • b4940a6 FIX: filtering devices fails because mac address filter is a required
  • cc6ae8e Merge pull request #733 from linuxsimba/remove_mac_addr_required_from_filter
  • 3a6d7a1 #733: Fixed MAC address device filter
  • d509536 Fixes #734: Corrected display of device type when editing a device
  • 5035a95 Fixes #729: Corrected cancellation links when editing secondary objects
  • a68e825 Release v1.7.3

📊 Changes

23 files changed (+91 additions, -72 deletions)

View changed files

📝 netbox/circuits/views.py (+4 -4)
📝 netbox/dcim/admin.py (+5 -1)
📝 netbox/dcim/filters.py (+4 -1)
📝 netbox/dcim/forms.py (+1 -1)
📝 netbox/dcim/models.py (+5 -1)
📝 netbox/dcim/tables.py (+4 -2)
📝 netbox/dcim/views.py (+14 -15)
📝 netbox/extras/forms.py (+1 -1)
📝 netbox/ipam/views.py (+11 -12)
📝 netbox/netbox/settings.py (+3 -1)
📝 netbox/secrets/views.py (+2 -2)
netbox/tempfile (+0 -0)
📝 netbox/templates/dcim/device.html (+2 -2)
📝 netbox/templates/dcim/device_bulk_add_component.html (+1 -1)
📝 netbox/templates/dcim/device_bulk_edit.html (+1 -1)
📝 netbox/templates/dcim/device_inventory.html (+1 -1)
📝 netbox/templates/dcim/devicetype.html (+2 -2)
📝 netbox/templates/dcim/inc/_devicebay.html (+1 -1)
📝 netbox/templates/dcim/inc/_rack_elevation.html (+1 -1)
📝 netbox/templates/dcim/rack.html (+8 -2)

...and 3 more files

📄 Description

Bug Fixes

  • #724 - Exempt API views from LoginRequiredMiddleware to enable basic HTTP authentication when LOGIN_REQUIRED is true
  • #729 - Corrected cancellation links when editing secondary objects
  • #732 - Allow custom select field values to be deselected if the field is not required
  • #733 - Fixed MAC address filter on device list
  • #734 - Corrected display of device type when editing a device

🔄 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/736 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 12/8/2016 **Status:** ✅ Merged **Merged:** 12/8/2016 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (9) - [`efb9593`](https://github.com/netbox-community/netbox/commit/efb95937fc9274ab43a95ea22c6c35ff984460f8) Reverting GitHub test - [`4a9b4c5`](https://github.com/netbox-community/netbox/commit/4a9b4c5387aace8eb72cfbda3aad76e5a3896ef4) Fixes #732: Allow custom select field values to be deselected if the field is not required - [`fca8129`](https://github.com/netbox-community/netbox/commit/fca812928e901739714ea2dcc9c0335e9b8d96a3) #724: Exempt API views from LoginRequiredMiddleware to enable basic HTTP authentication when LOGIN_REQUIRED is true - [`b4940a6`](https://github.com/netbox-community/netbox/commit/b4940a64beabc4d4b698a46a632f0818c1d3cd96) FIX: filtering devices fails because mac address filter is a required - [`cc6ae8e`](https://github.com/netbox-community/netbox/commit/cc6ae8ebe464c1c8167b6254c082ea92eaa2a5d9) Merge pull request #733 from linuxsimba/remove_mac_addr_required_from_filter - [`3a6d7a1`](https://github.com/netbox-community/netbox/commit/3a6d7a1f7faf5d16f3e23be789deb41a308d2d2e) #733: Fixed MAC address device filter - [`d509536`](https://github.com/netbox-community/netbox/commit/d5095362d7687111076800eaaf1b6409842965de) Fixes #734: Corrected display of device type when editing a device - [`5035a95`](https://github.com/netbox-community/netbox/commit/5035a9567bf5ccb20373789041b4317c83293094) Fixes #729: Corrected cancellation links when editing secondary objects - [`a68e825`](https://github.com/netbox-community/netbox/commit/a68e82575f55327097f8419096394fe60eaf3830) Release v1.7.3 ### 📊 Changes **23 files changed** (+91 additions, -72 deletions) <details> <summary>View changed files</summary> 📝 `netbox/circuits/views.py` (+4 -4) 📝 `netbox/dcim/admin.py` (+5 -1) 📝 `netbox/dcim/filters.py` (+4 -1) 📝 `netbox/dcim/forms.py` (+1 -1) 📝 `netbox/dcim/models.py` (+5 -1) 📝 `netbox/dcim/tables.py` (+4 -2) 📝 `netbox/dcim/views.py` (+14 -15) 📝 `netbox/extras/forms.py` (+1 -1) 📝 `netbox/ipam/views.py` (+11 -12) 📝 `netbox/netbox/settings.py` (+3 -1) 📝 `netbox/secrets/views.py` (+2 -2) ➖ `netbox/tempfile` (+0 -0) 📝 `netbox/templates/dcim/device.html` (+2 -2) 📝 `netbox/templates/dcim/device_bulk_add_component.html` (+1 -1) 📝 `netbox/templates/dcim/device_bulk_edit.html` (+1 -1) 📝 `netbox/templates/dcim/device_inventory.html` (+1 -1) 📝 `netbox/templates/dcim/devicetype.html` (+2 -2) 📝 `netbox/templates/dcim/inc/_devicebay.html` (+1 -1) 📝 `netbox/templates/dcim/inc/_rack_elevation.html` (+1 -1) 📝 `netbox/templates/dcim/rack.html` (+8 -2) _...and 3 more files_ </details> ### 📄 Description ## Bug Fixes * [#724](https://github.com/digitalocean/netbox/issues/724) - Exempt API views from LoginRequiredMiddleware to enable basic HTTP authentication when LOGIN_REQUIRED is true * [#729](https://github.com/digitalocean/netbox/issues/729) - Corrected cancellation links when editing secondary objects * [#732](https://github.com/digitalocean/netbox/issues/732) - Allow custom select field values to be deselected if the field is not required * [#733](https://github.com/digitalocean/netbox/issues/733) - Fixed MAC address filter on device list * [#734](https://github.com/digitalocean/netbox/issues/734) - Corrected display of device type when editing a device --- <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:40 +01:00
adam closed this issue 2025-12-29 22:19:40 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12109