[PR #1757] [MERGED] Release v2.2.7 #12263

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/1757
Author: @jeremystretch
Created: 12/7/2017
Status: Merged
Merged: 12/7/2017
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

  • 5dc9723 Post-release version bump
  • 0ec3b5d Closes #1722: Added virtual machine count to sites list
  • 40ab272 Fixes #1721: Differentiated child IP count from utilization percentage for prefixes
  • 252be84 Corrected tenant inheritance for new IP addresses created from a parent prefix
  • 30df060 Closes #1722: Added VM count to site view
  • 45d6955 Fixed search field length in search view
  • 68f7646 Fixes #1743: Include number of instances for device types in global search
  • 34d10f8 Fixes #1741: Fixed Unicode support for secret plaintexts
  • de2a894 Closes #1737: Added a 'contains' API filter to find all prefixes containing a given IP or prefix
  • cf49891 Fixes #1740: Delete session_key cookie on logout

📊 Changes

20 files changed (+138 additions, -84 deletions)

View changed files

📝 docs/api/examples.md (+1 -1)
📝 netbox/dcim/models.py (+12 -11)
📝 netbox/dcim/tables.py (+2 -1)
📝 netbox/dcim/views.py (+4 -6)
📝 netbox/ipam/fields.py (+27 -28)
📝 netbox/ipam/filters.py (+24 -6)
📝 netbox/ipam/lookups.py (+17 -5)
📝 netbox/ipam/views.py (+0 -4)
📝 netbox/netbox/forms.py (+1 -1)
📝 netbox/netbox/settings.py (+1 -1)
📝 netbox/netbox/views.py (+2 -1)
📝 netbox/secrets/models.py (+6 -5)
📝 netbox/secrets/views.py (+1 -1)
📝 netbox/templates/dcim/site.html (+4 -0)
📝 netbox/templates/ipam/inc/prefix_header.html (+2 -2)
📝 netbox/templates/ipam/prefix.html (+10 -9)
📝 netbox/templates/search_form.html (+1 -1)
📝 netbox/users/views.py (+7 -1)
📝 netbox/virtualization/filters.py (+11 -0)
📝 netbox/virtualization/forms.py (+5 -0)

📄 Description

v2.2.7

Enhancements

  • #1722 - Added virtual machine count to site view
  • #1737 - Added a contains API filter to find all prefixes containing a given IP or prefix

Bug Fixes

  • #1712 - Corrected tenant inheritance for new IP addresses created from a parent prefix
  • #1721 - Differentiated child IP count from utilization percentage for prefixes
  • #1740 - Delete session_key cookie on logout
  • #1741 - Fixed Unicode support for secret plaintexts
  • #1743 - Include number of instances for device types in global search
  • #1751 - Corrected filtering for IPv6 addresses containing letters
  • #1756 - Improved natural ordering of console server ports and power outlets

🔄 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/1757 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 12/7/2017 **Status:** ✅ Merged **Merged:** 12/7/2017 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`5dc9723`](https://github.com/netbox-community/netbox/commit/5dc9723585816071d542edebc610c9f66bd594c5) Post-release version bump - [`0ec3b5d`](https://github.com/netbox-community/netbox/commit/0ec3b5db8bb16b308e190e07fd92fc516f433f4b) Closes #1722: Added virtual machine count to sites list - [`40ab272`](https://github.com/netbox-community/netbox/commit/40ab27299592ed4247b8695bf177bdac411b608b) Fixes #1721: Differentiated child IP count from utilization percentage for prefixes - [`252be84`](https://github.com/netbox-community/netbox/commit/252be84bf07a27868c9e5548558834b2fd62e3d8) Corrected tenant inheritance for new IP addresses created from a parent prefix - [`30df060`](https://github.com/netbox-community/netbox/commit/30df06035711a6043f2c2433d9a7f61e110c0fb6) Closes #1722: Added VM count to site view - [`45d6955`](https://github.com/netbox-community/netbox/commit/45d695526017fb0527d4579ab740824ce79e2993) Fixed search field length in search view - [`68f7646`](https://github.com/netbox-community/netbox/commit/68f76465cf0924a301f71c23edb26f679228049d) Fixes #1743: Include number of instances for device types in global search - [`34d10f8`](https://github.com/netbox-community/netbox/commit/34d10f8db7fdeb9c1e993d78b2d4feb85b87345f) Fixes #1741: Fixed Unicode support for secret plaintexts - [`de2a894`](https://github.com/netbox-community/netbox/commit/de2a894269f6613e550ec96cb826ba80913761e6) Closes #1737: Added a 'contains' API filter to find all prefixes containing a given IP or prefix - [`cf49891`](https://github.com/netbox-community/netbox/commit/cf49891853e9ef16fd82a9126c4d1f6bf9fabc01) Fixes #1740: Delete session_key cookie on logout ### 📊 Changes **20 files changed** (+138 additions, -84 deletions) <details> <summary>View changed files</summary> 📝 `docs/api/examples.md` (+1 -1) 📝 `netbox/dcim/models.py` (+12 -11) 📝 `netbox/dcim/tables.py` (+2 -1) 📝 `netbox/dcim/views.py` (+4 -6) 📝 `netbox/ipam/fields.py` (+27 -28) 📝 `netbox/ipam/filters.py` (+24 -6) 📝 `netbox/ipam/lookups.py` (+17 -5) 📝 `netbox/ipam/views.py` (+0 -4) 📝 `netbox/netbox/forms.py` (+1 -1) 📝 `netbox/netbox/settings.py` (+1 -1) 📝 `netbox/netbox/views.py` (+2 -1) 📝 `netbox/secrets/models.py` (+6 -5) 📝 `netbox/secrets/views.py` (+1 -1) 📝 `netbox/templates/dcim/site.html` (+4 -0) 📝 `netbox/templates/ipam/inc/prefix_header.html` (+2 -2) 📝 `netbox/templates/ipam/prefix.html` (+10 -9) 📝 `netbox/templates/search_form.html` (+1 -1) 📝 `netbox/users/views.py` (+7 -1) 📝 `netbox/virtualization/filters.py` (+11 -0) 📝 `netbox/virtualization/forms.py` (+5 -0) </details> ### 📄 Description v2.2.7 ## Enhancements * [#1722](https://github.com/digitalocean/netbox/issues/1722) - Added virtual machine count to site view * [#1737](https://github.com/digitalocean/netbox/issues/1737) - Added a `contains` API filter to find all prefixes containing a given IP or prefix ## Bug Fixes * [#1712](https://github.com/digitalocean/netbox/issues/1712) - Corrected tenant inheritance for new IP addresses created from a parent prefix * [#1721](https://github.com/digitalocean/netbox/issues/1721) - Differentiated child IP count from utilization percentage for prefixes * [#1740](https://github.com/digitalocean/netbox/issues/1740) - Delete session_key cookie on logout * [#1741](https://github.com/digitalocean/netbox/issues/1741) - Fixed Unicode support for secret plaintexts * [#1743](https://github.com/digitalocean/netbox/issues/1743) - Include number of instances for device types in global search * [#1751](https://github.com/digitalocean/netbox/issues/1751) - Corrected filtering for IPv6 addresses containing letters * [#1756](https://github.com/digitalocean/netbox/issues/1756) - Improved natural ordering of console server ports and power outlets --- <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#12263