[PR #438] [MERGED] Release v1.4.2 #12058

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/438
Author: @jeremystretch
Created: 8/6/2016
Status: Merged
Merged: 8/6/2016
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

  • 4ee63f4 Post-release version bump
  • ea2e734 Post-release version bump
  • e413012 Fixes #427: Prevent error when duplicate IPs are present in a prefix's IP list
  • 6184eb6 Fixes #425: Ignore leading and trailing periods when generating a slug
  • 76b9a1c #167: Added new interface form factors
  • 29c4394 Fixes #429: Correct redirection of user when adding a secret to a device
  • c3c3b80 Fixed toggling of secret lock/unlock buttons
  • 04c9ebd Fixes #434: Increased user actions history on home page from 15 to 50; restored admin UI access but disabled bulk deletion function
  • ac2aa7e Fixes #435: Added a "add prefix" button to the VLAN view
  • ededd3f Fixes #253: Added ability to search by prefix to IP address filters

📊 Changes

14 files changed (+128 additions, -36 deletions)

View changed files

netbox/dcim/migrations/0013_add_interface_form_factors.py (+25 -0)
📝 netbox/dcim/models.py (+51 -8)
📝 netbox/extras/admin.py (+6 -0)
📝 netbox/ipam/filters.py (+14 -0)
📝 netbox/ipam/forms.py (+6 -1)
📝 netbox/ipam/views.py (+4 -4)
📝 netbox/netbox/settings.py (+1 -1)
📝 netbox/netbox/views.py (+1 -1)
📝 netbox/project-static/js/forms.js (+5 -5)
📝 netbox/project-static/js/secrets.js (+2 -2)
📝 netbox/secrets/views.py (+1 -1)
📝 netbox/templates/ipam/vlan.html (+8 -0)
📝 netbox/templates/secrets/secret_edit.html (+2 -12)
📝 netbox/utilities/forms.py (+2 -1)

📄 Description

Improvements

  • #167 - Added new interface form factors
  • #253 - Added new interface form factors
  • #434 - Restored admin UI access to user action history (however bulk deletion is disabled)
  • #435 - Added an "add prefix" button to the VLAN view

Bug Fixes

  • #425 - Ignore leading and trailing periods when generating a slug
  • #427 - Prevent error when duplicate IPs are present in a prefix's IP list
  • #429 - Correct redirection of user when adding a secret to a device

🔄 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/438 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 8/6/2016 **Status:** ✅ Merged **Merged:** 8/6/2016 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`4ee63f4`](https://github.com/netbox-community/netbox/commit/4ee63f4ff8cd052c1f0e776ed697804239dae235) Post-release version bump - [`ea2e734`](https://github.com/netbox-community/netbox/commit/ea2e734ba8b5cce8da5cc57dff6b8b62738aaa0d) Post-release version bump - [`e413012`](https://github.com/netbox-community/netbox/commit/e413012cbbabe9aea701237e4e86a051caa6b0fe) Fixes #427: Prevent error when duplicate IPs are present in a prefix's IP list - [`6184eb6`](https://github.com/netbox-community/netbox/commit/6184eb6664ebd3355f50e54e138115e0427003af) Fixes #425: Ignore leading and trailing periods when generating a slug - [`76b9a1c`](https://github.com/netbox-community/netbox/commit/76b9a1c3af02d114462a4ed3cd950d24ea0a586a) #167: Added new interface form factors - [`29c4394`](https://github.com/netbox-community/netbox/commit/29c4394e64543ebb4fab8e9f82830f7ece24a36b) Fixes #429: Correct redirection of user when adding a secret to a device - [`c3c3b80`](https://github.com/netbox-community/netbox/commit/c3c3b80cd9c6a9bc8813481c5da74a10a63a82ac) Fixed toggling of secret lock/unlock buttons - [`04c9ebd`](https://github.com/netbox-community/netbox/commit/04c9ebd46dfda7cb8dee06749cc46f6a47d85d2e) Fixes #434: Increased user actions history on home page from 15 to 50; restored admin UI access but disabled bulk deletion function - [`ac2aa7e`](https://github.com/netbox-community/netbox/commit/ac2aa7ea897c4189714ba6f277743388d308448d) Fixes #435: Added a "add prefix" button to the VLAN view - [`ededd3f`](https://github.com/netbox-community/netbox/commit/ededd3f4647cd2b8e60fafeddf3c89d3894eef0c) Fixes #253: Added ability to search by prefix to IP address filters ### 📊 Changes **14 files changed** (+128 additions, -36 deletions) <details> <summary>View changed files</summary> ➕ `netbox/dcim/migrations/0013_add_interface_form_factors.py` (+25 -0) 📝 `netbox/dcim/models.py` (+51 -8) 📝 `netbox/extras/admin.py` (+6 -0) 📝 `netbox/ipam/filters.py` (+14 -0) 📝 `netbox/ipam/forms.py` (+6 -1) 📝 `netbox/ipam/views.py` (+4 -4) 📝 `netbox/netbox/settings.py` (+1 -1) 📝 `netbox/netbox/views.py` (+1 -1) 📝 `netbox/project-static/js/forms.js` (+5 -5) 📝 `netbox/project-static/js/secrets.js` (+2 -2) 📝 `netbox/secrets/views.py` (+1 -1) 📝 `netbox/templates/ipam/vlan.html` (+8 -0) 📝 `netbox/templates/secrets/secret_edit.html` (+2 -12) 📝 `netbox/utilities/forms.py` (+2 -1) </details> ### 📄 Description ## Improvements - [#167](https://github.com/digitalocean/netbox/issues/167) - Added new interface form factors - [#253](https://github.com/digitalocean/netbox/issues/253) - Added new interface form factors - [#434](https://github.com/digitalocean/netbox/issues/434) - Restored admin UI access to user action history (however bulk deletion is disabled) - [#435](https://github.com/digitalocean/netbox/issues/435) - Added an "add prefix" button to the VLAN view ## Bug Fixes - [#425](https://github.com/digitalocean/netbox/issues/425) - Ignore leading and trailing periods when generating a slug - [#427](https://github.com/digitalocean/netbox/issues/427) - Prevent error when duplicate IPs are present in a prefix's IP list - [#429](https://github.com/digitalocean/netbox/issues/429) - Correct redirection of user when adding a secret to a device --- <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:23 +01:00
adam closed this issue 2025-12-29 22:19:24 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12058