[PR #386] [MERGED] Release v1.3.2 #12049

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/386
Author: @jeremystretch
Created: 7/26/2016
Status: Merged
Merged: 7/26/2016
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

  • c96d03c Post-release version bump
  • f44b20b Fixed old links in the documentation
  • 275223e Fixes #359: Use standard serializers for related objects
  • 55ab720 Be more specific in the documentation regarding ALLOWED_HOSTS.
  • deda796 Triple -> single ticks + grammar.
  • b9c09b2 Merge pull request #360 from jallakim/allowed-hosts
  • b9223dd Updated CONTRIBUTING to discourage the use of issues for questions/discussion
  • b62cd32 Fixes #370: Notify user when secret decryption fails
  • c466dc5 Fixes #381: Implements a new RackImportTable
  • d241cce ipam.VLAN: Added description field, extended name to 64 chars

📊 Changes

43 files changed (+496 additions, -349 deletions)

View changed files

📝 CONTRIBUTING.md (+43 -30)
📝 README.md (+1 -1)
📝 docs/configuration/mandatory-settings.md (+1 -1)
📝 docs/index.md (+1 -1)
📝 netbox/circuits/forms.py (+1 -14)
📝 netbox/circuits/views.py (+0 -3)
📝 netbox/dcim/admin.py (+2 -2)
📝 netbox/dcim/api/serializers.py (+5 -5)
📝 netbox/dcim/api/views.py (+22 -39)
📝 netbox/dcim/filters.py (+1 -1)
📝 netbox/dcim/forms.py (+2 -30)
netbox/dcim/migrations/0011_devicetype_part_number.py (+20 -0)
📝 netbox/dcim/models.py (+1 -0)
📝 netbox/dcim/tables.py (+30 -34)
📝 netbox/dcim/tests/test_apis.py (+1 -0)
📝 netbox/dcim/urls.py (+30 -26)
📝 netbox/dcim/views.py (+73 -49)
📝 netbox/extras/models.py (+3 -3)
📝 netbox/ipam/api/serializers.py (+1 -1)
📝 netbox/ipam/forms.py (+7 -40)

...and 23 more files

📄 Description

Improvements

  • #292 - Added part_number field to DeviceType
  • #363 - Added a description field to the VLAN model
  • #374 - Increased VLAN name length to 64 characters
  • Enabled bulk deletion of interfaces from devices

Bug Fixes

  • #359 - Corrected the DCIM API endpoint for finding related connections
  • #370 - Notify user when secret decryption fails
  • #381 - Fix 'u_consumed' error on rack import
  • #384 - Fixed description field's maximum length on IPAM bulk edit forms
  • #385 - Fixed error when deleting a user with one or more associated UserActions

🔄 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/386 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 7/26/2016 **Status:** ✅ Merged **Merged:** 7/26/2016 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`c96d03c`](https://github.com/netbox-community/netbox/commit/c96d03cc4b3ae3f3a8b702e66ccc1932110b049a) Post-release version bump - [`f44b20b`](https://github.com/netbox-community/netbox/commit/f44b20bbda9b8aa1ce803de1d363f2211a117a71) Fixed old links in the documentation - [`275223e`](https://github.com/netbox-community/netbox/commit/275223ec53ef61ec5ef19d0662ce37ec4da0e423) Fixes #359: Use standard serializers for related objects - [`55ab720`](https://github.com/netbox-community/netbox/commit/55ab7206952d5a4b3c34cb6aa07fdf270896e519) Be more specific in the documentation regarding ALLOWED_HOSTS. - [`deda796`](https://github.com/netbox-community/netbox/commit/deda796e422da1ff7566b5363462113d9684e73e) Triple -> single ticks + grammar. - [`b9c09b2`](https://github.com/netbox-community/netbox/commit/b9c09b2fc27ce66fc877c6b99e1fa36f54ee4dd6) Merge pull request #360 from jallakim/allowed-hosts - [`b9223dd`](https://github.com/netbox-community/netbox/commit/b9223dda1af3126c25e69f8a83c0a771fce912f9) Updated CONTRIBUTING to discourage the use of issues for questions/discussion - [`b62cd32`](https://github.com/netbox-community/netbox/commit/b62cd32428ffa0c125d6f81e243cc9331196c2ad) Fixes #370: Notify user when secret decryption fails - [`c466dc5`](https://github.com/netbox-community/netbox/commit/c466dc59996ee01a810b6b31a05f2760c4de4f24) Fixes #381: Implements a new RackImportTable - [`d241cce`](https://github.com/netbox-community/netbox/commit/d241cce5020f6bfac31210b2703cb9040e955fab) ipam.VLAN: Added description field, extended name to 64 chars ### 📊 Changes **43 files changed** (+496 additions, -349 deletions) <details> <summary>View changed files</summary> 📝 `CONTRIBUTING.md` (+43 -30) 📝 `README.md` (+1 -1) 📝 `docs/configuration/mandatory-settings.md` (+1 -1) 📝 `docs/index.md` (+1 -1) 📝 `netbox/circuits/forms.py` (+1 -14) 📝 `netbox/circuits/views.py` (+0 -3) 📝 `netbox/dcim/admin.py` (+2 -2) 📝 `netbox/dcim/api/serializers.py` (+5 -5) 📝 `netbox/dcim/api/views.py` (+22 -39) 📝 `netbox/dcim/filters.py` (+1 -1) 📝 `netbox/dcim/forms.py` (+2 -30) ➕ `netbox/dcim/migrations/0011_devicetype_part_number.py` (+20 -0) 📝 `netbox/dcim/models.py` (+1 -0) 📝 `netbox/dcim/tables.py` (+30 -34) 📝 `netbox/dcim/tests/test_apis.py` (+1 -0) 📝 `netbox/dcim/urls.py` (+30 -26) 📝 `netbox/dcim/views.py` (+73 -49) 📝 `netbox/extras/models.py` (+3 -3) 📝 `netbox/ipam/api/serializers.py` (+1 -1) 📝 `netbox/ipam/forms.py` (+7 -40) _...and 23 more files_ </details> ### 📄 Description ## Improvements - [#292](https://github.com/digitalocean/netbox/issues/292) - Added part_number field to DeviceType - [#363](https://github.com/digitalocean/netbox/issues/363) - Added a description field to the VLAN model - [#374](https://github.com/digitalocean/netbox/issues/374) - Increased VLAN name length to 64 characters - Enabled bulk deletion of interfaces from devices ## Bug Fixes - [#359](https://github.com/digitalocean/netbox/issues/359) - Corrected the DCIM API endpoint for finding related connections - [#370](https://github.com/digitalocean/netbox/issues/370) - Notify user when secret decryption fails - [#381](https://github.com/digitalocean/netbox/issues/381) - Fix 'u_consumed' error on rack import - [#384](https://github.com/digitalocean/netbox/issues/384) - Fixed description field's maximum length on IPAM bulk edit forms - [#385](https://github.com/digitalocean/netbox/issues/385) - Fixed error when deleting a user with one or more associated UserActions --- <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:19:20 +01:00
adam closed this issue 2025-12-29 22:19:20 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12049