nautobot 2.4.0__py3-none-any.whl → 2.4.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of nautobot might be problematic. Click here for more details.
- nautobot/core/celery/schedulers.py +1 -1
- nautobot/core/filters.py +48 -21
- nautobot/core/jobs/bulk_actions.py +56 -19
- nautobot/core/models/__init__.py +2 -0
- nautobot/core/tables.py +5 -1
- nautobot/core/testing/filters.py +25 -13
- nautobot/core/testing/integration.py +86 -4
- nautobot/core/tests/test_filters.py +209 -246
- nautobot/core/tests/test_jobs.py +250 -93
- nautobot/core/tests/test_models.py +9 -0
- nautobot/core/views/generic.py +80 -48
- nautobot/core/views/mixins.py +34 -6
- nautobot/dcim/api/serializers.py +2 -2
- nautobot/dcim/constants.py +6 -13
- nautobot/dcim/factory.py +6 -1
- nautobot/dcim/tests/integration/test_device_bulk_delete.py +189 -0
- nautobot/dcim/tests/integration/test_device_bulk_edit.py +181 -0
- nautobot/dcim/tests/test_api.py +0 -2
- nautobot/dcim/tests/test_models.py +42 -28
- nautobot/extras/forms/mixins.py +1 -1
- nautobot/extras/jobs.py +15 -6
- nautobot/extras/templatetags/job_buttons.py +4 -4
- nautobot/extras/tests/test_forms.py +13 -0
- nautobot/extras/tests/test_jobs.py +18 -13
- nautobot/extras/tests/test_models.py +6 -0
- nautobot/extras/tests/test_views.py +4 -3
- nautobot/ipam/tests/test_api.py +20 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +36 -1
- nautobot/project-static/docs/objects.inv +0 -0
- nautobot/project-static/docs/release-notes/version-2.4.html +108 -0
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +288 -288
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/wireless/tests/test_views.py +22 -1
- {nautobot-2.4.0.dist-info → nautobot-2.4.1.dist-info}/METADATA +2 -2
- {nautobot-2.4.0.dist-info → nautobot-2.4.1.dist-info}/RECORD +40 -38
- {nautobot-2.4.0.dist-info → nautobot-2.4.1.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.4.0.dist-info → nautobot-2.4.1.dist-info}/NOTICE +0 -0
- {nautobot-2.4.0.dist-info → nautobot-2.4.1.dist-info}/WHEEL +0 -0
- {nautobot-2.4.0.dist-info → nautobot-2.4.1.dist-info}/entry_points.txt +0 -0
|
Binary file
|
|
@@ -8,6 +8,7 @@ from tree_queries.models import TreeNode
|
|
|
8
8
|
|
|
9
9
|
from nautobot.core.testing import utils, ViewTestCases
|
|
10
10
|
from nautobot.core.utils import lookup
|
|
11
|
+
from nautobot.dcim.models import Controller, ControllerManagedDeviceGroup
|
|
11
12
|
from nautobot.extras import choices as extras_choices
|
|
12
13
|
from nautobot.extras.models import SecretsGroup, Tag
|
|
13
14
|
from nautobot.users import models as users_models
|
|
@@ -20,7 +21,7 @@ class WirelessNetworkTestCase(ViewTestCases.PrimaryObjectViewTestCase):
|
|
|
20
21
|
|
|
21
22
|
@classmethod
|
|
22
23
|
def setUpTestData(cls):
|
|
23
|
-
WirelessNetwork.objects.create(
|
|
24
|
+
cls.wireless_network = WirelessNetwork.objects.create(
|
|
24
25
|
name="Deletable Wireless Network 1",
|
|
25
26
|
mode=choices.WirelessNetworkModeChoices.STANDALONE,
|
|
26
27
|
authentication=choices.WirelessNetworkAuthenticationChoices.WPA2_PERSONAL,
|
|
@@ -72,6 +73,26 @@ class WirelessNetworkTestCase(ViewTestCases.PrimaryObjectViewTestCase):
|
|
|
72
73
|
"description": "New description",
|
|
73
74
|
}
|
|
74
75
|
|
|
76
|
+
@override_settings(EXEMPT_VIEW_PERMISSIONS=[])
|
|
77
|
+
def test_get_with_controled_manged_device_group_vlan_set_to_none(self):
|
|
78
|
+
"""Assert bug report #6763 (Wireless Network tab fails to render under Controller View) has been resolved"""
|
|
79
|
+
instance = self.wireless_network
|
|
80
|
+
|
|
81
|
+
controller = Controller.objects.first()
|
|
82
|
+
cmdg = ControllerManagedDeviceGroup.objects.create(
|
|
83
|
+
name="Test ControllerManagedDeviceGroup",
|
|
84
|
+
controller=controller,
|
|
85
|
+
)
|
|
86
|
+
cmdg.wireless_networks.add(instance)
|
|
87
|
+
|
|
88
|
+
self.add_permissions(
|
|
89
|
+
"wireless.view_wirelessnetwork", "wireless.view_controllermanageddevicegroupwirelessnetworkassignment"
|
|
90
|
+
)
|
|
91
|
+
|
|
92
|
+
# Try GET with model-level permission
|
|
93
|
+
response = self.client.get(instance.get_absolute_url())
|
|
94
|
+
self.assertInHTML("Test ControllerManagedDeviceGroup", response.content.decode(response.charset))
|
|
95
|
+
|
|
75
96
|
|
|
76
97
|
class SupportedDataRateTestCase(ViewTestCases.PrimaryObjectViewTestCase):
|
|
77
98
|
model = SupportedDataRate
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: nautobot
|
|
3
|
-
Version: 2.4.
|
|
3
|
+
Version: 2.4.1
|
|
4
4
|
Summary: Source of truth and network automation platform.
|
|
5
5
|
Home-page: https://nautobot.com
|
|
6
6
|
License: Apache-2.0
|
|
@@ -22,7 +22,7 @@ Provides-Extra: mysql
|
|
|
22
22
|
Provides-Extra: napalm
|
|
23
23
|
Provides-Extra: remote-storage
|
|
24
24
|
Provides-Extra: sso
|
|
25
|
-
Requires-Dist: Django (>=4.2.
|
|
25
|
+
Requires-Dist: Django (>=4.2.18,<4.3.0)
|
|
26
26
|
Requires-Dist: GitPython (>=3.1.43,<3.2.0)
|
|
27
27
|
Requires-Dist: Jinja2 (>=3.1.5,<3.2.0)
|
|
28
28
|
Requires-Dist: Markdown (>=3.6,<3.7)
|
|
@@ -152,7 +152,7 @@ nautobot/core/celery/backends.py,sha256=yIHL4xqIWFpCmV600NRZpO-PPVFaM5FnVKkQUlIc
|
|
|
152
152
|
nautobot/core/celery/control.py,sha256=0J8kyyCOKt7WMrkwLr-qW5loCfsO8GnuyEhgmu8NZOs,1538
|
|
153
153
|
nautobot/core/celery/encoders.py,sha256=hcoUhcUiEPPQ_G4T3bnUhK2yd3PdyRoBJc4DMif9CAI,2676
|
|
154
154
|
nautobot/core/celery/log.py,sha256=xPaKSQQ5ObL8P6qXSUkqxvURkwYvNT5DzcUaXl12w8k,1283
|
|
155
|
-
nautobot/core/celery/schedulers.py,sha256=
|
|
155
|
+
nautobot/core/celery/schedulers.py,sha256=NqF8QtJrCe6G6aJDfeMnESzdjvkfHjexj2A_hN-Ytkg,7165
|
|
156
156
|
nautobot/core/celery/task.py,sha256=lLe2qvzphsJWrS2_Ec6IKJCB5bt0hormrC5WimKBUiA,3006
|
|
157
157
|
nautobot/core/checks.py,sha256=-9PkB2Pmg3d7II0IhKhodfnsmmH2r8Um_FAWN6WHfCE,4587
|
|
158
158
|
nautobot/core/choices.py,sha256=fikIKzyr6T6KTUJIkrZaf1tpAGZ5sQhloV5rx0e6fOc,6593
|
|
@@ -167,7 +167,7 @@ nautobot/core/events/redis_broker.py,sha256=yPH_rsMelhL6n16ixsk5UqX1PQoIk-t6u7nz
|
|
|
167
167
|
nautobot/core/events/syslog_broker.py,sha256=RR9wrpOxiWBK1pEfmdaXd72wgJQZVRN5qml5H58oIfE,612
|
|
168
168
|
nautobot/core/exceptions.py,sha256=Z3XMLz8P-Tgrv-7MlUlyH2a88PjLu2uHZf4zwkdioyA,1085
|
|
169
169
|
nautobot/core/factory.py,sha256=cCoULZkVnfZdo27RLwStG9sPzNnXmlrDOghwGxkloGg,10279
|
|
170
|
-
nautobot/core/filters.py,sha256=
|
|
170
|
+
nautobot/core/filters.py,sha256=79iTuLO8obDHfPE3fFw5QW6FbCSdwp_-KgUJLJ5Ul2E,37779
|
|
171
171
|
nautobot/core/forms/__init__.py,sha256=3Y-eXVCApWxoK4qlIIO1L-lPlXvqQvX3w9JO-tovYJs,3510
|
|
172
172
|
nautobot/core/forms/constants.py,sha256=VTocTEPex6D4aaxqK9CUqmajWChbyC59cw4XGs7ZiF0,499
|
|
173
173
|
nautobot/core/forms/fields.py,sha256=C7hqTpGdya6tGBrRmJS7oY0_ClzMirDn6a0oXEqmTFc,32517
|
|
@@ -182,7 +182,7 @@ nautobot/core/graphql/schema_init.py,sha256=p5z7usFxshmEII1akimwaXDRTqMtpAFcFn4F
|
|
|
182
182
|
nautobot/core/graphql/types.py,sha256=_I-J0S5HFUmG4Hwt2sIbAoSllERZRQl-uoR6MwI7V6E,1547
|
|
183
183
|
nautobot/core/graphql/utils.py,sha256=cfRHdMSXbBCFq4HcNUOvZ5ibezUa-k9EFh7UcExRq4Y,4740
|
|
184
184
|
nautobot/core/jobs/__init__.py,sha256=yFPQM8xJpaGVDT0jCvflaUT1Mcve5ob__ddW_yaeGOE,16216
|
|
185
|
-
nautobot/core/jobs/bulk_actions.py,sha256=
|
|
185
|
+
nautobot/core/jobs/bulk_actions.py,sha256=cj_nIjqOrmz0654qguW2k3v1XhHmfU08vFF7hPZnJg4,13710
|
|
186
186
|
nautobot/core/jobs/cleanup.py,sha256=YOgGUmZUpLv_rtZ4eDN47GXVRXbkb-DuXOiANDa6uk0,5904
|
|
187
187
|
nautobot/core/jobs/groups.py,sha256=GMcIvRmfJN0Lwa90KeR1mFGqvpg8LXbQFCVJ4Y4f9Lc,1408
|
|
188
188
|
nautobot/core/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -201,7 +201,7 @@ nautobot/core/management/commands/send_installation_metrics.py,sha256=fIHmbBeWqE
|
|
|
201
201
|
nautobot/core/management/commands/start.py,sha256=LherN1UxKQtDCUAsRNHaz1yqfruWb9D4WIplMj69uno,154
|
|
202
202
|
nautobot/core/management/commands/validate_models.py,sha256=ouzDz8aR6uVop6VP26GRlYDxU0KNeA7JcKrpoCp4RmQ,2995
|
|
203
203
|
nautobot/core/middleware.py,sha256=ggP_MAcRKWvDQDJysNyGw2tozYT0ctyQnsNAKT3eR3U,6416
|
|
204
|
-
nautobot/core/models/__init__.py,sha256=
|
|
204
|
+
nautobot/core/models/__init__.py,sha256=n-C3qfdB0I9ODl5kJiQo1iNpHxg9DRTDIe0yNvlsKRQ,15515
|
|
205
205
|
nautobot/core/models/fields.py,sha256=qw-Zv05LXsBP-LJ6ovCMLEu_cxE9Mz1mqsCHfDfeCbU,17364
|
|
206
206
|
nautobot/core/models/generics.py,sha256=eitI2Hvp4By9nnnHPCWGCZaD_86Cu9wvfiZUffnuBV4,1817
|
|
207
207
|
nautobot/core/models/managers.py,sha256=p7PXZdGCc0FKwJxjM4OYgMtCPtHUoQfHJOOKqqQeUPk,1903
|
|
@@ -217,7 +217,7 @@ nautobot/core/settings.py,sha256=HAWaAowgm7sDJikyXx1dv_PJyJRc8XQM4Y146NPiDSY,519
|
|
|
217
217
|
nautobot/core/settings.yaml,sha256=TtNPOlN-Jmc-M4-3rIHFoXlHfeOXL_zBR6hAJKyoF9E,89281
|
|
218
218
|
nautobot/core/settings_funcs.py,sha256=QQ_olczPhH0r6yT6qNZ6YAqTEK06ZkhemprvAHv9PR0,6579
|
|
219
219
|
nautobot/core/signals.py,sha256=oteF3tAsHnFEPsNG1bp1SGJA0fIzsKIDEO9wF5Wq_N0,2853
|
|
220
|
-
nautobot/core/tables.py,sha256=
|
|
220
|
+
nautobot/core/tables.py,sha256=bwremr4XJyxnfylRU-dXxd1BpFCGhg9VLhfvEe6Uq6s,31453
|
|
221
221
|
nautobot/core/tasks.py,sha256=eitDpGSum6DHxeI7lCm_sUMHEaOC1SFx0TFcmC8txow,2102
|
|
222
222
|
nautobot/core/templates/403.html,sha256=J-47-TSCkhxcsIlXYQDZmXkZswayCkA_AUpJALtGMPE,219
|
|
223
223
|
nautobot/core/templates/403_csrf_failure.html,sha256=cfjvIeNvsEU32fX4oWarfVGJD0TmkDnYgmljJxGYFb8,504
|
|
@@ -370,9 +370,9 @@ nautobot/core/templatetags/ui_framework.py,sha256=Kz5PBVSmtp1zWpZitIBwxtQQSs30CZ
|
|
|
370
370
|
nautobot/core/testing/__init__.py,sha256=lgwv44f8yVcJrVuBsv3lg84jpYZV2G8qePdXZOxxbxM,4332
|
|
371
371
|
nautobot/core/testing/api.py,sha256=sWzI9FLIWrF_vcQoVoF1vmvEPo7uvstONXHiPyKpFgE,60797
|
|
372
372
|
nautobot/core/testing/context.py,sha256=Th0yRe1BOjQWVrGPjMOQhex5MPQ-gjxZZR1MosTI8JM,598
|
|
373
|
-
nautobot/core/testing/filters.py,sha256
|
|
373
|
+
nautobot/core/testing/filters.py,sha256=yLjOKPPCpjZiY9tZ6RRdz4dqG460sBO__uo7CXEE8No,24463
|
|
374
374
|
nautobot/core/testing/forms.py,sha256=I1e6aXqyojRQe21NcofY5KOY3IKzIcL6q9xubc0hILA,1674
|
|
375
|
-
nautobot/core/testing/integration.py,sha256=
|
|
375
|
+
nautobot/core/testing/integration.py,sha256=5cpNB87Vkx9wQOfZW4Abf3vG0qSj-v0FxtmI_nsZUmw,9338
|
|
376
376
|
nautobot/core/testing/migrations.py,sha256=Vai5Iv58RCINHszBAu4cL3y6lKg2zu_wtOQOPUeljpA,1604
|
|
377
377
|
nautobot/core/testing/mixins.py,sha256=kHV3vNOxUhygLU2Tk5ccDVPH_mY3IS-o3XUejSnGdc0,16065
|
|
378
378
|
nautobot/core/testing/models.py,sha256=IMwZ4HNToX60iM2M1U_4R7nxLA8UUHXR01kSDtwBF8s,3294
|
|
@@ -403,14 +403,14 @@ nautobot/core/tests/test_config.py,sha256=4kN1-yd0Y5pl5RWhpkdm3-Xt1RNXPMkwWW2i_L
|
|
|
403
403
|
nautobot/core/tests/test_csv.py,sha256=aqLj9ZJz5vdYnER5Vmrb8z38Fr9NfoLgvibrHhegl1M,15090
|
|
404
404
|
nautobot/core/tests/test_events.py,sha256=i3zMf6_AYP0KZqNi7gEV53bGIi8JI-rZhfWWF3PfGSo,9151
|
|
405
405
|
nautobot/core/tests/test_factory.py,sha256=-e4MBBgRWbYFOi0ae1Znm8JWTiDCcFY9YGVzJpPiN8A,1785
|
|
406
|
-
nautobot/core/tests/test_filters.py,sha256=
|
|
406
|
+
nautobot/core/tests/test_filters.py,sha256=JNGcY474Ke4lnqHhpqfkDAXyhamjUeAdbd0XRuSRIKg,66248
|
|
407
407
|
nautobot/core/tests/test_forms.py,sha256=_ENzH7JkdZaeki6MPtdwBoZjYiHJ2_hFgHEbNFMdT7w,35386
|
|
408
408
|
nautobot/core/tests/test_graphql.py,sha256=j9VShqSvd9LGnl3z8kOZPIaZgnoV18gRIKzTtZ4IVfg,108356
|
|
409
409
|
nautobot/core/tests/test_jinja_filters.py,sha256=xaNZzleIlN92Ss692_htXz5NdHKBqsUtAI3i3CgEUyk,3415
|
|
410
|
-
nautobot/core/tests/test_jobs.py,sha256=
|
|
410
|
+
nautobot/core/tests/test_jobs.py,sha256=Mpr-nLDHpFDxi6SAxdBQUSDD1mQ5fymHel-5rbGRheY,50082
|
|
411
411
|
nautobot/core/tests/test_logging.py,sha256=rmuKmhWEac2HBZMn27GA9c9LEjFshzwTDmXnXukWXvk,3043
|
|
412
412
|
nautobot/core/tests/test_managers.py,sha256=31PqBV_T83ZLoYxpKr-Zo0wD9MC366l-OBrjfLnaTOM,5653
|
|
413
|
-
nautobot/core/tests/test_models.py,sha256=
|
|
413
|
+
nautobot/core/tests/test_models.py,sha256=8YpWxVl77pSrDzx9MTaOsKOto0AFFUKVBnClXgcJNQc,9521
|
|
414
414
|
nautobot/core/tests/test_models_query_functions.py,sha256=UferVLax5EczfsRXDgHfeqZ7w0eCIF6zWpKUdzk1DUI,5742
|
|
415
415
|
nautobot/core/tests/test_nautobot_server.py,sha256=0aIMmiMRXXbUOUFIDnzugXwWby9zjdXawuV29QUu4yg,6382
|
|
416
416
|
nautobot/core/tests/test_navigations.py,sha256=wNFMQGUUHat0jAsPXy1klE9zN9TYh75PZ1-b1nsK14A,5379
|
|
@@ -450,8 +450,8 @@ nautobot/core/utils/permissions.py,sha256=KFtDvCm3aS4qCmLCKvOGKGsSSBlv2xMW8IQ4ZR
|
|
|
450
450
|
nautobot/core/utils/querysets.py,sha256=Fsftouekyf8POFNQfDJhLBVLbJr2dtpZsleEFFtpzYE,2517
|
|
451
451
|
nautobot/core/utils/requests.py,sha256=DWNYzVhBQLxMxfOSYtVsdZH1YW3PjgaWQsCiAp3as4M,9253
|
|
452
452
|
nautobot/core/views/__init__.py,sha256=BwcBTr4qB7RMS_k3PtPligIf55oFD1-27hs01nQJd5c,22376
|
|
453
|
-
nautobot/core/views/generic.py,sha256=
|
|
454
|
-
nautobot/core/views/mixins.py,sha256=
|
|
453
|
+
nautobot/core/views/generic.py,sha256=MCS5ezd9xBCn9iWB941gcc2kqpe7rYug2tbJT-ef28A,65921
|
|
454
|
+
nautobot/core/views/mixins.py,sha256=yft3S65A1JLGZRKTaziuS1AtQl_gluSG8fREPupqTEg,57939
|
|
455
455
|
nautobot/core/views/paginator.py,sha256=rKJLBbOA4jrL69q_eyFxY6Dpli25ydn2-2FOMcQe1zE,2677
|
|
456
456
|
nautobot/core/views/renderers.py,sha256=j5Y3sGJ4NJRIdVa1doCJYuYOkKF5AN5V0RDierytdvA,18562
|
|
457
457
|
nautobot/core/views/routers.py,sha256=xdfNWuMRKF5woyrH3ISMDf8Y_ajSWMf0LTUMW0fs9bQ,2706
|
|
@@ -461,14 +461,14 @@ nautobot/core/wsgi.py,sha256=cujlOp6n3G0IjNSR6FMEzkIBV2uQI8UK7u3lEE7j1Xs,1184
|
|
|
461
461
|
nautobot/dcim/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
462
462
|
nautobot/dcim/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
463
463
|
nautobot/dcim/api/exceptions.py,sha256=0z3bRZhh4yx6MAFIPrfu7ldCxppNTKOCsR3pUmgFirk,200
|
|
464
|
-
nautobot/dcim/api/serializers.py,sha256=
|
|
464
|
+
nautobot/dcim/api/serializers.py,sha256=eBi0FvVFOgPg89igycxjD5aHI24MVuIKycQRv9Da8cY,37741
|
|
465
465
|
nautobot/dcim/api/urls.py,sha256=O9IsTkZ0i8_oALInphpMr8bQqz2K7AgOaUu8UOkFXak,3889
|
|
466
466
|
nautobot/dcim/api/views.py,sha256=7owfIKrK1QW8pMyaoi_FvhjCqcXRp0iBHh2sqmKnQx4,29740
|
|
467
467
|
nautobot/dcim/apps.py,sha256=lwwG0Sxwx6KGSnk2i_rCFxiSOc37YA6BZldBO4gQ-m4,679
|
|
468
468
|
nautobot/dcim/choices.py,sha256=Flmc8dyRmpTZReLZKB7ukocYyQQbvsgBymwJgtMWc1E,48607
|
|
469
|
-
nautobot/dcim/constants.py,sha256=
|
|
469
|
+
nautobot/dcim/constants.py,sha256=krmU1Y6rceycUMDm21B0PN3FbMf1G91KKnyh1v_rEw8,2532
|
|
470
470
|
nautobot/dcim/elevations.py,sha256=xLdicAHD_I8MoL2N6QxDmyQBkaE6ADPvYdj4URY0t6A,12139
|
|
471
|
-
nautobot/dcim/factory.py,sha256=
|
|
471
|
+
nautobot/dcim/factory.py,sha256=TpMlKjOY8MOPdE-YYXff-QlXWvtSH1Ex3WdMYAeRQFQ,35843
|
|
472
472
|
nautobot/dcim/fields.py,sha256=wZGvoCqvNaT87m3zt0wf3CeUJhwXSaLANRFq_ZDHlmg,988
|
|
473
473
|
nautobot/dcim/filter_mixins.py,sha256=gnxnbzZAryVxiSnL5eD8FOKP566ihKCk9fzB5kzx8dc,250
|
|
474
474
|
nautobot/dcim/filters/__init__.py,sha256=lcHWU_XPRJFyBMJ6Umgrq47yVFlr1RrzdD1iYo6DXQk,79080
|
|
@@ -709,14 +709,16 @@ nautobot/dcim/tests/integration/test_cable_connect_form.py,sha256=afTXEOPwJ8B14G
|
|
|
709
709
|
nautobot/dcim/tests/integration/test_controller.py,sha256=AeoV0-U4NIpMVJ-HdAs279JUOo2CQ81Ht2dB1m2Opbw,2959
|
|
710
710
|
nautobot/dcim/tests/integration/test_controller_managed_device_group.py,sha256=U3LdziJqiCMChutQuHlkMF9daWsseyLVmrqyqorc58s,3687
|
|
711
711
|
nautobot/dcim/tests/integration/test_create_device.py,sha256=rO-RjNhFq1pn6F13tNgr2G8Wa18WMcSl7sqRMp2y2nQ,4110
|
|
712
|
-
nautobot/dcim/tests/
|
|
712
|
+
nautobot/dcim/tests/integration/test_device_bulk_delete.py,sha256=1xn4gV3uK5uHFmJP66MLbPfkP39TgjnX9Yras3Ijpdw,7898
|
|
713
|
+
nautobot/dcim/tests/integration/test_device_bulk_edit.py,sha256=MwdLBKeXjMUVAJtMk8PPPtPJHEkhEPGbFiS2QxPPr6I,7777
|
|
714
|
+
nautobot/dcim/tests/test_api.py,sha256=HH-E6wxGD1rH94Ij21LCexCZbJ_j-XdBx-jMA0C3rrQ,137485
|
|
713
715
|
nautobot/dcim/tests/test_cablepaths.py,sha256=tKb4peYEHU9bLL1jUYaeAw8H4ZPrkJ8Hp95kQjMAfnc,53711
|
|
714
716
|
nautobot/dcim/tests/test_filters.py,sha256=fdaaPNjV2wyeMVPWoLgXa_Q-M28jGpk9QeA3e2XQxm0,163948
|
|
715
717
|
nautobot/dcim/tests/test_forms.py,sha256=2HWEFl9aY8SoVeLEQgGTwBp1A2BoIT8nclJLv-h7_4Y,17537
|
|
716
718
|
nautobot/dcim/tests/test_graphql.py,sha256=zvO5HRRROiUlTIsoUS9W_PS7yabnL5RzT7zHekTdWfU,6850
|
|
717
719
|
nautobot/dcim/tests/test_jobs.py,sha256=71FIiPFFjLdbDLURTQtvm9fofxXOcctNXnMS_f_RPJM,4815
|
|
718
720
|
nautobot/dcim/tests/test_migrations.py,sha256=HqJZJ3907E_LJV6XNHE5IDDoVImWBqAEN20y5YNGed8,53096
|
|
719
|
-
nautobot/dcim/tests/test_models.py,sha256=
|
|
721
|
+
nautobot/dcim/tests/test_models.py,sha256=rhIQHQDU03Z0R1rsphw0MGaerncV-kLsJphy-f_5MQ0,143347
|
|
720
722
|
nautobot/dcim/tests/test_natural_ordering.py,sha256=2qPIo_XzgPIcSSbdry-KMpmyawPJK__CVaFwT1pB30c,4777
|
|
721
723
|
nautobot/dcim/tests/test_schema.py,sha256=fCCJVIoPoMEEK64IQqKiTEBbjBwkHGMCwfTGbBuso_8,3176
|
|
722
724
|
nautobot/dcim/tests/test_signals.py,sha256=i0owM4SFGlMK_WeJ3Kt5SwnZBBJgWVWoi6SsEmsoMXI,4553
|
|
@@ -750,13 +752,13 @@ nautobot/extras/forms/__init__.py,sha256=pX-lcU03zF0Klh2WJnKb2xbflJCF_9aV3v0MzHx
|
|
|
750
752
|
nautobot/extras/forms/base.py,sha256=Yzf8-Y4WIQVBan91-5Ly1Br1qRHdFuIIba0ubnZ1Q-g,2026
|
|
751
753
|
nautobot/extras/forms/contacts.py,sha256=PksSbDWgYicVirQ8HJg-WRhDPuiHDSSJQs49qzlaJ-U,6417
|
|
752
754
|
nautobot/extras/forms/forms.py,sha256=pYhzvfy1ZE-RdVOfK8mlYGy-eTD0aDO08zQoFRqsz70,70754
|
|
753
|
-
nautobot/extras/forms/mixins.py,sha256=
|
|
755
|
+
nautobot/extras/forms/mixins.py,sha256=x34A-7m2kBTGCzv9fANUXwh0Lnlx6CitH9YJe6R6Ybk,40877
|
|
754
756
|
nautobot/extras/graphql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
755
757
|
nautobot/extras/graphql/types.py,sha256=agY80xhUNXeUTXVJoysO-FqvFEDsuPo9tb5FoX5t2O0,1591
|
|
756
758
|
nautobot/extras/group_sync.py,sha256=ZPeniNgB0mmDV6NARtx7gxTxeKRCZDebgkKbyBQ5RMI,1611
|
|
757
759
|
nautobot/extras/health_checks.py,sha256=A0R8ste1lpb5_dzamqvt6GcNDjcfQbWqreHbgCZZDrs,6810
|
|
758
760
|
nautobot/extras/homepage.py,sha256=_Ie_hBqSINcLxti0wWm40KoZpOB8ImNGE9EeAHgutWE,2160
|
|
759
|
-
nautobot/extras/jobs.py,sha256=
|
|
761
|
+
nautobot/extras/jobs.py,sha256=6e5n3NnGDU9DQDbU7yufib6WbB6MN37k-Z7iSQ2CqPM,46253
|
|
760
762
|
nautobot/extras/management/__init__.py,sha256=FcUvZsw5OhOflIEitrzkKRu9mBrL4fTlF5_823m5lkE,16343
|
|
761
763
|
nautobot/extras/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
762
764
|
nautobot/extras/management/commands/fix_custom_fields.py,sha256=ustoew64lLvql8kzMmxph0rh0PWcJNlnECBF32ETuUQ,3573
|
|
@@ -1008,7 +1010,7 @@ nautobot/extras/templates/extras/webhook.html,sha256=hFv53oIJL4OX77cpGGbtuA3bPyt
|
|
|
1008
1010
|
nautobot/extras/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1009
1011
|
nautobot/extras/templatetags/computed_fields.py,sha256=QPy9FDvPFeQoSyuSaFKeBJ7aHERqUfD3PLSA9m0xdBU,1123
|
|
1010
1012
|
nautobot/extras/templatetags/custom_links.py,sha256=KgGZacBohC2rxDIURUG-qKcxkrZhKeSNEYXsD8elyUk,3705
|
|
1011
|
-
nautobot/extras/templatetags/job_buttons.py,sha256=
|
|
1013
|
+
nautobot/extras/templatetags/job_buttons.py,sha256=U5K1u7kC301iWf4CirBLvhqlTpDbXExLcFFBDQQLiZ8,7186
|
|
1012
1014
|
nautobot/extras/templatetags/log_levels.py,sha256=5e0s9CaRk0Lwv1Gt3bD-sPdjygHWtRKyEg2XJpBM3L4,417
|
|
1013
1015
|
nautobot/extras/templatetags/plugins.py,sha256=1wCWfFgTtJu1V9U-7-zgy4N8oJwv48OChZu2npsAz7E,6789
|
|
1014
1016
|
nautobot/extras/templatetags/registry.py,sha256=q7yVN37wZkctpx2J3htxsQ76ms3BKNyqMPuNq9u7j4I,577
|
|
@@ -1093,12 +1095,12 @@ nautobot/extras/tests/test_customfields.py,sha256=edVQTm4iT5GY5BVe79coCwwwW3FZwx
|
|
|
1093
1095
|
nautobot/extras/tests/test_datasources.py,sha256=tlLCaPFzZ2QgA9BVyVOrk-TivPUE8bupoPoEfjzjOk4,37498
|
|
1094
1096
|
nautobot/extras/tests/test_dynamicgroups.py,sha256=0u4-nRmbJ9TNyg8nf0RSQ0CfzKquHsY4XvXoOt3-Aco,57381
|
|
1095
1097
|
nautobot/extras/tests/test_filters.py,sha256=UGotAWvDq9eBcANH_Tn-5fFju6rmlNOV2nXShnifHNE,72300
|
|
1096
|
-
nautobot/extras/tests/test_forms.py,sha256
|
|
1098
|
+
nautobot/extras/tests/test_forms.py,sha256=-qSGbxmKCrxedJy-ICYOXhXk2Vvkr1oAZS1i99oqbhQ,53240
|
|
1097
1099
|
nautobot/extras/tests/test_job_variables.py,sha256=dK6PhwqcpL0MvG3ZveQvRhHMEMdXhTSWPi_EMvdqo90,5978
|
|
1098
|
-
nautobot/extras/tests/test_jobs.py,sha256=
|
|
1100
|
+
nautobot/extras/tests/test_jobs.py,sha256=ZtVrodqy4_3OZHIypBnfU0M7kodEM3Xj30FTDFEdLzU,56902
|
|
1099
1101
|
nautobot/extras/tests/test_management.py,sha256=zXfK433EaY5MQm__BWeXfRcJCCOAqFXmNzN8W8NBbW0,2282
|
|
1100
1102
|
nautobot/extras/tests/test_migrations.py,sha256=N9VzlAkfu4ZNOTDumCT4IgDbss-Xi432TEYxFTLHo8s,6166
|
|
1101
|
-
nautobot/extras/tests/test_models.py,sha256=
|
|
1103
|
+
nautobot/extras/tests/test_models.py,sha256=IceGvvDL0lqHQt0mFHFNEX5hJ9-JDOP6pJa9mibbccY,124110
|
|
1102
1104
|
nautobot/extras/tests/test_notes.py,sha256=foT_9YLXhYEnuaMug-Bz0EA2exAwrJGUV5dEVyleCGI,1456
|
|
1103
1105
|
nautobot/extras/tests/test_plugins.py,sha256=udFCvW_fOs5yDnGIK7B1AKAV0BXQJgkxl_CaIhpgkbU,36526
|
|
1104
1106
|
nautobot/extras/tests/test_registry.py,sha256=evPBCr-C8VzbbNtfjcONuEsJqarw0uUronYwfWAPoZ0,2762
|
|
@@ -1106,7 +1108,7 @@ nautobot/extras/tests/test_relationships.py,sha256=QsxPJSVtyIuk-yH1DYQbStmULOgnD
|
|
|
1106
1108
|
nautobot/extras/tests/test_schema.py,sha256=8BcnvSWw7xeiHM7pmZFas4hD8tbIoml6-dTWK_Y0ngc,2489
|
|
1107
1109
|
nautobot/extras/tests/test_tags.py,sha256=ogcBCWmXUAypllf2lNNyiz6gAB0delOTYRlOqtM0hmM,4945
|
|
1108
1110
|
nautobot/extras/tests/test_utils.py,sha256=GEmGNTl78_cL6fLsDSvV1gsww0muB6-y6qRYQMQ8qXU,4862
|
|
1109
|
-
nautobot/extras/tests/test_views.py,sha256=
|
|
1111
|
+
nautobot/extras/tests/test_views.py,sha256=fsYEBehL_ZSZO0if8BWD5rUZCECZmkAK5-uJxU4X2l4,153654
|
|
1110
1112
|
nautobot/extras/tests/test_webhooks.py,sha256=PenrxDwCDt6obI1OzvNN_PlyFP4Euh4EBsMbeEfOxFo,15790
|
|
1111
1113
|
nautobot/extras/urls.py,sha256=LxnTzdRkjLKq8quA3DOeTHYDxJJiwBe3bv-d-eXa5yc,23576
|
|
1112
1114
|
nautobot/extras/utils.py,sha256=0p5hFBGcOcWPeP2DmcR4vUeI0vyg6FC2aMCpRTYU8G0,37479
|
|
@@ -1229,7 +1231,7 @@ nautobot/ipam/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
|
|
|
1229
1231
|
nautobot/ipam/tests/features/prefixes.feature,sha256=Fa7TPdDY043ZJ8tWyyVIYvNCnszsx047reFd8Bs1KAk,6934
|
|
1230
1232
|
nautobot/ipam/tests/integration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1231
1233
|
nautobot/ipam/tests/integration/test_prefixes.py,sha256=WjN0pgmpw9snfdlRLiD9QrYn5VecjCCniVk8LxbbNFY,2133
|
|
1232
|
-
nautobot/ipam/tests/test_api.py,sha256=
|
|
1234
|
+
nautobot/ipam/tests/test_api.py,sha256=0Q15cfnISOVSsi2EhgFv0SZTmW13CyfGITy7BSR6E1E,78783
|
|
1233
1235
|
nautobot/ipam/tests/test_filters.py,sha256=5nE9YnvowZCCgRWavYKwBpT7y_qx3PAF-cPyZugU5S4,54767
|
|
1234
1236
|
nautobot/ipam/tests/test_forms.py,sha256=o1j-yR2sk_D7xQjW8gh2Wagv3EepC59aJzZu7_EiVGo,5146
|
|
1235
1237
|
nautobot/ipam/tests/test_graphql.py,sha256=TueQWXtLIxyYmFM158IhG4DeYcVZbMHlhv09oKJiQAo,1140
|
|
@@ -1361,7 +1363,7 @@ nautobot/project-static/docs/code-reference/nautobot/apps/models.html,sha256=CZf
|
|
|
1361
1363
|
nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html,sha256=azGM4Z-k0Cj4eKhY3Tf_dr2W0UhCS-LhbMc4dNjfxXQ,170614
|
|
1362
1364
|
nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html,sha256=OIkcRgK9idmtNqHfwL9-s8a120KARK7U65m_5ZS3D1Y,174616
|
|
1363
1365
|
nautobot/project-static/docs/code-reference/nautobot/apps/tables.html,sha256=n2uLqOBlwbsCL097wottu6IgqXUIwW_fdvtcGLk1_Zo,203011
|
|
1364
|
-
nautobot/project-static/docs/code-reference/nautobot/apps/testing.html,sha256=
|
|
1366
|
+
nautobot/project-static/docs/code-reference/nautobot/apps/testing.html,sha256=NC4OK22LcHZuq7-DAFsDmZwcZQo5C1ST50FJZOkNY3M,364536
|
|
1365
1367
|
nautobot/project-static/docs/code-reference/nautobot/apps/ui.html,sha256=X_UWP3SetDYoUNySUHSYB0hNjm1_QIsVAwm17ALKTgY,385348
|
|
1366
1368
|
nautobot/project-static/docs/code-reference/nautobot/apps/urls.html,sha256=AWlV2gFI9yFwW8Z5vbmGWF71HZvTpCVK8CDD5gJHqlc,168218
|
|
1367
1369
|
nautobot/project-static/docs/code-reference/nautobot/apps/utils.html,sha256=WPJtUdFyTik-FbodCQY04xghhC0GBlx2W3bHSTEglM4,316038
|
|
@@ -1680,7 +1682,7 @@ nautobot/project-static/docs/models/wireless/supporteddatarate.html,sha256=M7iq3
|
|
|
1680
1682
|
nautobot/project-static/docs/models/wireless/wirelessnetwork.html,sha256=Jd1CeE6iFb9iccZmmuBJUEk2t6pKsSF5eq4C3fLpJ84,630
|
|
1681
1683
|
nautobot/project-static/docs/nautobot_logo.png,sha256=mVJ0rWJcqys2XAJzSBZUDmTZSPWcI4OYvE_K4SB1580,9204
|
|
1682
1684
|
nautobot/project-static/docs/nautobot_logo.svg,sha256=jJ4smK4dolEszNsvkYp5xYF1jsZ9nw28GRPtT1Jj2o4,13318
|
|
1683
|
-
nautobot/project-static/docs/objects.inv,sha256=
|
|
1685
|
+
nautobot/project-static/docs/objects.inv,sha256=NlA7rOmbTsyuhKapu1W_-wiNUn8Cyp8LlG_x17VjduM,35441
|
|
1684
1686
|
nautobot/project-static/docs/overview/application_stack.html,sha256=zZ1VDT8kDQrp-b3nWTGy45VkgNd_T24QBLI_V9OGMR0,182764
|
|
1685
1687
|
nautobot/project-static/docs/overview/design_philosophy.html,sha256=WsJEdwgw1d1o4kHngb4b_cqpV9cVT2UvoI1IodlXpIY,170158
|
|
1686
1688
|
nautobot/project-static/docs/overview/index.html,sha256=_VpE7nvE4w9pJOwohLshOBX2yP-TDz5fEz5S4nK8aJM,434
|
|
@@ -1699,12 +1701,12 @@ nautobot/project-static/docs/release-notes/version-2.0.html,sha256=iLpkiFc41D9PS
|
|
|
1699
1701
|
nautobot/project-static/docs/release-notes/version-2.1.html,sha256=7c9s7GkWnywGKQjGtyHswbGQbSaVCfwLw6Qdec2qn1I,273831
|
|
1700
1702
|
nautobot/project-static/docs/release-notes/version-2.2.html,sha256=jrqbynxxJNJo2KZxqiR4C1bjEuRDkHsni0rF5o3THH8,272050
|
|
1701
1703
|
nautobot/project-static/docs/release-notes/version-2.3.html,sha256=IscKRo2Wby93zDXU0kDRZalicEAcfc8xiE0_YzRNLlc,327737
|
|
1702
|
-
nautobot/project-static/docs/release-notes/version-2.4.html,sha256=
|
|
1704
|
+
nautobot/project-static/docs/release-notes/version-2.4.html,sha256=JHvu9jV-k8PvyzFNZSkzQRRjztRsaacJ49eEDHYotDw,240575
|
|
1703
1705
|
nautobot/project-static/docs/requirements.txt,sha256=qfJDHQh8JXZMRTQZTOyZShzFwvlGg19bnVjHzAut9nE,385
|
|
1704
1706
|
nautobot/project-static/docs/rest-api/overview.html,sha256=VQVyL2N2SzKlJdGHCge8_Mh3f2W4ioPqI6BBRraIIwo,618
|
|
1705
|
-
nautobot/project-static/docs/search/search_index.json,sha256=
|
|
1706
|
-
nautobot/project-static/docs/sitemap.xml,sha256=
|
|
1707
|
-
nautobot/project-static/docs/sitemap.xml.gz,sha256=
|
|
1707
|
+
nautobot/project-static/docs/search/search_index.json,sha256=yrslC5rE-w3JY-NtCCa9tmkvPxXgbclqvptvEmSUjlM,2881970
|
|
1708
|
+
nautobot/project-static/docs/sitemap.xml,sha256=gRZ4bGRvtbiNccDO-Vkt48n38yJrvL65Mwdi9RG2zDM,51743
|
|
1709
|
+
nautobot/project-static/docs/sitemap.xml.gz,sha256=tyKpS0kJg_V-FmsXjgvwps4ubW9UnV-dhHsuy9FILjA,2578
|
|
1708
1710
|
nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html,sha256=0lloUiA-rNDNke4s3xOjZ0yvFFzw_LME350h3vZYLs4,205776
|
|
1709
1711
|
nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html,sha256=mqy5YvALiMWkPsCltC68-kZTwtS5b7-I41sVqWJ3kVs,170326
|
|
1710
1712
|
nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html,sha256=fh267z4LL9ZD6xoBX9N_bomljcEVJCYpuZIBOZ90jnY,246252
|
|
@@ -2356,12 +2358,12 @@ nautobot/wireless/tests/integration/test_radio_profile.py,sha256=pZmb94UYOWAwQz5
|
|
|
2356
2358
|
nautobot/wireless/tests/test_api.py,sha256=72qdI14mt3EGeoi_ieoet-X33grXp40UYmGgtINzmD4,8927
|
|
2357
2359
|
nautobot/wireless/tests/test_filters.py,sha256=8bC7J0fqLmW2h9MUhUqKcHk49S4pdarNjURNKPAMUZE,3414
|
|
2358
2360
|
nautobot/wireless/tests/test_models.py,sha256=Fpqc8H7qxXhlM8M8EuBVxTu623L58AHW_ee7gCQLYSs,747
|
|
2359
|
-
nautobot/wireless/tests/test_views.py,sha256=
|
|
2361
|
+
nautobot/wireless/tests/test_views.py,sha256=_387uMzc_F9xgxdRGu81PkVyDLmNFb1J-vXt3PdQGFA,18781
|
|
2360
2362
|
nautobot/wireless/urls.py,sha256=yfYcx1WHLx99pBesoaF602_fUQLXHtodWOi7XHtuX4c,395
|
|
2361
2363
|
nautobot/wireless/views.py,sha256=6N1Sf2J9-vECCqRN_4mr1XljCx0lObRG_sfb9Euhz24,5084
|
|
2362
|
-
nautobot-2.4.
|
|
2363
|
-
nautobot-2.4.
|
|
2364
|
-
nautobot-2.4.
|
|
2365
|
-
nautobot-2.4.
|
|
2366
|
-
nautobot-2.4.
|
|
2367
|
-
nautobot-2.4.
|
|
2364
|
+
nautobot-2.4.1.dist-info/LICENSE.txt,sha256=DVQuDIgE45qn836wDaWnYhSdxoLXgpRRKH4RuTjpRZQ,10174
|
|
2365
|
+
nautobot-2.4.1.dist-info/METADATA,sha256=g578EFfl0-8_0ZiQRsXU0De0WQ3lBddT5T-qD-CgClI,9914
|
|
2366
|
+
nautobot-2.4.1.dist-info/NOTICE,sha256=RA2yQ-u70Ex-APSWYkMN6IdM7zp7cWK0SzmVrqBCcUA,284
|
|
2367
|
+
nautobot-2.4.1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
2368
|
+
nautobot-2.4.1.dist-info/entry_points.txt,sha256=kUwm_Ve_FyUFjcYqTtQWsqJ2JKWPkHFOD8rcK71jX2k,58
|
|
2369
|
+
nautobot-2.4.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|