[PR #3053] [MERGED] Release v2.5.10 #12489

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

📋 Pull Request Information

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

Base: masterHead: develop


📝 Commits (10+)

  • 7c6d2a6 Post-release version bump
  • 1e160fd Fixes #3041: Fix form widget for bulk cable label update
  • 858be6d Fixes #3039: Fix exception when retrieving change object for a component template via API
  • 74c03e3 Fixes #3036: DCIM interfaces API endpoint should not include VM interfaces
  • 090efde Fixes #3044: Ignore site/rack fields when connecting a new cable via device search
  • 1b389d6 Fixes #3046: Fix exception at reports API endpoint
  • e556c78 Fixes #3047: Fix exception string for invalid MAC Address format
  • c032413 Remove unneeded import from testing.
  • 7f6d793 Fix virtualization test and add to changelog
  • 6f8591f Closes #3052: Add Jinja2 support for export templates

📊 Changes

22 files changed (+137 additions, -42 deletions)

View changed files

📝 CHANGELOG.md (+18 -0)
📝 netbox/circuits/tables.py (+1 -1)
📝 netbox/dcim/api/views.py (+3 -1)
📝 netbox/dcim/fields.py (+1 -1)
📝 netbox/dcim/forms.py (+2 -2)
📝 netbox/dcim/tables.py (+8 -8)
📝 netbox/extras/api/serializers.py (+18 -5)
📝 netbox/extras/api/views.py (+1 -0)
📝 netbox/extras/constants.py (+8 -0)
📝 netbox/extras/filters.py (+1 -1)
📝 netbox/extras/forms.py (+1 -2)
netbox/extras/migrations/0018_exporttemplate_add_jinja2.py (+27 -0)
📝 netbox/extras/models.py (+31 -6)
📝 netbox/ipam/tables.py (+3 -3)
📝 netbox/netbox/api.py (+4 -4)
📝 netbox/netbox/settings.py (+1 -1)
📝 netbox/project-static/js/forms.js (+3 -2)
📝 netbox/secrets/tables.py (+1 -1)
📝 netbox/tenancy/tables.py (+1 -1)
📝 netbox/virtualization/tables.py (+2 -2)

...and 2 more files

📄 Description

Enhancements

  • #3052 - Add Jinja2 support for export templates

Bug Fixes

  • #2937 - Redirect to list view after editing an object from list view
  • #3036 - DCIM interfaces API endpoint should not include VM interfaces
  • #3039 - Fix exception when retrieving change object for a component template via API
  • #3041 - Fix form widget for bulk cable label update
  • #3044 - Ignore site/rack fields when connecting a new cable via device search
  • #3046 - Fix exception at reports API endpoint
  • #3047 - Fix exception when writing mac address for an interface via API

🔄 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/3053 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 4/8/2019 **Status:** ✅ Merged **Merged:** 4/8/2019 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`7c6d2a6`](https://github.com/netbox-community/netbox/commit/7c6d2a6281915711a27c312696c160d3291c71d5) Post-release version bump - [`1e160fd`](https://github.com/netbox-community/netbox/commit/1e160fd9e9429607b9c5f21f11a0fa307bb60481) Fixes #3041: Fix form widget for bulk cable label update - [`858be6d`](https://github.com/netbox-community/netbox/commit/858be6d21666b90bd84efe4750cff83979105cf6) Fixes #3039: Fix exception when retrieving change object for a component template via API - [`74c03e3`](https://github.com/netbox-community/netbox/commit/74c03e32957ba4a185c75c94d9c243803bebf9cb) Fixes #3036: DCIM interfaces API endpoint should not include VM interfaces - [`090efde`](https://github.com/netbox-community/netbox/commit/090efde21a2d62b170aa10e9c46d6ebe0034de31) Fixes #3044: Ignore site/rack fields when connecting a new cable via device search - [`1b389d6`](https://github.com/netbox-community/netbox/commit/1b389d662b8cf730ab3f11ac6a9e976ed4ffaa1b) Fixes #3046: Fix exception at reports API endpoint - [`e556c78`](https://github.com/netbox-community/netbox/commit/e556c785995e2de06a95b479a302b44bea0bdab9) Fixes #3047: Fix exception string for invalid MAC Address format - [`c032413`](https://github.com/netbox-community/netbox/commit/c03241320138fe7b545b43514e93615473270b0d) Remove unneeded import from testing. - [`7f6d793`](https://github.com/netbox-community/netbox/commit/7f6d79362ee057edd2c9f4d1fd11a40ee1b5db43) Fix virtualization test and add to changelog - [`6f8591f`](https://github.com/netbox-community/netbox/commit/6f8591f76994f2b943e3c8fd9d1ab02c5d62ddd5) Closes #3052: Add Jinja2 support for export templates ### 📊 Changes **22 files changed** (+137 additions, -42 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+18 -0) 📝 `netbox/circuits/tables.py` (+1 -1) 📝 `netbox/dcim/api/views.py` (+3 -1) 📝 `netbox/dcim/fields.py` (+1 -1) 📝 `netbox/dcim/forms.py` (+2 -2) 📝 `netbox/dcim/tables.py` (+8 -8) 📝 `netbox/extras/api/serializers.py` (+18 -5) 📝 `netbox/extras/api/views.py` (+1 -0) 📝 `netbox/extras/constants.py` (+8 -0) 📝 `netbox/extras/filters.py` (+1 -1) 📝 `netbox/extras/forms.py` (+1 -2) ➕ `netbox/extras/migrations/0018_exporttemplate_add_jinja2.py` (+27 -0) 📝 `netbox/extras/models.py` (+31 -6) 📝 `netbox/ipam/tables.py` (+3 -3) 📝 `netbox/netbox/api.py` (+4 -4) 📝 `netbox/netbox/settings.py` (+1 -1) 📝 `netbox/project-static/js/forms.js` (+3 -2) 📝 `netbox/secrets/tables.py` (+1 -1) 📝 `netbox/tenancy/tables.py` (+1 -1) 📝 `netbox/virtualization/tables.py` (+2 -2) _...and 2 more files_ </details> ### 📄 Description ## Enhancements * [#3052](https://github.com/digitalocean/netbox/issues/3052) - Add Jinja2 support for export templates ## Bug Fixes * [#2937](https://github.com/digitalocean/netbox/issues/2937) - Redirect to list view after editing an object from list view * [#3036](https://github.com/digitalocean/netbox/issues/3036) - DCIM interfaces API endpoint should not include VM interfaces * [#3039](https://github.com/digitalocean/netbox/issues/3039) - Fix exception when retrieving change object for a component template via API * [#3041](https://github.com/digitalocean/netbox/issues/3041) - Fix form widget for bulk cable label update * [#3044](https://github.com/digitalocean/netbox/issues/3044) - Ignore site/rack fields when connecting a new cable via device search * [#3046](https://github.com/digitalocean/netbox/issues/3046) - Fix exception at reports API endpoint * [#3047](https://github.com/digitalocean/netbox/issues/3047) - Fix exception when writing mac address for an interface via API --- <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:52 +01:00
adam closed this issue 2025-12-29 22:21:52 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12489