nautobot 2.2.4__py3-none-any.whl → 2.2.6__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.

Files changed (365) hide show
  1. nautobot/apps/api.py +2 -0
  2. nautobot/apps/models.py +2 -0
  3. nautobot/circuits/forms.py +15 -0
  4. nautobot/circuits/navigation.py +9 -1
  5. nautobot/circuits/views.py +2 -0
  6. nautobot/core/api/fields.py +13 -0
  7. nautobot/core/api/serializers.py +7 -1
  8. nautobot/core/filters.py +11 -0
  9. nautobot/core/management/commands/generate_test_data.py +128 -158
  10. nautobot/core/models/fields.py +15 -0
  11. nautobot/core/settings.yaml +3 -3
  12. nautobot/core/testing/filters.py +24 -1
  13. nautobot/core/testing/views.py +13 -1
  14. nautobot/core/tests/test_utils.py +48 -1
  15. nautobot/core/utils/git.py +121 -49
  16. nautobot/core/utils/module_loading.py +10 -2
  17. nautobot/core/views/utils.py +18 -1
  18. nautobot/dcim/factory.py +1 -1
  19. nautobot/dcim/filters/__init__.py +1 -1
  20. nautobot/dcim/forms.py +23 -4
  21. nautobot/dcim/tables/devicetypes.py +15 -4
  22. nautobot/dcim/tests/test_models.py +2 -0
  23. nautobot/dcim/tests/test_views.py +84 -0
  24. nautobot/dcim/views.py +3 -0
  25. nautobot/extras/api/views.py +2 -2
  26. nautobot/extras/context_managers.py +3 -0
  27. nautobot/extras/datasources/git.py +133 -135
  28. nautobot/extras/datasources/utils.py +3 -0
  29. nautobot/extras/filters/__init__.py +16 -1
  30. nautobot/extras/forms/forms.py +49 -3
  31. nautobot/extras/forms/mixins.py +0 -6
  32. nautobot/extras/jobs.py +9 -1
  33. nautobot/extras/migrations/0107_laxurlfield.py +28 -0
  34. nautobot/extras/migrations/0108_jobbutton_enabled.py +17 -0
  35. nautobot/extras/models/datasources.py +6 -4
  36. nautobot/extras/models/jobs.py +30 -0
  37. nautobot/extras/models/models.py +2 -4
  38. nautobot/extras/signals.py +6 -1
  39. nautobot/extras/tables.py +3 -0
  40. nautobot/extras/templates/extras/jobbutton_retrieve.html +6 -2
  41. nautobot/extras/templatetags/job_buttons.py +2 -2
  42. nautobot/extras/tests/git_data/01-valid-files/__init__.py +0 -0
  43. nautobot/extras/tests/git_data/01-valid-files/config_context_schemas/schema-1.yaml +18 -0
  44. nautobot/extras/tests/git_data/01-valid-files/config_contexts/context.yaml +12 -0
  45. nautobot/extras/tests/git_data/01-valid-files/config_contexts/devices/test-device.json +3 -0
  46. nautobot/extras/tests/git_data/01-valid-files/config_contexts/locations/Test Location.json +7 -0
  47. nautobot/extras/tests/git_data/01-valid-files/export_templates/dcim/device/template.j2 +3 -0
  48. nautobot/extras/tests/git_data/01-valid-files/export_templates/dcim/device/template2.html +4 -0
  49. nautobot/extras/tests/git_data/01-valid-files/export_templates/ipam/vlan/template.j2 +3 -0
  50. nautobot/extras/tests/git_data/01-valid-files/jobs/__init__.py +5 -0
  51. nautobot/extras/tests/git_data/01-valid-files/jobs/my_job.py +16 -0
  52. nautobot/extras/tests/git_data/02-invalid-files/__init__.py +0 -0
  53. nautobot/extras/tests/git_data/02-invalid-files/config_context_schemas/badschema1.json +2 -0
  54. nautobot/extras/tests/git_data/02-invalid-files/config_context_schemas/badschema2.json +1 -0
  55. nautobot/extras/tests/git_data/02-invalid-files/config_contexts/badcontext1.json +2 -0
  56. nautobot/extras/tests/git_data/02-invalid-files/config_contexts/badcontext2.json +1 -0
  57. nautobot/extras/tests/git_data/02-invalid-files/config_contexts/badcontext3.json +3 -0
  58. nautobot/extras/tests/git_data/02-invalid-files/config_contexts/devices/nosuchdevice.json +1 -0
  59. nautobot/extras/tests/git_data/02-invalid-files/dcim/template.j2 +0 -0
  60. nautobot/extras/tests/git_data/02-invalid-files/devices/template.j2 +0 -0
  61. nautobot/extras/tests/git_data/02-invalid-files/export_templates/dcim/nosuchmodel/template.j2 +3 -0
  62. nautobot/extras/tests/git_data/02-invalid-files/export_templates/nosuchapp/device/template.j2 +3 -0
  63. nautobot/extras/tests/git_data/02-invalid-files/jobs/__init__.py +2 -0
  64. nautobot/extras/tests/git_data/02-invalid-files/jobs/importerror.py +1 -0
  65. nautobot/extras/tests/git_data/02-invalid-files/jobs/syntaxerror.py +1 -0
  66. nautobot/extras/tests/git_helper.py +76 -0
  67. nautobot/extras/tests/test_api.py +52 -13
  68. nautobot/extras/tests/test_context_managers.py +33 -1
  69. nautobot/extras/tests/test_datasources.py +94 -276
  70. nautobot/extras/tests/test_filters.py +69 -0
  71. nautobot/extras/tests/test_forms.py +0 -3
  72. nautobot/extras/tests/test_models.py +8 -3
  73. nautobot/extras/tests/test_views.py +69 -11
  74. nautobot/extras/views.py +12 -10
  75. nautobot/ipam/filters.py +9 -1
  76. nautobot/ipam/forms.py +26 -0
  77. nautobot/ipam/tables.py +1 -1
  78. nautobot/ipam/tests/test_filters.py +15 -0
  79. nautobot/ipam/tests/test_views.py +9 -2
  80. nautobot/ipam/views.py +11 -0
  81. nautobot/project-static/docs/404.html +84 -9
  82. nautobot/project-static/docs/apps/index.html +97 -11
  83. nautobot/project-static/docs/apps/nautobot-apps.html +97 -11
  84. nautobot/project-static/docs/assets/app-icons/icon-CapacityMetrics.svg +1 -0
  85. nautobot/project-static/docs/assets/app-icons/icon-CircuitMaintenance.png +0 -0
  86. nautobot/project-static/docs/assets/javascripts/{bundle.3220b9d7.min.js → bundle.ad660dcc.min.js} +6 -6
  87. nautobot/project-static/docs/assets/javascripts/{bundle.3220b9d7.min.js.map → bundle.ad660dcc.min.js.map} +3 -3
  88. nautobot/project-static/docs/assets/javascripts/glightbox.min.js +1 -0
  89. nautobot/project-static/docs/assets/stylesheets/glightbox.min.css +1 -0
  90. nautobot/project-static/docs/assets/stylesheets/{main.66ac8b77.min.css → main.6543a935.min.css} +1 -1
  91. nautobot/project-static/docs/assets/stylesheets/{main.66ac8b77.min.css.map → main.6543a935.min.css.map} +1 -1
  92. nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +97 -11
  93. nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +97 -11
  94. nautobot/project-static/docs/code-reference/nautobot/apps/api.html +97 -11
  95. nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +97 -11
  96. nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +97 -11
  97. nautobot/project-static/docs/code-reference/nautobot/apps/config.html +97 -11
  98. nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +97 -11
  99. nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +97 -11
  100. nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +97 -11
  101. nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +97 -11
  102. nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +97 -11
  103. nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +97 -11
  104. nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +97 -11
  105. nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +97 -11
  106. nautobot/project-static/docs/code-reference/nautobot/apps/models.html +157 -13
  107. nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +97 -11
  108. nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +97 -11
  109. nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +97 -11
  110. nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +107 -12
  111. nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +97 -11
  112. nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +97 -11
  113. nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +144 -12
  114. nautobot/project-static/docs/code-reference/nautobot/apps/views.html +97 -11
  115. nautobot/project-static/docs/development/apps/api/configuration-view.html +97 -11
  116. nautobot/project-static/docs/development/apps/api/database-backend-config.html +97 -11
  117. nautobot/project-static/docs/development/apps/api/models/django-admin.html +97 -11
  118. nautobot/project-static/docs/development/apps/api/models/global-search.html +97 -11
  119. nautobot/project-static/docs/development/apps/api/models/graphql.html +97 -11
  120. nautobot/project-static/docs/development/apps/api/models/index.html +97 -11
  121. nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +97 -11
  122. nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +97 -11
  123. nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +98 -12
  124. nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +97 -11
  125. nautobot/project-static/docs/development/apps/api/platform-features/index.html +97 -11
  126. nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +97 -11
  127. nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +97 -11
  128. nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +97 -11
  129. nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +97 -11
  130. nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +97 -11
  131. nautobot/project-static/docs/development/apps/api/prometheus.html +97 -11
  132. nautobot/project-static/docs/development/apps/api/setup.html +97 -11
  133. nautobot/project-static/docs/development/apps/api/testing.html +97 -11
  134. nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +97 -11
  135. nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +97 -11
  136. nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +97 -11
  137. nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +97 -11
  138. nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +97 -11
  139. nautobot/project-static/docs/development/apps/api/views/base-template.html +97 -11
  140. nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +97 -11
  141. nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +97 -11
  142. nautobot/project-static/docs/development/apps/api/views/help-documentation.html +97 -11
  143. nautobot/project-static/docs/development/apps/api/views/index.html +97 -11
  144. nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +97 -11
  145. nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +97 -11
  146. nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +97 -11
  147. nautobot/project-static/docs/development/apps/api/views/notes.html +97 -11
  148. nautobot/project-static/docs/development/apps/api/views/rest-api.html +97 -11
  149. nautobot/project-static/docs/development/apps/api/views/urls.html +97 -11
  150. nautobot/project-static/docs/development/apps/index.html +97 -11
  151. nautobot/project-static/docs/development/apps/migration/code-updates.html +98 -12
  152. nautobot/project-static/docs/development/apps/migration/dependency-updates.html +97 -11
  153. nautobot/project-static/docs/development/apps/migration/from-v1.html +99 -13
  154. nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +97 -11
  155. nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +97 -11
  156. nautobot/project-static/docs/development/apps/migration/model-updates/global.html +97 -11
  157. nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +97 -11
  158. nautobot/project-static/docs/development/apps/porting-from-netbox.html +97 -11
  159. nautobot/project-static/docs/development/core/application-registry.html +98 -12
  160. nautobot/project-static/docs/development/core/best-practices.html +97 -11
  161. nautobot/project-static/docs/development/core/bootstrap-ui.html +97 -11
  162. nautobot/project-static/docs/development/core/caching.html +97 -11
  163. nautobot/project-static/docs/development/core/controllers.html +97 -11
  164. nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +97 -11
  165. nautobot/project-static/docs/development/core/generic-views.html +97 -11
  166. nautobot/project-static/docs/development/core/getting-started.html +99 -13
  167. nautobot/project-static/docs/development/core/homepage.html +97 -11
  168. nautobot/project-static/docs/development/core/index.html +97 -11
  169. nautobot/project-static/docs/development/core/model-checklist.html +97 -11
  170. nautobot/project-static/docs/development/core/model-features.html +97 -11
  171. nautobot/project-static/docs/development/core/natural-keys.html +97 -11
  172. nautobot/project-static/docs/development/core/navigation-menu.html +97 -11
  173. nautobot/project-static/docs/development/core/release-checklist.html +97 -11
  174. nautobot/project-static/docs/development/core/role-internals.html +97 -11
  175. nautobot/project-static/docs/development/core/settings.html +97 -11
  176. nautobot/project-static/docs/development/core/style-guide.html +97 -11
  177. nautobot/project-static/docs/development/core/templates.html +97 -11
  178. nautobot/project-static/docs/development/core/testing.html +98 -12
  179. nautobot/project-static/docs/development/core/user-preferences.html +97 -11
  180. nautobot/project-static/docs/development/index.html +97 -11
  181. nautobot/project-static/docs/development/jobs/index.html +97 -11
  182. nautobot/project-static/docs/development/jobs/migration/from-v1.html +97 -11
  183. nautobot/project-static/docs/index.html +13 -8362
  184. nautobot/project-static/docs/objects.inv +0 -0
  185. nautobot/project-static/docs/overview/application_stack.html +8229 -0
  186. nautobot/project-static/docs/overview/design_philosophy.html +8158 -0
  187. nautobot/project-static/docs/overview/index.html +8230 -0
  188. nautobot/project-static/docs/release-notes/index.html +97 -11
  189. nautobot/project-static/docs/release-notes/version-1.0.html +98 -12
  190. nautobot/project-static/docs/release-notes/version-1.1.html +97 -11
  191. nautobot/project-static/docs/release-notes/version-1.2.html +99 -13
  192. nautobot/project-static/docs/release-notes/version-1.3.html +98 -12
  193. nautobot/project-static/docs/release-notes/version-1.4.html +99 -13
  194. nautobot/project-static/docs/release-notes/version-1.5.html +99 -13
  195. nautobot/project-static/docs/release-notes/version-1.6.html +626 -160
  196. nautobot/project-static/docs/release-notes/version-2.0.html +100 -14
  197. nautobot/project-static/docs/release-notes/version-2.1.html +97 -11
  198. nautobot/project-static/docs/release-notes/version-2.2.html +546 -107
  199. nautobot/project-static/docs/requirements.txt +3 -2
  200. nautobot/project-static/docs/search/search_index.json +1 -1
  201. nautobot/project-static/docs/sitemap.xml +268 -258
  202. nautobot/project-static/docs/sitemap.xml.gz +0 -0
  203. nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +97 -11
  204. nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +97 -11
  205. nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +99 -13
  206. nautobot/project-static/docs/user-guide/administration/configuration/index.html +98 -12
  207. nautobot/project-static/docs/user-guide/administration/configuration/optional-settings.html +100 -14
  208. nautobot/project-static/docs/user-guide/administration/configuration/required-settings.html +97 -11
  209. nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +97 -11
  210. nautobot/project-static/docs/user-guide/administration/guides/caching.html +97 -11
  211. nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +97 -11
  212. nautobot/project-static/docs/user-guide/administration/guides/healthcheck.html +97 -11
  213. nautobot/project-static/docs/user-guide/administration/guides/permissions.html +97 -11
  214. nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +97 -11
  215. nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +98 -12
  216. nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +97 -11
  217. nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +97 -11
  218. nautobot/project-static/docs/user-guide/administration/installation/app-install.html +97 -11
  219. nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +97 -11
  220. nautobot/project-static/docs/user-guide/administration/installation/http-server.html +97 -11
  221. nautobot/project-static/docs/user-guide/administration/installation/index.html +97 -11
  222. nautobot/project-static/docs/user-guide/administration/installation/install_system.html +97 -11
  223. nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +101 -15
  224. nautobot/project-static/docs/user-guide/administration/installation/services.html +98 -12
  225. nautobot/project-static/docs/user-guide/administration/installation-extras/docker.html +97 -11
  226. nautobot/project-static/docs/user-guide/administration/installation-extras/health-checks.html +97 -11
  227. nautobot/project-static/docs/user-guide/administration/installation-extras/selinux-troubleshooting.html +97 -11
  228. nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +97 -11
  229. nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +97 -11
  230. nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +97 -11
  231. nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +97 -11
  232. nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +97 -11
  233. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +97 -11
  234. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +97 -11
  235. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +98 -12
  236. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +97 -11
  237. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +97 -11
  238. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +97 -30
  239. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/tables/v2-code-location-changes.yaml +1 -1
  240. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +100 -14
  241. nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +97 -11
  242. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +97 -11
  243. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +97 -11
  244. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +97 -11
  245. nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +97 -11
  246. nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +97 -11
  247. nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +97 -11
  248. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +97 -11
  249. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +97 -11
  250. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +97 -11
  251. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +97 -11
  252. nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +97 -11
  253. nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +97 -11
  254. nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +99 -13
  255. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +97 -11
  256. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +97 -11
  257. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +97 -11
  258. nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +97 -11
  259. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +98 -12
  260. nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +97 -11
  261. nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +97 -11
  262. nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +97 -11
  263. nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +97 -11
  264. nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +97 -11
  265. nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +97 -11
  266. nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +97 -11
  267. nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +97 -11
  268. nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +97 -11
  269. nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +97 -11
  270. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +97 -11
  271. nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +97 -11
  272. nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +97 -11
  273. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +97 -11
  274. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +97 -11
  275. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +97 -11
  276. nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +97 -11
  277. nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +97 -11
  278. nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +97 -11
  279. nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +97 -11
  280. nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +97 -11
  281. nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +97 -11
  282. nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +97 -11
  283. nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +97 -11
  284. nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +97 -11
  285. nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +97 -11
  286. nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +97 -11
  287. nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +97 -11
  288. nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +97 -11
  289. nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +97 -11
  290. nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +97 -11
  291. nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +97 -11
  292. nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +97 -11
  293. nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +97 -11
  294. nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +97 -11
  295. nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +97 -11
  296. nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +97 -11
  297. nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +97 -11
  298. nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +97 -11
  299. nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +97 -11
  300. nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +97 -11
  301. nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +97 -11
  302. nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +97 -11
  303. nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +97 -11
  304. nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +97 -11
  305. nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +97 -11
  306. nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +97 -11
  307. nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +100 -14
  308. nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +97 -11
  309. nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +97 -11
  310. nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +98 -12
  311. nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +97 -11
  312. nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +97 -11
  313. nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +97 -11
  314. nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +97 -11
  315. nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +98 -12
  316. nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +97 -11
  317. nautobot/project-static/docs/user-guide/feature-guides/graphql.html +97 -11
  318. nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +97 -11
  319. nautobot/project-static/docs/user-guide/feature-guides/relationships.html +97 -11
  320. nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +97 -11
  321. nautobot/project-static/docs/user-guide/index.html +100 -14
  322. nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +97 -11
  323. nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +97 -11
  324. nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +97 -11
  325. nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +97 -11
  326. nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +97 -11
  327. nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +97 -11
  328. nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +97 -11
  329. nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +97 -11
  330. nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +97 -11
  331. nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +97 -11
  332. nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +97 -11
  333. nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +98 -12
  334. nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +98 -12
  335. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +102 -15
  336. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +97 -11
  337. nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +99 -13
  338. nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +99 -13
  339. nautobot/project-static/docs/user-guide/platform-functionality/note.html +97 -11
  340. nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +97 -11
  341. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +97 -11
  342. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +97 -11
  343. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +97 -11
  344. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +97 -11
  345. nautobot/project-static/docs/user-guide/platform-functionality/role.html +98 -44
  346. nautobot/project-static/docs/user-guide/platform-functionality/secret.html +97 -11
  347. nautobot/project-static/docs/user-guide/platform-functionality/status.html +97 -11
  348. nautobot/project-static/docs/user-guide/platform-functionality/tag.html +97 -11
  349. nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +97 -11
  350. nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +97 -11
  351. nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +97 -11
  352. nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +97 -11
  353. nautobot/project-static/js/forms.js +2 -1
  354. nautobot/tenancy/forms.py +9 -0
  355. nautobot/tenancy/views.py +1 -0
  356. nautobot/virtualization/forms.py +18 -6
  357. nautobot/virtualization/templates/virtualization/clustertype.html +2 -2
  358. nautobot/virtualization/views.py +2 -0
  359. {nautobot-2.2.4.dist-info → nautobot-2.2.6.dist-info}/METADATA +1 -1
  360. {nautobot-2.2.4.dist-info → nautobot-2.2.6.dist-info}/RECORD +364 -331
  361. nautobot/extras/tests/test_git.py +0 -23
  362. {nautobot-2.2.4.dist-info → nautobot-2.2.6.dist-info}/LICENSE.txt +0 -0
  363. {nautobot-2.2.4.dist-info → nautobot-2.2.6.dist-info}/NOTICE +0 -0
  364. {nautobot-2.2.4.dist-info → nautobot-2.2.6.dist-info}/WHEEL +0 -0
  365. {nautobot-2.2.4.dist-info → nautobot-2.2.6.dist-info}/entry_points.txt +0 -0
@@ -18,7 +18,7 @@
18
18
 
19
19
 
20
20
  <link rel="icon" href="../assets/favicon.ico">
21
- <meta name="generator" content="mkdocs-1.5.3, mkdocs-material-9.5.18">
21
+ <meta name="generator" content="mkdocs-1.6.0, mkdocs-material-9.5.26">
22
22
 
23
23
 
24
24
 
@@ -26,7 +26,7 @@
26
26
 
27
27
 
28
28
 
29
- <link rel="stylesheet" href="../assets/stylesheets/main.66ac8b77.min.css">
29
+ <link rel="stylesheet" href="../assets/stylesheets/main.6543a935.min.css">
30
30
 
31
31
 
32
32
  <link rel="stylesheet" href="../assets/stylesheets/palette.06af60db.min.css">
@@ -67,7 +67,16 @@
67
67
 
68
68
 
69
69
 
70
- </head>
70
+ <link href="../assets/stylesheets/glightbox.min.css" rel="stylesheet"/><style>
71
+ html.glightbox-open { overflow: initial; height: 100%; }
72
+ .gslide-title { margin-top: 0px; user-select: text; }
73
+ .gslide-desc { color: #666; user-select: text; }
74
+ .gslide-image img { background: white; }
75
+ .gscrollbar-fixer { padding-right: 15px; }
76
+ .gdesc-inner { font-size: 0.75rem; }
77
+ body[data-md-color-scheme="slate"] .gdesc-inner { background: var(--md-default-bg-color);}
78
+ body[data-md-color-scheme="slate"] .gslide-title { color: var(--md-default-fg-color);}
79
+ body[data-md-color-scheme="slate"] .gslide-desc { color: var(--md-default-fg-color);}</style> <script src="../assets/javascripts/glightbox.min.js"></script></head>
71
80
 
72
81
 
73
82
 
@@ -102,7 +111,7 @@
102
111
 
103
112
  <header class="md-header md-header--shadow md-header--lifted" data-md-component="header">
104
113
  <nav class="md-header__inner md-grid" aria-label="Header">
105
- <a href="../index.html" title="Nautobot Documentation" class="md-header__button md-logo" aria-label="Nautobot Documentation" data-md-component="logo">
114
+ <a href=".." title="Nautobot Documentation" class="md-header__button md-logo" aria-label="Nautobot Documentation" data-md-component="logo">
106
115
 
107
116
  <img src="../assets/nautobot_logo.svg" alt="logo">
108
117
 
@@ -191,7 +200,7 @@
191
200
 
192
201
  </form>
193
202
  <div class="md-search__output">
194
- <div class="md-search__scrollwrap" data-md-scrollfix>
203
+ <div class="md-search__scrollwrap" tabindex="0" data-md-scrollfix>
195
204
  <div class="md-search-result" data-md-component="search-result">
196
205
  <div class="md-search-result__meta">
197
206
  Initializing search
@@ -229,7 +238,7 @@
229
238
 
230
239
 
231
240
  <li class="md-tabs__item">
232
- <a href="../index.html" class="md-tabs__link">
241
+ <a href="../overview/index.html" class="md-tabs__link">
233
242
 
234
243
 
235
244
 
@@ -356,7 +365,7 @@
356
365
 
357
366
  <nav class="md-nav md-nav--primary md-nav--lifted" aria-label="Navigation" data-md-level="0">
358
367
  <label class="md-nav__title" for="__drawer">
359
- <a href="../index.html" title="Nautobot Documentation" class="md-nav__button md-logo" aria-label="Nautobot Documentation" data-md-component="logo">
368
+ <a href=".." title="Nautobot Documentation" class="md-nav__button md-logo" aria-label="Nautobot Documentation" data-md-component="logo">
360
369
 
361
370
  <img src="../assets/nautobot_logo.svg" alt="logo">
362
371
 
@@ -384,19 +393,94 @@
384
393
 
385
394
 
386
395
 
387
- <li class="md-nav__item">
388
- <a href="../index.html" class="md-nav__link">
396
+
397
+
398
+
399
+
400
+
401
+
402
+
403
+ <li class="md-nav__item md-nav__item--nested">
404
+
405
+
406
+
407
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_1" >
389
408
 
409
+
410
+
411
+ <div class="md-nav__link md-nav__container">
412
+ <a href="../overview/index.html" class="md-nav__link ">
413
+
390
414
 
391
415
  <span class="md-ellipsis">
392
416
  Overview
393
417
  </span>
394
418
 
395
419
 
420
+ </a>
421
+
422
+
423
+ <label class="md-nav__link " for="__nav_1" id="__nav_1_label" tabindex="0">
424
+ <span class="md-nav__icon md-icon"></span>
425
+ </label>
426
+
427
+ </div>
428
+
429
+ <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_1_label" aria-expanded="false">
430
+ <label class="md-nav__title" for="__nav_1">
431
+ <span class="md-nav__icon md-icon"></span>
432
+ Overview
433
+ </label>
434
+ <ul class="md-nav__list" data-md-scrollfix>
435
+
436
+
437
+
438
+
439
+
440
+
441
+
442
+ <li class="md-nav__item">
443
+ <a href="../overview/design_philosophy.html" class="md-nav__link">
444
+
445
+
446
+ <span class="md-ellipsis">
447
+ Design Philosophy
448
+ </span>
449
+
450
+
451
+ </a>
452
+ </li>
453
+
454
+
455
+
456
+
457
+
458
+
459
+
460
+
461
+
462
+
463
+ <li class="md-nav__item">
464
+ <a href="../overview/application_stack.html" class="md-nav__link">
465
+
466
+
467
+ <span class="md-ellipsis">
468
+ Application Stack
469
+ </span>
470
+
471
+
396
472
  </a>
397
473
  </li>
398
474
 
399
475
 
476
+
477
+
478
+ </ul>
479
+ </nav>
480
+
481
+ </li>
482
+
483
+
400
484
 
401
485
 
402
486
 
@@ -7373,13 +7457,13 @@
7373
7457
  </li>
7374
7458
 
7375
7459
  <li class="md-nav__item">
7376
- <a href="#v224-2024-05-13" class="md-nav__link">
7460
+ <a href="#v226-2024-06-24" class="md-nav__link">
7377
7461
  <span class="md-ellipsis">
7378
- v2.2.4 (2024-05-13)
7462
+ v2.2.6 (2024-06-24)
7379
7463
  </span>
7380
7464
  </a>
7381
7465
 
7382
- <nav class="md-nav" aria-label="v2.2.4 (2024-05-13)">
7466
+ <nav class="md-nav" aria-label="v2.2.6 (2024-06-24)">
7383
7467
  <ul class="md-nav__list">
7384
7468
 
7385
7469
  <li class="md-nav__item">
@@ -7398,6 +7482,15 @@
7398
7482
  </span>
7399
7483
  </a>
7400
7484
 
7485
+ </li>
7486
+
7487
+ <li class="md-nav__item">
7488
+ <a href="#changed_1" class="md-nav__link">
7489
+ <span class="md-ellipsis">
7490
+ Changed
7491
+ </span>
7492
+ </a>
7493
+
7401
7494
  </li>
7402
7495
 
7403
7496
  <li class="md-nav__item">
@@ -7433,13 +7526,13 @@
7433
7526
  </li>
7434
7527
 
7435
7528
  <li class="md-nav__item">
7436
- <a href="#v223-2024-04-30" class="md-nav__link">
7529
+ <a href="#v225-2024-05-28" class="md-nav__link">
7437
7530
  <span class="md-ellipsis">
7438
- v2.2.3 (2024-04-30)
7531
+ v2.2.5 (2024-05-28)
7439
7532
  </span>
7440
7533
  </a>
7441
7534
 
7442
- <nav class="md-nav" aria-label="v2.2.3 (2024-04-30)">
7535
+ <nav class="md-nav" aria-label="v2.2.5 (2024-05-28)">
7443
7536
  <ul class="md-nav__list">
7444
7537
 
7445
7538
  <li class="md-nav__item">
@@ -7461,9 +7554,9 @@
7461
7554
  </li>
7462
7555
 
7463
7556
  <li class="md-nav__item">
7464
- <a href="#changed_1" class="md-nav__link">
7557
+ <a href="#removed" class="md-nav__link">
7465
7558
  <span class="md-ellipsis">
7466
- Changed
7559
+ Removed
7467
7560
  </span>
7468
7561
  </a>
7469
7562
 
@@ -7502,13 +7595,13 @@
7502
7595
  </li>
7503
7596
 
7504
7597
  <li class="md-nav__item">
7505
- <a href="#v222-2024-04-18" class="md-nav__link">
7598
+ <a href="#v224-2024-05-13" class="md-nav__link">
7506
7599
  <span class="md-ellipsis">
7507
- v2.2.2 (2024-04-18)
7600
+ v2.2.4 (2024-05-13)
7508
7601
  </span>
7509
7602
  </a>
7510
7603
 
7511
- <nav class="md-nav" aria-label="v2.2.2 (2024-04-18)">
7604
+ <nav class="md-nav" aria-label="v2.2.4 (2024-05-13)">
7512
7605
  <ul class="md-nav__list">
7513
7606
 
7514
7607
  <li class="md-nav__item">
@@ -7527,6 +7620,66 @@
7527
7620
  </span>
7528
7621
  </a>
7529
7622
 
7623
+ </li>
7624
+
7625
+ <li class="md-nav__item">
7626
+ <a href="#fixed_2" class="md-nav__link">
7627
+ <span class="md-ellipsis">
7628
+ Fixed
7629
+ </span>
7630
+ </a>
7631
+
7632
+ </li>
7633
+
7634
+ <li class="md-nav__item">
7635
+ <a href="#documentation_2" class="md-nav__link">
7636
+ <span class="md-ellipsis">
7637
+ Documentation
7638
+ </span>
7639
+ </a>
7640
+
7641
+ </li>
7642
+
7643
+ <li class="md-nav__item">
7644
+ <a href="#housekeeping_2" class="md-nav__link">
7645
+ <span class="md-ellipsis">
7646
+ Housekeeping
7647
+ </span>
7648
+ </a>
7649
+
7650
+ </li>
7651
+
7652
+ </ul>
7653
+ </nav>
7654
+
7655
+ </li>
7656
+
7657
+ <li class="md-nav__item">
7658
+ <a href="#v223-2024-04-30" class="md-nav__link">
7659
+ <span class="md-ellipsis">
7660
+ v2.2.3 (2024-04-30)
7661
+ </span>
7662
+ </a>
7663
+
7664
+ <nav class="md-nav" aria-label="v2.2.3 (2024-04-30)">
7665
+ <ul class="md-nav__list">
7666
+
7667
+ <li class="md-nav__item">
7668
+ <a href="#security_3" class="md-nav__link">
7669
+ <span class="md-ellipsis">
7670
+ Security
7671
+ </span>
7672
+ </a>
7673
+
7674
+ </li>
7675
+
7676
+ <li class="md-nav__item">
7677
+ <a href="#added_4" class="md-nav__link">
7678
+ <span class="md-ellipsis">
7679
+ Added
7680
+ </span>
7681
+ </a>
7682
+
7530
7683
  </li>
7531
7684
 
7532
7685
  <li class="md-nav__item">
@@ -7539,7 +7692,7 @@
7539
7692
  </li>
7540
7693
 
7541
7694
  <li class="md-nav__item">
7542
- <a href="#fixed_2" class="md-nav__link">
7695
+ <a href="#fixed_3" class="md-nav__link">
7543
7696
  <span class="md-ellipsis">
7544
7697
  Fixed
7545
7698
  </span>
@@ -7548,7 +7701,7 @@
7548
7701
  </li>
7549
7702
 
7550
7703
  <li class="md-nav__item">
7551
- <a href="#documentation_2" class="md-nav__link">
7704
+ <a href="#documentation_3" class="md-nav__link">
7552
7705
  <span class="md-ellipsis">
7553
7706
  Documentation
7554
7707
  </span>
@@ -7557,7 +7710,76 @@
7557
7710
  </li>
7558
7711
 
7559
7712
  <li class="md-nav__item">
7560
- <a href="#housekeeping_2" class="md-nav__link">
7713
+ <a href="#housekeeping_3" class="md-nav__link">
7714
+ <span class="md-ellipsis">
7715
+ Housekeeping
7716
+ </span>
7717
+ </a>
7718
+
7719
+ </li>
7720
+
7721
+ </ul>
7722
+ </nav>
7723
+
7724
+ </li>
7725
+
7726
+ <li class="md-nav__item">
7727
+ <a href="#v222-2024-04-18" class="md-nav__link">
7728
+ <span class="md-ellipsis">
7729
+ v2.2.2 (2024-04-18)
7730
+ </span>
7731
+ </a>
7732
+
7733
+ <nav class="md-nav" aria-label="v2.2.2 (2024-04-18)">
7734
+ <ul class="md-nav__list">
7735
+
7736
+ <li class="md-nav__item">
7737
+ <a href="#security_4" class="md-nav__link">
7738
+ <span class="md-ellipsis">
7739
+ Security
7740
+ </span>
7741
+ </a>
7742
+
7743
+ </li>
7744
+
7745
+ <li class="md-nav__item">
7746
+ <a href="#added_5" class="md-nav__link">
7747
+ <span class="md-ellipsis">
7748
+ Added
7749
+ </span>
7750
+ </a>
7751
+
7752
+ </li>
7753
+
7754
+ <li class="md-nav__item">
7755
+ <a href="#changed_3" class="md-nav__link">
7756
+ <span class="md-ellipsis">
7757
+ Changed
7758
+ </span>
7759
+ </a>
7760
+
7761
+ </li>
7762
+
7763
+ <li class="md-nav__item">
7764
+ <a href="#fixed_4" class="md-nav__link">
7765
+ <span class="md-ellipsis">
7766
+ Fixed
7767
+ </span>
7768
+ </a>
7769
+
7770
+ </li>
7771
+
7772
+ <li class="md-nav__item">
7773
+ <a href="#documentation_4" class="md-nav__link">
7774
+ <span class="md-ellipsis">
7775
+ Documentation
7776
+ </span>
7777
+ </a>
7778
+
7779
+ </li>
7780
+
7781
+ <li class="md-nav__item">
7782
+ <a href="#housekeeping_4" class="md-nav__link">
7561
7783
  <span class="md-ellipsis">
7562
7784
  Housekeeping
7563
7785
  </span>
@@ -7581,7 +7803,7 @@
7581
7803
  <ul class="md-nav__list">
7582
7804
 
7583
7805
  <li class="md-nav__item">
7584
- <a href="#security_3" class="md-nav__link">
7806
+ <a href="#security_5" class="md-nav__link">
7585
7807
  <span class="md-ellipsis">
7586
7808
  Security
7587
7809
  </span>
@@ -7590,7 +7812,7 @@
7590
7812
  </li>
7591
7813
 
7592
7814
  <li class="md-nav__item">
7593
- <a href="#added_4" class="md-nav__link">
7815
+ <a href="#added_6" class="md-nav__link">
7594
7816
  <span class="md-ellipsis">
7595
7817
  Added
7596
7818
  </span>
@@ -7599,7 +7821,7 @@
7599
7821
  </li>
7600
7822
 
7601
7823
  <li class="md-nav__item">
7602
- <a href="#changed_3" class="md-nav__link">
7824
+ <a href="#changed_4" class="md-nav__link">
7603
7825
  <span class="md-ellipsis">
7604
7826
  Changed
7605
7827
  </span>
@@ -7608,7 +7830,7 @@
7608
7830
  </li>
7609
7831
 
7610
7832
  <li class="md-nav__item">
7611
- <a href="#fixed_3" class="md-nav__link">
7833
+ <a href="#fixed_5" class="md-nav__link">
7612
7834
  <span class="md-ellipsis">
7613
7835
  Fixed
7614
7836
  </span>
@@ -7626,7 +7848,7 @@
7626
7848
  </li>
7627
7849
 
7628
7850
  <li class="md-nav__item">
7629
- <a href="#documentation_3" class="md-nav__link">
7851
+ <a href="#documentation_5" class="md-nav__link">
7630
7852
  <span class="md-ellipsis">
7631
7853
  Documentation
7632
7854
  </span>
@@ -7635,7 +7857,7 @@
7635
7857
  </li>
7636
7858
 
7637
7859
  <li class="md-nav__item">
7638
- <a href="#housekeeping_3" class="md-nav__link">
7860
+ <a href="#housekeeping_5" class="md-nav__link">
7639
7861
  <span class="md-ellipsis">
7640
7862
  Housekeeping
7641
7863
  </span>
@@ -7659,7 +7881,7 @@
7659
7881
  <ul class="md-nav__list">
7660
7882
 
7661
7883
  <li class="md-nav__item">
7662
- <a href="#added_5" class="md-nav__link">
7884
+ <a href="#added_7" class="md-nav__link">
7663
7885
  <span class="md-ellipsis">
7664
7886
  Added
7665
7887
  </span>
@@ -7668,7 +7890,7 @@
7668
7890
  </li>
7669
7891
 
7670
7892
  <li class="md-nav__item">
7671
- <a href="#changed_4" class="md-nav__link">
7893
+ <a href="#changed_5" class="md-nav__link">
7672
7894
  <span class="md-ellipsis">
7673
7895
  Changed
7674
7896
  </span>
@@ -7677,7 +7899,7 @@
7677
7899
  </li>
7678
7900
 
7679
7901
  <li class="md-nav__item">
7680
- <a href="#fixed_4" class="md-nav__link">
7902
+ <a href="#fixed_6" class="md-nav__link">
7681
7903
  <span class="md-ellipsis">
7682
7904
  Fixed
7683
7905
  </span>
@@ -7695,7 +7917,7 @@
7695
7917
  </li>
7696
7918
 
7697
7919
  <li class="md-nav__item">
7698
- <a href="#housekeeping_4" class="md-nav__link">
7920
+ <a href="#housekeeping_6" class="md-nav__link">
7699
7921
  <span class="md-ellipsis">
7700
7922
  Housekeeping
7701
7923
  </span>
@@ -7719,7 +7941,7 @@
7719
7941
  <ul class="md-nav__list">
7720
7942
 
7721
7943
  <li class="md-nav__item">
7722
- <a href="#added_6" class="md-nav__link">
7944
+ <a href="#added_8" class="md-nav__link">
7723
7945
  <span class="md-ellipsis">
7724
7946
  Added
7725
7947
  </span>
@@ -7728,7 +7950,7 @@
7728
7950
  </li>
7729
7951
 
7730
7952
  <li class="md-nav__item">
7731
- <a href="#changed_5" class="md-nav__link">
7953
+ <a href="#changed_6" class="md-nav__link">
7732
7954
  <span class="md-ellipsis">
7733
7955
  Changed
7734
7956
  </span>
@@ -7746,7 +7968,7 @@
7746
7968
  </li>
7747
7969
 
7748
7970
  <li class="md-nav__item">
7749
- <a href="#removed" class="md-nav__link">
7971
+ <a href="#removed_1" class="md-nav__link">
7750
7972
  <span class="md-ellipsis">
7751
7973
  Removed
7752
7974
  </span>
@@ -7755,7 +7977,7 @@
7755
7977
  </li>
7756
7978
 
7757
7979
  <li class="md-nav__item">
7758
- <a href="#fixed_5" class="md-nav__link">
7980
+ <a href="#fixed_7" class="md-nav__link">
7759
7981
  <span class="md-ellipsis">
7760
7982
  Fixed
7761
7983
  </span>
@@ -7773,7 +7995,7 @@
7773
7995
  </li>
7774
7996
 
7775
7997
  <li class="md-nav__item">
7776
- <a href="#documentation_4" class="md-nav__link">
7998
+ <a href="#documentation_6" class="md-nav__link">
7777
7999
  <span class="md-ellipsis">
7778
8000
  Documentation
7779
8001
  </span>
@@ -7782,7 +8004,7 @@
7782
8004
  </li>
7783
8005
 
7784
8006
  <li class="md-nav__item">
7785
- <a href="#housekeeping_5" class="md-nav__link">
8007
+ <a href="#housekeeping_7" class="md-nav__link">
7786
8008
  <span class="md-ellipsis">
7787
8009
  Housekeeping
7788
8010
  </span>
@@ -8491,13 +8713,13 @@
8491
8713
  </li>
8492
8714
 
8493
8715
  <li class="md-nav__item">
8494
- <a href="#v224-2024-05-13" class="md-nav__link">
8716
+ <a href="#v226-2024-06-24" class="md-nav__link">
8495
8717
  <span class="md-ellipsis">
8496
- v2.2.4 (2024-05-13)
8718
+ v2.2.6 (2024-06-24)
8497
8719
  </span>
8498
8720
  </a>
8499
8721
 
8500
- <nav class="md-nav" aria-label="v2.2.4 (2024-05-13)">
8722
+ <nav class="md-nav" aria-label="v2.2.6 (2024-06-24)">
8501
8723
  <ul class="md-nav__list">
8502
8724
 
8503
8725
  <li class="md-nav__item">
@@ -8519,9 +8741,18 @@
8519
8741
  </li>
8520
8742
 
8521
8743
  <li class="md-nav__item">
8522
- <a href="#fixed" class="md-nav__link">
8744
+ <a href="#changed_1" class="md-nav__link">
8523
8745
  <span class="md-ellipsis">
8524
- Fixed
8746
+ Changed
8747
+ </span>
8748
+ </a>
8749
+
8750
+ </li>
8751
+
8752
+ <li class="md-nav__item">
8753
+ <a href="#fixed" class="md-nav__link">
8754
+ <span class="md-ellipsis">
8755
+ Fixed
8525
8756
  </span>
8526
8757
  </a>
8527
8758
 
@@ -8551,13 +8782,13 @@
8551
8782
  </li>
8552
8783
 
8553
8784
  <li class="md-nav__item">
8554
- <a href="#v223-2024-04-30" class="md-nav__link">
8785
+ <a href="#v225-2024-05-28" class="md-nav__link">
8555
8786
  <span class="md-ellipsis">
8556
- v2.2.3 (2024-04-30)
8787
+ v2.2.5 (2024-05-28)
8557
8788
  </span>
8558
8789
  </a>
8559
8790
 
8560
- <nav class="md-nav" aria-label="v2.2.3 (2024-04-30)">
8791
+ <nav class="md-nav" aria-label="v2.2.5 (2024-05-28)">
8561
8792
  <ul class="md-nav__list">
8562
8793
 
8563
8794
  <li class="md-nav__item">
@@ -8579,9 +8810,9 @@
8579
8810
  </li>
8580
8811
 
8581
8812
  <li class="md-nav__item">
8582
- <a href="#changed_1" class="md-nav__link">
8813
+ <a href="#removed" class="md-nav__link">
8583
8814
  <span class="md-ellipsis">
8584
- Changed
8815
+ Removed
8585
8816
  </span>
8586
8817
  </a>
8587
8818
 
@@ -8620,13 +8851,13 @@
8620
8851
  </li>
8621
8852
 
8622
8853
  <li class="md-nav__item">
8623
- <a href="#v222-2024-04-18" class="md-nav__link">
8854
+ <a href="#v224-2024-05-13" class="md-nav__link">
8624
8855
  <span class="md-ellipsis">
8625
- v2.2.2 (2024-04-18)
8856
+ v2.2.4 (2024-05-13)
8626
8857
  </span>
8627
8858
  </a>
8628
8859
 
8629
- <nav class="md-nav" aria-label="v2.2.2 (2024-04-18)">
8860
+ <nav class="md-nav" aria-label="v2.2.4 (2024-05-13)">
8630
8861
  <ul class="md-nav__list">
8631
8862
 
8632
8863
  <li class="md-nav__item">
@@ -8645,6 +8876,66 @@
8645
8876
  </span>
8646
8877
  </a>
8647
8878
 
8879
+ </li>
8880
+
8881
+ <li class="md-nav__item">
8882
+ <a href="#fixed_2" class="md-nav__link">
8883
+ <span class="md-ellipsis">
8884
+ Fixed
8885
+ </span>
8886
+ </a>
8887
+
8888
+ </li>
8889
+
8890
+ <li class="md-nav__item">
8891
+ <a href="#documentation_2" class="md-nav__link">
8892
+ <span class="md-ellipsis">
8893
+ Documentation
8894
+ </span>
8895
+ </a>
8896
+
8897
+ </li>
8898
+
8899
+ <li class="md-nav__item">
8900
+ <a href="#housekeeping_2" class="md-nav__link">
8901
+ <span class="md-ellipsis">
8902
+ Housekeeping
8903
+ </span>
8904
+ </a>
8905
+
8906
+ </li>
8907
+
8908
+ </ul>
8909
+ </nav>
8910
+
8911
+ </li>
8912
+
8913
+ <li class="md-nav__item">
8914
+ <a href="#v223-2024-04-30" class="md-nav__link">
8915
+ <span class="md-ellipsis">
8916
+ v2.2.3 (2024-04-30)
8917
+ </span>
8918
+ </a>
8919
+
8920
+ <nav class="md-nav" aria-label="v2.2.3 (2024-04-30)">
8921
+ <ul class="md-nav__list">
8922
+
8923
+ <li class="md-nav__item">
8924
+ <a href="#security_3" class="md-nav__link">
8925
+ <span class="md-ellipsis">
8926
+ Security
8927
+ </span>
8928
+ </a>
8929
+
8930
+ </li>
8931
+
8932
+ <li class="md-nav__item">
8933
+ <a href="#added_4" class="md-nav__link">
8934
+ <span class="md-ellipsis">
8935
+ Added
8936
+ </span>
8937
+ </a>
8938
+
8648
8939
  </li>
8649
8940
 
8650
8941
  <li class="md-nav__item">
@@ -8657,7 +8948,7 @@
8657
8948
  </li>
8658
8949
 
8659
8950
  <li class="md-nav__item">
8660
- <a href="#fixed_2" class="md-nav__link">
8951
+ <a href="#fixed_3" class="md-nav__link">
8661
8952
  <span class="md-ellipsis">
8662
8953
  Fixed
8663
8954
  </span>
@@ -8666,7 +8957,7 @@
8666
8957
  </li>
8667
8958
 
8668
8959
  <li class="md-nav__item">
8669
- <a href="#documentation_2" class="md-nav__link">
8960
+ <a href="#documentation_3" class="md-nav__link">
8670
8961
  <span class="md-ellipsis">
8671
8962
  Documentation
8672
8963
  </span>
@@ -8675,7 +8966,76 @@
8675
8966
  </li>
8676
8967
 
8677
8968
  <li class="md-nav__item">
8678
- <a href="#housekeeping_2" class="md-nav__link">
8969
+ <a href="#housekeeping_3" class="md-nav__link">
8970
+ <span class="md-ellipsis">
8971
+ Housekeeping
8972
+ </span>
8973
+ </a>
8974
+
8975
+ </li>
8976
+
8977
+ </ul>
8978
+ </nav>
8979
+
8980
+ </li>
8981
+
8982
+ <li class="md-nav__item">
8983
+ <a href="#v222-2024-04-18" class="md-nav__link">
8984
+ <span class="md-ellipsis">
8985
+ v2.2.2 (2024-04-18)
8986
+ </span>
8987
+ </a>
8988
+
8989
+ <nav class="md-nav" aria-label="v2.2.2 (2024-04-18)">
8990
+ <ul class="md-nav__list">
8991
+
8992
+ <li class="md-nav__item">
8993
+ <a href="#security_4" class="md-nav__link">
8994
+ <span class="md-ellipsis">
8995
+ Security
8996
+ </span>
8997
+ </a>
8998
+
8999
+ </li>
9000
+
9001
+ <li class="md-nav__item">
9002
+ <a href="#added_5" class="md-nav__link">
9003
+ <span class="md-ellipsis">
9004
+ Added
9005
+ </span>
9006
+ </a>
9007
+
9008
+ </li>
9009
+
9010
+ <li class="md-nav__item">
9011
+ <a href="#changed_3" class="md-nav__link">
9012
+ <span class="md-ellipsis">
9013
+ Changed
9014
+ </span>
9015
+ </a>
9016
+
9017
+ </li>
9018
+
9019
+ <li class="md-nav__item">
9020
+ <a href="#fixed_4" class="md-nav__link">
9021
+ <span class="md-ellipsis">
9022
+ Fixed
9023
+ </span>
9024
+ </a>
9025
+
9026
+ </li>
9027
+
9028
+ <li class="md-nav__item">
9029
+ <a href="#documentation_4" class="md-nav__link">
9030
+ <span class="md-ellipsis">
9031
+ Documentation
9032
+ </span>
9033
+ </a>
9034
+
9035
+ </li>
9036
+
9037
+ <li class="md-nav__item">
9038
+ <a href="#housekeeping_4" class="md-nav__link">
8679
9039
  <span class="md-ellipsis">
8680
9040
  Housekeeping
8681
9041
  </span>
@@ -8699,7 +9059,7 @@
8699
9059
  <ul class="md-nav__list">
8700
9060
 
8701
9061
  <li class="md-nav__item">
8702
- <a href="#security_3" class="md-nav__link">
9062
+ <a href="#security_5" class="md-nav__link">
8703
9063
  <span class="md-ellipsis">
8704
9064
  Security
8705
9065
  </span>
@@ -8708,7 +9068,7 @@
8708
9068
  </li>
8709
9069
 
8710
9070
  <li class="md-nav__item">
8711
- <a href="#added_4" class="md-nav__link">
9071
+ <a href="#added_6" class="md-nav__link">
8712
9072
  <span class="md-ellipsis">
8713
9073
  Added
8714
9074
  </span>
@@ -8717,7 +9077,7 @@
8717
9077
  </li>
8718
9078
 
8719
9079
  <li class="md-nav__item">
8720
- <a href="#changed_3" class="md-nav__link">
9080
+ <a href="#changed_4" class="md-nav__link">
8721
9081
  <span class="md-ellipsis">
8722
9082
  Changed
8723
9083
  </span>
@@ -8726,7 +9086,7 @@
8726
9086
  </li>
8727
9087
 
8728
9088
  <li class="md-nav__item">
8729
- <a href="#fixed_3" class="md-nav__link">
9089
+ <a href="#fixed_5" class="md-nav__link">
8730
9090
  <span class="md-ellipsis">
8731
9091
  Fixed
8732
9092
  </span>
@@ -8744,7 +9104,7 @@
8744
9104
  </li>
8745
9105
 
8746
9106
  <li class="md-nav__item">
8747
- <a href="#documentation_3" class="md-nav__link">
9107
+ <a href="#documentation_5" class="md-nav__link">
8748
9108
  <span class="md-ellipsis">
8749
9109
  Documentation
8750
9110
  </span>
@@ -8753,7 +9113,7 @@
8753
9113
  </li>
8754
9114
 
8755
9115
  <li class="md-nav__item">
8756
- <a href="#housekeeping_3" class="md-nav__link">
9116
+ <a href="#housekeeping_5" class="md-nav__link">
8757
9117
  <span class="md-ellipsis">
8758
9118
  Housekeeping
8759
9119
  </span>
@@ -8777,7 +9137,7 @@
8777
9137
  <ul class="md-nav__list">
8778
9138
 
8779
9139
  <li class="md-nav__item">
8780
- <a href="#added_5" class="md-nav__link">
9140
+ <a href="#added_7" class="md-nav__link">
8781
9141
  <span class="md-ellipsis">
8782
9142
  Added
8783
9143
  </span>
@@ -8786,7 +9146,7 @@
8786
9146
  </li>
8787
9147
 
8788
9148
  <li class="md-nav__item">
8789
- <a href="#changed_4" class="md-nav__link">
9149
+ <a href="#changed_5" class="md-nav__link">
8790
9150
  <span class="md-ellipsis">
8791
9151
  Changed
8792
9152
  </span>
@@ -8795,7 +9155,7 @@
8795
9155
  </li>
8796
9156
 
8797
9157
  <li class="md-nav__item">
8798
- <a href="#fixed_4" class="md-nav__link">
9158
+ <a href="#fixed_6" class="md-nav__link">
8799
9159
  <span class="md-ellipsis">
8800
9160
  Fixed
8801
9161
  </span>
@@ -8813,7 +9173,7 @@
8813
9173
  </li>
8814
9174
 
8815
9175
  <li class="md-nav__item">
8816
- <a href="#housekeeping_4" class="md-nav__link">
9176
+ <a href="#housekeeping_6" class="md-nav__link">
8817
9177
  <span class="md-ellipsis">
8818
9178
  Housekeeping
8819
9179
  </span>
@@ -8837,7 +9197,7 @@
8837
9197
  <ul class="md-nav__list">
8838
9198
 
8839
9199
  <li class="md-nav__item">
8840
- <a href="#added_6" class="md-nav__link">
9200
+ <a href="#added_8" class="md-nav__link">
8841
9201
  <span class="md-ellipsis">
8842
9202
  Added
8843
9203
  </span>
@@ -8846,7 +9206,7 @@
8846
9206
  </li>
8847
9207
 
8848
9208
  <li class="md-nav__item">
8849
- <a href="#changed_5" class="md-nav__link">
9209
+ <a href="#changed_6" class="md-nav__link">
8850
9210
  <span class="md-ellipsis">
8851
9211
  Changed
8852
9212
  </span>
@@ -8864,7 +9224,7 @@
8864
9224
  </li>
8865
9225
 
8866
9226
  <li class="md-nav__item">
8867
- <a href="#removed" class="md-nav__link">
9227
+ <a href="#removed_1" class="md-nav__link">
8868
9228
  <span class="md-ellipsis">
8869
9229
  Removed
8870
9230
  </span>
@@ -8873,7 +9233,7 @@
8873
9233
  </li>
8874
9234
 
8875
9235
  <li class="md-nav__item">
8876
- <a href="#fixed_5" class="md-nav__link">
9236
+ <a href="#fixed_7" class="md-nav__link">
8877
9237
  <span class="md-ellipsis">
8878
9238
  Fixed
8879
9239
  </span>
@@ -8891,7 +9251,7 @@
8891
9251
  </li>
8892
9252
 
8893
9253
  <li class="md-nav__item">
8894
- <a href="#documentation_4" class="md-nav__link">
9254
+ <a href="#documentation_6" class="md-nav__link">
8895
9255
  <span class="md-ellipsis">
8896
9256
  Documentation
8897
9257
  </span>
@@ -8900,7 +9260,7 @@
8900
9260
  </li>
8901
9261
 
8902
9262
  <li class="md-nav__item">
8903
- <a href="#housekeeping_5" class="md-nav__link">
9263
+ <a href="#housekeeping_7" class="md-nav__link">
8904
9264
  <span class="md-ellipsis">
8905
9265
  Housekeeping
8906
9266
  </span>
@@ -8969,41 +9329,118 @@
8969
9329
  <h4 id="standardization-of-max_length-on-all-charfields-2906">Standardization of <code>max_length</code> on all Charfields (<a href="https://github.com/nautobot/nautobot/issues/2906">#2906</a>)<a class="headerlink" href="#standardization-of-max_length-on-all-charfields-2906" title="Permanent link">&para;</a></h4>
8970
9330
  <p>Model CharFields' <code>max_length</code> attributes have been standardized globally to have at least 255 characters except where a shorter <code>max_length</code> is explicitly justified.</p>
8971
9331
  <!-- towncrier release notes start -->
8972
- <h2 id="v224-2024-05-13">v2.2.4 (2024-05-13)<a class="headerlink" href="#v224-2024-05-13" title="Permanent link">&para;</a></h2>
9332
+ <h2 id="v226-2024-06-24">v2.2.6 (2024-06-24)<a class="headerlink" href="#v226-2024-06-24" title="Permanent link">&para;</a></h2>
8973
9333
  <h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">&para;</a></h3>
8974
9334
  <ul>
9335
+ <li><a href="https://github.com/nautobot/nautobot/issues/5821">#5821</a> - Updated <code>urllib3</code> to 2.2.2 due to CVE-2024-37891. This is not a direct dependency so it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
9336
+ </ul>
9337
+ <h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">&para;</a></h3>
9338
+ <ul>
9339
+ <li><a href="https://github.com/nautobot/nautobot/issues/5550">#5550</a> - Added support for specifying a tag or a commit hash as the GitRepository <code>branch</code> value.</li>
9340
+ <li><a href="https://github.com/nautobot/nautobot/issues/5550">#5550</a> - Added an <code>enabled</code> flag to the JobButton class; disabled JobButtons will not appear in the UI.</li>
9341
+ <li><a href="https://github.com/nautobot/nautobot/issues/5793">#5793</a> - Added <code>--print-hashes</code> option to <code>nautobot-server generate_test_data</code> command.</li>
9342
+ <li><a href="https://github.com/nautobot/nautobot/issues/5807">#5807</a> - Added the ability to sort and filter the <code>IPAddress</code> list view by the <code>nat_inside</code> field.</li>
9343
+ </ul>
9344
+ <h3 id="changed_1">Changed<a class="headerlink" href="#changed_1" title="Permanent link">&para;</a></h3>
9345
+ <ul>
9346
+ <li><a href="https://github.com/nautobot/nautobot/issues/5550">#5550</a> - Changed the behavior on removal of a previously-installed Job class to additionally auto-disable any JobButtons, JobHooks, and ScheduledJobs referencing this class.</li>
9347
+ </ul>
9348
+ <h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">&para;</a></h3>
9349
+ <ul>
9350
+ <li><a href="https://github.com/nautobot/nautobot/issues/5550">#5550</a> - Fixed an issue where config-contexts and export-templates sourced from a Git repository might not be automatically deleted from Nautobot after removing them from the repository and resyncing it.</li>
9351
+ <li><a href="https://github.com/nautobot/nautobot/issues/5550">#5550</a> - Fixed an exception that might be raised when performing a Git repository "dry-run" sync if certain types of diffs are present.</li>
9352
+ <li><a href="https://github.com/nautobot/nautobot/issues/5782">#5782</a> - Fixed an issue with Job code not being fully reloaded after syncing a Git repository.</li>
9353
+ <li><a href="https://github.com/nautobot/nautobot/issues/5809">#5809</a> - Fixed missing support for the GitRepository model in GraphQL.</li>
9354
+ <li><a href="https://github.com/nautobot/nautobot/issues/5819">#5819</a> - Fixed inability to use bare (local-DNS) hostnames when specifying a GitRepository remote URL.</li>
9355
+ </ul>
9356
+ <h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">&para;</a></h3>
9357
+ <ul>
9358
+ <li><a href="https://github.com/nautobot/nautobot/issues/5726">#5726</a> - Updated, cleaned up, and separated out the main landing page for Nautobot docs.</li>
9359
+ <li><a href="https://github.com/nautobot/nautobot/issues/5752">#5752</a> - Corrected incorrect entry for <code>nautobot.utilities.ordering</code> in <code>v2-code-location-changes</code> table.</li>
9360
+ <li><a href="https://github.com/nautobot/nautobot/issues/5754">#5754</a> - Updated <code>mkdocs-material</code> to 9.5.25.</li>
9361
+ </ul>
9362
+ <h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">&para;</a></h3>
9363
+ <ul>
9364
+ <li><a href="https://github.com/nautobot/nautobot/issues/5754">#5754</a> - Updated development dependencies <code>requests</code> to <code>~2.32.2</code> and <code>watchdog</code> to <code>~4.0.1</code>.</li>
9365
+ <li><a href="https://github.com/nautobot/nautobot/issues/5793">#5793</a> - Refactored <code>generate_test_data</code> implementation for improved debuggability.</li>
9366
+ <li><a href="https://github.com/nautobot/nautobot/issues/5793">#5793</a> - Fixed a bug in <code>ControllerManagedDeviceGroupFactory</code> that could result in nondeterministic test data.</li>
9367
+ </ul>
9368
+ <h2 id="v225-2024-05-28">v2.2.5 (2024-05-28)<a class="headerlink" href="#v225-2024-05-28" title="Permanent link">&para;</a></h2>
9369
+ <h3 id="security_1">Security<a class="headerlink" href="#security_1" title="Permanent link">&para;</a></h3>
9370
+ <ul>
9371
+ <li><a href="https://github.com/nautobot/nautobot/issues/5740">#5740</a> - Updated <code>requests</code> to <code>2.32.1</code> to address <a href="https://github.com/psf/requests/security/advisories/GHSA-9wx4-h78v-vm56">GHSA-9wx4-h78v-vm56</a>. This is not a direct dependency so it will not auto-update when upgrading Nautobot. Please be sure to update your local environment.</li>
9372
+ <li><a href="https://github.com/nautobot/nautobot/issues/5757">#5757</a> - Fixed missing member object permission enforcement (e.g., enforce Device permissions for a Dynamic Group containing Devices) when viewing Dynamic Group member objects in the UI or REST API (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-qmjf-wc2h-6x3q">GHSA-qmjf-wc2h-6x3q</a>).</li>
9373
+ </ul>
9374
+ <h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">&para;</a></h3>
9375
+ <ul>
9376
+ <li><a href="https://github.com/nautobot/nautobot/issues/5588">#5588</a> - Added "Add VRFs" and "Remove VRFs" fields to <code>PrefixBulkEditForm</code>.</li>
9377
+ <li><a href="https://github.com/nautobot/nautobot/issues/5588">#5588</a> - Added "Add Prefixes" and "Remove Prefixes" fields to <code>VRFBulkEditForm</code>.</li>
9378
+ <li><a href="https://github.com/nautobot/nautobot/issues/5655">#5655</a> - Added "Device Family" as a configurable column in the Device Types table view.</li>
9379
+ <li><a href="https://github.com/nautobot/nautobot/issues/5690">#5690</a> - Added a generic test case that asserts that all list views provide an appropriate FilterForm class.</li>
9380
+ <li><a href="https://github.com/nautobot/nautobot/issues/5747">#5747</a> - Added "Circuit Terminations" navigation menu item.</li>
9381
+ </ul>
9382
+ <h3 id="removed">Removed<a class="headerlink" href="#removed" title="Permanent link">&para;</a></h3>
9383
+ <ul>
9384
+ <li><a href="https://github.com/nautobot/nautobot/issues/5690">#5690</a> - Removed deprecated <code>CustomFieldFilterForm</code> alias of <code>CustomFieldModelFilterFormMixin</code> as this would have caused confusion with the newly added <code>CustomFieldFilterForm</code> class providing filtering support for the Custom Fields list view.</li>
9385
+ </ul>
9386
+ <h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">&para;</a></h3>
9387
+ <ul>
9388
+ <li><a href="https://github.com/nautobot/nautobot/issues/5564">#5564</a> - Fixed <code>ContactAssociationFilterSet.associated_object_type</code> not using the right filter field.</li>
9389
+ <li><a href="https://github.com/nautobot/nautobot/issues/5669">#5669</a> - Fixed <code>AttributeError</code> thrown when deleting software versions or images from list views.</li>
9390
+ <li><a href="https://github.com/nautobot/nautobot/issues/5690">#5690</a> - Fixed a Javascript error when attempting to filter certain list views.</li>
9391
+ <li><a href="https://github.com/nautobot/nautobot/issues/5690">#5690</a> - Added missing "default" filter forms for a number of list views.</li>
9392
+ <li><a href="https://github.com/nautobot/nautobot/issues/5703">#5703</a> - Fixed unintended creation of <code>_custom_field_data</code> filter on various FilterSets.</li>
9393
+ <li><a href="https://github.com/nautobot/nautobot/issues/5703">#5703</a> - Fixed <code>Filter "_custom_field_data" on ... is not GraphQL safe, and will be omitted</code> warning logs when generating the GraphQL schema.</li>
9394
+ <li><a href="https://github.com/nautobot/nautobot/issues/5707">#5707</a> - Fixed incorrect installation of <code>xmlsec</code> library in the Nautobot Docker images.</li>
9395
+ <li><a href="https://github.com/nautobot/nautobot/issues/5708">#5708</a> - Fixed integrity error when doing bulk edits that resulted from a delete operation on a related model.</li>
9396
+ <li><a href="https://github.com/nautobot/nautobot/issues/5738">#5738</a> - Fixed incorrect API query parameters when selecting VLANs to apply to a VM Interface.</li>
9397
+ <li><a href="https://github.com/nautobot/nautobot/issues/5738">#5738</a> - Fixed incorrect query parameters when accessing or creating Clusters from a Cluster Type detail view.</li>
9398
+ </ul>
9399
+ <h3 id="documentation_1">Documentation<a class="headerlink" href="#documentation_1" title="Permanent link">&para;</a></h3>
9400
+ <ul>
9401
+ <li><a href="https://github.com/nautobot/nautobot/issues/5699">#5699</a> - Updated to <code>mkdocs~1.6.0</code> and <code>mkdocs-material~9.5.23</code>.</li>
9402
+ <li><a href="https://github.com/nautobot/nautobot/issues/5699">#5699</a> - Fixed a number of broken links within the documentation.</li>
9403
+ </ul>
9404
+ <h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">&para;</a></h3>
9405
+ <ul>
9406
+ <li><a href="https://github.com/nautobot/nautobot/issues/5699">#5699</a> - Updated <code>pylint</code> to <code>~3.1.1</code>.</li>
9407
+ <li><a href="https://github.com/nautobot/nautobot/issues/5740">#5740</a> - Updated test dependency <code>requests</code> to <code>~2.32.1</code>.</li>
9408
+ </ul>
9409
+ <h2 id="v224-2024-05-13">v2.2.4 (2024-05-13)<a class="headerlink" href="#v224-2024-05-13" title="Permanent link">&para;</a></h2>
9410
+ <h3 id="security_2">Security<a class="headerlink" href="#security_2" title="Permanent link">&para;</a></h3>
9411
+ <ul>
8975
9412
  <li><a href="https://github.com/nautobot/nautobot/issues/1858">#1858</a> - Added sanitization of HTML tags in the content of <code>BANNER_TOP</code>, <code>BANNER_BOTTOM</code>, and <code>BANNER_LOGIN</code> configuration to prevent against potential injection of malicious scripts (stored XSS) via these features (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-r2hr-4v48-fjv3">GHSA-r2hr-4v48-fjv3</a>).</li>
8976
9413
  <li><a href="https://github.com/nautobot/nautobot/issues/5672">#5672</a> - Updated <code>Jinja2</code> dependency to <code>3.1.4</code> to address <code>CVE-2024-34064</code>.</li>
8977
9414
  </ul>
8978
- <h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">&para;</a></h3>
9415
+ <h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">&para;</a></h3>
8979
9416
  <ul>
8980
9417
  <li><a href="https://github.com/nautobot/nautobot/issues/1858">#1858</a> - Added support in <code>BRANDING_FILEPATHS</code> configuration to specify a custom <code>css</code> and/or <code>javascript</code> file to be added to Nautobot page content.</li>
8981
9418
  <li><a href="https://github.com/nautobot/nautobot/issues/1858">#1858</a> - Added Markdown support to the <code>BANNER_TOP</code>, <code>BANNER_BOTTOM</code>, and <code>BANNER_LOGIN</code> configuration settings.</li>
8982
9419
  </ul>
8983
- <h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">&para;</a></h3>
9420
+ <h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">&para;</a></h3>
8984
9421
  <ul>
8985
9422
  <li><a href="https://github.com/nautobot/nautobot/issues/4986">#4986</a> - Fixed inconsistent use of super causing <code>active_tab</code> context to be missing from several views.</li>
8986
9423
  <li><a href="https://github.com/nautobot/nautobot/issues/5644">#5644</a> - Made the uniqueness constraints between the ContactAssociation model and the related API serializer consistent.</li>
8987
9424
  <li><a href="https://github.com/nautobot/nautobot/issues/5684">#5684</a> - Fixed standard CSV export when using export templates.</li>
8988
9425
  <li><a href="https://github.com/nautobot/nautobot/issues/5689">#5689</a> - Fixed change logging for bulk delete operations so that user is included in the log.</li>
8989
9426
  </ul>
8990
- <h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">&para;</a></h3>
9427
+ <h3 id="documentation_2">Documentation<a class="headerlink" href="#documentation_2" title="Permanent link">&para;</a></h3>
8991
9428
  <ul>
8992
9429
  <li><a href="https://github.com/nautobot/nautobot/issues/5661">#5661</a> - Updated documentation to organize installation instructions and provide easier to use functions from mkdocs.</li>
8993
9430
  </ul>
8994
- <h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">&para;</a></h3>
9431
+ <h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">&para;</a></h3>
8995
9432
  <ul>
8996
9433
  <li><a href="https://github.com/nautobot/nautobot/issues/5263">#5263</a> - Updated <code>nh3</code> to <code>0.2.17</code> in <code>poetry.lock</code>.</li>
8997
- <li><a href="https://github.com/nautobot/nautobot/issues/5637">#5637</a> - Removed "version" from development <code>docker-compose.yml</code> files as newer versions of Docker complain about it being obsolete.</li>
9434
+ <li><a href="https://github.com/nautobot/nautobot/issues/5637">#5637</a> - Removed <code>"version"</code> from development <code>docker-compose.yml</code> files as newer versions of Docker complain about it being obsolete.</li>
8998
9435
  <li><a href="https://github.com/nautobot/nautobot/issues/5637">#5637</a> - Fixed behavior of <code>invoke stop</code> so that it also stops the optional <code>mkdocs</code> container if present.</li>
8999
9436
  </ul>
9000
9437
  <h2 id="v223-2024-04-30">v2.2.3 (2024-04-30)<a class="headerlink" href="#v223-2024-04-30" title="Permanent link">&para;</a></h2>
9001
- <h3 id="security_1">Security<a class="headerlink" href="#security_1" title="Permanent link">&para;</a></h3>
9438
+ <h3 id="security_3">Security<a class="headerlink" href="#security_3" title="Permanent link">&para;</a></h3>
9002
9439
  <ul>
9003
9440
  <li><a href="https://github.com/nautobot/nautobot/issues/5624">#5624</a> - Updated <code>social-auth-app-django</code> dependency to <code>~5.4.1</code> to address <code>CVE-2024-32879</code>.</li>
9004
9441
  <li><a href="https://github.com/nautobot/nautobot/issues/5646">#5646</a> - Fixed a reflected-XSS vulnerability (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-jxgr-gcj5-cqqg">GHSA-jxgr-gcj5-cqqg</a>) in object-list view rendering of user-provided query parameters.</li>
9005
9442
  </ul>
9006
- <h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">&para;</a></h3>
9443
+ <h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">&para;</a></h3>
9007
9444
  <ul>
9008
9445
  <li><a href="https://github.com/nautobot/nautobot/issues/2946">#2946</a> - Added custom link support for interfaces, console ports, console server ports, power ports, power outlets, front ports, rear ports, device bays, and inventory items.</li>
9009
9446
  <li><a href="https://github.com/nautobot/nautobot/issues/5034">#5034</a> - Added a view to convert location contact information to contacts or teams.</li>
@@ -9011,11 +9448,11 @@
9011
9448
  <li><a href="https://github.com/nautobot/nautobot/issues/5560">#5560</a> - Added a template tag which creates a hyperlink that opens in a new tab.</li>
9012
9449
  <li><a href="https://github.com/nautobot/nautobot/issues/5586">#5586</a> - Added <code>nautobot.apps.jobs.get_jobs()</code> API.</li>
9013
9450
  </ul>
9014
- <h3 id="changed_1">Changed<a class="headerlink" href="#changed_1" title="Permanent link">&para;</a></h3>
9451
+ <h3 id="changed_2">Changed<a class="headerlink" href="#changed_2" title="Permanent link">&para;</a></h3>
9015
9452
  <ul>
9016
9453
  <li><a href="https://github.com/nautobot/nautobot/issues/5498">#5498</a> - Changed the <code>nautobot.extras.jobs.Job</code> class to no longer be a subclass of <code>celery.tasks.Task</code>.</li>
9017
9454
  </ul>
9018
- <h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">&para;</a></h3>
9455
+ <h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">&para;</a></h3>
9019
9456
  <ul>
9020
9457
  <li><a href="https://github.com/nautobot/nautobot/issues/5513">#5513</a> - Fixed missing <code>location</code> field in <code>Prefix</code> and <code>VLAN</code> GraphQL schema.</li>
9021
9458
  <li><a href="https://github.com/nautobot/nautobot/issues/5513">#5513</a> - Restored ability to filter Prefix and VLAN objects at the ORM level by <code>location</code>.</li>
@@ -9028,67 +9465,67 @@
9028
9465
  <li><a href="https://github.com/nautobot/nautobot/issues/5642">#5642</a> - Fixed some cases where stale Job code might be present when Jobs are sourced from <code>JOBS_ROOT</code> or a Git repository.</li>
9029
9466
  <li><a href="https://github.com/nautobot/nautobot/issues/5642">#5642</a> - Fixed incorrect handling of Job <code>kwargs</code> when dry-running a job approval request via the REST API.</li>
9030
9467
  </ul>
9031
- <h3 id="documentation_1">Documentation<a class="headerlink" href="#documentation_1" title="Permanent link">&para;</a></h3>
9468
+ <h3 id="documentation_3">Documentation<a class="headerlink" href="#documentation_3" title="Permanent link">&para;</a></h3>
9032
9469
  <ul>
9033
9470
  <li><a href="https://github.com/nautobot/nautobot/issues/5094">#5094</a> - Added "Reserved Attribute Names" section to the Jobs developer documentation.</li>
9034
9471
  <li><a href="https://github.com/nautobot/nautobot/issues/5608">#5608</a> - Updated VLAN documentation with a recommendation for modeling of VLANs with respect to Locations.</li>
9035
9472
  <li><a href="https://github.com/nautobot/nautobot/issues/5626">#5626</a> - Added extras features docs to core developer new model checklist.</li>
9036
9473
  <li><a href="https://github.com/nautobot/nautobot/issues/5635">#5635</a> - Added borders to tabbed sections of mkdocs.</li>
9037
9474
  </ul>
9038
- <h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">&para;</a></h3>
9475
+ <h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">&para;</a></h3>
9039
9476
  <ul>
9040
9477
  <li><a href="https://github.com/nautobot/nautobot/issues/4498">#4498</a> - Removed redundant <code>nautobot.extras.plugins.register_jobs</code> function.</li>
9041
9478
  <li><a href="https://github.com/nautobot/nautobot/issues/5586">#5586</a> - Fixed an intermittent ImportError when running tests with certain options.</li>
9042
9479
  <li><a href="https://github.com/nautobot/nautobot/issues/5605">#5605</a> - Added prerelease and release workflow to deploy sandbox environments automatically.</li>
9043
9480
  </ul>
9044
9481
  <h2 id="v222-2024-04-18">v2.2.2 (2024-04-18)<a class="headerlink" href="#v222-2024-04-18" title="Permanent link">&para;</a></h2>
9045
- <h3 id="security_2">Security<a class="headerlink" href="#security_2" title="Permanent link">&para;</a></h3>
9482
+ <h3 id="security_4">Security<a class="headerlink" href="#security_4" title="Permanent link">&para;</a></h3>
9046
9483
  <ul>
9047
9484
  <li><a href="https://github.com/nautobot/nautobot/issues/5579">#5579</a> - Updated <code>sqlparse</code> to <code>0.5.0</code> to fix <a href="https://github.com/advisories/GHSA-2m57-hf25-phgg">GHSA-2m57-hf25-phgg</a>. This is not a direct dependency so it will not auto-update when upgrading Nautobot. Please be sure to update your local environment.</li>
9048
9485
  </ul>
9049
- <h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">&para;</a></h3>
9486
+ <h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">&para;</a></h3>
9050
9487
  <ul>
9051
9488
  <li><a href="https://github.com/nautobot/nautobot/issues/2459">#2459</a> - Added <code>nautobot.extras.utils.bulk_delete_with_bulk_change_logging</code> helper function for improving performance on bulk delete.</li>
9052
9489
  <li><a href="https://github.com/nautobot/nautobot/issues/2459">#2459</a> - Added <code>nautobot.extras.context_managers.deferred_change_logging_for_bulk_operation</code> context manager for improving performance on bulk update.</li>
9053
9490
  </ul>
9054
- <h3 id="changed_2">Changed<a class="headerlink" href="#changed_2" title="Permanent link">&para;</a></h3>
9491
+ <h3 id="changed_3">Changed<a class="headerlink" href="#changed_3" title="Permanent link">&para;</a></h3>
9055
9492
  <ul>
9056
9493
  <li><a href="https://github.com/nautobot/nautobot/issues/2459">#2459</a> - Improved performance of bulk-edit and bulk-delete UI operations by refactoring change logging logic.</li>
9057
9494
  <li><a href="https://github.com/nautobot/nautobot/issues/5568">#5568</a> - Added hyperlink to the total device count number under device family.</li>
9058
9495
  <li><a href="https://github.com/nautobot/nautobot/issues/5589">#5589</a> - Fixed an invalid Javascript operator in the LLDP neighbor view.</li>
9059
9496
  </ul>
9060
- <h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">&para;</a></h3>
9497
+ <h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">&para;</a></h3>
9061
9498
  <ul>
9062
9499
  <li><a href="https://github.com/nautobot/nautobot/issues/5580">#5580</a> - Fixed bugs when assigning a VLAN to an Interface related to the recently introduced many-to-many relationship between VLANs and Locations.</li>
9063
9500
  <li><a href="https://github.com/nautobot/nautobot/issues/5592">#5592</a> - Fixed plugins not loading when using Gunicorn.</li>
9064
9501
  </ul>
9065
- <h3 id="documentation_2">Documentation<a class="headerlink" href="#documentation_2" title="Permanent link">&para;</a></h3>
9502
+ <h3 id="documentation_4">Documentation<a class="headerlink" href="#documentation_4" title="Permanent link">&para;</a></h3>
9066
9503
  <ul>
9067
9504
  <li><a href="https://github.com/nautobot/nautobot/issues/5583">#5583</a> - Re-added release note content for v1.6.16 through v1.6.18.</li>
9068
9505
  </ul>
9069
- <h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">&para;</a></h3>
9506
+ <h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">&para;</a></h3>
9070
9507
  <ul>
9071
9508
  <li><a href="https://github.com/nautobot/nautobot/issues/5590">#5590</a> - Fixed upstream testing workflows showing successful when one of the steps fail.</li>
9072
9509
  </ul>
9073
9510
  <h2 id="v221-2024-04-15">v2.2.1 (2024-04-15)<a class="headerlink" href="#v221-2024-04-15" title="Permanent link">&para;</a></h2>
9074
- <h3 id="security_3">Security<a class="headerlink" href="#security_3" title="Permanent link">&para;</a></h3>
9511
+ <h3 id="security_5">Security<a class="headerlink" href="#security_5" title="Permanent link">&para;</a></h3>
9075
9512
  <ul>
9076
9513
  <li><a href="https://github.com/nautobot/nautobot/issues/5521">#5521</a> - Updated <code>Pillow</code> dependency to <code>~10.3.0</code> to address <code>CVE-2024-28219</code>.</li>
9077
9514
  <li><a href="https://github.com/nautobot/nautobot/issues/5543">#5543</a> - Updated <code>jquery-ui</code> to version <code>1.13.2</code> due to <code>CVE-2022-31160</code>.</li>
9078
9515
  <li><a href="https://github.com/nautobot/nautobot/issues/5561">#5561</a> - Updated <code>idna</code> to 3.7 due to CVE-2024-3651. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
9079
9516
  </ul>
9080
- <h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">&para;</a></h3>
9517
+ <h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">&para;</a></h3>
9081
9518
  <ul>
9082
9519
  <li><a href="https://github.com/nautobot/nautobot/issues/1631">#1631</a> - Added change logging for custom field background tasks.</li>
9083
9520
  <li><a href="https://github.com/nautobot/nautobot/issues/5009">#5009</a> - Added the option to filter objects with select/multi-select custom fields based on the UUID of the defined custom field choice(s), for example <code>/api/dcim/locations/?cf_multiselect=1ea9237c-3ba7-4985-ba7e-6fd9e9bff813</code> as an alternative to <code>/api/dcim/locations/?cf_multiselect=some-choice-value</code>.</li>
9084
9521
  <li><a href="https://github.com/nautobot/nautobot/issues/5493">#5493</a> - Added a configuration setting <code>METRICS_DISABLED_APPS</code> to disable app metrics for specific apps.</li>
9085
9522
  <li><a href="https://github.com/nautobot/nautobot/issues/5540">#5540</a> - Added total devices count to device family detail page.</li>
9086
9523
  </ul>
9087
- <h3 id="changed_3">Changed<a class="headerlink" href="#changed_3" title="Permanent link">&para;</a></h3>
9524
+ <h3 id="changed_4">Changed<a class="headerlink" href="#changed_4" title="Permanent link">&para;</a></h3>
9088
9525
  <ul>
9089
9526
  <li><a href="https://github.com/nautobot/nautobot/issues/5274">#5274</a> - Added a setting that changes all rack unit numbers to display a minimum of two digits in rack elevations.</li>
9090
9527
  </ul>
9091
- <h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">&para;</a></h3>
9528
+ <h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">&para;</a></h3>
9092
9529
  <ul>
9093
9530
  <li><a href="https://github.com/nautobot/nautobot/issues/5469">#5469</a> - Fixed contacts and teams not being included in the global search.</li>
9094
9531
  <li><a href="https://github.com/nautobot/nautobot/issues/5489">#5489</a> - Fixed REST API for Contact and Team incorrectly marking the <code>phone</code> and <code>email</code> fields as mandatory.</li>
@@ -9105,13 +9542,13 @@
9105
9542
  <li><a href="https://github.com/nautobot/nautobot/issues/5521">#5521</a> - Updated most dependencies to the latest versions available as of 2024-04-01.</li>
9106
9543
  <li><a href="https://github.com/nautobot/nautobot/issues/5543">#5543</a> - Updated <code>jquery</code> to version <code>3.7.1</code>.</li>
9107
9544
  </ul>
9108
- <h3 id="documentation_3">Documentation<a class="headerlink" href="#documentation_3" title="Permanent link">&para;</a></h3>
9545
+ <h3 id="documentation_5">Documentation<a class="headerlink" href="#documentation_5" title="Permanent link">&para;</a></h3>
9109
9546
  <ul>
9110
9547
  <li><a href="https://github.com/nautobot/nautobot/issues/5189">#5189</a> - Added "Model Development Checklist" to the core developer documentation.</li>
9111
9548
  <li><a href="https://github.com/nautobot/nautobot/issues/5189">#5189</a> - Merged "Extending Models" documentation into the "Model Development Checklist" documentation.</li>
9112
9549
  <li><a href="https://github.com/nautobot/nautobot/issues/5526">#5526</a> - Fixed doc reference to job cprofile file location.</li>
9113
9550
  </ul>
9114
- <h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">&para;</a></h3>
9551
+ <h3 id="housekeeping_5">Housekeeping<a class="headerlink" href="#housekeeping_5" title="Permanent link">&para;</a></h3>
9115
9552
  <ul>
9116
9553
  <li><a href="https://github.com/nautobot/nautobot/issues/5531">#5531</a> - Removed <code>nautobot-server pylint</code> management command from the <code>example_app</code>, as pylint can be invoked directly with an appropriate <code>--init-hook</code> instead.</li>
9117
9554
  <li><a href="https://github.com/nautobot/nautobot/issues/5547">#5547</a> - Fixed TransactionTestCase inheritance order so that <code>test.client</code> works in test cases using this class.</li>
@@ -9121,12 +9558,12 @@
9121
9558
  <p class="admonition-title">Warning</p>
9122
9559
  <p>Upgrading from beta releases to final releases is never recommended for Nautobot; in the case of 2.2.0b1 to 2.2.0 several data models and database migrations have been modified (see <a href="https://github.com/nautobot/nautobot/issues/5454">#5454</a>) between the two releases, and so upgrading in place from 2.2.0b1 to 2.2.0 <strong>will not work</strong>.</p>
9123
9560
  </div>
9124
- <h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">&para;</a></h3>
9561
+ <h3 id="added_7">Added<a class="headerlink" href="#added_7" title="Permanent link">&para;</a></h3>
9125
9562
  <ul>
9126
9563
  <li><a href="https://github.com/nautobot/nautobot/issues/4811">#4811</a> - Added a new generic test case (<code>test_table_with_indentation_is_removed_on_filter_or_sort</code>) to <code>ListObjectsViewTestCase</code> to test that the tree hierarchy is correctly removed on TreeModel list views when sorting or filtering is applied. This test will also run in these subclasses of the <code>ListObjectsViewTestCase</code>: <code>PrimaryObjectViewTestCase</code>, <code>OrganizationalObjectViewTestCase</code>, and <code>DeviceComponentViewTestCase</code>.</li>
9127
9564
  <li><a href="https://github.com/nautobot/nautobot/issues/5034">#5034</a> - Added a management command (<code>nautobot-server migrate_location_contacts</code>) to help migrate the Location <code>contact_name</code>, <code>contact_email</code> and <code>contact_phone</code> fields to Contact and Teams models.</li>
9128
9565
  </ul>
9129
- <h3 id="changed_4">Changed<a class="headerlink" href="#changed_4" title="Permanent link">&para;</a></h3>
9566
+ <h3 id="changed_5">Changed<a class="headerlink" href="#changed_5" title="Permanent link">&para;</a></h3>
9130
9567
  <ul>
9131
9568
  <li><a href="https://github.com/nautobot/nautobot/issues/5452">#5452</a> - Changed the behavior of Prefix table: now they are sortable, and after sorting is applied, all hierarchy indentations are removed.</li>
9132
9569
  <li><a href="https://github.com/nautobot/nautobot/issues/5454">#5454</a> - Changed one-to-many links from Controller to <code>PROTECT</code> against deleting.</li>
@@ -9139,7 +9576,7 @@
9139
9576
  <li><a href="https://github.com/nautobot/nautobot/issues/5475">#5475</a> - Changed the behavior of Prefix table and other Tree Model tables: now after filtering is applied, all hierarchy indentations are removed.</li>
9140
9577
  <li><a href="https://github.com/nautobot/nautobot/issues/5487">#5487</a> - Moved some nav menu items around to make better logical sense and to allow quicker access to more commonly accessed features.</li>
9141
9578
  </ul>
9142
- <h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">&para;</a></h3>
9579
+ <h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">&para;</a></h3>
9143
9580
  <ul>
9144
9581
  <li><a href="https://github.com/nautobot/nautobot/issues/5415">#5415</a> - Fixed Team(s) field not pre-populating when editing a Contact.</li>
9145
9582
  <li><a href="https://github.com/nautobot/nautobot/issues/5431">#5431</a> - Fixed Roles API response containing duplicate entries when filtering on more than one <code>content_types</code> value.</li>
@@ -9150,13 +9587,13 @@
9150
9587
  <ul>
9151
9588
  <li><a href="https://github.com/nautobot/nautobot/issues/4583">#4583</a> - Updated pinned version of <code>social-auth-core</code> to remove dependency on <code>python-jose</code> &amp; it's dependency on <code>ecdsa</code>.</li>
9152
9589
  </ul>
9153
- <h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">&para;</a></h3>
9590
+ <h3 id="housekeeping_6">Housekeeping<a class="headerlink" href="#housekeeping_6" title="Permanent link">&para;</a></h3>
9154
9591
  <ul>
9155
9592
  <li><a href="https://github.com/nautobot/nautobot/issues/5435">#5435</a> - Added <code>--pattern</code> argument to <code>invoke unittest</code>.</li>
9156
9593
  <li><a href="https://github.com/nautobot/nautobot/issues/5435">#5435</a> - Added <code>--parallel-workers</code> argument to <code>invoke unittest</code>.</li>
9157
9594
  </ul>
9158
9595
  <h2 id="v220-beta1-2024-03-19">v2.2.0-beta.1 (2024-03-19)<a class="headerlink" href="#v220-beta1-2024-03-19" title="Permanent link">&para;</a></h2>
9159
- <h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">&para;</a></h3>
9596
+ <h3 id="added_8">Added<a class="headerlink" href="#added_8" title="Permanent link">&para;</a></h3>
9160
9597
  <ul>
9161
9598
  <li><a href="https://github.com/nautobot/nautobot/issues/1">#1</a> - Added new models for software versions and software image files.</li>
9162
9599
  <li><a href="https://github.com/nautobot/nautobot/issues/1">#1</a> - Added a many-to-many relationship from <code>Device</code> to <code>SoftwareImageFile</code>.</li>
@@ -9195,7 +9632,7 @@
9195
9632
  <li><a href="https://github.com/nautobot/nautobot/issues/5347">#5347</a> - Added an option to the Job-based CSV import to make atomic transactions optional.</li>
9196
9633
  <li><a href="https://github.com/nautobot/nautobot/issues/5349">#5349</a> - Added REST API for vlan-to-location and prefix-to-location M2M.</li>
9197
9634
  </ul>
9198
- <h3 id="changed_5">Changed<a class="headerlink" href="#changed_5" title="Permanent link">&para;</a></h3>
9635
+ <h3 id="changed_6">Changed<a class="headerlink" href="#changed_6" title="Permanent link">&para;</a></h3>
9199
9636
  <ul>
9200
9637
  <li><a href="https://github.com/nautobot/nautobot/issues/2906">#2906</a> - Increased <code>max_length</code> on all CharFields to at least 255 characters except where a shorter <code>max_length</code> is explicitly justified.</li>
9201
9638
  <li><a href="https://github.com/nautobot/nautobot/issues/4334">#4334</a> - Changed <code>Prefix.location</code> to <code>Prefix.locations</code> allowing multiple Locations to be associated with a given Prefix.</li>
@@ -9220,12 +9657,12 @@
9220
9657
  <li><a href="https://github.com/nautobot/nautobot/issues/5116">#5116</a> - Deprecated the <code>nautobot.apps.exceptions.ConfigurationError</code> class as it is no longer used in Nautobot core and is trivially reimplementable by any App if desired.</li>
9221
9658
  <li><a href="https://github.com/nautobot/nautobot/issues/5341">#5341</a> - Deprecated the <code>plugins</code> key under the <code>/api/status/</code> REST API endpoint. Refer to <code>nautobot-apps</code> instead.</li>
9222
9659
  </ul>
9223
- <h3 id="removed">Removed<a class="headerlink" href="#removed" title="Permanent link">&para;</a></h3>
9660
+ <h3 id="removed_1">Removed<a class="headerlink" href="#removed_1" title="Permanent link">&para;</a></h3>
9224
9661
  <ul>
9225
9662
  <li><a href="https://github.com/nautobot/nautobot/issues/5064">#5064</a> - Removed the requirement for <code>ViewTestCases</code> subclasses to define <code>csv_data</code> for testing bulk-import views, as this functionality is now covered by a generic system Job.</li>
9226
9663
  <li><a href="https://github.com/nautobot/nautobot/issues/5116">#5116</a> - Removed <code>logan</code>-derived application startup logic, simplifying the Nautobot startup code flow.</li>
9227
9664
  </ul>
9228
- <h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">&para;</a></h3>
9665
+ <h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">&para;</a></h3>
9229
9666
  <ul>
9230
9667
  <li><a href="https://github.com/nautobot/nautobot/issues/4334">#4334</a> - Fixed ordering of VLANs in the UI list view.</li>
9231
9668
  <li><a href="https://github.com/nautobot/nautobot/issues/5064">#5064</a> - Fixed an exception in <code>Job.after_return()</code> if a Job with an optional <code>FileVar</code> was executed without supplying a value for that variable.</li>
@@ -9242,14 +9679,14 @@
9242
9679
  <ul>
9243
9680
  <li><a href="https://github.com/nautobot/nautobot/issues/5248">#5248</a> - Broadened <code>Markdown</code> dependency to permit versions up to 3.5.x.</li>
9244
9681
  </ul>
9245
- <h3 id="documentation_4">Documentation<a class="headerlink" href="#documentation_4" title="Permanent link">&para;</a></h3>
9682
+ <h3 id="documentation_6">Documentation<a class="headerlink" href="#documentation_6" title="Permanent link">&para;</a></h3>
9246
9683
  <ul>
9247
9684
  <li><a href="https://github.com/nautobot/nautobot/issues/5179">#5179</a> - Updated all documentation referencing the <code>example_plugin</code> to refer to the (renamed) <code>example_app</code>.</li>
9248
9685
  <li><a href="https://github.com/nautobot/nautobot/issues/5179">#5179</a> - Replaced some "plugin" references in the documentation with "App" or "Nautobot App" as appropriate.</li>
9249
9686
  <li><a href="https://github.com/nautobot/nautobot/issues/5248">#5248</a> - Removed source code excerpts from the "App Developer Guide &gt; Code Reference" section of the documentation.</li>
9250
9687
  <li><a href="https://github.com/nautobot/nautobot/issues/5341">#5341</a> - Replaced references to "plugins" in the documentation with "Apps".</li>
9251
9688
  </ul>
9252
- <h3 id="housekeeping_5">Housekeeping<a class="headerlink" href="#housekeeping_5" title="Permanent link">&para;</a></h3>
9689
+ <h3 id="housekeeping_7">Housekeeping<a class="headerlink" href="#housekeeping_7" title="Permanent link">&para;</a></h3>
9253
9690
  <ul>
9254
9691
  <li><a href="https://github.com/nautobot/nautobot/issues/5099">#5099</a> - Added <code>mkdocs-macros-plugin</code> as a development/documentation-rendering dependency.</li>
9255
9692
  <li><a href="https://github.com/nautobot/nautobot/issues/5099">#5099</a> - Refactored documentation in <code>optional-settings</code> and <code>required-settings</code> to be generated automatically from <code>settings.yaml</code> schema.</li>
@@ -9418,10 +9855,12 @@
9418
9855
  <script id="__config" type="application/json">{"base": "..", "features": ["content.code.copy", "content.tabs.link", "navigation.footer", "navigation.tabs", "navigation.tabs.sticky", "navigation.tracking", "search.highlight", "search.share", "search.suggest"], "search": "../assets/javascripts/workers/search.b8dbb3d2.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}}</script>
9419
9856
 
9420
9857
 
9421
- <script src="../assets/javascripts/bundle.3220b9d7.min.js"></script>
9858
+ <script src="../assets/javascripts/bundle.ad660dcc.min.js"></script>
9422
9859
 
9423
9860
  <script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
9424
9861
 
9425
9862
 
9426
- </body>
9863
+ <script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
9864
+ document$.subscribe(() => { lightbox.reload() });
9865
+ </script></body>
9427
9866
  </html>