#11029: Cleanup & changelog

This commit is contained in:
jeremystretch 2023-04-10 10:40:56 -04:00
parent 00714b23a2
commit f68a63255b
3 changed files with 6 additions and 2 deletions

View File

@ -54,6 +54,7 @@ Two new webhook trigger events have been introduced: `job_start` and `job_end`.
* [#10242](https://github.com/netbox-community/netbox/issues/10242) - Redirect to filtered objects list after bulk import * [#10242](https://github.com/netbox-community/netbox/issues/10242) - Redirect to filtered objects list after bulk import
* [#10374](https://github.com/netbox-community/netbox/issues/10374) - Require unique tenant names & slugs per group * [#10374](https://github.com/netbox-community/netbox/issues/10374) - Require unique tenant names & slugs per group
* [#10729](https://github.com/netbox-community/netbox/issues/10729) - Add date & time custom field type * [#10729](https://github.com/netbox-community/netbox/issues/10729) - Add date & time custom field type
* [#11029](https://github.com/netbox-community/netbox/issues/11029) - Enable change logging for cable terminations
* [#11254](https://github.com/netbox-community/netbox/issues/11254) - Introduce the `X-Request-ID` HTTP header to annotate the unique ID of each request for change logging * [#11254](https://github.com/netbox-community/netbox/issues/11254) - Introduce the `X-Request-ID` HTTP header to annotate the unique ID of each request for change logging
* [#11291](https://github.com/netbox-community/netbox/issues/11291) - Optimized GraphQL API request handling * [#11291](https://github.com/netbox-community/netbox/issues/11291) - Optimized GraphQL API request handling
* [#11440](https://github.com/netbox-community/netbox/issues/11440) - Add an `enabled` field for device type interfaces * [#11440](https://github.com/netbox-community/netbox/issues/11440) - Add an `enabled` field for device type interfaces
@ -111,6 +112,8 @@ Two new webhook trigger events have been introduced: `job_start` and `job_end`.
* Added the optional `account` foreign key to ProviderAccount * Added the optional `account` foreign key to ProviderAccount
* circuits.Provider * circuits.Provider
* Removed the `account` field * Removed the `account` field
* dcim.CableTermination
* Added `default_platform` foreign key (optional)
* dcim.DeviceType * dcim.DeviceType
* Added `default_platform` foreign key (optional) * Added `default_platform` foreign key (optional)
* dcim.InterfaceTemplate * dcim.InterfaceTemplate

View File

@ -1097,7 +1097,8 @@ class CableTerminationSerializer(NetBoxModelSerializer):
class Meta: class Meta:
model = CableTermination model = CableTermination
fields = [ fields = [
'id', 'url', 'display', 'cable', 'cable_end', 'termination_type', 'termination_id', 'termination' 'id', 'url', 'display', 'cable', 'cable_end', 'termination_type', 'termination_id', 'termination',
'created', 'last_updated',
] ]
@extend_schema_field(serializers.JSONField(allow_null=True)) @extend_schema_field(serializers.JSONField(allow_null=True))

View File

@ -4,7 +4,7 @@ from django.db import migrations, models
class Migration(migrations.Migration): class Migration(migrations.Migration):
dependencies = [ dependencies = [
('dcim', '0167_module_status'), ('dcim', '0171_devicetype_add_bridge'),
] ]
operations = [ operations = [