[PR #8212] [MERGED] Release v3.1.4 #13333

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/8212
Author: @jeremystretch
Created: 1/3/2022
Status: Merged
Merged: 1/3/2022
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

  • c3f2fee PRVB
  • 6cda55d Fixes #8187: Fix rendering of tags column in object tables
  • a5f1707 Fixes #8191: Fix return URL when adding IP addresses to VM interfaces
  • 2319fce Add tab to cable connect view
  • b6e157f Add features summary to README
  • f7d91b7 Extend "Adding models" documentation
  • 67aeb38 Fix DNS name label in IP address bulk edit form
  • 68f92df Fix redirection URL for prefix IP ranges view
  • 2fa8e27 Fixes #8192: Add "add prefix" button to aggregate child prefixes view
  • 5829985 Remove power utilization as default column from racks table

📊 Changes

30 files changed (+626 additions, -386 deletions)

View changed files

📝 .github/ISSUE_TEMPLATE/bug_report.yaml (+1 -1)
📝 .github/ISSUE_TEMPLATE/feature_request.yaml (+1 -1)
📝 .gitignore (+1 -0)
📝 README.md (+36 -1)
📝 docs/development/adding-models.md (+17 -8)
📝 docs/installation/6-ldap.md (+1 -1)
📝 docs/release-notes/version-3.1.md (+18 -0)
📝 docs/rest-api/authentication.md (+1 -1)
📝 netbox/dcim/forms/connections.py (+15 -14)
📝 netbox/dcim/tables/racks.py (+1 -1)
netbox/extras/migrations/0067_customfield_min_max_values.py (+21 -0)
📝 netbox/extras/models/customfields.py (+2 -2)
📝 netbox/extras/tests/test_customfields.py (+49 -30)
📝 netbox/ipam/forms/bulk_edit.py (+2 -1)
📝 netbox/ipam/models/ip.py (+24 -21)
📝 netbox/ipam/views.py (+13 -4)
📝 netbox/netbox/navigation_menu.py (+1 -1)
📝 netbox/netbox/settings.py (+1 -1)
📝 netbox/templates/dcim/cable_connect.html (+17 -0)
📝 netbox/templates/ipam/aggregate/prefixes.html (+5 -0)

...and 10 more files

📄 Description

Enhancements

  • #8192 - Add "add prefix" button to aggregate child prefixes view
  • #8194 - Enable bulk user assignment to groups under admin UI
  • #8197 - Allow filtering sites by group when connecting a cable
  • #8210 - Establish netbox/local/ as a path for local resources

Bug Fixes

  • #8187 - Fix rendering of tags column in object tables
  • #8191 - Fix return URL when adding IP addresses to VM interfaces
  • #8196 - Fix IndexError exception when viewing large IPv6 prefixes in UI
  • #8201 - Custom integer fields should allow negative integers as minimum/maximum values

🔄 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/8212 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 1/3/2022 **Status:** ✅ Merged **Merged:** 1/3/2022 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`c3f2fee`](https://github.com/netbox-community/netbox/commit/c3f2fee633b760f02649fea05f548738d244aca0) PRVB - [`6cda55d`](https://github.com/netbox-community/netbox/commit/6cda55da0660eedfa301d91746f1dcc020364ead) Fixes #8187: Fix rendering of tags column in object tables - [`a5f1707`](https://github.com/netbox-community/netbox/commit/a5f1707662b56a60404bc5b79681733e72bca0ef) Fixes #8191: Fix return URL when adding IP addresses to VM interfaces - [`2319fce`](https://github.com/netbox-community/netbox/commit/2319fce09230af41e85ded80f4b1366148b2ea95) Add tab to cable connect view - [`b6e157f`](https://github.com/netbox-community/netbox/commit/b6e157f393f253f30db8075f8e1bf16f763fb9b7) Add features summary to README - [`f7d91b7`](https://github.com/netbox-community/netbox/commit/f7d91b7139329dee0b7415f6041c0e80fd2d21df) Extend "Adding models" documentation - [`67aeb38`](https://github.com/netbox-community/netbox/commit/67aeb380e700f54690b72bbe91c2182e2037dc0c) Fix DNS name label in IP address bulk edit form - [`68f92df`](https://github.com/netbox-community/netbox/commit/68f92dfd5d0e48dd83f710cffcad4eea07f3f401) Fix redirection URL for prefix IP ranges view - [`2fa8e27`](https://github.com/netbox-community/netbox/commit/2fa8e27f05e68582ce5283c12fa2b6e980d89461) Fixes #8192: Add "add prefix" button to aggregate child prefixes view - [`5829985`](https://github.com/netbox-community/netbox/commit/5829985ca8297ef76f0b560381064407da6cd241) Remove power utilization as default column from racks table ### 📊 Changes **30 files changed** (+626 additions, -386 deletions) <details> <summary>View changed files</summary> 📝 `.github/ISSUE_TEMPLATE/bug_report.yaml` (+1 -1) 📝 `.github/ISSUE_TEMPLATE/feature_request.yaml` (+1 -1) 📝 `.gitignore` (+1 -0) 📝 `README.md` (+36 -1) 📝 `docs/development/adding-models.md` (+17 -8) 📝 `docs/installation/6-ldap.md` (+1 -1) 📝 `docs/release-notes/version-3.1.md` (+18 -0) 📝 `docs/rest-api/authentication.md` (+1 -1) 📝 `netbox/dcim/forms/connections.py` (+15 -14) 📝 `netbox/dcim/tables/racks.py` (+1 -1) ➕ `netbox/extras/migrations/0067_customfield_min_max_values.py` (+21 -0) 📝 `netbox/extras/models/customfields.py` (+2 -2) 📝 `netbox/extras/tests/test_customfields.py` (+49 -30) 📝 `netbox/ipam/forms/bulk_edit.py` (+2 -1) 📝 `netbox/ipam/models/ip.py` (+24 -21) 📝 `netbox/ipam/views.py` (+13 -4) 📝 `netbox/netbox/navigation_menu.py` (+1 -1) 📝 `netbox/netbox/settings.py` (+1 -1) 📝 `netbox/templates/dcim/cable_connect.html` (+17 -0) 📝 `netbox/templates/ipam/aggregate/prefixes.html` (+5 -0) _...and 10 more files_ </details> ### 📄 Description ### Enhancements * [#8192](https://github.com/netbox-community/netbox/issues/8192) - Add "add prefix" button to aggregate child prefixes view * [#8194](https://github.com/netbox-community/netbox/issues/8194) - Enable bulk user assignment to groups under admin UI * [#8197](https://github.com/netbox-community/netbox/issues/8197) - Allow filtering sites by group when connecting a cable * [#8210](https://github.com/netbox-community/netbox/issues/8210) - Establish `netbox/local/` as a path for local resources ### Bug Fixes * [#8187](https://github.com/netbox-community/netbox/issues/8187) - Fix rendering of tags column in object tables * [#8191](https://github.com/netbox-community/netbox/issues/8191) - Fix return URL when adding IP addresses to VM interfaces * [#8196](https://github.com/netbox-community/netbox/issues/8196) - Fix IndexError exception when viewing large IPv6 prefixes in UI * [#8201](https://github.com/netbox-community/netbox/issues/8201) - Custom integer fields should allow negative integers as minimum/maximum values --- <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:26:49 +01:00
adam closed this issue 2025-12-29 22:26:49 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#13333