Jeremy Stretch
aca57ec281
Fixes #2698 : Remove pagination restriction on bulk component creation for devices/VMs
2018-12-19 10:59:12 -05:00
Jeremy Stretch
68cb8b6895
Closes #2701 : Enable filtering of prefixes by exact prefix value
2018-12-19 10:02:18 -05:00
Jeremy Stretch
82e8c0152e
Fixes #2707 : Correct permission evaluation for circuit termination cabling
2018-12-19 09:36:45 -05:00
Jeremy Stretch
9f1fcca5ea
Release v2.5.1
2018-12-13 15:03:08 -05:00
Jeremy Stretch
dd2a6a41da
Fixes #2687 : Correct naming of before/after filters for changelog entries
2018-12-13 14:43:05 -05:00
Jeremy Stretch
a6c8c615eb
Closes #2674 : Enable filtering changelog by object type under web UI
2018-12-13 14:37:03 -05:00
Jeremy Stretch
0d3b1bfca4
Fixes #2683 : Fix exception when connecting a cable to a RearPort with no corresponding FrontPort
2018-12-12 16:40:34 -05:00
Jeremy Stretch
edd763b1aa
Fixes #2684 : Fix custom field filtering
2018-12-12 16:06:50 -05:00
Jeremy Stretch
2418fed65b
Fixes #2663 : Prevent duplicate interfaces from appearing under VLAN members view
2018-12-12 13:18:42 -05:00
Jeremy Stretch
3480832bf5
Added changelog for #2662 (fixed under #2680 )
2018-12-12 09:59:54 -05:00
Jeremy Stretch
ee038bd77b
Closes #2655 : Add 128GFC Fibrechannel interface type
2018-12-12 09:48:17 -05:00
Jeremy Stretch
6460c95e00
Fixes #2678 : Fix error when viewing webhook in admin UI without write permission
2018-12-12 09:30:31 -05:00
Jeremy Stretch
b0a6781623
Fixes #2680 : Disallow POST requests to /dcim/interface-connections/ API endpoint
2018-12-12 09:20:07 -05:00
Jeremy Stretch
8364e56e86
Fixes #2676 : Fix exception when passing dictionary value to a ChoiceField
2018-12-11 17:00:20 -05:00
Jeremy Stretch
b8a4316297
Changelog for #2666
2018-12-11 13:47:24 -05:00
Jeremy Stretch
acbe5f6418
Release v2.5.0
2018-12-10 10:22:32 -05:00
Jeremy Stretch
65edffea63
Merge v2.5 work
2018-12-07 10:51:28 -05:00
Jeremy Stretch
869194354c
Release v2.4.9
2018-12-07 10:19:57 -05:00
Jeremy Stretch
aa8c836b94
Closes #2611 : Fix error handling when assigning a clustered device to a different site
2018-12-07 09:57:55 -05:00
Jeremy Stretch
45a1dfbd8a
Closes #2649 : Add connected_endpoint_type to connectable device component API representations
2018-12-06 16:14:03 -05:00
Jeremy Stretch
360303f86c
Closes #2474 : Add cabled and connection_status filters for device components
2018-12-06 12:39:12 -05:00
Jeremy Stretch
64d37cd450
Closes #2648 : Include the connection_status field in nested represenations of connectable device components
2018-12-06 12:14:54 -05:00
Jeremy Stretch
870edbb44a
Fixes #2626 : Remove extraneous permissions generated from proxy models
2018-12-05 16:53:58 -05:00
Jeremy Stretch
686a65880e
Closes #2495 : Enable deep-merging of config context data
2018-12-05 14:34:49 -05:00
Jeremy Stretch
ab4cb46d94
Additional API change notes
2018-12-05 11:13:29 -05:00
Jeremy Stretch
d3d6c83fbb
Fixes #2634 : Enforce consistent representation of unnamed devices in rack view
2018-12-04 15:29:58 -05:00
Jeremy Stretch
dffa2d3556
Closes #2632 : Change representation of null values from 0 to 'null'
2018-12-04 15:09:07 -05:00
John Anderson
e6ee26cf0e
CHANGELOG.md
2018-12-04 00:46:36 -05:00
Jeremy Stretch
a3ade01224
Fixes #2639 : Fix preservation of length/dimensions unit for racks and cables
2018-12-03 11:13:37 -05:00
Jeremy Stretch
d1cd366dc9
Fixes #2616 : Convert Rack outer_unit and Cable length_unit to integer-based choice fields
2018-11-30 12:26:28 -05:00
Jeremy Stretch
a1a9396287
Closes #2594 : upgrade.sh no longer invokes sudo
2018-11-30 11:12:10 -05:00
Jeremy Stretch
ca0248c3a2
Closes #2089 : Add SONET interface form factors
2018-11-30 09:28:56 -05:00
Jeremy Stretch
08b4b24296
Fixes #2622 : Enable filtering cables by multiple types/colors
2018-11-28 14:22:55 -05:00
Jeremy Stretch
5acd429c55
Fixes #2624 : Delete associated content type and permissions when removing InterfaceConnection model
2018-11-28 13:45:02 -05:00
Jeremy Stretch
6c2a9107dd
Closes #2597 : Add FibreChannel SFP28 (32GFC) interface form factor
2018-11-28 09:56:48 -05:00
Jeremy Stretch
c6d048ca51
Fixes #2576 : Correct type for count_* fields in site API representation
2018-11-27 16:27:47 -05:00
Jeremy Stretch
112aaea51f
Updated changelog for #2400
2018-11-27 16:18:57 -05:00
Tatsushi Demachi
c3cdf8e97e
Fix type mismatches in API view ( #2429 )
...
* Fix tags field to be shown as array in API view
`tags` field in serializers is defineded as `TagListSerializerField`.
It should be shown as an array value in API view but actually, it is a
simple string value.
This fixes it by introducing a new `FieldInspector` to handle
`TagListSerializerField` type field as an array. It doesn't affects any
other type fields.
* Fix SerializedPKRelatedField type API expression
A field definded as `SerializedPKRelatedField` should be shown as an
array of child serializer objects in a response value definition in API
view but it is shown as an array of primary key values (usually
`integer` type) of a child serializer.
This fixes it by introducing a new `FieldInspector` to handle the field.
It doesn't affect any other type fields.
* Fix request parameter representation in API view
In API view, representation of a parameter defined as a sub class of
`WritableNestedSerializer` should be vary between a request and a
response. For example, `tenant` field in `IPAddressSerializer` should be
shown like following as a request body:
```
tenant: integer ...
```
while it should be shown like following as a response body:
```
tenant: {
id: integer ...,
url: string ...,
name: string ...,
slug: string ...
}
```
But in both cases, it is shown as a response body type expression. This
causes an error at sending an API request with that type value.
It is only an API view issue, API can handle a request if a request
parameter is structured as an expected request body by ignoring the
wrong expression.
This fixes the issue by replacing an implicitly used default auto schema
generator class by its sub class and returning a pseudo serializer with
'Writable' prefix at generating a request body. The reason to introduce
a new generator class is that there is no other point which can
distinguish a request and a response. It is not enough to distinguish
POST, PUT, PATCH methods from GET because former cases may return a JSON
object as a response but it is also represented as same as a request
body, causes another mismatch.
This also fixes `SerializedPKRelatedField` type field representation. It
should be shown as an array of primary keys in a request body.
Fixed #2400
2018-11-27 16:14:45 -05:00
Jeremy Stretch
d2744700c6
Fixes #2615 : Tweak live search widget to use brief format for API requests
2018-11-27 12:41:00 -05:00
Jeremy Stretch
5d07a5a670
Fixes #2613 : Decrease live search minimum characters to three
2018-11-27 12:20:52 -05:00
Jeremy Stretch
3f1b42d466
Release v2.5-beta2
2018-11-26 16:27:57 -05:00
Jeremy Stretch
90a4b62976
Changelog for #2606
2018-11-26 14:41:09 -05:00
Jeremy Stretch
7d8ae5e763
Fixes #2609 : Fixed exception when ChoiceField integer value is passed as a string
2018-11-26 14:05:57 -05:00
Jeremy Stretch
a46f68c6e4
Fixes #2608 : Fixed null outer_unit error on rack import
2018-11-26 13:41:35 -05:00
Jeremy Stretch
d59be2912e
Closes #2601 : Added a description field to pass-through ports
2018-11-20 21:28:19 -05:00
Jeremy Stretch
2b1516ea79
Changelog for #2602
2018-11-20 13:21:38 -05:00
Jeremy Stretch
874acab90f
Merge v2.4.8
2018-11-20 12:28:24 -05:00
Jeremy Stretch
55c153c5a9
Release v2.4.8
2018-11-20 11:56:14 -05:00
Jeremy Stretch
3366a6ae3d
Closes #2557 : Added object view for tags
2018-11-15 16:47:41 -05:00
Jeremy Stretch
7dde370ee1
Fixes #2593 : Fix toggling of connected cable's status
2018-11-15 14:23:23 -05:00
John Anderson
dfe6ba5603
#2583 changelog
2018-11-15 00:55:47 -05:00
Jeremy Stretch
641254b23a
Closes #2053 : Introduced the LOGIN_TIMEOUT configuration setting
2018-11-14 14:18:32 -05:00
Jeremy Stretch
23cde65add
Fixes #2589 : Virtual machine API serializer should require cluster assignment
2018-11-14 10:38:53 -05:00
Jeremy Stretch
408f632636
Fixes #2588 : Catch all exceptions from failed NAPALM API Calls
2018-11-14 10:12:35 -05:00
Jeremy Stretch
83be0b5db4
Closes #2490 : Added bulk editing for config contexts
2018-11-13 15:08:55 -05:00
Jeremy Stretch
2fce7ebd8f
Fixes #2565 : Improved rendering of Markdown tables
2018-11-13 11:02:48 -05:00
Jeremy Stretch
f8e6cfbeba
Closes #2426 : Introduced SESSION_FILE_PATH configuration setting for authentication without write access to database
2018-11-13 10:31:44 -05:00
John Anderson
5649024d93
#2586 changelog
2018-11-12 23:27:14 -05:00
John Anderson
7887a70b70
#2585 changelog
2018-11-12 23:20:17 -05:00
John Anderson
7cd0e0b244
#2584 changelog
2018-11-12 22:19:30 -05:00
Jeremy Stretch
bc8dbfde7c
Merge branch 'develop' into develop-2.5
2018-11-12 16:03:52 -05:00
Jeremy Stretch
0c33af2140
Fixes #2558 : Filter on all tags when multiple are passed
2018-11-12 15:48:58 -05:00
Jeremy Stretch
75f0d8ee90
Closes #2578 : Reorganized nested serializers
2018-11-12 11:36:44 -05:00
Jeremy Stretch
04ae6ec7af
Fixes #2554 : Fix cable trace display when following a rear port with no cable attached
2018-11-09 15:22:34 -05:00
Jeremy Stretch
3bbf4a3352
Fixes #2579 : Add missing cable disconnect buttons for front/rear ports
2018-11-09 15:17:42 -05:00
Jeremy Stretch
0316072863
Fixes #2574 : Remove duplicate interface links from topology maps
2018-11-09 09:54:30 -05:00
Jeremy Stretch
845d467fd9
Fixes #2575 : Correct model specified for rack roles table
2018-11-09 09:46:30 -05:00
Jeremy Stretch
be5bf6b711
Closes #2570 : Add bulk disconnect view for front/rear pass-through ports
2018-11-08 15:12:24 -05:00
Jeremy Stretch
788847edaa
Fixes #2573 : Fix bulk console/power/interface disconnections
2018-11-08 15:04:34 -05:00
Jeremy Stretch
30f8fb4c11
Fixes #2572 : Add button to disconnect cable from circuit termination
2018-11-08 12:27:15 -05:00
Jeremy Stretch
3e92aa9fe7
Fixes #2571 : Enforce deletion of attached cable when deleting a termination point
2018-11-08 12:15:56 -05:00
Jeremy Stretch
a228f1e1c2
Closes #2569 : Added LSH fiber type; removed SC duplex/simplex designations
2018-11-08 10:49:26 -05:00
Jeremy Stretch
4b5181d640
Fixes #2566 : Prevent both ends of a cable from connecting to the same termination point
2018-11-08 10:40:17 -05:00
Jeremy Stretch
0dee55885b
Fixes #2567 : Introduced proxy models to represent console/power/interface connections
2018-11-08 09:51:47 -05:00
Jeremy Stretch
1e36a884fa
Changelog for #2563
2018-11-08 09:11:28 -05:00
Jeremy Stretch
69d829ce8d
Fixes #2473 : Fix encoding of long (>127 character) secrets
2018-11-07 13:44:16 -05:00
Jeremy Stretch
e806b58ac9
Release v2.5-beta1
2018-11-06 15:58:55 -05:00
Jeremy Stretch
ce00226bc6
Merge release v2.4.7 into develop-2.5
2018-11-06 11:19:38 -05:00
Jeremy Stretch
99edb8b8d5
Release v2.4.7
2018-11-06 10:49:44 -05:00
Jeremy Stretch
b4998f4b01
Closes #2388 : Enable filtering of devices/VMs by region
2018-11-06 10:31:56 -05:00
Jeremy Stretch
fd4a9db13e
Closes #2512 : Add device field to inventory item filter form
2018-11-06 09:24:05 -05:00
John Anderson
e243234c4e
changelog for #2549
2018-11-06 00:57:09 -05:00
Jeremy Stretch
4d47d848c5
Fixed changelog for #2528
2018-11-05 16:10:33 -05:00
Jeremy Stretch
bd3ccfe020
Fixes #2528 : Enable creating circuit terminations with interface assignment via API
2018-11-05 16:10:01 -05:00
Jeremy Stretch
ce7930abfd
Changelog for #2427
2018-11-05 15:40:48 -05:00
Jeremy Stretch
f321e2c705
Changelog for #2501
2018-11-05 15:34:39 -05:00
Jeremy Stretch
e57b3bc4ab
Closes #2057 : Added description columns to interface connections list
2018-11-05 14:41:51 -05:00
Jeremy Stretch
82076d3ca6
Changelog for #1931
2018-11-05 14:33:50 -05:00
Jeremy Stretch
e8caa46484
Expanded v2.5 release notes
2018-11-05 14:01:34 -05:00
Jeremy Stretch
1847e82d04
Closes #867 : Add a 'description' field to CircuitTermination
2018-11-05 13:53:22 -05:00
Jeremy Stretch
53b6a07a41
Changelog for #2165
2018-11-05 12:07:02 -05:00
Jeremy Stretch
af95ba48aa
Replaced is_console_server, is_pdu, and is_network_device filters on Device and DeviceType
2018-11-02 10:45:31 -04:00
Jeremy Stretch
43446cc642
Added more detail to v2.5.0 release notes
2018-11-02 10:02:44 -04:00
Jeremy Stretch
c60c5502f6
Closes #450 : Add 'outer_width' and 'outer_depth' fields to Rack
2018-11-02 09:51:17 -04:00
Jeremy Stretch
4ffe1866c5
Closes #1444 : Add field to Rack model
2018-11-02 09:17:51 -04:00
Jeremy Stretch
d4ec309d68
Changelog for #2104
2018-11-02 08:59:51 -04:00
Jeremy Stretch
4cfe9fe182
Merge branch 'develop' into develop-2.5
2018-10-19 13:34:03 -04:00
Jeremy Stretch
0bb5d229e8
Fixes #2514 : Prevent new connections to already connected interfaces
2018-10-16 16:42:23 -04:00
Jeremy Stretch
df5d105f29
Changelog for #2515
2018-10-16 09:42:19 -04:00
Jeremy Stretch
22ed4f1b53
Merge release v2.4.6
2018-10-10 09:36:51 -04:00
Jeremy Stretch
c2f4cf3407
Release v2.4.6
2018-10-05 15:43:43 -04:00
Jeremy Stretch
83f3dc99ce
Changelog entry for #2492
2018-10-05 15:39:30 -04:00
Jeremy Stretch
4c37628784
Fixes #2393 : Fix Unicode support for CSV import under Python 2
2018-10-05 15:33:29 -04:00
Jeremy Stretch
841db3b0c2
Fixes #2491 : Fix exception when importing devices with invalid device type
2018-10-05 12:22:46 -04:00
Jeremy Stretch
5d10d8418e
Closes #2479 : Add user permissions for creating/modifying API tokens
2018-10-05 11:06:59 -04:00
Jeremy Stretch
2fee977b4c
Fixes #2485 : Fix cancel button when assigning a service to a device/VM
2018-10-05 10:30:13 -04:00
Jeremy Stretch
52f1b1c3bf
Changelog entry for #2487
2018-10-04 16:24:09 -04:00
John Anderson
1b2e9a6d06
fixes #2484 - Local config context not available on the Virtual Machine Edit Form
2018-10-03 17:16:01 -04:00
Jeremy Stretch
99848aab6a
Fixes #2483 : Set max item count of API-populated form fields to MAX_PAGE_SIZE
2018-10-03 16:17:17 -04:00
Jeremy Stretch
364bbdeab8
Merged release v2.4.5
2018-10-03 11:23:21 -04:00
Jeremy Stretch
20fed375d1
Release v2.4.5
2018-10-02 15:24:42 -04:00
Jeremy Stretch
aed2a3cd1b
Closes #2438 : API optimizations for tagged objects
2018-09-28 16:44:05 -04:00
Jeremy Stretch
15babeb584
Fixes #2414 : Tags field missing from device/VM component creation forms
2018-09-28 16:26:08 -04:00
Jeremy Stretch
020b5ea870
Fixes #2470 : Log the creation of device/VM components as object changes
2018-09-28 16:04:51 -04:00
Jeremy Stretch
2ee5b2344e
Changelog and misc cleanup
2018-09-28 14:21:49 -04:00
Jeremy Stretch
9440ac7640
Fixes #2455 : Ignore unique address enforcement for IPs with a shared/virtual role
2018-09-24 16:59:33 -04:00
Jeremy Stretch
b4445dfdf8
Fixes #2442 : Nullify "next" link in API when limit=0 is passed
2018-09-18 13:59:50 -04:00
Jeremy Stretch
6cdff955dc
Fixes #2444 : Improve validation of interface MAC addresses
2018-09-18 12:02:59 -04:00
Jeremy Stretch
9df33cef8b
Fixes #2443 : Enforce JSON object format when creating config contexts
2018-09-18 11:46:22 -04:00
John Anderson
e965adad7c
changelog for #2432
2018-09-15 17:25:50 -04:00
Jeremy Stretch
292647da14
Closes #2402 : Order and format JSON data in form fields
2018-09-13 11:31:34 -04:00
Jeremy Stretch
3a88e43103
Fixes #2406 : Remove hard-coded limit of 1000 objects from API-populated form fields
2018-09-13 11:21:40 -04:00
Jeremy Stretch
2ac60bdf48
Merge branch 'develop' into develop-2.5 (v2.4.4 release)
2018-08-22 12:10:44 -04:00
Jeremy Stretch
cde6e9757b
Release v2.4.4
2018-08-22 11:51:15 -04:00
Jeremy Stretch
ac36339491
Closes #2168 : Added Extreme SummitStack interface form factors
2018-08-22 11:33:43 -04:00
Jeremy Stretch
dbbf7ab664
Fixes #2353 : Handle DoesNotExist exception when deleting a device with connected interfaces
2018-08-22 10:35:56 -04:00
Jeremy Stretch
66400a98f1
Fixes #2354 : Increased maximum MTU for interfaces to 65536 bytes
2018-08-22 10:25:07 -04:00
Jeremy Stretch
aa50e2e385
Fixes #2378 : Corrected "edit" link for virtual machine interfaces
2018-08-22 10:06:01 -04:00
Jeremy Stretch
e1e41a768a
Fixes #2369 : Corrected time zone validation on site API serializer
2018-08-20 16:53:23 -04:00
Jeremy Stretch
c333af33dc
Fixes #2370 : Redirect to parent device after deleting device bays
2018-08-20 14:40:19 -04:00
Jeremy Stretch
9e5b482b1d
Fixes #2374 : Fix toggling display of IP addresses in virtual machine interfaces list
2018-08-20 13:49:15 -04:00
John Anderson
771747147c
#2254 changelog entry
2018-08-17 18:41:58 -04:00
Jeremy Stretch
d46b3e2446
#2368 : Append changelog
2018-08-17 14:32:51 -04:00
Jeremy Stretch
19b737a534
Added v2.5 notes (so far) to changelog
2018-08-16 16:33:13 -04:00
Jeremy Stretch
fd32a71131
Rename changelog
2018-08-16 16:29:12 -04:00