Jeremy Stretch
fa8407371b
Swap position of REMOTE_AUTH_BACKEND
2020-05-20 16:56:40 -04:00
Jeremy Stretch
8c40148ca7
Add object permission tests for get and list API views
2020-05-20 16:47:33 -04:00
Jeremy Stretch
8eb4d0a36b
Remove ViewExemptBackend; use same for model- and object-level permissions
2020-05-20 16:27:56 -04:00
Jeremy Stretch
64f60228ec
Add web UI view tests for object-level permissions
2020-05-20 13:35:54 -04:00
Jeremy Stretch
1f5d2520c3
Formatting fix
2020-05-20 10:37:26 -04:00
Jeremy Stretch
d2e1428c75
Closes #4665 : Add NEMA L14 and L21 power port/outlet types
2020-05-20 09:36:55 -04:00
Jeremy Stretch
f3b22acc9a
Merge branch 'develop' into develop-2.9
2020-05-15 11:29:07 -04:00
Jeremy Stretch
cd236aa886
Closes #4645 : Update minimum required version of PostgreSQL to 9.6
2020-05-15 10:11:36 -04:00
Jeremy Stretch
3c8e7e739d
Fixes #4649 : Fix interface assignment for bulk-imported IP addresses
2020-05-15 09:44:00 -04:00
Jeremy Stretch
a64351279d
Fixes #4648 : Fix bulk CSV import of child devices
2020-05-15 09:36:16 -04:00
Jeremy Stretch
ba91b3aa2e
Fixes #4646 : Correct UI link for reports with custom name
2020-05-15 09:13:51 -04:00
Jeremy Stretch
8394ff5537
Fixes #4644 : Fix ordering of services table by parent
2020-05-15 09:02:56 -04:00
John Anderson
14744da8f6
fixes #4647 - caching invalidation related to assinging new IP addresses to interfaces
2020-05-15 02:45:48 -04:00
John Anderson
2c2d6c6d47
fixes #3304 - primary IP address caching invalidation
2020-05-15 02:31:45 -04:00
Jeremy Stretch
aeb32104a4
Enforce object-level permissions for API views
2020-05-14 17:44:46 -04:00
Jeremy Stretch
73895b1c88
Bypass permission caching for anonymous users
2020-05-14 17:44:15 -04:00
Jeremy Stretch
f54fb67efc
Add object-level support to TokenPermissions
2020-05-14 13:49:52 -04:00
Jeremy Stretch
422eeddbef
Post-release version bump
2020-05-13 17:32:27 -04:00
Jeremy Stretch
2900013118
Release v2.8.4
2020-05-13 17:24:25 -04:00
Jeremy Stretch
cfe8882f72
Merge pull request #4623 from tyler-8/metrics_docs
...
Notes on multiprocessing metrics and gunicorn vs uwsgi
2020-05-13 17:17:26 -04:00
Tyler Bigler
29abcbced8
Grammar improvements
2020-05-13 17:13:41 -04:00
Jeremy Stretch
e0ebb8e7d8
Fixes #4617 : Restore IP prefix depth notation in list view
2020-05-13 17:08:48 -04:00
Tyler Bigler
96e05fb12d
Notes on multiprocessing and gunicorn vs uwsgi
2020-05-13 17:07:32 -04:00
Jeremy Stretch
07fd92cd4c
Fixes #4629 : Replicate assigned interface when cloning IP addresses
2020-05-13 16:25:22 -04:00
Daniel Sheppard
38d8b0a1ec
Merge pull request #4637 from netbox-community/4634-InventoryItemException
...
#4634 - Correct inventory item table accessor definition on manufacturer column
2020-05-13 10:46:29 -05:00
Daniel Sheppard
fd0be35d99
#4634 - Correct inventory item table accessor definition on manufacturer column
2020-05-13 09:33:48 -05:00
Jeremy Stretch
1461be2004
Fixes #4613 : Fix tag assignment on config contexts (regression from #4527 )
2020-05-13 10:28:48 -04:00
Jeremy Stretch
569d4ee201
Closes #4632 : Extend email configuration parameters to support SSL/TLS
2020-05-13 09:20:24 -04:00
Jeremy Stretch
1d93d9a63a
Fixes #4633 : Bump django-rq to v2.3.2 to fix ImportError with rq 1.4.0
2020-05-13 08:53:29 -04:00
Jeremy Stretch
be5962fb3a
ObjectPermissionRequiredMixin should exempt superusers
2020-05-12 17:00:03 -04:00
Jeremy Stretch
94d0ebbd7d
Fix ObjectPermission attribute consolidation
2020-05-12 16:51:46 -04:00
Jeremy Stretch
a275a30dca
Reimplement the ViewExemptModelBackend to explicitly cache all exempted view permissions on the User instance
2020-05-12 16:07:07 -04:00
Jeremy Stretch
c90f680284
Cache object-level permissions on the User instance for evaluation
2020-05-12 15:42:44 -04:00
Jeremy Stretch
daa2c6ff21
Always pass obj=None to ModelBackend
2020-05-11 17:19:11 -04:00
Daniel Sheppard
41361ce2a2
Fixes : #4618 - Add group creation and correct user creation group syntax
2020-05-11 16:10:23 -05:00
Jeremy Stretch
63f842c7db
Implement ObjectPermissionManager
2020-05-11 16:02:42 -04:00
Jeremy Stretch
06aca2e1d5
Merge branch 'develop-2.9' into 554-object-permissions
2020-05-11 12:48:36 -04:00
Jeremy Stretch
3abb52a085
#4624 : Refactor ObjectDeleteView to use a queryset
2020-05-11 12:47:01 -04:00
Jeremy Stretch
87fa6bc252
#4624 : Refactor ObjectEditView to use a queryset
2020-05-11 12:37:22 -04:00
Jeremy Stretch
4b5d64939d
Introduced ObjectPermissionRequiredMixin
2020-05-11 11:51:11 -04:00
Jeremy Stretch
91e46ceb77
Merge pull request #4616 from kobayashi/4607-token-context-help
...
Fix: 4607 Missing token context help
2020-05-11 09:21:01 -04:00
weisdd
cea01e037a
Fix: incorrect DeviceConnectionsReport in reports.md ( #4606 )
...
Since the CONNECTION_STATUS_PLANNED constant is gone from dcim.constants, the DeviceConnectionsReport script is no longer correct.
The suggested fix is based on the fact that console_port.connection_status and power_port.connection_status currently have the following set of values:
* None = A cable is not connected to a Console Server Port or it's connected to a Rear/Front Port;
* False = A cable is connected to a Console Server Port and marked as Planned;
* True = A cable is connected to a Console Server Port and marked as Installed.
2020-05-11 09:14:25 -04:00
kobayashi
465d3ae1af
Fix: 4607 Missing token context help
2020-05-09 23:08:14 -04:00
Jeremy Stretch
6624fc6076
Initial work on #554 (WIP)
2020-05-08 17:30:25 -04:00
Jeremy Stretch
d5b9722533
Merge pull request #4608 from netbox-community/3226-customfield-manager
...
Closes #3226 : Implement a custom manager for CustomField
2020-05-08 12:55:13 -04:00
Jeremy Stretch
745c9a9c2b
Add test for CustomFieldManager.get_for_model()
2020-05-08 12:18:08 -04:00
Jeremy Stretch
e3be5f8468
Remove local caching attempt
2020-05-08 10:05:05 -04:00
Jeremy Stretch
2c19390d7c
Introduce CustomFieldManager (WIP)
2020-05-07 17:20:32 -04:00
Jeremy Stretch
da8380c62c
Refactor extras.models
2020-05-07 16:59:27 -04:00
Jeremy Stretch
e14e217fcd
Fixes #4604 : Multi-position rear ports may only be connected to other rear ports
2020-05-07 16:22:04 -04:00