[PR #7590] [MERGED] Release v3.0.8 #13255

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/7590
Author: @jeremystretch
Created: 10/20/2021
Status: Merged
Merged: 10/20/2021
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

  • 1a4f8c5 PRVB
  • 6898ae7 Fixes #7544: Fix multi-value filtering of custom field objects
  • b957739 Fixes #7534: Avoid exception when utilizing "create and add another" twice in succession
  • a7b6c40 Fixing display of webhook types
  • 12efcec Merge pull request #7546 from miaow2/7545-webhook-events-status
  • e16942d Fixes #7529: Restore horizontal scrolling for tables in narrow viewports
  • f1f0d9c Fixes #7495: Fix sidenav overlapping elements
  • 84c14aa Fixes #7300: Fix incorrect Device LLDP interface row coloring & improve related JS
  • 811c21e Minor Style Improvement: Add vertical spacing to Device Type component navigation & fix inconsistent component active color
  • 9c6938e Minor Style Improvement: Fix interface table dropdowns being hidden when opened

📊 Changes

31 files changed (+230 additions, -105 deletions)

View changed files

📝 .github/ISSUE_TEMPLATE/bug_report.yaml (+1 -1)
📝 .github/ISSUE_TEMPLATE/feature_request.yaml (+1 -1)
docs/customization/custom-links.md (+0 -1)
📝 docs/release-notes/version-3.0.md (+21 -0)
📝 mkdocs.yml (+1 -1)
📝 netbox/dcim/choices.py (+12 -0)
📝 netbox/dcim/forms/filtersets.py (+6 -1)
📝 netbox/extras/filtersets.py (+2 -1)
📝 netbox/ipam/tables/ip.py (+5 -0)
📝 netbox/netbox/settings.py (+1 -1)
📝 netbox/netbox/views/__init__.py (+1 -1)
📝 netbox/netbox/views/generic.py (+2 -2)
📝 netbox/project-static/dist/lldp.js (+2 -2)
📝 netbox/project-static/dist/lldp.js.map (+1 -1)
📝 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/dist/netbox.js (+1 -1)
📝 netbox/project-static/dist/netbox.js.map (+1 -1)
📝 netbox/project-static/src/device/lldp.ts (+73 -25)

...and 11 more files

📄 Description

Enhancements

  • #7551 - Add UI field to filter interfaces by kind
  • #7561 - Add a utilization column to the IP ranges table

Bug Fixes

  • #7300 - Fix incorrect Device LLDP interface row coloring
  • #7495 - Fix navigation UI issue that caused improper element overlap
  • #7529 - Restore horizontal scrolling for tables in narrow viewports
  • #7534 - Avoid exception when utilizing "create and add another" twice in succession
  • #7544 - Fix multi-value filtering of custom field objects
  • #7545 - Fix incorrect display of update/delete events for webhooks
  • #7550 - Fix rendering of UTF8-encoded data in change records
  • #7556 - Fix display of version when new release is available
  • #7584 - Fix alignment of object identifier under object view

🔄 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/7590 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 10/20/2021 **Status:** ✅ Merged **Merged:** 10/20/2021 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`1a4f8c5`](https://github.com/netbox-community/netbox/commit/1a4f8c5422206ca1c076477637d35399bae49701) PRVB - [`6898ae7`](https://github.com/netbox-community/netbox/commit/6898ae7106d1e1b64e961474385bea67e3259389) Fixes #7544: Fix multi-value filtering of custom field objects - [`b957739`](https://github.com/netbox-community/netbox/commit/b95773938d50acdb5404a63c346ca93bee5fdbb9) Fixes #7534: Avoid exception when utilizing "create and add another" twice in succession - [`a7b6c40`](https://github.com/netbox-community/netbox/commit/a7b6c40596fb1291243de8b5697cc1f7f24099e2) Fixing display of webhook types - [`12efcec`](https://github.com/netbox-community/netbox/commit/12efcec3b07ebd5e438ed794845064a0a39f6163) Merge pull request #7546 from miaow2/7545-webhook-events-status - [`e16942d`](https://github.com/netbox-community/netbox/commit/e16942dea5d6f60f099b850c15d00c3f52898fd0) Fixes #7529: Restore horizontal scrolling for tables in narrow viewports - [`f1f0d9c`](https://github.com/netbox-community/netbox/commit/f1f0d9cd0d4b8098a9204a9de7061e5a5349ce47) Fixes #7495: Fix sidenav overlapping elements - [`84c14aa`](https://github.com/netbox-community/netbox/commit/84c14aadc7c9329a426e6598af55f6c61129b8e8) Fixes #7300: Fix incorrect Device LLDP interface row coloring & improve related JS - [`811c21e`](https://github.com/netbox-community/netbox/commit/811c21ec7e57575390f86bb1a146a5304371aad2) Minor Style Improvement: Add vertical spacing to Device Type component navigation & fix inconsistent component active color - [`9c6938e`](https://github.com/netbox-community/netbox/commit/9c6938e7ae8e85d83d34f1b4b10145b4f629bc86) Minor Style Improvement: Fix interface table dropdowns being hidden when opened ### 📊 Changes **31 files changed** (+230 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) ➖ `docs/customization/custom-links.md` (+0 -1) 📝 `docs/release-notes/version-3.0.md` (+21 -0) 📝 `mkdocs.yml` (+1 -1) 📝 `netbox/dcim/choices.py` (+12 -0) 📝 `netbox/dcim/forms/filtersets.py` (+6 -1) 📝 `netbox/extras/filtersets.py` (+2 -1) 📝 `netbox/ipam/tables/ip.py` (+5 -0) 📝 `netbox/netbox/settings.py` (+1 -1) 📝 `netbox/netbox/views/__init__.py` (+1 -1) 📝 `netbox/netbox/views/generic.py` (+2 -2) 📝 `netbox/project-static/dist/lldp.js` (+2 -2) 📝 `netbox/project-static/dist/lldp.js.map` (+1 -1) 📝 `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/dist/netbox.js` (+1 -1) 📝 `netbox/project-static/dist/netbox.js.map` (+1 -1) 📝 `netbox/project-static/src/device/lldp.ts` (+73 -25) _...and 11 more files_ </details> ### 📄 Description ### Enhancements * [#7551](https://github.com/netbox-community/netbox/issues/7551) - Add UI field to filter interfaces by kind * [#7561](https://github.com/netbox-community/netbox/issues/7561) - Add a utilization column to the IP ranges table ### Bug Fixes * [#7300](https://github.com/netbox-community/netbox/issues/7300) - Fix incorrect Device LLDP interface row coloring * [#7495](https://github.com/netbox-community/netbox/issues/7495) - Fix navigation UI issue that caused improper element overlap * [#7529](https://github.com/netbox-community/netbox/issues/7529) - Restore horizontal scrolling for tables in narrow viewports * [#7534](https://github.com/netbox-community/netbox/issues/7534) - Avoid exception when utilizing "create and add another" twice in succession * [#7544](https://github.com/netbox-community/netbox/issues/7544) - Fix multi-value filtering of custom field objects * [#7545](https://github.com/netbox-community/netbox/issues/7545) - Fix incorrect display of update/delete events for webhooks * [#7550](https://github.com/netbox-community/netbox/issues/7550) - Fix rendering of UTF8-encoded data in change records * [#7556](https://github.com/netbox-community/netbox/issues/7556) - Fix display of version when new release is available * [#7584](https://github.com/netbox-community/netbox/issues/7584) - Fix alignment of object identifier under object view --- <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:17 +01:00
adam closed this issue 2025-12-29 22:26:17 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#13255