[PR #2212] [MERGED] Release v2.3.5 #12333

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

📋 Pull Request Information

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

Base: masterHead: develop


📝 Commits (10+)

📊 Changes

23 files changed (+115 additions, -48 deletions)

View changed files

📝 .travis.yml (+1 -1)
📝 netbox/circuits/api/views.py (+1 -0)
📝 netbox/dcim/api/views.py (+2 -2)
📝 netbox/dcim/forms.py (+1 -1)
📝 netbox/dcim/models.py (+10 -4)
📝 netbox/dcim/tables.py (+4 -4)
📝 netbox/extras/api/views.py (+1 -1)
📝 netbox/extras/forms.py (+9 -1)
📝 netbox/extras/migrations/0007_unicode_literals.py (+1 -1)
📝 netbox/extras/migrations/0008_reports.py (+1 -1)
📝 netbox/extras/models.py (+1 -1)
📝 netbox/extras/rpc.py (+7 -7)
📝 netbox/ipam/api/views.py (+30 -5)
📝 netbox/ipam/filters.py (+16 -0)
📝 netbox/netbox/settings.py (+11 -3)
📝 netbox/netbox/urls.py (+3 -3)
📝 netbox/secrets/forms.py (+1 -1)
📝 netbox/secrets/models.py (+1 -1)
📝 netbox/templates/dcim/inc/rack_elevation.html (+1 -1)
📝 netbox/utilities/forms.py (+5 -5)

...and 3 more files

📄 Description

Enhancements

  • #2159 - Allow custom choice field to specify a default choice
  • #2177 - Include device serial number in rack elevation pop-up
  • #2194 - Added address filter to IPAddress model

Bug Fixes

  • #1826 - Corrected description of security parameters under API definition
  • #2021 - Fix recursion error when viewing API docs under Python 3.4
  • #2064 - Disable calls to online swagger validator
  • #2173 - Fixed IndexError when automaticating allocating IP addresses from larg IPv6 prefixes
  • #2181 - Raise validation error on invalid prefix_length when allocating next-available prefix
  • #2182 - ValueError can be raised when viewing the interface connections table
  • #2191 - Added missing static choices to circuits and DCIM API endpoints
  • #2192 - Prevent a 0U device from being assigned to a rack position

🔄 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/2212 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 7/2/2018 **Status:** ✅ Merged **Merged:** 7/2/2018 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`8bad3ae`](https://github.com/netbox-community/netbox/commit/8bad3aee745b54ab1f89fe185b9f6e520fdc5ee3) Post-release version bump - [`3854a9d`](https://github.com/netbox-community/netbox/commit/3854a9d633af1345a5d2a82256545fa080fb667e) Changes for Issue #2168 - [`264bf6c`](https://github.com/netbox-community/netbox/commit/264bf6c48410b8b98069c5c28dc605354403fee0) Adding SummitStack-256 - [`7c11fa7`](https://github.com/netbox-community/netbox/commit/7c11fa7b506364c1b6c60f210548adaf4e71eea0) Add a serial number to the popover in rack elevation number - [`d154b4c`](https://github.com/netbox-community/netbox/commit/d154b4cc9ef4158512405d2dfeeee471ebdcc8cb) Merge pull request #2178 from chowell5/add-serial-to-bubble - [`6dde0f0`](https://github.com/netbox-community/netbox/commit/6dde0f030a5382a1425ac7820edfa9dcf5162c02) Fixes #2182: ValueError raised when viewing the interface connections table - [`4e09b32`](https://github.com/netbox-community/netbox/commit/4e09b32dd96ab26181dc0a32bef1654154504873) Fix pycodestyle errors - [`3474697`](https://github.com/netbox-community/netbox/commit/3474697a666d3326561728dc03065ff6f31d2101) Merge pull request #2169 from tradiuz/patch-1 - [`007852a`](https://github.com/netbox-community/netbox/commit/007852a48f8e42173d80f88f8bcd520e8f681a30) Revert "Closes #2168: Add Extreme SummitStack interface form factors" - [`3f01973`](https://github.com/netbox-community/netbox/commit/3f019732b3249a59329f73dbb3f641c99fa4339c) Merge pull request #2209 from digitalocean/revert-2169-patch-1 ### 📊 Changes **23 files changed** (+115 additions, -48 deletions) <details> <summary>View changed files</summary> 📝 `.travis.yml` (+1 -1) 📝 `netbox/circuits/api/views.py` (+1 -0) 📝 `netbox/dcim/api/views.py` (+2 -2) 📝 `netbox/dcim/forms.py` (+1 -1) 📝 `netbox/dcim/models.py` (+10 -4) 📝 `netbox/dcim/tables.py` (+4 -4) 📝 `netbox/extras/api/views.py` (+1 -1) 📝 `netbox/extras/forms.py` (+9 -1) 📝 `netbox/extras/migrations/0007_unicode_literals.py` (+1 -1) 📝 `netbox/extras/migrations/0008_reports.py` (+1 -1) 📝 `netbox/extras/models.py` (+1 -1) 📝 `netbox/extras/rpc.py` (+7 -7) 📝 `netbox/ipam/api/views.py` (+30 -5) 📝 `netbox/ipam/filters.py` (+16 -0) 📝 `netbox/netbox/settings.py` (+11 -3) 📝 `netbox/netbox/urls.py` (+3 -3) 📝 `netbox/secrets/forms.py` (+1 -1) 📝 `netbox/secrets/models.py` (+1 -1) 📝 `netbox/templates/dcim/inc/rack_elevation.html` (+1 -1) 📝 `netbox/utilities/forms.py` (+5 -5) _...and 3 more files_ </details> ### 📄 Description ## Enhancements * [#2159](https://github.com/digitalocean/netbox/issues/2159) - Allow custom choice field to specify a default choice * [#2177](https://github.com/digitalocean/netbox/issues/2177) - Include device serial number in rack elevation pop-up * [#2194](https://github.com/digitalocean/netbox/issues/2194) - Added `address` filter to IPAddress model ## Bug Fixes * [#1826](https://github.com/digitalocean/netbox/issues/1826) - Corrected description of security parameters under API definition * [#2021](https://github.com/digitalocean/netbox/issues/2021) - Fix recursion error when viewing API docs under Python 3.4 * [#2064](https://github.com/digitalocean/netbox/issues/2064) - Disable calls to online swagger validator * [#2173](https://github.com/digitalocean/netbox/issues/2173) - Fixed IndexError when automaticating allocating IP addresses from larg IPv6 prefixes * [#2181](https://github.com/digitalocean/netbox/issues/2181) - Raise validation error on invalid `prefix_length` when allocating next-available prefix * [#2182](https://github.com/digitalocean/netbox/issues/2182) - ValueError can be raised when viewing the interface connections table * [#2191](https://github.com/digitalocean/netbox/issues/2191) - Added missing static choices to circuits and DCIM API endpoints * [#2192](https://github.com/digitalocean/netbox/issues/2192) - Prevent a 0U device from being assigned to a rack position --- <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:56 +01:00
adam closed this issue 2025-12-29 22:20:56 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12333