[PR #7815] [MERGED] Release v3.0.10 #13285

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/7815
Author: @jeremystretch
Created: 11/12/2021
Status: Merged
Merged: 11/12/2021
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

  • 94bd27b Fix interface icons on the device interfaces table
  • b07e888 Fix interfaces row colors on device interfaces table
  • 11e2200 PRVB
  • 7b13358 Closes #7687: Update CentOS installation docs
  • 8f1acb7 Fix ID list creation in API tests
  • 773fd47 Fixes #7752: Fix minimum version check under Python v3.10
  • e5d7578 Fixes #7750: Fix cable trace image link
  • 79f2f03 Issues policy tweaks
  • 3eda8d8 Closes #7760: Add vid filter field to VLANs list
  • e04402e Allow bypassing the pre-commit script with NOVALIDATE=1

📊 Changes

35 files changed (+158 additions, -81 deletions)

View changed files

📝 .github/ISSUE_TEMPLATE/bug_report.yaml (+2 -5)
📝 .github/ISSUE_TEMPLATE/feature_request.yaml (+1 -1)
📝 CONTRIBUTING.md (+4 -8)
📝 docs/core-functionality/devices.md (+10 -0)
📝 docs/installation/1-postgresql.md (+0 -3)
📝 docs/installation/3-netbox.md (+6 -1)
📝 docs/installation/index.md (+1 -1)
📝 docs/models/dcim/cable.md (+0 -10)
📝 docs/release-notes/version-3.0.md (+26 -0)
📝 netbox/dcim/choices.py (+2 -0)
📝 netbox/dcim/forms/object_create.py (+8 -2)
📝 netbox/dcim/tables/devices.py (+13 -4)
📝 netbox/dcim/tables/racks.py (+9 -1)
📝 netbox/dcim/tables/template_code.py (+7 -11)
📝 netbox/extras/forms/models.py (+1 -1)
📝 netbox/extras/models/customfields.py (+1 -1)
📝 netbox/extras/models/models.py (+6 -4)
📝 netbox/extras/models/tags.py (+1 -1)
📝 netbox/extras/views.py (+1 -5)
📝 netbox/ipam/forms/filtersets.py (+6 -1)

...and 15 more files

📄 Description

Enhancements

  • #7740 - Add mini-DIN 8 console port type
  • #7760 - Add vid filter field to VLANs list
  • #7767 - Add visual aids to interfaces table for type, enabled status

Bug Fixes

  • #7564 - Fix assignment of members to virtual chassis with initial position of zero
  • #7701 - Fix conflation of assigned IP status & role in interface tables
  • #7741 - Fix 404 when attaching multiple images in succession
  • #7752 - Fix minimum version check under Python v3.10
  • #7766 - Add missing outer dimension columns to rack table
  • #7780 - Preserve multi-line values during CSV file import
  • #7783 - Fix indentation of locations under site view
  • #7788 - Improve XSS mitigation in Markdown renderer
  • #7791 - Enable sorting device bays table by installed device status
  • #7802 - Differentiate ID and VID columns in VLANs table
  • #7808 - Fix reference values for content type under custom field import form
  • #7809 - Add missing export template support for various models
  • #7814 - Fix restriction of user & group objects in GraphQL API queries

🔄 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/7815 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 11/12/2021 **Status:** ✅ Merged **Merged:** 11/12/2021 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`94bd27b`](https://github.com/netbox-community/netbox/commit/94bd27bcf5e63283164e55b9c1a330a88ed667ed) Fix interface icons on the device interfaces table - [`b07e888`](https://github.com/netbox-community/netbox/commit/b07e88869aa382fa45643470f05bd6f7abbb1780) Fix interfaces row colors on device interfaces table - [`11e2200`](https://github.com/netbox-community/netbox/commit/11e2200acfcf479896c6697fb6bc152a56fe3558) PRVB - [`7b13358`](https://github.com/netbox-community/netbox/commit/7b1335825be66074ef98db7bd96a5f85d8b42810) Closes #7687: Update CentOS installation docs - [`8f1acb7`](https://github.com/netbox-community/netbox/commit/8f1acb700d72467ffe7ae5c8502422a1eac0693d) Fix ID list creation in API tests - [`773fd47`](https://github.com/netbox-community/netbox/commit/773fd47ca6f7a33238d63816e4a589c2f2f5687c) Fixes #7752: Fix minimum version check under Python v3.10 - [`e5d7578`](https://github.com/netbox-community/netbox/commit/e5d757866364a55795ca060f2fa4ecb5aed3cf2b) Fixes #7750: Fix cable trace image link - [`79f2f03`](https://github.com/netbox-community/netbox/commit/79f2f03fb241f35ff74bbd034df7ff26aa0be025) Issues policy tweaks - [`3eda8d8`](https://github.com/netbox-community/netbox/commit/3eda8d84821cafcf8170f52be8300bdabdedb3ee) Closes #7760: Add vid filter field to VLANs list - [`e04402e`](https://github.com/netbox-community/netbox/commit/e04402ed570ad702f8f7f32ba5e2ecc3d51829f1) Allow bypassing the pre-commit script with NOVALIDATE=1 ### 📊 Changes **35 files changed** (+158 additions, -81 deletions) <details> <summary>View changed files</summary> 📝 `.github/ISSUE_TEMPLATE/bug_report.yaml` (+2 -5) 📝 `.github/ISSUE_TEMPLATE/feature_request.yaml` (+1 -1) 📝 `CONTRIBUTING.md` (+4 -8) 📝 `docs/core-functionality/devices.md` (+10 -0) 📝 `docs/installation/1-postgresql.md` (+0 -3) 📝 `docs/installation/3-netbox.md` (+6 -1) 📝 `docs/installation/index.md` (+1 -1) 📝 `docs/models/dcim/cable.md` (+0 -10) 📝 `docs/release-notes/version-3.0.md` (+26 -0) 📝 `netbox/dcim/choices.py` (+2 -0) 📝 `netbox/dcim/forms/object_create.py` (+8 -2) 📝 `netbox/dcim/tables/devices.py` (+13 -4) 📝 `netbox/dcim/tables/racks.py` (+9 -1) 📝 `netbox/dcim/tables/template_code.py` (+7 -11) 📝 `netbox/extras/forms/models.py` (+1 -1) 📝 `netbox/extras/models/customfields.py` (+1 -1) 📝 `netbox/extras/models/models.py` (+6 -4) 📝 `netbox/extras/models/tags.py` (+1 -1) 📝 `netbox/extras/views.py` (+1 -5) 📝 `netbox/ipam/forms/filtersets.py` (+6 -1) _...and 15 more files_ </details> ### 📄 Description ### Enhancements * [#7740](https://github.com/netbox-community/netbox/issues/7740) - Add mini-DIN 8 console port type * [#7760](https://github.com/netbox-community/netbox/issues/7760) - Add `vid` filter field to VLANs list * [#7767](https://github.com/netbox-community/netbox/issues/7767) - Add visual aids to interfaces table for type, enabled status ### Bug Fixes * [#7564](https://github.com/netbox-community/netbox/issues/7564) - Fix assignment of members to virtual chassis with initial position of zero * [#7701](https://github.com/netbox-community/netbox/issues/7701) - Fix conflation of assigned IP status & role in interface tables * [#7741](https://github.com/netbox-community/netbox/issues/7741) - Fix 404 when attaching multiple images in succession * [#7752](https://github.com/netbox-community/netbox/issues/7752) - Fix minimum version check under Python v3.10 * [#7766](https://github.com/netbox-community/netbox/issues/7766) - Add missing outer dimension columns to rack table * [#7780](https://github.com/netbox-community/netbox/issues/7780) - Preserve multi-line values during CSV file import * [#7783](https://github.com/netbox-community/netbox/issues/7783) - Fix indentation of locations under site view * [#7788](https://github.com/netbox-community/netbox/issues/7788) - Improve XSS mitigation in Markdown renderer * [#7791](https://github.com/netbox-community/netbox/issues/7791) - Enable sorting device bays table by installed device status * [#7802](https://github.com/netbox-community/netbox/issues/7802) - Differentiate ID and VID columns in VLANs table * [#7808](https://github.com/netbox-community/netbox/issues/7808) - Fix reference values for content type under custom field import form * [#7809](https://github.com/netbox-community/netbox/issues/7809) - Add missing export template support for various models * [#7814](https://github.com/netbox-community/netbox/issues/7814) - Fix restriction of user & group objects in GraphQL API queries --- <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:32 +01:00
adam closed this issue 2025-12-29 22:26:32 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#13285