[PR #1230] [MERGED] Release v2.0.4 #12180

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

📋 Pull Request Information

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

Base: masterHead: develop


📝 Commits (10+)

  • 769232f Post-release version bump
  • c454bfc Fixed incorrect message
  • fb85867 Converted all object views to class-based views
  • eece8a0 Fixes #1207: Include nested LAG serializer when showing interface connections (API)
  • 27c94d9 Fixes #1206: Fix redirection in admin UI after activating secret keys when BASE_PATH is set
  • e6b4d87 Converted all user views to CBVs
  • 713c7cd Cleaned up 500 error template
  • 3fa63b7 Converted home view to a CBV
  • 77f28e3 Fixes #1214: Add status to list of required fields on child device import form
  • d5587de Fixes #1213: Corrected table header ordering links

📊 Changes

129 files changed (+1766 additions, -786 deletions)

View changed files

📝 CONTRIBUTING.md (+8 -0)
📝 docs/installation/upgrading.md (+8 -0)
📝 netbox/circuits/api/serializers.py (+2 -0)
📝 netbox/circuits/api/urls.py (+2 -0)
📝 netbox/circuits/api/views.py (+3 -1)
📝 netbox/circuits/apps.py (+2 -0)
📝 netbox/circuits/filters.py (+2 -0)
📝 netbox/circuits/forms.py (+16 -14)
netbox/circuits/migrations/0009_unicode_literals.py (+81 -0)
📝 netbox/circuits/models.py (+4 -2)
📝 netbox/circuits/signals.py (+2 -0)
📝 netbox/circuits/tables.py (+2 -1)
📝 netbox/circuits/tests/test_api.py (+2 -0)
📝 netbox/circuits/urls.py (+4 -2)
📝 netbox/circuits/views.py (+37 -28)
📝 netbox/dcim/api/exceptions.py (+2 -0)
📝 netbox/dcim/api/serializers.py (+4 -1)
📝 netbox/dcim/api/urls.py (+2 -0)
📝 netbox/dcim/api/views.py (+2 -0)
📝 netbox/dcim/apps.py (+2 -0)

...and 80 more files

📄 Description

Bug Fixes

  • #1206 - Fix redirection in admin UI after activating secret keys when BASE_PATH is set
  • #1207 - Include nested LAG serializer when showing interface connections (API)
  • #1210 - Fix TemplateDoesNotExist errors on browsable API views
  • #1212 - Allow assigning new VLANs to global VLAN groups
  • #1213 - Corrected table header ordering links on object list views
  • #1214 - Add status to list of required fields on child device import form
  • #1219 - Fix image attachment URLs when BASE_PATH is set
  • #1220 - Suppressed innocuous warning about untracked migrations under Python 3
  • #1229 - Fix validation error on forms where API search is used

🔄 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/1230 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 5/25/2017 **Status:** ✅ Merged **Merged:** 5/25/2017 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`769232f`](https://github.com/netbox-community/netbox/commit/769232f368855531646cdf326cee7a79d36c1c0e) Post-release version bump - [`c454bfc`](https://github.com/netbox-community/netbox/commit/c454bfcd84a2d28e2f74547979d981fb547e6666) Fixed incorrect message - [`fb85867`](https://github.com/netbox-community/netbox/commit/fb85867d72869fdc8963e902bf0e3e932ae00229) Converted all object views to class-based views - [`eece8a0`](https://github.com/netbox-community/netbox/commit/eece8a0e26c2d517fe6e0808169843e8c48f86e8) Fixes #1207: Include nested LAG serializer when showing interface connections (API) - [`27c94d9`](https://github.com/netbox-community/netbox/commit/27c94d9874878c1f31ac376accbc17b1ccf45f15) Fixes #1206: Fix redirection in admin UI after activating secret keys when BASE_PATH is set - [`e6b4d87`](https://github.com/netbox-community/netbox/commit/e6b4d8793960d9b3047a41e885a2db1038f77797) Converted all user views to CBVs - [`713c7cd`](https://github.com/netbox-community/netbox/commit/713c7cd8e39be801bbc251cdb26ffac78ea2b678) Cleaned up 500 error template - [`3fa63b7`](https://github.com/netbox-community/netbox/commit/3fa63b774ea5ca3da67d78460b41c5b467e3cf5d) Converted home view to a CBV - [`77f28e3`](https://github.com/netbox-community/netbox/commit/77f28e3441ff98c68083ecbd3ebdf5d21049bec0) Fixes #1214: Add status to list of required fields on child device import form - [`d5587de`](https://github.com/netbox-community/netbox/commit/d5587de316179d382d1a2e4d80b8d3c47c27bcf6) Fixes #1213: Corrected table header ordering links ### 📊 Changes **129 files changed** (+1766 additions, -786 deletions) <details> <summary>View changed files</summary> 📝 `CONTRIBUTING.md` (+8 -0) 📝 `docs/installation/upgrading.md` (+8 -0) 📝 `netbox/circuits/api/serializers.py` (+2 -0) 📝 `netbox/circuits/api/urls.py` (+2 -0) 📝 `netbox/circuits/api/views.py` (+3 -1) 📝 `netbox/circuits/apps.py` (+2 -0) 📝 `netbox/circuits/filters.py` (+2 -0) 📝 `netbox/circuits/forms.py` (+16 -14) ➕ `netbox/circuits/migrations/0009_unicode_literals.py` (+81 -0) 📝 `netbox/circuits/models.py` (+4 -2) 📝 `netbox/circuits/signals.py` (+2 -0) 📝 `netbox/circuits/tables.py` (+2 -1) 📝 `netbox/circuits/tests/test_api.py` (+2 -0) 📝 `netbox/circuits/urls.py` (+4 -2) 📝 `netbox/circuits/views.py` (+37 -28) 📝 `netbox/dcim/api/exceptions.py` (+2 -0) 📝 `netbox/dcim/api/serializers.py` (+4 -1) 📝 `netbox/dcim/api/urls.py` (+2 -0) 📝 `netbox/dcim/api/views.py` (+2 -0) 📝 `netbox/dcim/apps.py` (+2 -0) _...and 80 more files_ </details> ### 📄 Description ## Bug Fixes * [#1206](https://github.com/digitalocean/netbox/issues/1206) - Fix redirection in admin UI after activating secret keys when BASE_PATH is set * [#1207](https://github.com/digitalocean/netbox/issues/1207) - Include nested LAG serializer when showing interface connections (API) * [#1210](https://github.com/digitalocean/netbox/issues/1210) - Fix TemplateDoesNotExist errors on browsable API views * [#1212](https://github.com/digitalocean/netbox/issues/1212) - Allow assigning new VLANs to global VLAN groups * [#1213](https://github.com/digitalocean/netbox/issues/1213) - Corrected table header ordering links on object list views * [#1214](https://github.com/digitalocean/netbox/issues/1214) - Add status to list of required fields on child device import form * [#1219](https://github.com/digitalocean/netbox/issues/1219) - Fix image attachment URLs when BASE_PATH is set * [#1220](https://github.com/digitalocean/netbox/issues/1220) - Suppressed innocuous warning about untracked migrations under Python 3 * [#1229](https://github.com/digitalocean/netbox/issues/1229) - Fix validation error on forms where API search is used --- <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:04 +01:00
adam closed this issue 2025-12-29 22:20:04 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12180