[PR #1461] [MERGED] Release v2.1.4 #12203

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

📋 Pull Request Information

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

Base: masterHead: develop


📝 Commits (10+)

  • 0c1594b Post-release version bump
  • 416aeb4 docs: web-server link to new ssl tutorials for 16.04
  • 9a25b54 Merge pull request #1430 from xmudrii/fix-docs
  • 70a6b17 Fixes #1429: Fixed uptime formatting on device status page
  • 83085d0 Revised the GitHub issue template
  • fa6d933 Converted list of issue types to a task list
  • 7843a6b Fixed devicetype_id filter for DeviceType components
  • ae73e6f Removed task list formatting
  • eb994a6 Added style to BaseTable's empty_text
  • 6f8d3f7 Fixes #1443: Fixed API validation error involving custom field data

📊 Changes

31 files changed (+322 additions, -178 deletions)

View changed files

📝 .github/ISSUE_TEMPLATE.md (+30 -17)
📝 docs/configuration/optional-settings.md (+8 -0)
📝 docs/installation/web-server.md (+2 -2)
📝 netbox/circuits/forms.py (+1 -0)
📝 netbox/circuits/models.py (+0 -28)
📝 netbox/dcim/constants.py (+2 -0)
📝 netbox/dcim/filters.py (+1 -0)
netbox/dcim/migrations/0042_interface_ff_10ge_cx4.py (+25 -0)
netbox/dcim/migrations/0043_device_component_name_lengths.py (+70 -0)
📝 netbox/dcim/models.py (+11 -11)
📝 netbox/ipam/views.py (+4 -0)
📝 netbox/netbox/configuration.example.py (+4 -0)
📝 netbox/netbox/forms.py (+1 -1)
📝 netbox/netbox/settings.py (+6 -6)
📝 netbox/templates/_base.html (+6 -8)
📝 netbox/templates/circuits/circuit.html (+1 -1)
📝 netbox/templates/circuits/circuit_edit.html (+19 -1)
📝 netbox/templates/circuits/circuittermination_edit.html (+26 -2)
📝 netbox/templates/circuits/inc/circuit_termination.html (+5 -3)
netbox/templates/circuits/inc/speed_widget.html (+17 -0)

...and 11 more files

📄 Description

Enhancements

  • #1326 - Added dropdown widget with common values for circuit speed fields
  • #1341 - Added a MEDIA_ROOT configuration setting to specify where uploaded files are stored on disk
  • #1376 - Ignore anycast addresses when detecting duplicate IPs
  • #1402 - Increased max length of name field for device components
  • #1431 - Added interface form factor for 10GBASE-CX4
  • #1432 - Added a commit_rate field to the circuits list search form
  • #1460 - Hostnames with no domain are now acceptable in custom URL fields

Bug Fixes

  • #1429 - Fixed uptime formatting on device status page
  • #1433 - Fixed devicetype_id filter for DeviceType components
  • #1443 - Fixed API validation error involving custom field data
  • #1458 - Corrected permission name on prefix/VLAN roles list

🔄 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/1461 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 8/30/2017 **Status:** ✅ Merged **Merged:** 8/30/2017 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`0c1594b`](https://github.com/netbox-community/netbox/commit/0c1594b8f8fb355f793c6709f583b27bba9e042d) Post-release version bump - [`416aeb4`](https://github.com/netbox-community/netbox/commit/416aeb40724a5777500c6f8a3bfe1d07f1f9cb80) docs: web-server link to new ssl tutorials for 16.04 - [`9a25b54`](https://github.com/netbox-community/netbox/commit/9a25b5458dfee671547aa91ac7b3e9b526334f38) Merge pull request #1430 from xmudrii/fix-docs - [`70a6b17`](https://github.com/netbox-community/netbox/commit/70a6b171d06b8c2fe417d7e6499bcc14d14406ef) Fixes #1429: Fixed uptime formatting on device status page - [`83085d0`](https://github.com/netbox-community/netbox/commit/83085d08ca9df461956300ceab9a09b854cfaacf) Revised the GitHub issue template - [`fa6d933`](https://github.com/netbox-community/netbox/commit/fa6d9335446865559acba781926f813f8068eb68) Converted list of issue types to a task list - [`7843a6b`](https://github.com/netbox-community/netbox/commit/7843a6bf77fe20e544c9b8abfcd9f763913eecce) Fixed devicetype_id filter for DeviceType components - [`ae73e6f`](https://github.com/netbox-community/netbox/commit/ae73e6f04dcdbe66e703cf4c3b8f30fabc155fa9) Removed task list formatting - [`eb994a6`](https://github.com/netbox-community/netbox/commit/eb994a691a8cb444582c3ac24f1cb584b91c1cc4) Added style to BaseTable's empty_text - [`6f8d3f7`](https://github.com/netbox-community/netbox/commit/6f8d3f7a57b0334d02d2bbc85dded1708fedc427) Fixes #1443: Fixed API validation error involving custom field data ### 📊 Changes **31 files changed** (+322 additions, -178 deletions) <details> <summary>View changed files</summary> 📝 `.github/ISSUE_TEMPLATE.md` (+30 -17) 📝 `docs/configuration/optional-settings.md` (+8 -0) 📝 `docs/installation/web-server.md` (+2 -2) 📝 `netbox/circuits/forms.py` (+1 -0) 📝 `netbox/circuits/models.py` (+0 -28) 📝 `netbox/dcim/constants.py` (+2 -0) 📝 `netbox/dcim/filters.py` (+1 -0) ➕ `netbox/dcim/migrations/0042_interface_ff_10ge_cx4.py` (+25 -0) ➕ `netbox/dcim/migrations/0043_device_component_name_lengths.py` (+70 -0) 📝 `netbox/dcim/models.py` (+11 -11) 📝 `netbox/ipam/views.py` (+4 -0) 📝 `netbox/netbox/configuration.example.py` (+4 -0) 📝 `netbox/netbox/forms.py` (+1 -1) 📝 `netbox/netbox/settings.py` (+6 -6) 📝 `netbox/templates/_base.html` (+6 -8) 📝 `netbox/templates/circuits/circuit.html` (+1 -1) 📝 `netbox/templates/circuits/circuit_edit.html` (+19 -1) 📝 `netbox/templates/circuits/circuittermination_edit.html` (+26 -2) 📝 `netbox/templates/circuits/inc/circuit_termination.html` (+5 -3) ➕ `netbox/templates/circuits/inc/speed_widget.html` (+17 -0) _...and 11 more files_ </details> ### 📄 Description ## Enhancements * [#1326](https://github.com/digitalocean/netbox/issues/1326) - Added dropdown widget with common values for circuit speed fields * [#1341](https://github.com/digitalocean/netbox/issues/1341) - Added a `MEDIA_ROOT` configuration setting to specify where uploaded files are stored on disk * [#1376](https://github.com/digitalocean/netbox/issues/1376) - Ignore anycast addresses when detecting duplicate IPs * [#1402](https://github.com/digitalocean/netbox/issues/1402) - Increased max length of name field for device components * [#1431](https://github.com/digitalocean/netbox/issues/1431) - Added interface form factor for 10GBASE-CX4 * [#1432](https://github.com/digitalocean/netbox/issues/1432) - Added a `commit_rate` field to the circuits list search form * [#1460](https://github.com/digitalocean/netbox/issues/1460) - Hostnames with no domain are now acceptable in custom URL fields ## Bug Fixes * [#1429](https://github.com/digitalocean/netbox/issues/1429) - Fixed uptime formatting on device status page * [#1433](https://github.com/digitalocean/netbox/issues/1433) - Fixed `devicetype_id` filter for DeviceType components * [#1443](https://github.com/digitalocean/netbox/issues/1443) - Fixed API validation error involving custom field data * [#1458](https://github.com/digitalocean/netbox/issues/1458) - Corrected permission name on prefix/VLAN roles list --- <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:13 +01:00
adam closed this issue 2025-12-29 22:20:14 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12203