[PR #8372] [MERGED] Release v3.1.6 #13350

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

📋 Pull Request Information

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

Base: masterHead: develop


📝 Commits (10+)

📊 Changes

73 files changed (+412 additions, -176 deletions)

View changed files

📝 .github/ISSUE_TEMPLATE/bug_report.yaml (+1 -1)
📝 .github/ISSUE_TEMPLATE/feature_request.yaml (+1 -1)
📝 base_requirements.txt (+0 -4)
📝 docs/development/getting-started.md (+6 -0)
📝 docs/index.md (+4 -2)
📝 docs/plugins/development.md (+3 -0)
📝 docs/release-notes/index.md (+9 -1)
📝 docs/release-notes/version-3.1.md (+28 -0)
📝 netbox/circuits/api/serializers.py (+1 -1)
📝 netbox/circuits/tables.py (+26 -4)
📝 netbox/dcim/api/serializers.py (+10 -4)
📝 netbox/dcim/choices.py (+8 -0)
📝 netbox/dcim/forms/filtersets.py (+1 -1)
📝 netbox/dcim/svg.py (+6 -1)
📝 netbox/dcim/tables/cables.py (+1 -1)
📝 netbox/dcim/tables/devices.py (+18 -13)
📝 netbox/dcim/tables/devicetypes.py (+2 -2)
📝 netbox/dcim/tables/power.py (+2 -2)
📝 netbox/dcim/tables/racks.py (+8 -4)
📝 netbox/dcim/tables/sites.py (+4 -4)

...and 53 more files

📄 Description

Enhancements

  • #8246 - Show human-friendly values for commit rates in circuits table
  • #8262 - Add cable count to tenant stats
  • #8265 - Add Stackwise-n interface types
  • #8293 - Show 4-byte ASNs in ASDOT notation
  • #8302 - Linkify role column in device & VM tables
  • #8337 - Enable sorting object tables by created & updated times

Bug Fixes

  • #8279 - Fix display of virtual chassis members in rack elevations
  • #8285 - Fix cluster_count under tenant REST API serializer
  • #8287 - Correct label in export template form
  • #8301 - Fix delete button for various object children views
  • #8305 - Fix assignment of custom field data to FHRP groups via UI
  • #8306 - Redirect user to previous page after login
  • #8314 - Prevent custom fields with default values from appearing as applied filters erroneously
  • #8317 - Fix CSV import of multi-select custom field values
  • #8319 - Custom URL fields should honor ALLOWED_URL_SCHEMES config parameter
  • #8342 - Restore created & last_updated fields missing from several REST API serializers
  • #8357 - Add missing tags field to location filter form
  • #8358 - Fix inconsistent styling of custom fields on filter & bulk edit forms

🔄 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/8372 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 1/17/2022 **Status:** ✅ Merged **Merged:** 1/17/2022 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`b0db5a8`](https://github.com/netbox-community/netbox/commit/b0db5a8b0accfde4c1ea2935e0cf5fffeffbcaf7) PRVB - [`b63e296`](https://github.com/netbox-community/netbox/commit/b63e29610e05a1518fd07dab0a2bacede6228cd4) Add Cisco StackWise-n choices - [`eaec25e`](https://github.com/netbox-community/netbox/commit/eaec25e6c250fb5ae1301ce06c33dcab76863691) Fixes #8262 - Add Cable stat for Tenant - [`184b105`](https://github.com/netbox-community/netbox/commit/184b1055dc6121417f0ee726e13dd16b9de6fc75) Fixes #8285 - Cluster count missing from tenant api output - [`10ec31d`](https://github.com/netbox-community/netbox/commit/10ec31df3eb8b0c3b770b77468155b5817ad0d3a) Fix #8287 - Correct label in export template form - [`2b28ffa`](https://github.com/netbox-community/netbox/commit/2b28ffa2f4fdec433d31a34935ca861ce80a1dab) Merge pull request #8284 from jasonyates/8262-tenant-cable-stat - [`d65c05a`](https://github.com/netbox-community/netbox/commit/d65c05aacd074437c197b6325f21a8a333f26e5b) Merge pull request #8269 from bluikko/cisco-stackwise-n - [`f1472d2`](https://github.com/netbox-community/netbox/commit/f1472d218e157160306e7007fb3a705208901a71) Update changelog for #8262 and #8265 - [`f66a265`](https://github.com/netbox-community/netbox/commit/f66a265fcf2eff66e05ceb6237add43a23ab3668) Fixes #8246 - Circuits list view to display formatted commit rate - [`f732493`](https://github.com/netbox-community/netbox/commit/f7324934731c311012bddfe7a843d56841cb7dbe) Fixing code style E302 ### 📊 Changes **73 files changed** (+412 additions, -176 deletions) <details> <summary>View changed files</summary> 📝 `.github/ISSUE_TEMPLATE/bug_report.yaml` (+1 -1) 📝 `.github/ISSUE_TEMPLATE/feature_request.yaml` (+1 -1) 📝 `base_requirements.txt` (+0 -4) 📝 `docs/development/getting-started.md` (+6 -0) 📝 `docs/index.md` (+4 -2) 📝 `docs/plugins/development.md` (+3 -0) 📝 `docs/release-notes/index.md` (+9 -1) 📝 `docs/release-notes/version-3.1.md` (+28 -0) 📝 `netbox/circuits/api/serializers.py` (+1 -1) 📝 `netbox/circuits/tables.py` (+26 -4) 📝 `netbox/dcim/api/serializers.py` (+10 -4) 📝 `netbox/dcim/choices.py` (+8 -0) 📝 `netbox/dcim/forms/filtersets.py` (+1 -1) 📝 `netbox/dcim/svg.py` (+6 -1) 📝 `netbox/dcim/tables/cables.py` (+1 -1) 📝 `netbox/dcim/tables/devices.py` (+18 -13) 📝 `netbox/dcim/tables/devicetypes.py` (+2 -2) 📝 `netbox/dcim/tables/power.py` (+2 -2) 📝 `netbox/dcim/tables/racks.py` (+8 -4) 📝 `netbox/dcim/tables/sites.py` (+4 -4) _...and 53 more files_ </details> ### 📄 Description ## Enhancements * [#8246](https://github.com/netbox-community/netbox/issues/8246) - Show human-friendly values for commit rates in circuits table * [#8262](https://github.com/netbox-community/netbox/issues/8262) - Add cable count to tenant stats * [#8265](https://github.com/netbox-community/netbox/issues/8265) - Add Stackwise-n interface types * [#8293](https://github.com/netbox-community/netbox/issues/8293) - Show 4-byte ASNs in ASDOT notation * [#8302](https://github.com/netbox-community/netbox/issues/8302) - Linkify role column in device & VM tables * [#8337](https://github.com/netbox-community/netbox/issues/8337) - Enable sorting object tables by created & updated times ## Bug Fixes * [#8279](https://github.com/netbox-community/netbox/issues/8279) - Fix display of virtual chassis members in rack elevations * [#8285](https://github.com/netbox-community/netbox/issues/8285) - Fix `cluster_count` under tenant REST API serializer * [#8287](https://github.com/netbox-community/netbox/issues/8287) - Correct label in export template form * [#8301](https://github.com/netbox-community/netbox/issues/8301) - Fix delete button for various object children views * [#8305](https://github.com/netbox-community/netbox/issues/8305) - Fix assignment of custom field data to FHRP groups via UI * [#8306](https://github.com/netbox-community/netbox/issues/8306) - Redirect user to previous page after login * [#8314](https://github.com/netbox-community/netbox/issues/8314) - Prevent custom fields with default values from appearing as applied filters erroneously * [#8317](https://github.com/netbox-community/netbox/issues/8317) - Fix CSV import of multi-select custom field values * [#8319](https://github.com/netbox-community/netbox/issues/8319) - Custom URL fields should honor `ALLOWED_URL_SCHEMES` config parameter * [#8342](https://github.com/netbox-community/netbox/issues/8342) - Restore `created` & `last_updated` fields missing from several REST API serializers * [#8357](https://github.com/netbox-community/netbox/issues/8357) - Add missing tags field to location filter form * [#8358](https://github.com/netbox-community/netbox/issues/8358) - Fix inconsistent styling of custom fields on filter & bulk edit forms --- <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:55 +01:00
adam closed this issue 2025-12-29 22:26:55 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#13350