[PR #625] [MERGED] Release v1.6.3 #12095

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/625
Author: @jeremystretch
Created: 10/19/2016
Status: Merged
Merged: 10/19/2016
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

  • 8ed174e Post-release version bump
  • 3606606 #527: Initial work to allow nullifying fields during bulk edit
  • b68c640 Allow multiple ALLOWED_HOSTS on docker
  • f1c70cd Fixes #591: Correct display of device type component creation buttons
  • 8227a9f Merge pull request #592 from lf-/patch-2
  • 7394589 Fixes #527: Support for nullifying custom fields during bulk editing
  • 330abe5 Fixes #602: Correct display of custom integer fields with value of 0 or 1
  • 0ff46bf Fixes #611: Power/console/interface connection import: status field should be case-insensitive
  • 4647978 Fixes #604: Correct display of unnamed devices in form selection fields
  • 579ed0a Redirect user to previous page after logging in

📊 Changes

25 files changed (+336 additions, -203 deletions)

View changed files

📝 netbox/circuits/forms.py (+8 -3)
📝 netbox/dcim/forms.py (+52 -49)
📝 netbox/dcim/urls.py (+2 -4)
📝 netbox/dcim/views.py (+16 -0)
📝 netbox/extras/forms.py (+15 -14)
📝 netbox/ipam/forms.py (+22 -19)
📝 netbox/ipam/models.py (+1 -1)
📝 netbox/netbox/configuration.docker.py (+1 -1)
📝 netbox/netbox/settings.py (+3 -4)
📝 netbox/project-static/js/forms.js (+15 -1)
📝 netbox/secrets/forms.py (+5 -2)
📝 netbox/templates/dcim/device.html (+35 -18)
📝 netbox/templates/dcim/devicetype.html (+6 -2)
📝 netbox/templates/dcim/inc/devicetype_component_table.html (+20 -8)
netbox/templates/dcim/interface_bulk_edit.html (+17 -0)
netbox/templates/dcim/interfacetemplate_bulk_edit.html (+25 -0)
📝 netbox/templates/inc/custom_fields_panel.html (+4 -4)
📝 netbox/templates/utilities/bulk_edit_form.html (+10 -1)
📝 netbox/templates/utilities/render_field.html (+15 -10)
📝 netbox/tenancy/forms.py (+4 -25)

...and 5 more files

📄 Description

Improvements

  • #353 - Bulk editing of device and device type interfaces
  • #527 - Support for nullification of fields when bulk editing
  • #592 - Allow space-delimited lists of ALLOWED_HOSTS in Docker
  • #608 - Added "select all" button for device and device type components

Bug Fixes

  • #602 - Correct display of custom integer fields with value of 0 or 1
  • #604 - Correct display of unnamed devices in form selection fields
  • #611 - Power/console/interface connection import: status field should be case-insensitive
  • #615 - Account for BASE_PATH in static URLs and during login
  • #616 - Correct display of custom URL 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/625 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 10/19/2016 **Status:** ✅ Merged **Merged:** 10/19/2016 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`8ed174e`](https://github.com/netbox-community/netbox/commit/8ed174e7af96499cff261f46664322aa2b311083) Post-release version bump - [`3606606`](https://github.com/netbox-community/netbox/commit/36066068d4b96085774182036334977d37559285) #527: Initial work to allow nullifying fields during bulk edit - [`b68c640`](https://github.com/netbox-community/netbox/commit/b68c64041e13b1b59f5785572fbd784e251924f8) Allow multiple ALLOWED_HOSTS on docker - [`f1c70cd`](https://github.com/netbox-community/netbox/commit/f1c70cd896e7b061f4770c78d265f9430ec1ff06) Fixes #591: Correct display of device type component creation buttons - [`8227a9f`](https://github.com/netbox-community/netbox/commit/8227a9ff9c63027d6768055e1fc036e422770227) Merge pull request #592 from lf-/patch-2 - [`7394589`](https://github.com/netbox-community/netbox/commit/73945899fee56950774e35286565f24eb69ef849) Fixes #527: Support for nullifying custom fields during bulk editing - [`330abe5`](https://github.com/netbox-community/netbox/commit/330abe5a2d2a94cae746a800e84b5f52ca71e7ef) Fixes #602: Correct display of custom integer fields with value of 0 or 1 - [`0ff46bf`](https://github.com/netbox-community/netbox/commit/0ff46bf5d08ef67eda1c1df84b0e19eeb703be62) Fixes #611: Power/console/interface connection import: status field should be case-insensitive - [`4647978`](https://github.com/netbox-community/netbox/commit/464797858f55c1d895d264da4f091c0c08abbc22) Fixes #604: Correct display of unnamed devices in form selection fields - [`579ed0a`](https://github.com/netbox-community/netbox/commit/579ed0a98571ff6027b3506f140ba01b54d680a3) Redirect user to previous page after logging in ### 📊 Changes **25 files changed** (+336 additions, -203 deletions) <details> <summary>View changed files</summary> 📝 `netbox/circuits/forms.py` (+8 -3) 📝 `netbox/dcim/forms.py` (+52 -49) 📝 `netbox/dcim/urls.py` (+2 -4) 📝 `netbox/dcim/views.py` (+16 -0) 📝 `netbox/extras/forms.py` (+15 -14) 📝 `netbox/ipam/forms.py` (+22 -19) 📝 `netbox/ipam/models.py` (+1 -1) 📝 `netbox/netbox/configuration.docker.py` (+1 -1) 📝 `netbox/netbox/settings.py` (+3 -4) 📝 `netbox/project-static/js/forms.js` (+15 -1) 📝 `netbox/secrets/forms.py` (+5 -2) 📝 `netbox/templates/dcim/device.html` (+35 -18) 📝 `netbox/templates/dcim/devicetype.html` (+6 -2) 📝 `netbox/templates/dcim/inc/devicetype_component_table.html` (+20 -8) ➕ `netbox/templates/dcim/interface_bulk_edit.html` (+17 -0) ➕ `netbox/templates/dcim/interfacetemplate_bulk_edit.html` (+25 -0) 📝 `netbox/templates/inc/custom_fields_panel.html` (+4 -4) 📝 `netbox/templates/utilities/bulk_edit_form.html` (+10 -1) 📝 `netbox/templates/utilities/render_field.html` (+15 -10) 📝 `netbox/tenancy/forms.py` (+4 -25) _...and 5 more files_ </details> ### 📄 Description ## Improvements - [#353](https://github.com/digitalocean/netbox/issues/353) - Bulk editing of device and device type interfaces - [#527](https://github.com/digitalocean/netbox/issues/527) - Support for nullification of fields when bulk editing - [#592](https://github.com/digitalocean/netbox/issues/592) - Allow space-delimited lists of ALLOWED_HOSTS in Docker - [#608](https://github.com/digitalocean/netbox/issues/608) - Added "select all" button for device and device type components ## Bug Fixes - [#602](https://github.com/digitalocean/netbox/issues/602) - Correct display of custom integer fields with value of 0 or 1 - [#604](https://github.com/digitalocean/netbox/issues/604) - Correct display of unnamed devices in form selection fields - [#611](https://github.com/digitalocean/netbox/issues/611) - Power/console/interface connection import: status field should be case-insensitive - [#615](https://github.com/digitalocean/netbox/issues/615) - Account for BASE_PATH in static URLs and during login - [#616](https://github.com/digitalocean/netbox/issues/616) - Correct display of custom URL 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:36 +01:00
adam closed this issue 2025-12-29 22:19:36 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12095