forked from netbox-community/netbox
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Closes netbox-community#1553: Introduced support for bulk object creation via the API * Removed prefix `parent` filter (see netbox-community#1684) * Restored search method on prefix filter * Extended prefix 'available-ips' endpoint to accept multiple objects (related to netbox-community#1553) * Standardize on JSON data format for all POST/PUT test client requests * netbox-community#1694: Initial work on "next available" prefix provisioning * Closes netbox-community#1706: Added deprecation warning for Python 2 * Merge branch '150-interface-vlans' into develop-2.3 * Fixed up validation of Interface VLAN assignments * Fixes netbox-community#1645: Simplified interface serialzier for IP addresses and optimized API view queryset * Cleaned up bulk IP provisioning a bit * Add Tenancy to Rack Reservations; Fixes netbox-community#1592 (netbox-community#1672) * fixed prefix header to represent new serial "vlan_vid" * shows option in creation now * fixed visibility on rack page * cleanup * Added view to Tenant page * Moved migration for update from netbox-community#1666 and fixed tenant enumeration in FilterForm * Fixed conflict #1 * Fixed filters from merge and made migration merge * added tenant to api * Fixed migrations problem * Added Tenant to bulkedit option * Resolved migration collision from netbox-community#1672 * A bit of cosmetic cleanup from netbox-community#1672 * Added nested representations of user and tenant to the rack reservation serializer * Fixed version number * Initial work on virtual chassis support * Moved VC master designation to membership model * Added initial UI views for virtual chassis assignment * Fixes netbox-community#1727: Added missing import for M2M_FIELD_TYPES * Added a form to edit virtual chassis * Added views for editing/deleting VCMemberships * Display member interfaces when viewing VC master device * Added virtual_chassis_id API filter for interfaces * Obsoleted ComponentEditView and ComponentDeleteView * Added virtual chassis tests * Allow designating primary IPs assigned to a device's peer VC members * Return all VC member interfaces when filtering for the master device; remove virtual_chassis_id filter * Ignore VC member interfaces where mgmt_only=True * PEP8 fixes * Closes netbox-community#1744: Allow associating a platform with a specific manufacturer * Closes netbox-community#1283: Added a time zone field to the site model * Fixes netbox-community#1136: Enforce model validation during bulk update * Closes netbox-community#1321: Added created and last_updated fields for relevant models to their API serializers * Cleaned up component tables and checkbox toggling * More table cleanup * Converted remaining legacy views to class-based views for the DCIM app * Added bulk creation API tests * Fix bulk creation of VCMemberships via API * Fix bulk creation of Secrets via API * Closes netbox-community#1781: Enable bulk renaming of device components * Implemented a view for adding individual devices to an existing virtual chassis * Completed virtual chassis API serializers * Reflect virtual chassis membership in display_name * Extend IP address device filter to match virtual chassis members * Added VirtualChassis to the docs * Allow interface mode to be null (for routed interfaces) * Highlight renamed components and allow for multiple previews * Renamed device status constants for clarity * Closes netbox-community#1758: Added 'status' field to Site model * Closes netbox-community#1821: Added 'description' field to Site model * Removed support for NAPALM 1.x * Fixes netbox-community#1847: Fix RecursionError when VC master device is unnamed * Fixes netbox-community#1848: Allow null value for interface encapsulation mode * netbox-community#1843: Allow assignment of VC member interfaces to VC master LAG * Fixes netbox-community#1838: Fix KeyError when attempting to create a VirtualChassis with no devicesselected * Collapsed VCMembership into the Device model (WIP) * Added virtual chassis member add view * Added virtual chassis member remove view * Cleaned up API for virtual chassis * Added virtual chassis tests * Additional validation cleanup * Allow assignment of services to IPs on any VC member * Closes netbox-community#1864: Added a 'status' field to the circuit model * Fixes netbox-community#1867: Allow filtering on device status with multiple values * Upgraded jquery to v3.3.1 * Fix for bulk interface edit form 802.1Q settings (netbox-community#1882) * fixes netbox-community#1881 - bulk interface 802.1Q settings form * fix PEP8 newline * PEP8 fixup * Fixes netbox-community#1884: Provide additional context to identify devices when creating/editing avirtual chassis * VirtualChassis form validation cleanup * Fixed typo in template * Exclude devices already assigned to a VC from the list of potential VC members * Finished VirtualChassis list view * Post-release version bump * Initial model for Packages model * Add package_list * Add migrations * Adding package add form * Import CSV Packages feature * Adding filters * Working bulkedit functionality for packages * Require a package for a customer circuit * Add edit and delete views for packages * Add API support * Expose package detail via the API endpoint * Formatting correction * Corrected order of arguments on DeviceVCMembershipForm * Closes netbox-community#1899: Prefer binary package of psycopg2 * Updated requirements list * Fixes netbox-community#1907: Allow removing an IP as the primary for a device when editing the IP directly * Release v2.3.0 * NETOPS-704 Rename Tenant Group to Service Providers and Tenants to Customers * NETOPS-704 Some small detail names fixed * Fixes
- Loading branch information
Showing
92 changed files
with
4,654 additions
and
1,146 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# -*- coding: utf-8 -*- | ||
# Generated by Django 1.11.9 on 2018-02-06 18:48 | ||
from __future__ import unicode_literals | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('circuits', '0009_unicode_literals'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='circuit', | ||
name='status', | ||
field=models.PositiveSmallIntegerField(choices=[[2, 'Planned'], [3, 'Provisioning'], [1, 'Active'], [4, 'Offline'], [0, 'Deprovisioning'], [5, 'Decommissioned']], default=1), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# -*- coding: utf-8 -*- | ||
# Generated by Django 1.11.10 on 2018-03-01 12:14 | ||
from __future__ import unicode_literals | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('circuits', '0010_circuit_package'), | ||
('circuits', '0010_circuit_status'), | ||
] | ||
|
||
operations = [ | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.