[PR #587] [MERGED] Release v1.6.2 #12082

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/587
Author: @jeremystretch
Created: 9/30/2016
Status: Merged
Merged: 9/30/2016
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

  • 2213e3e added centos/rhel installation on netbox.md postgresql.md and web-server.md
  • af519b9 added more changes for centos/rhel installation
  • f8f973d Post-release version bump
  • 3369403 Tweaked ExportTemplate admin display
  • 59c6d5b Fixed typo
  • fde2425 Fixes #571: Correct rack group filter on device list
  • 1ebba3e Merge pull request #529 from chagara/develop
  • 0001bbc #447: Correcting CentOS installation docs
  • a803bd8 Simplified web server installation doc
  • 45432a6 viewport change for mobile

📊 Changes

43 files changed (+463 additions, -237 deletions)

View changed files

📝 README.md (+1 -1)
📝 docs/configuration/optional-settings.md (+12 -0)
📝 docs/installation/netbox.md (+21 -16)
📝 docs/installation/postgresql.md (+22 -6)
📝 docs/installation/web-server.md (+12 -10)
📝 netbox/dcim/api/serializers.py (+10 -1)
📝 netbox/dcim/forms.py (+1 -1)
📝 netbox/dcim/models.py (+18 -0)
📝 netbox/dcim/tests/test_apis.py (+33 -30)
📝 netbox/extras/admin.py (+1 -1)
📝 netbox/extras/forms.py (+3 -2)
netbox/extras/migrations/0003_exporttemplate_add_description.py (+25 -0)
📝 netbox/extras/models.py (+12 -3)
📝 netbox/netbox/configuration.docker.py (+4 -0)
📝 netbox/netbox/configuration.example.py (+4 -0)
📝 netbox/netbox/settings.py (+4 -1)
📝 netbox/netbox/urls.py (+7 -1)
📝 netbox/project-static/js/forms.js (+10 -5)
📝 netbox/secrets/forms.py (+1 -1)
📝 netbox/templates/500.html (+1 -1)

...and 23 more files

📄 Description

Improvements

  • #212 - Introduced the BASE_PATH configuration setting to allow running NetBox in a URL subdirectory
  • #345 - Bulk edit: allow user to select all objects on page or all matching query
  • #475 - Display "add" buttons at top and bottom of all device/device type panels
  • #480 - Improved layout on mobile devices
  • #481 - Require interface creation before trying to assign an IP to a device
  • #575 - Allow all valid URL schemes in custom fields
  • #579 - Add a description field to export templates

Bug Fixes

  • #466 - Validate available free space for all instances when increasing the U height of a device type
  • #571 - Correct rack group filter on device list
  • #576 - Delete all relevant CustomFieldValues when deleting a CustomFieldChoice
  • #581 - Correct initialization of custom boolean and select 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/587 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 9/30/2016 **Status:** ✅ Merged **Merged:** 9/30/2016 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`2213e3e`](https://github.com/netbox-community/netbox/commit/2213e3e0cf4a5687aeadcb2b6a052a1cb4634f12) added centos/rhel installation on netbox.md postgresql.md and web-server.md - [`af519b9`](https://github.com/netbox-community/netbox/commit/af519b93b7c6eefaa599eaa00075b7e51890956f) added more changes for centos/rhel installation - [`f8f973d`](https://github.com/netbox-community/netbox/commit/f8f973dac2fb33b02125f22bed9e11c5b84aad5d) Post-release version bump - [`3369403`](https://github.com/netbox-community/netbox/commit/33694030b70dfc9d404c90f2af2def80eca32832) Tweaked ExportTemplate admin display - [`59c6d5b`](https://github.com/netbox-community/netbox/commit/59c6d5b1ec8d4f7c4ff4498417d5b870799289fc) Fixed typo - [`fde2425`](https://github.com/netbox-community/netbox/commit/fde24258e3fe6d9606038552d8aaa575da04ed8a) Fixes #571: Correct rack group filter on device list - [`1ebba3e`](https://github.com/netbox-community/netbox/commit/1ebba3ee2647799828b4b809bf9d396bf4fb6660) Merge pull request #529 from chagara/develop - [`0001bbc`](https://github.com/netbox-community/netbox/commit/0001bbc96625ddd0fd8c0f7f0bf2f3d6e1f54ab3) #447: Correcting CentOS installation docs - [`a803bd8`](https://github.com/netbox-community/netbox/commit/a803bd80334e4f54779e1d8243b61f06a46ac771) Simplified web server installation doc - [`45432a6`](https://github.com/netbox-community/netbox/commit/45432a6f295003bd78121088da66abcf835a3079) viewport change for mobile ### 📊 Changes **43 files changed** (+463 additions, -237 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+1 -1) 📝 `docs/configuration/optional-settings.md` (+12 -0) 📝 `docs/installation/netbox.md` (+21 -16) 📝 `docs/installation/postgresql.md` (+22 -6) 📝 `docs/installation/web-server.md` (+12 -10) 📝 `netbox/dcim/api/serializers.py` (+10 -1) 📝 `netbox/dcim/forms.py` (+1 -1) 📝 `netbox/dcim/models.py` (+18 -0) 📝 `netbox/dcim/tests/test_apis.py` (+33 -30) 📝 `netbox/extras/admin.py` (+1 -1) 📝 `netbox/extras/forms.py` (+3 -2) ➕ `netbox/extras/migrations/0003_exporttemplate_add_description.py` (+25 -0) 📝 `netbox/extras/models.py` (+12 -3) 📝 `netbox/netbox/configuration.docker.py` (+4 -0) 📝 `netbox/netbox/configuration.example.py` (+4 -0) 📝 `netbox/netbox/settings.py` (+4 -1) 📝 `netbox/netbox/urls.py` (+7 -1) 📝 `netbox/project-static/js/forms.js` (+10 -5) 📝 `netbox/secrets/forms.py` (+1 -1) 📝 `netbox/templates/500.html` (+1 -1) _...and 23 more files_ </details> ### 📄 Description ## Improvements - [#212](https://github.com/digitalocean/netbox/issues/212) - Introduced the `BASE_PATH` configuration setting to allow running NetBox in a URL subdirectory - [#345](https://github.com/digitalocean/netbox/issues/345) - Bulk edit: allow user to select all objects on page or all matching query - [#475](https://github.com/digitalocean/netbox/issues/475) - Display "add" buttons at top and bottom of all device/device type panels - [#480](https://github.com/digitalocean/netbox/issues/480) - Improved layout on mobile devices - [#481](https://github.com/digitalocean/netbox/issues/481) - Require interface creation before trying to assign an IP to a device - [#575](https://github.com/digitalocean/netbox/issues/575) - Allow all valid URL schemes in custom fields - [#579](https://github.com/digitalocean/netbox/issues/579) - Add a description field to export templates ## Bug Fixes - [#466](https://github.com/digitalocean/netbox/issues/466) - Validate available free space for all instances when increasing the U height of a device type - [#571](https://github.com/digitalocean/netbox/issues/571) - Correct rack group filter on device list - [#576](https://github.com/digitalocean/netbox/issues/576) - Delete all relevant CustomFieldValues when deleting a CustomFieldChoice - [#581](https://github.com/digitalocean/netbox/issues/581) - Correct initialization of custom boolean and select 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:32 +01:00
adam closed this issue 2025-12-29 22:19:32 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12082