[PR #8257] [MERGED] Release v3.1.5 #13334

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

📋 Pull Request Information

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

Base: masterHead: develop


📝 Commits (10+)

  • 79bebf7 PRVB
  • e11e8a5 Fixes #8213: Fix ValueError exception under prefix IP addresses view
  • 2fe02dd Add tests for IPAM object children views
  • 8c8774c Fixes #8226: Honor return URL after populating a device bay
  • ea961ba Fixes #8224: Fix KeyError exception when creating FHRP group with IP address and protocol "other"
  • 662cafe Form widgets & style cleanup
  • 0a22b39 #7450: Clean up footer and navbar styles
  • 8338fc4 Simplify theme color palette
  • 01e8017 Clean up template blocks
  • 2524290 Introduce modals template block

📊 Changes

59 files changed (+471 additions, -312 deletions)

View changed files

📝 .github/ISSUE_TEMPLATE/bug_report.yaml (+1 -1)
📝 .github/ISSUE_TEMPLATE/feature_request.yaml (+1 -1)
📝 docs/release-notes/version-3.1.md (+18 -0)
📝 netbox/dcim/forms/filtersets.py (+17 -10)
📝 netbox/dcim/views.py (+2 -1)
📝 netbox/extras/forms/models.py (+14 -4)
📝 netbox/extras/scripts.py (+10 -4)
📝 netbox/ipam/constants.py (+1 -0)
📝 netbox/ipam/forms/models.py (+2 -3)
📝 netbox/ipam/tests/test_views.py (+77 -0)
📝 netbox/ipam/views.py (+1 -4)
📝 netbox/netbox/settings.py (+1 -1)
📝 netbox/netbox/views/generic.py (+16 -4)
📝 netbox/project-static/dist/netbox-dark.css (+1 -1)
📝 netbox/project-static/dist/netbox-light.css (+1 -1)
📝 netbox/project-static/dist/netbox-print.css (+1 -1)
📝 netbox/project-static/styles/netbox.scss (+8 -10)
📝 netbox/project-static/styles/theme-base.scss (+0 -89)
📝 netbox/project-static/styles/theme-dark.scss (+14 -7)
📝 netbox/project-static/styles/theme-light.scss (+37 -18)

...and 39 more files

📄 Description

Enhancements

  • #8231 - Use in-page dialogs for confirming object deletion
  • #8244 - Add length & length unit fields to cable filter form
  • #8252 - Linkify type and group columns in clusters table

Bug Fixes

  • #8213 - Fix ValueError exception under prefix IP addresses view
  • #8224 - Fix KeyError exception when creating FHRP group with IP address and protocol "other"
  • #8226 - Honor return URL after populating a device bay
  • #8228 - Optional ChoiceVar fields should not force a selection
  • #8255 - Fix bulk editing of authentication parameters for wireless LANs and links

🔄 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/8257 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 1/6/2022 **Status:** ✅ Merged **Merged:** 1/6/2022 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`79bebf7`](https://github.com/netbox-community/netbox/commit/79bebf7c9b9043a31ab32d0e2d2e39f5c7cb33fa) PRVB - [`e11e8a5`](https://github.com/netbox-community/netbox/commit/e11e8a5d6436f770e8157bdbd20123e2878a5c7b) Fixes #8213: Fix ValueError exception under prefix IP addresses view - [`2fe02dd`](https://github.com/netbox-community/netbox/commit/2fe02ddb1f88a93cba82b04bbd3c2caa0425e5b6) Add tests for IPAM object children views - [`8c8774c`](https://github.com/netbox-community/netbox/commit/8c8774cd2fd5e826c6787b415af2136429b4eecb) Fixes #8226: Honor return URL after populating a device bay - [`ea961ba`](https://github.com/netbox-community/netbox/commit/ea961ba8f219e9a52b8a10c6a832faed1ed323c3) Fixes #8224: Fix KeyError exception when creating FHRP group with IP address and protocol "other" - [`662cafe`](https://github.com/netbox-community/netbox/commit/662cafe416b7dd0ed2a23735453131a3361d931d) Form widgets & style cleanup - [`0a22b39`](https://github.com/netbox-community/netbox/commit/0a22b3990fe93c27f19dfe1797de7ce07ffd109f) #7450: Clean up footer and navbar styles - [`8338fc4`](https://github.com/netbox-community/netbox/commit/8338fc405fe731025a8a5ceec2b97b42eb27f25b) Simplify theme color palette - [`01e8017`](https://github.com/netbox-community/netbox/commit/01e80172659e13b317a7e6a41709383b3b290bb5) Clean up template blocks - [`2524290`](https://github.com/netbox-community/netbox/commit/252429009979c51baa8fe3411caa1462139e85b7) Introduce modals template block ### 📊 Changes **59 files changed** (+471 additions, -312 deletions) <details> <summary>View changed files</summary> 📝 `.github/ISSUE_TEMPLATE/bug_report.yaml` (+1 -1) 📝 `.github/ISSUE_TEMPLATE/feature_request.yaml` (+1 -1) 📝 `docs/release-notes/version-3.1.md` (+18 -0) 📝 `netbox/dcim/forms/filtersets.py` (+17 -10) 📝 `netbox/dcim/views.py` (+2 -1) 📝 `netbox/extras/forms/models.py` (+14 -4) 📝 `netbox/extras/scripts.py` (+10 -4) 📝 `netbox/ipam/constants.py` (+1 -0) 📝 `netbox/ipam/forms/models.py` (+2 -3) 📝 `netbox/ipam/tests/test_views.py` (+77 -0) 📝 `netbox/ipam/views.py` (+1 -4) 📝 `netbox/netbox/settings.py` (+1 -1) 📝 `netbox/netbox/views/generic.py` (+16 -4) 📝 `netbox/project-static/dist/netbox-dark.css` (+1 -1) 📝 `netbox/project-static/dist/netbox-light.css` (+1 -1) 📝 `netbox/project-static/dist/netbox-print.css` (+1 -1) 📝 `netbox/project-static/styles/netbox.scss` (+8 -10) 📝 `netbox/project-static/styles/theme-base.scss` (+0 -89) 📝 `netbox/project-static/styles/theme-dark.scss` (+14 -7) 📝 `netbox/project-static/styles/theme-light.scss` (+37 -18) _...and 39 more files_ </details> ### 📄 Description ### Enhancements * [#8231](https://github.com/netbox-community/netbox/issues/8231) - Use in-page dialogs for confirming object deletion * [#8244](https://github.com/netbox-community/netbox/issues/8244) - Add length & length unit fields to cable filter form * [#8252](https://github.com/netbox-community/netbox/issues/8252) - Linkify type and group columns in clusters table ### Bug Fixes * [#8213](https://github.com/netbox-community/netbox/issues/8213) - Fix ValueError exception under prefix IP addresses view * [#8224](https://github.com/netbox-community/netbox/issues/8224) - Fix KeyError exception when creating FHRP group with IP address and protocol "other" * [#8226](https://github.com/netbox-community/netbox/issues/8226) - Honor return URL after populating a device bay * [#8228](https://github.com/netbox-community/netbox/issues/8228) - Optional ChoiceVar fields should not force a selection * [#8255](https://github.com/netbox-community/netbox/issues/8255) - Fix bulk editing of authentication parameters for wireless LANs and links --- <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:50 +01:00
adam closed this issue 2025-12-29 22:26:50 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#13334