[PR #8640] [MERGED] Release v3.1.8 #13384

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/8640
Author: @jeremystretch
Created: 2/15/2022
Status: Merged
Merged: 2/15/2022
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

📊 Changes

39 files changed (+307 additions, -105 deletions)

View changed files

📝 .github/ISSUE_TEMPLATE/bug_report.yaml (+1 -1)
📝 .github/ISSUE_TEMPLATE/feature_request.yaml (+1 -1)
📝 .github/workflows/ci.yml (+14 -2)
📝 CONTRIBUTING.md (+0 -7)
📝 README.md (+0 -1)
📝 docs/configuration/remote-authentication.md (+2 -2)
📝 docs/development/index.md (+1 -2)
📝 docs/installation/index.md (+0 -4)
📝 docs/release-notes/version-3.1.md (+24 -0)
📝 netbox/dcim/forms/bulk_edit.py (+7 -1)
📝 netbox/dcim/svg.py (+10 -4)
📝 netbox/dcim/tables/template_code.py (+2 -0)
📝 netbox/extras/filtersets.py (+5 -0)
📝 netbox/extras/forms/bulk_edit.py (+14 -8)
📝 netbox/extras/forms/filtersets.py (+2 -3)
📝 netbox/extras/management/commands/nbshell.py (+15 -2)
📝 netbox/extras/tables.py (+14 -1)
📝 netbox/extras/tests/test_filtersets.py (+12 -2)
📝 netbox/extras/views.py (+2 -1)
📝 netbox/netbox/config/parameters.py (+12 -3)

...and 19 more files

📄 Description

Enhancements

  • #7150 - Linkify devices on the far side of a rack elevation
  • #8398 - Embiggen configuration form fields for banner message content
  • #8556 - Add full username column to changelog table
  • #8620 - Enable tab completion for nbshell

Bug Fixes

  • #8331 - Implement replaceAll string utility function to improve browser compatibility
  • #8391 - Null date columns should return empty strings during CSV export
  • #8548 - Fix display of VC members when position is zero
  • #8561 - Include option to connect a rear port to a console port
  • #8564 - Fix errant table configuration key available_columns
  • #8577 - Show contact assignment counts in global search results
  • #8578 - Object change log tables should honor user's configured preferences
  • #8604 - Fix tag filter on config context list filter form
  • #8609 - Display validation error when attempting to assign VLANs to interface with no mode during bulk edit
  • #8611 - Fix bulk editing for certain custom link, webhook, and journal entry 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/8640 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 2/15/2022 **Status:** ✅ Merged **Merged:** 2/15/2022 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`31c5840`](https://github.com/netbox-community/netbox/commit/31c58409e1ebfaeea559bbdf2f4f9bb6e1c1d6e0) Set install_date default value as empty string - [`795134c`](https://github.com/netbox-community/netbox/commit/795134c084c24efe2c86de266390071216b0233b) PRVB - [`201077b`](https://github.com/netbox-community/netbox/commit/201077b6f6fe2f93508ed9c997411916c70c1968) Fixes #8561 - Unable to connect a cable from rear ports of a patch panel to a device console port - [`4d066a0`](https://github.com/netbox-community/netbox/commit/4d066a075d6df5a2da308c51608090d5bec522d5) Merge pull request #8563 from jasonyates/8561-rear-console - [`aff5588`](https://github.com/netbox-community/netbox/commit/aff55881df21e0edeef589dbaf4204c1be6a0d42) Changelog for #8561 - [`e2fc7e8`](https://github.com/netbox-community/netbox/commit/e2fc7e8cd789c6238a07f791016420dd2f95f6c4) Fixes #8548: Virtual Chassis position zero not shown in device page - [`ee74989`](https://github.com/netbox-community/netbox/commit/ee74989f7451be83bcb7582e4992ecf35c84dd70) Merge pull request #8566 from tijshuisman/develop - [`5b985a9`](https://github.com/netbox-community/netbox/commit/5b985a924b6387c32fd3b175fb136ac73b8c80e0) Changelog for #8548 & misc cleanup - [`60f4832`](https://github.com/netbox-community/netbox/commit/60f48326e19fe65529e1dcbd56fc868c0bf41027) #8331 Maximize browser compatibility - [`6c1507c`](https://github.com/netbox-community/netbox/commit/6c1507c88cb24dda7b38ea966e299fafcaddff84) Implement `replaceAll` utility function ### 📊 Changes **39 files changed** (+307 additions, -105 deletions) <details> <summary>View changed files</summary> 📝 `.github/ISSUE_TEMPLATE/bug_report.yaml` (+1 -1) 📝 `.github/ISSUE_TEMPLATE/feature_request.yaml` (+1 -1) 📝 `.github/workflows/ci.yml` (+14 -2) 📝 `CONTRIBUTING.md` (+0 -7) 📝 `README.md` (+0 -1) 📝 `docs/configuration/remote-authentication.md` (+2 -2) 📝 `docs/development/index.md` (+1 -2) 📝 `docs/installation/index.md` (+0 -4) 📝 `docs/release-notes/version-3.1.md` (+24 -0) 📝 `netbox/dcim/forms/bulk_edit.py` (+7 -1) 📝 `netbox/dcim/svg.py` (+10 -4) 📝 `netbox/dcim/tables/template_code.py` (+2 -0) 📝 `netbox/extras/filtersets.py` (+5 -0) 📝 `netbox/extras/forms/bulk_edit.py` (+14 -8) 📝 `netbox/extras/forms/filtersets.py` (+2 -3) 📝 `netbox/extras/management/commands/nbshell.py` (+15 -2) 📝 `netbox/extras/tables.py` (+14 -1) 📝 `netbox/extras/tests/test_filtersets.py` (+12 -2) 📝 `netbox/extras/views.py` (+2 -1) 📝 `netbox/netbox/config/parameters.py` (+12 -3) _...and 19 more files_ </details> ### 📄 Description ### Enhancements * [#7150](https://github.com/netbox-community/netbox/issues/7150) - Linkify devices on the far side of a rack elevation * [#8398](https://github.com/netbox-community/netbox/issues/8398) - Embiggen configuration form fields for banner message content * [#8556](https://github.com/netbox-community/netbox/issues/8556) - Add full username column to changelog table * [#8620](https://github.com/netbox-community/netbox/issues/8620) - Enable tab completion for `nbshell` ### Bug Fixes * [#8331](https://github.com/netbox-community/netbox/issues/8331) - Implement `replaceAll` string utility function to improve browser compatibility * [#8391](https://github.com/netbox-community/netbox/issues/8391) - Null date columns should return empty strings during CSV export * [#8548](https://github.com/netbox-community/netbox/issues/8548) - Fix display of VC members when position is zero * [#8561](https://github.com/netbox-community/netbox/issues/8561) - Include option to connect a rear port to a console port * [#8564](https://github.com/netbox-community/netbox/issues/8564) - Fix errant table configuration key `available_columns` * [#8577](https://github.com/netbox-community/netbox/issues/8577) - Show contact assignment counts in global search results * [#8578](https://github.com/netbox-community/netbox/issues/8578) - Object change log tables should honor user's configured preferences * [#8604](https://github.com/netbox-community/netbox/issues/8604) - Fix tag filter on config context list filter form * [#8609](https://github.com/netbox-community/netbox/issues/8609) - Display validation error when attempting to assign VLANs to interface with no mode during bulk edit * [#8611](https://github.com/netbox-community/netbox/issues/8611) - Fix bulk editing for certain custom link, webhook, and journal entry 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:27:06 +01:00
adam closed this issue 2025-12-29 22:27:06 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#13384