[PR #1181] [MERGED] Release v2.0.2 #12172

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/1181
Author: @jeremystretch
Created: 5/15/2017
Status: Merged
Merged: 5/15/2017
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

  • 188cfa0 Post-release version bump
  • 088f75b Added client_max_body_size to nginx config; removed statement disabling access logging
  • 83688fc Fixes #1158: Exception thrown when creating a device component with an invalid name
  • ed65721 Fixes #1160: Linkify secrets and tenants in global search results
  • 9efa70a Fixes #1159: Only superusers can see "edit IP" buttons on the device interfaces list
  • 0f97478 Fixes #1161: Fix "add another" behavior when creating an API token
  • 58bb029 Closes #1167: Introduced ChainedModelChoiceFields
  • 45bb7ee Corrected queryset filter when parent_field is None
  • 473b35f Added tenant_group/tenant form section to all objects with tenancy
  • ed80bfa Fixed selector initializations for TenancyForms

📊 Changes

34 files changed (+624 additions, -485 deletions)

View changed files

📝 docs/installation/web-server.md (+1 -1)
📝 netbox/circuits/forms.py (+28 -51)
📝 netbox/circuits/tables.py (+7 -1)
📝 netbox/dcim/api/serializers.py (+1 -0)
📝 netbox/dcim/forms.py (+106 -202)
📝 netbox/dcim/models.py (+16 -16)
📝 netbox/dcim/views.py (+3 -0)
📝 netbox/extras/models.py (+8 -4)
📝 netbox/ipam/forms.py (+132 -128)
📝 netbox/ipam/models.py (+4 -2)
📝 netbox/ipam/tables.py (+14 -3)
📝 netbox/ipam/views.py (+5 -7)
📝 netbox/netbox/settings.py (+1 -1)
📝 netbox/netbox/views.py (+1 -1)
📝 netbox/secrets/tables.py (+1 -0)
📝 netbox/templates/circuits/circuit_edit.html (+7 -1)
📝 netbox/templates/dcim/device_edit.html (+7 -1)
📝 netbox/templates/dcim/device_list.html (+65 -6)
📝 netbox/templates/dcim/inc/interface.html (+1 -1)
📝 netbox/templates/dcim/rack_edit.html (+13 -2)

...and 14 more files

📄 Description

Enhancements

  • #1122 - Include NAT inside IPs in IP address list
  • #1137 - Allow filtering devices list by rack
  • #1170 - Include A and Z sites for circuits in global search results
  • #1172 - Linkify racks in side-by-side elevations view
  • #1177 - Render planned connections as dashed lines on topology maps
  • #1179 - Adjust topology map text color based on node background
  • On all object edit forms, allow filtering the tenant list by tenant group

Bug Fixes

  • #1158 - Exception thrown when creating a device component with an invalid name
  • #1159 - Only superusers can see "edit IP" buttons on the device interfaces list
  • #1160 - Linkify secrets and tenants in global search results
  • #1161 - Fix "add another" behavior when creating an API token
  • #1166 - Fixed bulk IP address creation when assigning tenants
  • #1168 - Total count of objects missing from list view paginator
  • #1171 - Allow removing site assignment when bulk editing VLANs
  • #1173 - Tweak interface manager to fall back to naive ordering

🔄 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/1181 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 5/15/2017 **Status:** ✅ Merged **Merged:** 5/15/2017 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`188cfa0`](https://github.com/netbox-community/netbox/commit/188cfa08a976a9899734008f0b33d6edf51d3bd6) Post-release version bump - [`088f75b`](https://github.com/netbox-community/netbox/commit/088f75ba0ce7b5e1f16fa5ac67937100043be4ac) Added client_max_body_size to nginx config; removed statement disabling access logging - [`83688fc`](https://github.com/netbox-community/netbox/commit/83688fceb7ec809e57d39d2621cb6ed387e59133) Fixes #1158: Exception thrown when creating a device component with an invalid name - [`ed65721`](https://github.com/netbox-community/netbox/commit/ed657210853711c0826511b122941aec628501be) Fixes #1160: Linkify secrets and tenants in global search results - [`9efa70a`](https://github.com/netbox-community/netbox/commit/9efa70a551cddf0e490f35b7e6ed8be1589896f5) Fixes #1159: Only superusers can see "edit IP" buttons on the device interfaces list - [`0f97478`](https://github.com/netbox-community/netbox/commit/0f97478b553c477ac95d58b2dfe489b2aec8a08e) Fixes #1161: Fix "add another" behavior when creating an API token - [`58bb029`](https://github.com/netbox-community/netbox/commit/58bb029666a1d5206eb8020186e7da7874b64870) Closes #1167: Introduced ChainedModelChoiceFields - [`45bb7ee`](https://github.com/netbox-community/netbox/commit/45bb7eec0b00b6420193b85a08a1ca6de71c020c) Corrected queryset filter when parent_field is None - [`473b35f`](https://github.com/netbox-community/netbox/commit/473b35f9a3268b538f6ec6c3e02421b87b68b3c9) Added tenant_group/tenant form section to all objects with tenancy - [`ed80bfa`](https://github.com/netbox-community/netbox/commit/ed80bfaf02d1cf6c3b47a2f6a2ed79f6b83770b1) Fixed selector initializations for TenancyForms ### 📊 Changes **34 files changed** (+624 additions, -485 deletions) <details> <summary>View changed files</summary> 📝 `docs/installation/web-server.md` (+1 -1) 📝 `netbox/circuits/forms.py` (+28 -51) 📝 `netbox/circuits/tables.py` (+7 -1) 📝 `netbox/dcim/api/serializers.py` (+1 -0) 📝 `netbox/dcim/forms.py` (+106 -202) 📝 `netbox/dcim/models.py` (+16 -16) 📝 `netbox/dcim/views.py` (+3 -0) 📝 `netbox/extras/models.py` (+8 -4) 📝 `netbox/ipam/forms.py` (+132 -128) 📝 `netbox/ipam/models.py` (+4 -2) 📝 `netbox/ipam/tables.py` (+14 -3) 📝 `netbox/ipam/views.py` (+5 -7) 📝 `netbox/netbox/settings.py` (+1 -1) 📝 `netbox/netbox/views.py` (+1 -1) 📝 `netbox/secrets/tables.py` (+1 -0) 📝 `netbox/templates/circuits/circuit_edit.html` (+7 -1) 📝 `netbox/templates/dcim/device_edit.html` (+7 -1) 📝 `netbox/templates/dcim/device_list.html` (+65 -6) 📝 `netbox/templates/dcim/inc/interface.html` (+1 -1) 📝 `netbox/templates/dcim/rack_edit.html` (+13 -2) _...and 14 more files_ </details> ### 📄 Description ## Enhancements * [#1122](https://github.com/digitalocean/netbox/issues/1122) - Include NAT inside IPs in IP address list * [#1137](https://github.com/digitalocean/netbox/issues/1137) - Allow filtering devices list by rack * [#1170](https://github.com/digitalocean/netbox/issues/1170) - Include A and Z sites for circuits in global search results * [#1172](https://github.com/digitalocean/netbox/issues/1172) - Linkify racks in side-by-side elevations view * [#1177](https://github.com/digitalocean/netbox/issues/1177) - Render planned connections as dashed lines on topology maps * [#1179](https://github.com/digitalocean/netbox/issues/1179) - Adjust topology map text color based on node background * On all object edit forms, allow filtering the tenant list by tenant group ## Bug Fixes * [#1158](https://github.com/digitalocean/netbox/issues/1158) - Exception thrown when creating a device component with an invalid name * [#1159](https://github.com/digitalocean/netbox/issues/1159) - Only superusers can see "edit IP" buttons on the device interfaces list * [#1160](https://github.com/digitalocean/netbox/issues/1160) - Linkify secrets and tenants in global search results * [#1161](https://github.com/digitalocean/netbox/issues/1161) - Fix "add another" behavior when creating an API token * [#1166](https://github.com/digitalocean/netbox/issues/1166) - Fixed bulk IP address creation when assigning tenants * [#1168](https://github.com/digitalocean/netbox/issues/1168) - Total count of objects missing from list view paginator * [#1171](https://github.com/digitalocean/netbox/issues/1171) - Allow removing site assignment when bulk editing VLANs * [#1173](https://github.com/digitalocean/netbox/issues/1173) - Tweak interface manager to fall back to naive ordering --- <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:02 +01:00
adam closed this issue 2025-12-29 22:20:02 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12172