[PR #459] [MERGED] Release v1.5.1 #12060

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

📋 Pull Request Information

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

Base: masterHead: develop


📝 Commits (9)

  • 3324f39 Post-release version bump
  • 74528c6 Colorized roles in rack and device lists
  • 098ff96 Fixes #454: Correct typecasting on rack export
  • 6f12297 Fixes #441: Added openssl-devel to list of dependencies
  • 219f084 Fixes #457: Added role field to rack edit form
  • e2ad1d4 Closes #456: Added IP search box to home page
  • c86a112 Closes #421: Added asset_tag field to devices
  • 2b8e06f Added Device asset_tag field to API tests
  • 0b4d344 Release v1.5.1

📊 Changes

19 files changed (+145 additions, -44 deletions)

View changed files

📝 docs/installation/netbox.md (+2 -1)
📝 netbox/dcim/admin.py (+2 -1)
📝 netbox/dcim/api/serializers.py (+3 -2)
📝 netbox/dcim/filters.py (+6 -5)
📝 netbox/dcim/forms.py (+6 -6)
netbox/dcim/migrations/0018_device_add_asset_tag.py (+21 -0)
📝 netbox/dcim/models.py (+4 -1)
📝 netbox/dcim/tables.py (+21 -5)
📝 netbox/dcim/tests/test_apis.py (+2 -0)
📝 netbox/netbox/settings.py (+1 -1)
📝 netbox/templates/dcim/device.html (+12 -2)
📝 netbox/templates/dcim/device_edit.html (+1 -0)
📝 netbox/templates/dcim/device_import.html (+8 -3)
📝 netbox/templates/dcim/device_import_child.html (+8 -3)
📝 netbox/templates/dcim/device_inventory.html (+17 -1)
📝 netbox/templates/dcim/rack.html (+10 -0)
📝 netbox/templates/dcim/rack_edit.html (+1 -0)
📝 netbox/templates/home.html (+20 -6)
📝 netbox/utilities/tables.py (+0 -7)

📄 Description

Improvements

  • #421 - Added an asset tag field to devices
  • #456 - Added IP search box to home page
  • Colorized rack and device roles

Bug Fixes

  • #454 - Corrected error on rack export
  • #457 - Added role field to rack edit form

🔄 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/459 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 8/11/2016 **Status:** ✅ Merged **Merged:** 8/11/2016 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (9) - [`3324f39`](https://github.com/netbox-community/netbox/commit/3324f397d9eae585cd6c606c26941ad4972e8fcd) Post-release version bump - [`74528c6`](https://github.com/netbox-community/netbox/commit/74528c6036dd9c460fbb0c470281da1a52f94b08) Colorized roles in rack and device lists - [`098ff96`](https://github.com/netbox-community/netbox/commit/098ff961e3c660964fcd36d637a5561057ae03a7) Fixes #454: Correct typecasting on rack export - [`6f12297`](https://github.com/netbox-community/netbox/commit/6f12297dcf6c725f8cb4fc4e2410d5f53f6566eb) Fixes #441: Added openssl-devel to list of dependencies - [`219f084`](https://github.com/netbox-community/netbox/commit/219f0848052308dbdc44812eb528f0a4e92061e5) Fixes #457: Added role field to rack edit form - [`e2ad1d4`](https://github.com/netbox-community/netbox/commit/e2ad1d4be0ccf6de0c3c0a257c674e9aa82bf437) Closes #456: Added IP search box to home page - [`c86a112`](https://github.com/netbox-community/netbox/commit/c86a1123f03ac6bb413ec3f01d1651f75bb6e6c6) Closes #421: Added asset_tag field to devices - [`2b8e06f`](https://github.com/netbox-community/netbox/commit/2b8e06faa2f93423b2ee5c5810707ca2d6cb7cbc) Added Device asset_tag field to API tests - [`0b4d344`](https://github.com/netbox-community/netbox/commit/0b4d3446bfa6165fdea0342822f4ded48550cba0) Release v1.5.1 ### 📊 Changes **19 files changed** (+145 additions, -44 deletions) <details> <summary>View changed files</summary> 📝 `docs/installation/netbox.md` (+2 -1) 📝 `netbox/dcim/admin.py` (+2 -1) 📝 `netbox/dcim/api/serializers.py` (+3 -2) 📝 `netbox/dcim/filters.py` (+6 -5) 📝 `netbox/dcim/forms.py` (+6 -6) ➕ `netbox/dcim/migrations/0018_device_add_asset_tag.py` (+21 -0) 📝 `netbox/dcim/models.py` (+4 -1) 📝 `netbox/dcim/tables.py` (+21 -5) 📝 `netbox/dcim/tests/test_apis.py` (+2 -0) 📝 `netbox/netbox/settings.py` (+1 -1) 📝 `netbox/templates/dcim/device.html` (+12 -2) 📝 `netbox/templates/dcim/device_edit.html` (+1 -0) 📝 `netbox/templates/dcim/device_import.html` (+8 -3) 📝 `netbox/templates/dcim/device_import_child.html` (+8 -3) 📝 `netbox/templates/dcim/device_inventory.html` (+17 -1) 📝 `netbox/templates/dcim/rack.html` (+10 -0) 📝 `netbox/templates/dcim/rack_edit.html` (+1 -0) 📝 `netbox/templates/home.html` (+20 -6) 📝 `netbox/utilities/tables.py` (+0 -7) </details> ### 📄 Description ## Improvements - [#421](https://github.com/digitalocean/netbox/issues/421) - Added an asset tag field to devices - [#456](https://github.com/digitalocean/netbox/issues/456) - Added IP search box to home page - Colorized rack and device roles ## Bug Fixes - [#454](https://github.com/digitalocean/netbox/issues/454) - Corrected error on rack export - [#457](https://github.com/digitalocean/netbox/issues/457) - Added role field to rack edit form --- <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:24 +01:00
adam closed this issue 2025-12-29 22:19:24 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12060