[PR #2041] [MERGED] Release v2.3.3 #12305

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/2041
Author: @jeremystretch
Created: 4/19/2018
Status: Merged
Merged: 4/19/2018
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

  • 88adc5c Post-release version bump
  • 4ec6e52 Closes #1990: Improved search function when assigning an IP address to an interface
  • 94b12e5 Fixes #1993: Corrected status choices in site CSV import form
  • 3f3b385 Fixes #1999: Added missing description field to site edit form
  • 20cb13e Fixes #1975: Correct filtering logic for custom boolean fields
  • 07364ab Fixes #1988: Order interfaces naturally when bulk renaming
  • 2c8bea1 avoid illegal casts on large integers
  • fd62a24 Merge pull request #2020 from Wikia/intfix
  • 81c027e Fixes #2023: Manufacturer should not be a required field when importing platforms
  • ef84889 Fixes #2022: Show 0 for zero-value fields on CSV export

📊 Changes

13 files changed (+64 additions, -40 deletions)

View changed files

📝 netbox/dcim/forms.py (+6 -5)
📝 netbox/dcim/querysets.py (+7 -7)
📝 netbox/dcim/views.py (+11 -9)
📝 netbox/extras/filters.py (+10 -3)
📝 netbox/ipam/forms.py (+3 -5)
📝 netbox/ipam/tables.py (+1 -1)
📝 netbox/ipam/views.py (+2 -2)
📝 netbox/netbox/settings.py (+1 -1)
📝 netbox/templates/dcim/site_edit.html (+1 -0)
📝 netbox/templates/ipam/ipaddress_assign.html (+1 -1)
📝 netbox/utilities/forms.py (+2 -1)
📝 netbox/utilities/utils.py (+1 -1)
📝 netbox/virtualization/api/serializers.py (+18 -4)

📄 Description

Enhancements

  • #1990 - Improved search function when assigning an IP address to an interface

Bug Fixes

  • #1975 - Correct filtering logic for custom boolean fields
  • #1988 - Order interfaces naturally when bulk renaming
  • #1993 - Corrected status choices in site CSV import form
  • #1999 - Added missing description field to site edit form
  • #2012 - Fixed deselection of an IP address as the primary IP for its parent device/VM
  • #2014 - Allow assignment of VLANs to VM interfaces via the API
  • #2019 - Avoid casting oversized numbers as integers
  • #2022 - Show 0 for zero-value fields on CSV export
  • #2023 - Manufacturer should not be a required field when importing platforms
  • #2037 - Fixed IndexError exception when attempting to create a new rack reservation

🔄 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/2041 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 4/19/2018 **Status:** ✅ Merged **Merged:** 4/19/2018 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`88adc5c`](https://github.com/netbox-community/netbox/commit/88adc5ca86f6dbc22bad766a812c17cb72c83d2d) Post-release version bump - [`4ec6e52`](https://github.com/netbox-community/netbox/commit/4ec6e52e7320011300aaa33ad1199845603593d2) Closes #1990: Improved search function when assigning an IP address to an interface - [`94b12e5`](https://github.com/netbox-community/netbox/commit/94b12e506e66025b4711273c972613cec645b59b) Fixes #1993: Corrected status choices in site CSV import form - [`3f3b385`](https://github.com/netbox-community/netbox/commit/3f3b385de725ddd32f162420c3dcc1c6102d4793) Fixes #1999: Added missing description field to site edit form - [`20cb13e`](https://github.com/netbox-community/netbox/commit/20cb13e1bbdca9b9f59cfeb8e288d8650fc34bb5) Fixes #1975: Correct filtering logic for custom boolean fields - [`07364ab`](https://github.com/netbox-community/netbox/commit/07364abf9e9ff193bad49b790e657382cf186f0c) Fixes #1988: Order interfaces naturally when bulk renaming - [`2c8bea1`](https://github.com/netbox-community/netbox/commit/2c8bea1b5974c99777f17f6d7aec2041cd689cdb) avoid illegal casts on large integers - [`fd62a24`](https://github.com/netbox-community/netbox/commit/fd62a248ee07411a0f9c344dfc563388f9f5af5f) Merge pull request #2020 from Wikia/intfix - [`81c027e`](https://github.com/netbox-community/netbox/commit/81c027e7cffd73238ca108ff3bcf2ae4344a25c4) Fixes #2023: Manufacturer should not be a required field when importing platforms - [`ef84889`](https://github.com/netbox-community/netbox/commit/ef84889a573ea06308ade4af02cdcf5aa7c1798a) Fixes #2022: Show 0 for zero-value fields on CSV export ### 📊 Changes **13 files changed** (+64 additions, -40 deletions) <details> <summary>View changed files</summary> 📝 `netbox/dcim/forms.py` (+6 -5) 📝 `netbox/dcim/querysets.py` (+7 -7) 📝 `netbox/dcim/views.py` (+11 -9) 📝 `netbox/extras/filters.py` (+10 -3) 📝 `netbox/ipam/forms.py` (+3 -5) 📝 `netbox/ipam/tables.py` (+1 -1) 📝 `netbox/ipam/views.py` (+2 -2) 📝 `netbox/netbox/settings.py` (+1 -1) 📝 `netbox/templates/dcim/site_edit.html` (+1 -0) 📝 `netbox/templates/ipam/ipaddress_assign.html` (+1 -1) 📝 `netbox/utilities/forms.py` (+2 -1) 📝 `netbox/utilities/utils.py` (+1 -1) 📝 `netbox/virtualization/api/serializers.py` (+18 -4) </details> ### 📄 Description ## Enhancements * [#1990](https://github.com/digitalocean/netbox/issues/1990) - Improved search function when assigning an IP address to an interface ## Bug Fixes * [#1975](https://github.com/digitalocean/netbox/issues/1975) - Correct filtering logic for custom boolean fields * [#1988](https://github.com/digitalocean/netbox/issues/1988) - Order interfaces naturally when bulk renaming * [#1993](https://github.com/digitalocean/netbox/issues/1993) - Corrected status choices in site CSV import form * [#1999](https://github.com/digitalocean/netbox/issues/1999) - Added missing description field to site edit form * [#2012](https://github.com/digitalocean/netbox/issues/2012) - Fixed deselection of an IP address as the primary IP for its parent device/VM * [#2014](https://github.com/digitalocean/netbox/issues/2014) - Allow assignment of VLANs to VM interfaces via the API * [#2019](https://github.com/digitalocean/netbox/issues/2019) - Avoid casting oversized numbers as integers * [#2022](https://github.com/digitalocean/netbox/issues/2022) - Show 0 for zero-value fields on CSV export * [#2023](https://github.com/digitalocean/netbox/issues/2023) - Manufacturer should not be a required field when importing platforms * [#2037](https://github.com/digitalocean/netbox/issues/2037) - Fixed IndexError exception when attempting to create a new rack reservation --- <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:46 +01:00
adam closed this issue 2025-12-29 22:20:46 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12305