[PR #357] [MERGED] Release v1.3.1 #12047

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/357
Author: @jeremystretch
Created: 7/21/2016
Status: Merged
Merged: 7/21/2016
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

  • 7a50cd2 Post-release version bump
  • 0d46a65 Unicode handling cleanup
  • 82ad479 Enforce authentication for all secrets API views
  • c9dc6d0 Fixes #332 - Add device filter to secrets api.
  • 7833410 Fixes #331: Add group field to VLAN bulk edit form
  • 50d2065 Merge pull request #333 from digitalocean/secrets-api-filter
  • 4f6f032 Update the valid urls, to expose the new api connection listing endpoint. Naming convention updated for both interface connections to match the rest.
  • c65b9fc Add an api endpoint for listing all connections
  • 2d690ca Merge pull request #314 from Zanthras/interfaceconnections
  • c643e3a Fixes #327: Disable rack assignment for installed child devices

📊 Changes

25 files changed (+203 additions, -65 deletions)

View changed files

📝 CONTRIBUTING.md (+7 -3)
📝 netbox/circuits/forms.py (+3 -3)
📝 netbox/circuits/models.py (+1 -1)
📝 netbox/dcim/api/urls.py (+2 -1)
📝 netbox/dcim/api/views.py (+8 -0)
📝 netbox/dcim/forms.py (+17 -12)
📝 netbox/dcim/models.py (+41 -6)
📝 netbox/dcim/tables.py (+7 -0)
📝 netbox/dcim/views.py (+2 -2)
📝 netbox/ipam/forms.py (+10 -9)
📝 netbox/ipam/models.py (+2 -2)
📝 netbox/ipam/tables.py (+2 -9)
📝 netbox/ipam/views.py (+1 -1)
📝 netbox/netbox/settings.py (+1 -1)
📝 netbox/secrets/api/views.py (+4 -0)
📝 netbox/secrets/filters.py (+8 -1)
📝 netbox/secrets/forms.py (+1 -1)
📝 netbox/secrets/models.py (+2 -2)
📝 netbox/templates/dcim/device_edit.html (+26 -2)
netbox/templates/utilities/templatetags/utilization_graph.html (+7 -0)

...and 5 more files

📄 Description

Improvements

  • #258 - Add an API endpoint to list interface connections
  • #303 - Improved numeric ordering of sites, racks, and devices
  • #304 - Display utilization percentage on rack list
  • #327 - Disable rack assignment for installed child devices

Bug Fixes

  • #331 - Add group field to VLAN bulk edit form
  • Miscellaneous improvements to Unicode handling

🔄 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/357 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 7/21/2016 **Status:** ✅ Merged **Merged:** 7/21/2016 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`7a50cd2`](https://github.com/netbox-community/netbox/commit/7a50cd23209888230b672a8454e79ca850aa0042) Post-release version bump - [`0d46a65`](https://github.com/netbox-community/netbox/commit/0d46a65a364447aeb77feca7b4c1327d35579d29) Unicode handling cleanup - [`82ad479`](https://github.com/netbox-community/netbox/commit/82ad4790370bfef9f29c3f43370b9d82bfdf1907) Enforce authentication for all secrets API views - [`c9dc6d0`](https://github.com/netbox-community/netbox/commit/c9dc6d04ef676604cd06fca166e9ff6459777742) Fixes #332 - Add device filter to secrets api. - [`7833410`](https://github.com/netbox-community/netbox/commit/783341017fee71c0cad935f4c1542577a40632f4) Fixes #331: Add group field to VLAN bulk edit form - [`50d2065`](https://github.com/netbox-community/netbox/commit/50d20650b40aeb53e6cf5d4cb2e32c626b6bf871) Merge pull request #333 from digitalocean/secrets-api-filter - [`4f6f032`](https://github.com/netbox-community/netbox/commit/4f6f032ca2c1949cd584af53f5321df97b4ec60b) Update the valid urls, to expose the new api connection listing endpoint. Naming convention updated for both interface connections to match the rest. - [`c65b9fc`](https://github.com/netbox-community/netbox/commit/c65b9fcb0b5ddd1f3f843f2573bf5b54a0bdcc65) Add an api endpoint for listing all connections - [`2d690ca`](https://github.com/netbox-community/netbox/commit/2d690ca38a0115ac681f7e0145e62232c8cf8c13) Merge pull request #314 from Zanthras/interfaceconnections - [`c643e3a`](https://github.com/netbox-community/netbox/commit/c643e3a74f6718fd4c5a98ee0ad1da8e096582ea) Fixes #327: Disable rack assignment for installed child devices ### 📊 Changes **25 files changed** (+203 additions, -65 deletions) <details> <summary>View changed files</summary> 📝 `CONTRIBUTING.md` (+7 -3) 📝 `netbox/circuits/forms.py` (+3 -3) 📝 `netbox/circuits/models.py` (+1 -1) 📝 `netbox/dcim/api/urls.py` (+2 -1) 📝 `netbox/dcim/api/views.py` (+8 -0) 📝 `netbox/dcim/forms.py` (+17 -12) 📝 `netbox/dcim/models.py` (+41 -6) 📝 `netbox/dcim/tables.py` (+7 -0) 📝 `netbox/dcim/views.py` (+2 -2) 📝 `netbox/ipam/forms.py` (+10 -9) 📝 `netbox/ipam/models.py` (+2 -2) 📝 `netbox/ipam/tables.py` (+2 -9) 📝 `netbox/ipam/views.py` (+1 -1) 📝 `netbox/netbox/settings.py` (+1 -1) 📝 `netbox/secrets/api/views.py` (+4 -0) 📝 `netbox/secrets/filters.py` (+8 -1) 📝 `netbox/secrets/forms.py` (+1 -1) 📝 `netbox/secrets/models.py` (+2 -2) 📝 `netbox/templates/dcim/device_edit.html` (+26 -2) ➕ `netbox/templates/utilities/templatetags/utilization_graph.html` (+7 -0) _...and 5 more files_ </details> ### 📄 Description ## Improvements - [#258](https://github.com/digitalocean/netbox/issues/258) - Add an API endpoint to list interface connections - [#303](https://github.com/digitalocean/netbox/issues/303) - Improved numeric ordering of sites, racks, and devices - [#304](https://github.com/digitalocean/netbox/issues/304) - Display utilization percentage on rack list - [#327](https://github.com/digitalocean/netbox/issues/327) - Disable rack assignment for installed child devices ## Bug Fixes - [#331](https://github.com/digitalocean/netbox/issues/331) - Add group field to VLAN bulk edit form - Miscellaneous improvements to Unicode handling --- <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#12047