[PR #4467] [MERGED] Release v2.7.12 #12852

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/4467
Author: @jeremystretch
Created: 4/8/2020
Status: Merged
Merged: 4/8/2020
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

  • 5cf872d Post-release version bump
  • aa38dcf Closes #3676: Reference VRF by name rather than RD during IP/prefix import
  • fb2868f Fixes #4418: Fail cleanly when trying to import multiple device types simultaneously
  • 221e014 Remove survey notification from README
  • 354f87c Fixes #4439: Tweak display of unset custom integer fields
  • 4ab3854 Fixes #4438: Fix exception when disconnecting a cable from a power feed
  • 1f3a21b Fixes #4449: Fix reservation edit/delete button URLs on rack view
  • 721368e Closes #4147: Use absolute URLs in rack elevation SVG renderings
  • 6307887 Closes #4448: Allow connecting cables between two circuit terminations
  • 1ffbeba #4439: Fix null integer field display

📊 Changes

23 files changed (+285 additions, -112 deletions)

View changed files

📝 README.md (+0 -2)
contrib/apache.conf (+26 -0)
contrib/nginx.conf (+29 -0)
📝 docs/additional-features/webhooks.md (+33 -0)
📝 docs/installation/4-http-daemon.md (+24 -56)
📝 docs/release-notes/version-2.7.md (+19 -0)
📝 netbox/dcim/api/serializers.py (+1 -0)
📝 netbox/dcim/api/views.py (+2 -1)
📝 netbox/dcim/constants.py (+1 -1)
📝 netbox/dcim/elevations.py (+8 -3)
📝 netbox/dcim/models/__init__.py (+8 -2)
📝 netbox/extras/admin.py (+6 -7)
netbox/extras/management/commands/webhook_receiver.py (+85 -0)
📝 netbox/ipam/forms.py (+4 -4)
📝 netbox/ipam/tests/test_views.py (+9 -8)
📝 netbox/netbox/admin.py (+9 -16)
📝 netbox/netbox/settings.py (+1 -1)
📝 netbox/secrets/admin.py (+1 -2)
📝 netbox/templates/circuits/inc/circuit_termination.html (+1 -0)
📝 netbox/templates/dcim/rack.html (+2 -2)

...and 3 more files

📄 Description

Enhancements

  • #3676 - Reference VRF by name rather than RD during IP/prefix import
  • #4147 - Use absolute URLs in rack elevation SVG renderings
  • #4448 - Allow connecting cables between two circuit terminations
  • #4460 - Add the webhook_receiver management command to assist in troubleshooting outgoing webhooks

Bug Fixes

  • #4395 - Fix typing of count_ipaddresses on interface serializer
  • #4418 - Fail cleanly when trying to import multiple device types simultaneously
  • #4438 - Fix exception when disconnecting a cable from a power feed
  • #4439 - Tweak display of unset custom integer fields
  • #4449 - Fix reservation edit/delete button URLs on rack 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/4467 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 4/8/2020 **Status:** ✅ Merged **Merged:** 4/8/2020 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`5cf872d`](https://github.com/netbox-community/netbox/commit/5cf872d000d26cbf9595fd9b6b5380b5b984c3cc) Post-release version bump - [`aa38dcf`](https://github.com/netbox-community/netbox/commit/aa38dcf4904f451a1e07b3141b5f1aebffd92be1) Closes #3676: Reference VRF by name rather than RD during IP/prefix import - [`fb2868f`](https://github.com/netbox-community/netbox/commit/fb2868f8bbe7ba0d5520aa1cc1ff3210f0967350) Fixes #4418: Fail cleanly when trying to import multiple device types simultaneously - [`221e014`](https://github.com/netbox-community/netbox/commit/221e014a25405fea9cd58e365d85ae5e286792b2) Remove survey notification from README - [`354f87c`](https://github.com/netbox-community/netbox/commit/354f87c888af784d75322416d79de5e53e82f8c7) Fixes #4439: Tweak display of unset custom integer fields - [`4ab3854`](https://github.com/netbox-community/netbox/commit/4ab3854d661153c90d1d78e344c7254d2d55f11b) Fixes #4438: Fix exception when disconnecting a cable from a power feed - [`1f3a21b`](https://github.com/netbox-community/netbox/commit/1f3a21ba20ba735437f5f8c1597211bdfbf1647b) Fixes #4449: Fix reservation edit/delete button URLs on rack view - [`721368e`](https://github.com/netbox-community/netbox/commit/721368ea8d095b3882fc31d1f88637ae696a204b) Closes #4147: Use absolute URLs in rack elevation SVG renderings - [`6307887`](https://github.com/netbox-community/netbox/commit/630788731eede86f930d5295b24ca28ec4042484) Closes #4448: Allow connecting cables between two circuit terminations - [`1ffbeba`](https://github.com/netbox-community/netbox/commit/1ffbeba181028da871e31b65c503141e01a7ef8f) #4439: Fix null integer field display ### 📊 Changes **23 files changed** (+285 additions, -112 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+0 -2) ➕ `contrib/apache.conf` (+26 -0) ➕ `contrib/nginx.conf` (+29 -0) 📝 `docs/additional-features/webhooks.md` (+33 -0) 📝 `docs/installation/4-http-daemon.md` (+24 -56) 📝 `docs/release-notes/version-2.7.md` (+19 -0) 📝 `netbox/dcim/api/serializers.py` (+1 -0) 📝 `netbox/dcim/api/views.py` (+2 -1) 📝 `netbox/dcim/constants.py` (+1 -1) 📝 `netbox/dcim/elevations.py` (+8 -3) 📝 `netbox/dcim/models/__init__.py` (+8 -2) 📝 `netbox/extras/admin.py` (+6 -7) ➕ `netbox/extras/management/commands/webhook_receiver.py` (+85 -0) 📝 `netbox/ipam/forms.py` (+4 -4) 📝 `netbox/ipam/tests/test_views.py` (+9 -8) 📝 `netbox/netbox/admin.py` (+9 -16) 📝 `netbox/netbox/settings.py` (+1 -1) 📝 `netbox/secrets/admin.py` (+1 -2) 📝 `netbox/templates/circuits/inc/circuit_termination.html` (+1 -0) 📝 `netbox/templates/dcim/rack.html` (+2 -2) _...and 3 more files_ </details> ### 📄 Description ### Enhancements * [#3676](https://github.com/netbox-community/netbox/issues/3676) - Reference VRF by name rather than RD during IP/prefix import * [#4147](https://github.com/netbox-community/netbox/issues/4147) - Use absolute URLs in rack elevation SVG renderings * [#4448](https://github.com/netbox-community/netbox/issues/4448) - Allow connecting cables between two circuit terminations * [#4460](https://github.com/netbox-community/netbox/issues/4460) - Add the `webhook_receiver` management command to assist in troubleshooting outgoing webhooks ### Bug Fixes * [#4395](https://github.com/netbox-community/netbox/issues/4395) - Fix typing of count_ipaddresses on interface serializer * [#4418](https://github.com/netbox-community/netbox/issues/4418) - Fail cleanly when trying to import multiple device types simultaneously * [#4438](https://github.com/netbox-community/netbox/issues/4438) - Fix exception when disconnecting a cable from a power feed * [#4439](https://github.com/netbox-community/netbox/issues/4439) - Tweak display of unset custom integer fields * [#4449](https://github.com/netbox-community/netbox/issues/4449) - Fix reservation edit/delete button URLs on rack 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:23:59 +01:00
adam closed this issue 2025-12-29 22:23:59 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12852