[PR #3261] [CLOSED] Develop 2.6 #12533

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/3261
Author: @jrcorazza
Created: 6/15/2019
Status: Closed

Base: developHead: develop-2.6


📝 Commits (10+)

  • bd573fd implemented #2350 - config context included by default in API
  • e521508 #2350 - added virtual machines and test cases
  • fc2bb72 initial pass on migrating to custom tag model with color and comments fields
  • 0a06d92 added default values for comments and color fields on tag
  • bb6fb81 Closes #2643: Add description field to console/power components and device bays
  • fba6d28 removed migration to delete taggit models
  • b9d11aa refactor tag migrations and add changelog fields to tag
  • de52f21 fix circular import for ObjectChange, for now...
  • 8e54860 added changelog views for Tag
  • 00c4d3d Merge pull request #2918 from digitalocean/2643-description-fields

📊 Changes

172 files changed (+6643 additions, -1780 deletions)

View changed files

📝 .travis.yml (+1 -0)
📝 CHANGELOG.md (+215 -0)
📝 base_requirements.txt (+12 -0)
docs/additional-features/caching.md (+21 -0)
docs/additional-features/prometheus-metrics.md (+22 -0)
📝 docs/additional-features/webhooks.md (+0 -8)
📝 docs/api/overview.md (+45 -13)
📝 docs/configuration/optional-settings.md (+40 -53)
📝 docs/configuration/required-settings.md (+41 -0)
📝 docs/core-functionality/devices.md (+1 -1)
📝 docs/development/release-checklist.md (+1 -0)
📝 docs/installation/2-netbox.md (+3 -25)
📝 docs/installation/migrating-to-python3.md (+1 -7)
📝 mkdocs.yml (+2 -0)
📝 netbox/circuits/api/nested_serializers.py (+4 -2)
📝 netbox/circuits/api/serializers.py (+5 -2)
📝 netbox/circuits/api/views.py (+7 -2)
📝 netbox/circuits/filters.py (+1 -1)
netbox/circuits/migrations/0015_custom_tag_models.py (+25 -0)
📝 netbox/circuits/models.py (+3 -3)

...and 80 more files

📄 Description

Add split option to IPv4 blocks and mainly IPv6

On IPv6 or IPv4 subnets, I suggest you add a "slipt" button, this button should show the user all the splitting options of the inserted block. When selecting the division the system already creates all the subnets.

A good option would be to keep this button on all system subnets in case you need to split an existing subnet.

Fixes:


🔄 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/3261 **Author:** [@jrcorazza](https://github.com/jrcorazza) **Created:** 6/15/2019 **Status:** ❌ Closed **Base:** `develop` ← **Head:** `develop-2.6` --- ### 📝 Commits (10+) - [`bd573fd`](https://github.com/netbox-community/netbox/commit/bd573fd5cf3273456d1ac5faabbde85509cb8387) implemented #2350 - config context included by default in API - [`e521508`](https://github.com/netbox-community/netbox/commit/e521508de99bbcab21c5f952838cef8ccc929a38) #2350 - added virtual machines and test cases - [`fc2bb72`](https://github.com/netbox-community/netbox/commit/fc2bb724fa91e5d9de83269ad3999e71753c99af) initial pass on migrating to custom tag model with color and comments fields - [`0a06d92`](https://github.com/netbox-community/netbox/commit/0a06d92c2ec334fd379712cf37c893b750e4345d) added default values for comments and color fields on tag - [`bb6fb81`](https://github.com/netbox-community/netbox/commit/bb6fb81fc0e5dfd5512f5928b4038a8ae4b7e19b) Closes #2643: Add description field to console/power components and device bays - [`fba6d28`](https://github.com/netbox-community/netbox/commit/fba6d286036d0fdaf8dcae16f8ef11787c05f6be) removed migration to delete taggit models - [`b9d11aa`](https://github.com/netbox-community/netbox/commit/b9d11aa4ca32796b17a3da72edc1f250a4950590) refactor tag migrations and add changelog fields to tag - [`de52f21`](https://github.com/netbox-community/netbox/commit/de52f219053651314bf759cbe7dfcc2050e43726) fix circular import for ObjectChange, for now... - [`8e54860`](https://github.com/netbox-community/netbox/commit/8e548605c8a2c7d5157d7b60d286dbe0fad4e1b5) added changelog views for Tag - [`00c4d3d`](https://github.com/netbox-community/netbox/commit/00c4d3dd9246ab056f433c0c0df3c3c76d9e9cfd) Merge pull request #2918 from digitalocean/2643-description-fields ### 📊 Changes **172 files changed** (+6643 additions, -1780 deletions) <details> <summary>View changed files</summary> 📝 `.travis.yml` (+1 -0) 📝 `CHANGELOG.md` (+215 -0) 📝 `base_requirements.txt` (+12 -0) ➕ `docs/additional-features/caching.md` (+21 -0) ➕ `docs/additional-features/prometheus-metrics.md` (+22 -0) 📝 `docs/additional-features/webhooks.md` (+0 -8) 📝 `docs/api/overview.md` (+45 -13) 📝 `docs/configuration/optional-settings.md` (+40 -53) 📝 `docs/configuration/required-settings.md` (+41 -0) 📝 `docs/core-functionality/devices.md` (+1 -1) 📝 `docs/development/release-checklist.md` (+1 -0) 📝 `docs/installation/2-netbox.md` (+3 -25) 📝 `docs/installation/migrating-to-python3.md` (+1 -7) 📝 `mkdocs.yml` (+2 -0) 📝 `netbox/circuits/api/nested_serializers.py` (+4 -2) 📝 `netbox/circuits/api/serializers.py` (+5 -2) 📝 `netbox/circuits/api/views.py` (+7 -2) 📝 `netbox/circuits/filters.py` (+1 -1) ➕ `netbox/circuits/migrations/0015_custom_tag_models.py` (+25 -0) 📝 `netbox/circuits/models.py` (+3 -3) _...and 80 more files_ </details> ### 📄 Description Add split option to IPv4 blocks and mainly IPv6 On IPv6 or IPv4 subnets, I suggest you add a "slipt" button, this button should show the user all the splitting options of the inserted block. When selecting the division the system already creates all the subnets. A good option would be to keep this button on all system subnets in case you need to split an existing subnet. <!-- Thank you for your interest in contributing to NetBox! Please note that our contribution policy requires that a feature request or bug report be opened for approval prior to filing a pull request. This helps avoid wasting time and effort on something that we might not be able to accept. Please indicate the relevant feature request or bug report below. IF YOUR PULL REQUEST DOES NOT REFERENCE AN ACCEPTED BUG REPORT OR FEATURE REQUEST, IT WILL BE MARKED AS INVALID AND CLOSED. --> ### Fixes: <!-- Please include a summary of the proposed changes below. --> --- <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:22:07 +01:00
adam closed this issue 2025-12-29 22:22:07 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12533