[PR #2653] [MERGED] Release v2.4.9 #12415

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

📋 Pull Request Information

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

Base: masterHead: develop


📝 Commits (10+)

📊 Changes

26 files changed (+297 additions, -48 deletions)

View changed files

📝 CHANGELOG.md (+21 -0)
📝 docs/administration/netbox-shell.md (+0 -0)
📝 docs/development/extending-models.md (+9 -5)
📝 docs/development/style-guide.md (+13 -0)
📝 docs/installation/2-netbox.md (+3 -3)
📝 docs/installation/migrating-to-python3.md (+6 -0)
📝 mkdocs.yml (+1 -0)
📝 netbox/dcim/api/serializers.py (+5 -0)
📝 netbox/dcim/constants.py (+22 -0)
📝 netbox/dcim/filters.py (+6 -2)
📝 netbox/dcim/forms.py (+20 -3)
📝 netbox/dcim/migrations/0062_interface_mtu.py (+2 -2)
📝 netbox/extras/migrations/0001_initial_squashed_0010_customfield_filter_logic.py (+7 -9)
📝 netbox/extras/migrations/0008_reports.py (+7 -8)
📝 netbox/extras/models.py (+4 -4)
📝 netbox/extras/webhooks.py (+1 -1)
📝 netbox/extras/webhooks_worker.py (+2 -2)
📝 netbox/netbox/settings.py (+4 -1)
📝 netbox/project-static/js/livesearch.js (+2 -2)
📝 netbox/templates/_base.html (+1 -1)

...and 6 more files

📄 Description

Enhancements

  • #2089 - Add SONET interface form factors
  • #2495 - Enable deep-merging of config context data
  • #2597 - Add FibreChannel SFP28 (32GFC) interface form factor

Bug Fixes

  • #2400 - Correct representation of nested object assignment in API docs
  • #2576 - Correct type for count_* fields in site API representation
  • #2606 - Fixed filtering for interfaces with a virtual form factor
  • #2611 - Fix error handling when assigning a clustered device to a different site
  • #2613 - Decrease live search minimum characters to three
  • #2615 - Tweak live search widget to use brief format for API requests
  • #2623 - Removed the need to pass the model class to the rqworker process for webhooks
  • #2634 - Enforce consistent representation of unnamed devices in 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/2653 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 12/7/2018 **Status:** ✅ Merged **Merged:** 12/7/2018 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`34bfb89`](https://github.com/netbox-community/netbox/commit/34bfb899d17c0bf152da05b7d645978851b913c4) Post-release version bump - [`f052bbc`](https://github.com/netbox-community/netbox/commit/f052bbc36e5849060aa347a263d7be56f0218a72) Refactor Extras Migration Version Check (#2604) - [`7346083`](https://github.com/netbox-community/netbox/commit/7346083b2630b4a2b645f530d5268d0b25170dd4) Fixes #2606 - Added MultipleChoiceFilter for form_factor (#2610) - [`90a4b62`](https://github.com/netbox-community/netbox/commit/90a4b629769d106a4591c0d7415eab10980e4153) Changelog for #2606 - [`f3aef37`](https://github.com/netbox-community/netbox/commit/f3aef371631b13d7dc4ecd47bbf4ca93eca89c51) Add developer guidance for the introduction of new dependencies - [`5d07a5a`](https://github.com/netbox-community/netbox/commit/5d07a5a6703e3162c4ebc701bb890f3ae4996d2b) Fixes #2613: Decrease live search minimum characters to three - [`d274470`](https://github.com/netbox-community/netbox/commit/d2744700c682b97e948e6a2c728e077ada22ea61) Fixes #2615: Tweak live search widget to use brief format for API requests - [`c3cdf8e`](https://github.com/netbox-community/netbox/commit/c3cdf8e97e43338cff5581dc9b9be2814d85caa5) Fix type mismatches in API view (#2429) - [`112aaea`](https://github.com/netbox-community/netbox/commit/112aaea51fcfbd55e1c5c4dd760bfc3b058b6de5) Updated changelog for #2400 - [`c6d048c`](https://github.com/netbox-community/netbox/commit/c6d048ca51e612209655b3902217e0fcea91374f) Fixes #2576: Correct type for count_* fields in site API representation ### 📊 Changes **26 files changed** (+297 additions, -48 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+21 -0) 📝 `docs/administration/netbox-shell.md` (+0 -0) 📝 `docs/development/extending-models.md` (+9 -5) 📝 `docs/development/style-guide.md` (+13 -0) 📝 `docs/installation/2-netbox.md` (+3 -3) 📝 `docs/installation/migrating-to-python3.md` (+6 -0) 📝 `mkdocs.yml` (+1 -0) 📝 `netbox/dcim/api/serializers.py` (+5 -0) 📝 `netbox/dcim/constants.py` (+22 -0) 📝 `netbox/dcim/filters.py` (+6 -2) 📝 `netbox/dcim/forms.py` (+20 -3) 📝 `netbox/dcim/migrations/0062_interface_mtu.py` (+2 -2) 📝 `netbox/extras/migrations/0001_initial_squashed_0010_customfield_filter_logic.py` (+7 -9) 📝 `netbox/extras/migrations/0008_reports.py` (+7 -8) 📝 `netbox/extras/models.py` (+4 -4) 📝 `netbox/extras/webhooks.py` (+1 -1) 📝 `netbox/extras/webhooks_worker.py` (+2 -2) 📝 `netbox/netbox/settings.py` (+4 -1) 📝 `netbox/project-static/js/livesearch.js` (+2 -2) 📝 `netbox/templates/_base.html` (+1 -1) _...and 6 more files_ </details> ### 📄 Description ## Enhancements * [#2089](https://github.com/digitalocean/netbox/issues/2089) - Add SONET interface form factors * [#2495](https://github.com/digitalocean/netbox/issues/2495) - Enable deep-merging of config context data * [#2597](https://github.com/digitalocean/netbox/issues/2597) - Add FibreChannel SFP28 (32GFC) interface form factor ## Bug Fixes * [#2400](https://github.com/digitalocean/netbox/issues/2400) - Correct representation of nested object assignment in API docs * [#2576](https://github.com/digitalocean/netbox/issues/2576) - Correct type for count_* fields in site API representation * [#2606](https://github.com/digitalocean/netbox/issues/2606) - Fixed filtering for interfaces with a virtual form factor * [#2611](https://github.com/digitalocean/netbox/issues/2611) - Fix error handling when assigning a clustered device to a different site * [#2613](https://github.com/digitalocean/netbox/issues/2613) - Decrease live search minimum characters to three * [#2615](https://github.com/digitalocean/netbox/issues/2615) - Tweak live search widget to use brief format for API requests * [#2623](https://github.com/digitalocean/netbox/issues/2623) - Removed the need to pass the model class to the rqworker process for webhooks * [#2634](https://github.com/digitalocean/netbox/issues/2634) - Enforce consistent representation of unnamed devices in 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:21:22 +01:00
adam closed this issue 2025-12-29 22:21:22 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12415