[PR #1428] [MERGED] Release v2.1.3 #12200

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

📋 Pull Request Information

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

Base: masterHead: develop


📝 Commits (10+)

  • 36d5deb Post-release version bump
  • b6afc68 Fixes #1400: Device interface shows twice on IP Addresses page
  • 50ccccc Merge pull request #1403 from huzichunjohn/issue_1400
  • 7557220 Fixes #1389: Avoid splitting carat/prefix on prefix list
  • babe42e Closes #1414: Selecting a site from the rack filters automatically updates the available rack groups
  • 8fb504c Tweaked installation docs to better accommodate Python 3
  • e6a58b6 Fixes #1415: Ignore leading/trailing semicolons in topology map device lists
  • 63757af Expanded API overview documentation
  • 3d92669 Corrected HTTP verb in API docs
  • 117f33a Fixes #1419: Allow editing image attachments without re-uploading an image

📊 Changes

18 files changed (+176 additions, -75 deletions)

View changed files

📝 docs/api/overview.md (+37 -3)
📝 docs/installation/netbox.md (+1 -1)
📝 docs/installation/web-server.md (+13 -5)
📝 netbox/circuits/api/serializers.py (+3 -3)
📝 netbox/dcim/api/serializers.py (+22 -22)
📝 netbox/dcim/models.py (+12 -0)
📝 netbox/dcim/views.py (+1 -1)
📝 netbox/extras/api/customfields.py (+2 -11)
📝 netbox/extras/api/serializers.py (+2 -2)
📝 netbox/extras/models.py (+1 -1)
📝 netbox/ipam/api/serializers.py (+4 -4)
📝 netbox/ipam/tables.py (+2 -3)
📝 netbox/netbox/settings.py (+3 -2)
📝 netbox/secrets/api/serializers.py (+2 -2)
📝 netbox/templates/dcim/rack_list.html (+33 -0)
📝 netbox/tenancy/api/serializers.py (+2 -2)
📝 netbox/utilities/api.py (+35 -12)
📝 netbox/utilities/forms.py (+1 -1)

📄 Description

Bug Fixes

  • #1330 - Raise validation error when assigning an unrelated IP as the primary IP for a device
  • #1389 - Avoid splitting carat/prefix on prefix list
  • #1400 - Removed redundant display of assigned device interface from IP address list
  • #1414 - Selecting a site from the rack filters automatically updates the available rack groups
  • #1419 - Allow editing image attachments without re-uploading an image
  • #1420 - Exclude virtual interfaces from device LLDP neighbors view
  • #1421 - Improved model validation logic for API serializers
  • Fixed page title capitalization in the browsable API

🔄 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/1428 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 8/15/2017 **Status:** ✅ Merged **Merged:** 8/15/2017 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`36d5deb`](https://github.com/netbox-community/netbox/commit/36d5debe74162142ab44c865d680120f3aaf4490) Post-release version bump - [`b6afc68`](https://github.com/netbox-community/netbox/commit/b6afc688474d79b03c587c037f87e282db1c10b6) Fixes #1400: Device interface shows twice on IP Addresses page - [`50ccccc`](https://github.com/netbox-community/netbox/commit/50ccccc3f4ebd6fde4937c5d1788f528485fc316) Merge pull request #1403 from huzichunjohn/issue_1400 - [`7557220`](https://github.com/netbox-community/netbox/commit/7557220d5d00ad551a06cdef8abe2819af3845a3) Fixes #1389: Avoid splitting carat/prefix on prefix list - [`babe42e`](https://github.com/netbox-community/netbox/commit/babe42ef352d6135d23c326105fae02245ba121b) Closes #1414: Selecting a site from the rack filters automatically updates the available rack groups - [`8fb504c`](https://github.com/netbox-community/netbox/commit/8fb504c963c5ea17387ee802fc4284c301d8946b) Tweaked installation docs to better accommodate Python 3 - [`e6a58b6`](https://github.com/netbox-community/netbox/commit/e6a58b67003f1d869a47fbd255a3645e2a1d5c76) Fixes #1415: Ignore leading/trailing semicolons in topology map device lists - [`63757af`](https://github.com/netbox-community/netbox/commit/63757af1a022dcce6acb356e65794bd910a5a60e) Expanded API overview documentation - [`3d92669`](https://github.com/netbox-community/netbox/commit/3d92669df59179c7c97634a3a681729c4b66bb6f) Corrected HTTP verb in API docs - [`117f33a`](https://github.com/netbox-community/netbox/commit/117f33afc5a0d80e6fd58d69d921a0f7c3bd084e) Fixes #1419: Allow editing image attachments without re-uploading an image ### 📊 Changes **18 files changed** (+176 additions, -75 deletions) <details> <summary>View changed files</summary> 📝 `docs/api/overview.md` (+37 -3) 📝 `docs/installation/netbox.md` (+1 -1) 📝 `docs/installation/web-server.md` (+13 -5) 📝 `netbox/circuits/api/serializers.py` (+3 -3) 📝 `netbox/dcim/api/serializers.py` (+22 -22) 📝 `netbox/dcim/models.py` (+12 -0) 📝 `netbox/dcim/views.py` (+1 -1) 📝 `netbox/extras/api/customfields.py` (+2 -11) 📝 `netbox/extras/api/serializers.py` (+2 -2) 📝 `netbox/extras/models.py` (+1 -1) 📝 `netbox/ipam/api/serializers.py` (+4 -4) 📝 `netbox/ipam/tables.py` (+2 -3) 📝 `netbox/netbox/settings.py` (+3 -2) 📝 `netbox/secrets/api/serializers.py` (+2 -2) 📝 `netbox/templates/dcim/rack_list.html` (+33 -0) 📝 `netbox/tenancy/api/serializers.py` (+2 -2) 📝 `netbox/utilities/api.py` (+35 -12) 📝 `netbox/utilities/forms.py` (+1 -1) </details> ### 📄 Description ## Bug Fixes * [#1330](https://github.com/digitalocean/netbox/issues/1330) - Raise validation error when assigning an unrelated IP as the primary IP for a device * [#1389](https://github.com/digitalocean/netbox/issues/1389) - Avoid splitting carat/prefix on prefix list * [#1400](https://github.com/digitalocean/netbox/issues/1400) - Removed redundant display of assigned device interface from IP address list * [#1414](https://github.com/digitalocean/netbox/issues/1414) - Selecting a site from the rack filters automatically updates the available rack groups * [#1419](https://github.com/digitalocean/netbox/issues/1419) - Allow editing image attachments without re-uploading an image * [#1420](https://github.com/digitalocean/netbox/issues/1420) - Exclude virtual interfaces from device LLDP neighbors view * [#1421](https://github.com/digitalocean/netbox/issues/1421) - Improved model validation logic for API serializers * Fixed page title capitalization in the browsable API --- <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:10 +01:00
adam closed this issue 2025-12-29 22:20:10 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12200