[PR #1789] [MERGED] Release v2.2.8 #12265

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/1789
Author: @jeremystretch
Created: 12/20/2017
Status: Merged
Merged: 12/20/2017
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

📊 Changes

20 files changed (+127 additions, -59 deletions)

View changed files

📝 docs/installation/ldap.md (+4 -2)
📝 netbox/dcim/filters.py (+3 -3)
📝 netbox/ipam/models.py (+28 -15)
📝 netbox/ipam/urls.py (+1 -0)
📝 netbox/ipam/views.py (+23 -10)
📝 netbox/netbox/api.py (+3 -0)
📝 netbox/netbox/settings.py (+1 -1)
📝 netbox/templates/dcim/device.html (+1 -1)
📝 netbox/templates/dcim/devicetype_list.html (+1 -1)
📝 netbox/templates/dcim/rackgroup_list.html (+1 -1)
📝 netbox/templates/ipam/inc/prefix_header.html (+8 -2)
📝 netbox/templates/ipam/prefix.html (+0 -11)
📝 netbox/templates/ipam/prefix_ipaddresses.html (+5 -5)
netbox/templates/ipam/prefix_prefixes.html (+12 -0)
📝 netbox/templates/search.html (+7 -5)
📝 netbox/utilities/middleware.py (+5 -1)
📝 netbox/utilities/views.py (+7 -1)
📝 netbox/virtualization/filters.py (+11 -0)
📝 netbox/virtualization/forms.py (+5 -0)
📝 netbox/virtualization/models.py (+1 -0)

📄 Description

Enhancements

  • #1771 - Added name filter for racks
  • #1772 - Added position filter for devices
  • #1773 - Moved child prefixes table to its own view
  • #1774 - Include a button to refine search results for all object types under global search
  • #1784 - Added cluster_type filters for virtual machines

Bug Fixes

  • #1766 - Fixed display of "select all" button on device power outlets list
  • #1767 - Use proper template for 404 responses
  • #1778 - Preserve initial VRF assignment when adding IP addresses in bulk from a prefix
  • #1783 - Added vm_role filter for device roles
  • #1785 - Omit filter forms from browsable API
  • #1787 - Added missing site field to virtualization cluster CSV export

🔄 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/1789 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 12/20/2017 **Status:** ✅ Merged **Merged:** 12/20/2017 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`be6ef15`](https://github.com/netbox-community/netbox/commit/be6ef15ffa9ee883cd39d2d13222f27d2ff1d99c) Post-release version bump - [`a9af75b`](https://github.com/netbox-community/netbox/commit/a9af75bbd114c036f273b21963175da5dfcec6c9) Fixes #1767: Use proper template for 404 responses - [`06810bf`](https://github.com/netbox-community/netbox/commit/06810bff91f33b6f61542f9b354e2e26020e6bee) Fixes #1764: Fixed typos in export buttons - [`da3935f`](https://github.com/netbox-community/netbox/commit/da3935ff367132012fe5e8ddf12f7db004ab781f) Fixes #1766: Fixed display of "select all" button on device power outlets list - [`89bfb4f`](https://github.com/netbox-community/netbox/commit/89bfb4f722d4aec5a772d964b97f6894ce8d4afb) Closes #1771: Added name filter for racks - [`c97f704`](https://github.com/netbox-community/netbox/commit/c97f7041a77cfdc0f36a16e91ea727d79193144b) Closes #1772: Added position filter for devices - [`1cebc12`](https://github.com/netbox-community/netbox/commit/1cebc1248b37cb120f78836760329eb624403f18) Fix for #1778. - [`c10481b`](https://github.com/netbox-community/netbox/commit/c10481b99dbfaef42ba7d6045c058ce186d4d693) Fixes #1783: Added vm_role filter for device roles - [`c3599ba`](https://github.com/netbox-community/netbox/commit/c3599bacf20343d8f5f2dbb939ea3a326105dadc) Fixes #1785: Omit filter forms from browsable API - [`6d9c8fd`](https://github.com/netbox-community/netbox/commit/6d9c8fd85bcff2f9570288dfc33e17f9a54dbeed) Fixes #1787: Added missing site field to virtualization cluster CSV export ### 📊 Changes **20 files changed** (+127 additions, -59 deletions) <details> <summary>View changed files</summary> 📝 `docs/installation/ldap.md` (+4 -2) 📝 `netbox/dcim/filters.py` (+3 -3) 📝 `netbox/ipam/models.py` (+28 -15) 📝 `netbox/ipam/urls.py` (+1 -0) 📝 `netbox/ipam/views.py` (+23 -10) 📝 `netbox/netbox/api.py` (+3 -0) 📝 `netbox/netbox/settings.py` (+1 -1) 📝 `netbox/templates/dcim/device.html` (+1 -1) 📝 `netbox/templates/dcim/devicetype_list.html` (+1 -1) 📝 `netbox/templates/dcim/rackgroup_list.html` (+1 -1) 📝 `netbox/templates/ipam/inc/prefix_header.html` (+8 -2) 📝 `netbox/templates/ipam/prefix.html` (+0 -11) 📝 `netbox/templates/ipam/prefix_ipaddresses.html` (+5 -5) ➕ `netbox/templates/ipam/prefix_prefixes.html` (+12 -0) 📝 `netbox/templates/search.html` (+7 -5) 📝 `netbox/utilities/middleware.py` (+5 -1) 📝 `netbox/utilities/views.py` (+7 -1) 📝 `netbox/virtualization/filters.py` (+11 -0) 📝 `netbox/virtualization/forms.py` (+5 -0) 📝 `netbox/virtualization/models.py` (+1 -0) </details> ### 📄 Description ## Enhancements * [#1771](https://github.com/digitalocean/netbox/issues/1771) - Added name filter for racks * [#1772](https://github.com/digitalocean/netbox/issues/1772) - Added position filter for devices * [#1773](https://github.com/digitalocean/netbox/issues/1773) - Moved child prefixes table to its own view * [#1774](https://github.com/digitalocean/netbox/issues/1774) - Include a button to refine search results for all object types under global search * [#1784](https://github.com/digitalocean/netbox/issues/1784) - Added `cluster_type` filters for virtual machines ## Bug Fixes * [#1766](https://github.com/digitalocean/netbox/issues/1766) - Fixed display of "select all" button on device power outlets list * [#1767](https://github.com/digitalocean/netbox/issues/1767) - Use proper template for 404 responses * [#1778](https://github.com/digitalocean/netbox/issues/1778) - Preserve initial VRF assignment when adding IP addresses in bulk from a prefix * [#1783](https://github.com/digitalocean/netbox/issues/1783) - Added `vm_role` filter for device roles * [#1785](https://github.com/digitalocean/netbox/issues/1785) - Omit filter forms from browsable API * [#1787](https://github.com/digitalocean/netbox/issues/1787) - Added missing site field to virtualization cluster CSV export --- <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:20:33 +01:00
adam closed this issue 2025-12-29 22:20:33 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12265