浏览代码

Changelog for #1344

jeremystretch 4 年之前
父节点
当前提交
38bc5de3e8
共有 1 个文件被更改,包括 26 次插入0 次删除
  1. 26 0
      docs/release-notes/version-3.1.md

+ 26 - 0
docs/release-notes/version-3.1.md

@@ -7,6 +7,14 @@
 
 * The `tenant` and `tenant_id` filters for the Cable model now filter on the tenant assigned directly to each cable, rather than on the parent object of either termination.
 
+#### Contacts ([#1344](https://github.com/netbox-community/netbox/issues/1344))
+
+A set of new models for tracking contact information has been introduced within the tenancy app. Users may now create individual contact objects to be associated with various models within NetBox. Each contact has a name, title, email address, etc. Contacts can be arranged in hierarchical groups for ease of management.
+
+When assigning a contact to an object, the user must select a predefined role (e.g. "billing" or "technical") and may optionally indicate a priority relative to other contacts associated with the object. There is no limit on how many contacts can be assigned to an object, nor on how many objects to which a contact can be assigned.
+
+#### 
+
 ### Enhancements
 
 * [#1337](https://github.com/netbox-community/netbox/issues/1337) - Add WWN field to interfaces
@@ -20,3 +28,21 @@
 ### Other Changes
 
 * [#7318](https://github.com/netbox-community/netbox/issues/7318) - Raise minimum required PostgreSQL version from 9.6 to 10
+
+### REST API Changes
+
+* Added the following endpoints for contacts:
+    * `/api/tenancy/contact-assignments/`
+    * `/api/tenancy/contact-groups/`
+    * `/api/tenancy/contact-roles/`
+    * `/api/tenancy/contacts/`
+* dcim.Cable
+    * Added `tenant` field
+* dcim.Device
+    * Added `airflow` field
+* dcim.DeviceType
+    * Added `airflow` field 
+* dcim.Interface
+    * Added `wwn` field
+* dcim.Location
+    * Added `tenant` field