[PR #2275] [MERGED] Release v2.3.7 #12346

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/2275
Author: @jeremystretch
Created: 7/26/2018
Status: Merged
Merged: 7/26/2018
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

  • 82189de implements #2166 - asset tag partial string search
  • 786f389 Post-release version bump
  • aa0e440 Merge pull request #2167 from lampwins/feature/2166
  • 02b6ffd Added note about passphrase-protected keys (#2189)
  • 00d2181 Fixes #2231: Remove get_absolute_url() from DeviceRole
  • 29d9b32 Fixes #1977: Don't default master vc_position to 1 when creating a new virtual chassis
  • d665d4d Fixes #1992: Isolate errors when one of multiple NAPALM methods fails
  • 6e037e9 Fixes #2202: Ditched half-baked concept of tenancy inheritance via VRF
  • c257377 Fixes #2222: IP addresses created via the available-ips API endpoint should have the same mask as their parent prefix (not /32)
  • 93ce0ce Further reiterated the policy for pull requests

📊 Changes

27 files changed (+303 additions, -196 deletions)

View changed files

.github/ISSUE_TEMPLATE.md (+0 -49)
.github/ISSUE_TEMPLATE/bug_report.md (+34 -0)
.github/ISSUE_TEMPLATE/documentation_change.md (+17 -0)
.github/ISSUE_TEMPLATE/feature_request.md (+53 -0)
.github/ISSUE_TEMPLATE/housekeeping.md (+16 -0)
📝 .github/PULL_REQUEST_TEMPLATE.md (+2 -0)
📝 CONTRIBUTING.md (+7 -5)
📝 netbox/dcim/api/views.py (+15 -12)
📝 netbox/dcim/filters.py (+1 -1)
📝 netbox/dcim/models.py (+0 -3)
📝 netbox/dcim/signals.py (+1 -6)
📝 netbox/dcim/tables.py (+0 -1)
📝 netbox/ipam/api/views.py (+2 -1)
📝 netbox/ipam/tables.py (+29 -11)
📝 netbox/ipam/views.py (+14 -22)
📝 netbox/netbox/settings.py (+1 -1)
📝 netbox/netbox/urls.py (+2 -0)
📝 netbox/project-static/css/base.css (+8 -1)
📝 netbox/secrets/forms.py (+2 -1)
📝 netbox/templates/dcim/device.html (+1 -1)

...and 7 more files

📄 Description

Enhancements

  • #2166 - Enable partial matching on device asset_tag during search

Bug Fixes

  • #1977 - Fixed exception when creating a virtual chassis with a non-master device in position 1
  • #1992 - Isolate errors when one of multiple NAPALM methods fails
  • #2202 - Ditched half-baked concept of tenancy inheritance via VRF
  • #2222 - IP addresses created via the available-ips API endpoint should have the same mask as their parent prefix (not /32)
  • #2231 - Remove get_absolute_url() from DeviceRole (can apply to devices or VMs)
  • #2250 - Include stat counters on report result navigation
  • #2255 - Corrected display of results in reports list
  • #2256 - Prevent navigation menu overlap when jumping to test results on report page
  • #2257 - Corrected casting of RIR utilization stats as floats
  • #2266 - Permit additional logging of exceptions beyond custom middleware

🔄 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/2275 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 7/26/2018 **Status:** ✅ Merged **Merged:** 7/26/2018 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`82189de`](https://github.com/netbox-community/netbox/commit/82189de78e4c402034c63135f46a8bacc25a461e) implements #2166 - asset tag partial string search - [`786f389`](https://github.com/netbox-community/netbox/commit/786f389be86fe4b649487146a467adb6b20c5d95) Post-release version bump - [`aa0e440`](https://github.com/netbox-community/netbox/commit/aa0e4406ebc4515b36bc563ac9fa234d327a19cc) Merge pull request #2167 from lampwins/feature/2166 - [`02b6ffd`](https://github.com/netbox-community/netbox/commit/02b6ffd59a61f5a48f9f08b8efa678fd74867bbf) Added note about passphrase-protected keys (#2189) - [`00d2181`](https://github.com/netbox-community/netbox/commit/00d218118c027bf7498add8588b719bcd1f2a1bf) Fixes #2231: Remove get_absolute_url() from DeviceRole - [`29d9b32`](https://github.com/netbox-community/netbox/commit/29d9b32b6701acef8b23fb84d22063a87ac3232a) Fixes #1977: Don't default master vc_position to 1 when creating a new virtual chassis - [`d665d4d`](https://github.com/netbox-community/netbox/commit/d665d4d62a883940b84b1ee484b189ea163f870c) Fixes #1992: Isolate errors when one of multiple NAPALM methods fails - [`6e037e9`](https://github.com/netbox-community/netbox/commit/6e037e91d3f750d3b45fdd4e66d06c4c22d91f43) Fixes #2202: Ditched half-baked concept of tenancy inheritance via VRF - [`c257377`](https://github.com/netbox-community/netbox/commit/c2573774bfba58862715a8bd75d6b53cd5fbc537) Fixes #2222: IP addresses created via the available-ips API endpoint should have the same mask as their parent prefix (not /32) - [`93ce0ce`](https://github.com/netbox-community/netbox/commit/93ce0ce67098f6341c1907caf41d6e40512c6e6e) Further reiterated the policy for pull requests ### 📊 Changes **27 files changed** (+303 additions, -196 deletions) <details> <summary>View changed files</summary> ➖ `.github/ISSUE_TEMPLATE.md` (+0 -49) ➕ `.github/ISSUE_TEMPLATE/bug_report.md` (+34 -0) ➕ `.github/ISSUE_TEMPLATE/documentation_change.md` (+17 -0) ➕ `.github/ISSUE_TEMPLATE/feature_request.md` (+53 -0) ➕ `.github/ISSUE_TEMPLATE/housekeeping.md` (+16 -0) 📝 `.github/PULL_REQUEST_TEMPLATE.md` (+2 -0) 📝 `CONTRIBUTING.md` (+7 -5) 📝 `netbox/dcim/api/views.py` (+15 -12) 📝 `netbox/dcim/filters.py` (+1 -1) 📝 `netbox/dcim/models.py` (+0 -3) 📝 `netbox/dcim/signals.py` (+1 -6) 📝 `netbox/dcim/tables.py` (+0 -1) 📝 `netbox/ipam/api/views.py` (+2 -1) 📝 `netbox/ipam/tables.py` (+29 -11) 📝 `netbox/ipam/views.py` (+14 -22) 📝 `netbox/netbox/settings.py` (+1 -1) 📝 `netbox/netbox/urls.py` (+2 -0) 📝 `netbox/project-static/css/base.css` (+8 -1) 📝 `netbox/secrets/forms.py` (+2 -1) 📝 `netbox/templates/dcim/device.html` (+1 -1) _...and 7 more files_ </details> ### 📄 Description ## Enhancements * [#2166](https://github.com/digitalocean/netbox/issues/2166) - Enable partial matching on device asset_tag during search ## Bug Fixes * [#1977](https://github.com/digitalocean/netbox/issues/1977) - Fixed exception when creating a virtual chassis with a non-master device in position 1 * [#1992](https://github.com/digitalocean/netbox/issues/1992) - Isolate errors when one of multiple NAPALM methods fails * [#2202](https://github.com/digitalocean/netbox/issues/2202) - Ditched half-baked concept of tenancy inheritance via VRF * [#2222](https://github.com/digitalocean/netbox/issues/2222) - IP addresses created via the available-ips API endpoint should have the same mask as their parent prefix (not /32) * [#2231](https://github.com/digitalocean/netbox/issues/2231) - Remove get_absolute_url() from DeviceRole (can apply to devices or VMs) * [#2250](https://github.com/digitalocean/netbox/issues/2250) - Include stat counters on report result navigation * [#2255](https://github.com/digitalocean/netbox/issues/2255) - Corrected display of results in reports list * [#2256](https://github.com/digitalocean/netbox/issues/2256) - Prevent navigation menu overlap when jumping to test results on report page * [#2257](https://github.com/digitalocean/netbox/issues/2257) - Corrected casting of RIR utilization stats as floats * [#2266](https://github.com/digitalocean/netbox/issues/2266) - Permit additional logging of exceptions beyond custom middleware --- <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:21:01 +01:00
adam closed this issue 2025-12-29 22:21:01 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12346