nautobot 2.2.5__py3-none-any.whl → 2.2.7__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 (345) hide show
  1. nautobot/apps/api.py +2 -0
  2. nautobot/apps/models.py +2 -0
  3. nautobot/core/api/fields.py +13 -0
  4. nautobot/core/api/mixins.py +6 -1
  5. nautobot/core/api/schema.py +3 -1
  6. nautobot/core/api/serializers.py +7 -1
  7. nautobot/core/celery/__init__.py +1 -1
  8. nautobot/core/management/commands/generate_test_data.py +128 -158
  9. nautobot/core/models/fields.py +15 -0
  10. nautobot/core/tests/runner.py +10 -0
  11. nautobot/core/tests/test_utils.py +48 -1
  12. nautobot/core/utils/git.py +121 -49
  13. nautobot/core/utils/module_loading.py +10 -2
  14. nautobot/dcim/factory.py +1 -1
  15. nautobot/dcim/tests/test_models.py +2 -0
  16. nautobot/extras/datasources/git.py +133 -135
  17. nautobot/extras/datasources/utils.py +3 -0
  18. nautobot/extras/filters/__init__.py +1 -0
  19. nautobot/extras/forms/forms.py +16 -3
  20. nautobot/extras/jobs.py +9 -1
  21. nautobot/extras/migrations/0107_laxurlfield.py +28 -0
  22. nautobot/extras/migrations/0108_jobbutton_enabled.py +17 -0
  23. nautobot/extras/models/datasources.py +6 -4
  24. nautobot/extras/models/groups.py +9 -2
  25. nautobot/extras/models/jobs.py +30 -0
  26. nautobot/extras/models/models.py +2 -4
  27. nautobot/extras/tables.py +3 -0
  28. nautobot/extras/templates/extras/jobbutton_retrieve.html +6 -2
  29. nautobot/extras/templatetags/job_buttons.py +2 -2
  30. nautobot/extras/tests/git_data/01-valid-files/__init__.py +0 -0
  31. nautobot/extras/tests/git_data/01-valid-files/config_context_schemas/schema-1.yaml +18 -0
  32. nautobot/extras/tests/git_data/01-valid-files/config_contexts/context.yaml +12 -0
  33. nautobot/extras/tests/git_data/01-valid-files/config_contexts/devices/test-device.json +3 -0
  34. nautobot/extras/tests/git_data/01-valid-files/config_contexts/locations/Test Location.json +7 -0
  35. nautobot/extras/tests/git_data/01-valid-files/export_templates/dcim/device/template.j2 +3 -0
  36. nautobot/extras/tests/git_data/01-valid-files/export_templates/dcim/device/template2.html +4 -0
  37. nautobot/extras/tests/git_data/01-valid-files/export_templates/ipam/vlan/template.j2 +3 -0
  38. nautobot/extras/tests/git_data/01-valid-files/jobs/__init__.py +5 -0
  39. nautobot/extras/tests/git_data/01-valid-files/jobs/my_job.py +16 -0
  40. nautobot/extras/tests/git_data/02-invalid-files/__init__.py +0 -0
  41. nautobot/extras/tests/git_data/02-invalid-files/config_context_schemas/badschema1.json +2 -0
  42. nautobot/extras/tests/git_data/02-invalid-files/config_context_schemas/badschema2.json +1 -0
  43. nautobot/extras/tests/git_data/02-invalid-files/config_contexts/badcontext1.json +2 -0
  44. nautobot/extras/tests/git_data/02-invalid-files/config_contexts/badcontext2.json +1 -0
  45. nautobot/extras/tests/git_data/02-invalid-files/config_contexts/badcontext3.json +3 -0
  46. nautobot/extras/tests/git_data/02-invalid-files/config_contexts/devices/nosuchdevice.json +1 -0
  47. nautobot/extras/tests/git_data/02-invalid-files/dcim/template.j2 +0 -0
  48. nautobot/extras/tests/git_data/02-invalid-files/devices/template.j2 +0 -0
  49. nautobot/extras/tests/git_data/02-invalid-files/export_templates/dcim/nosuchmodel/template.j2 +3 -0
  50. nautobot/extras/tests/git_data/02-invalid-files/export_templates/nosuchapp/device/template.j2 +3 -0
  51. nautobot/extras/tests/git_data/02-invalid-files/jobs/__init__.py +2 -0
  52. nautobot/extras/tests/git_data/02-invalid-files/jobs/importerror.py +1 -0
  53. nautobot/extras/tests/git_data/02-invalid-files/jobs/syntaxerror.py +1 -0
  54. nautobot/extras/tests/git_helper.py +76 -0
  55. nautobot/extras/tests/test_api.py +28 -11
  56. nautobot/extras/tests/test_datasources.py +94 -276
  57. nautobot/extras/tests/test_dynamicgroups.py +8 -1
  58. nautobot/extras/tests/test_models.py +8 -3
  59. nautobot/extras/tests/test_views.py +21 -7
  60. nautobot/extras/views.py +1 -1
  61. nautobot/ipam/api/serializers.py +46 -16
  62. nautobot/ipam/api/views.py +29 -16
  63. nautobot/ipam/filters.py +9 -1
  64. nautobot/ipam/forms.py +8 -0
  65. nautobot/ipam/tables.py +1 -1
  66. nautobot/ipam/tests/test_api.py +15 -20
  67. nautobot/ipam/tests/test_filters.py +15 -0
  68. nautobot/project-static/docs/404.html +83 -8
  69. nautobot/project-static/docs/apps/index.html +96 -10
  70. nautobot/project-static/docs/apps/nautobot-apps.html +96 -10
  71. nautobot/project-static/docs/assets/app-icons/icon-CapacityMetrics.svg +1 -0
  72. nautobot/project-static/docs/assets/app-icons/icon-CircuitMaintenance.png +0 -0
  73. nautobot/project-static/docs/assets/javascripts/{bundle.ebd0bdb7.min.js → bundle.fe8b6f2b.min.js} +4 -4
  74. nautobot/project-static/docs/assets/javascripts/{bundle.ebd0bdb7.min.js.map → bundle.fe8b6f2b.min.js.map} +3 -3
  75. nautobot/project-static/docs/assets/javascripts/glightbox.min.js +1 -0
  76. nautobot/project-static/docs/assets/stylesheets/glightbox.min.css +1 -0
  77. nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +96 -10
  78. nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +96 -10
  79. nautobot/project-static/docs/code-reference/nautobot/apps/api.html +96 -10
  80. nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +96 -10
  81. nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +96 -10
  82. nautobot/project-static/docs/code-reference/nautobot/apps/config.html +96 -10
  83. nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +96 -10
  84. nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +96 -10
  85. nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +96 -10
  86. nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +96 -10
  87. nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +96 -10
  88. nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +96 -10
  89. nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +96 -10
  90. nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +96 -10
  91. nautobot/project-static/docs/code-reference/nautobot/apps/models.html +156 -12
  92. nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +96 -10
  93. nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +96 -10
  94. nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +96 -10
  95. nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +106 -11
  96. nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +96 -10
  97. nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +96 -10
  98. nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +143 -11
  99. nautobot/project-static/docs/code-reference/nautobot/apps/views.html +96 -10
  100. nautobot/project-static/docs/development/apps/api/configuration-view.html +96 -10
  101. nautobot/project-static/docs/development/apps/api/database-backend-config.html +96 -10
  102. nautobot/project-static/docs/development/apps/api/models/django-admin.html +96 -10
  103. nautobot/project-static/docs/development/apps/api/models/global-search.html +96 -10
  104. nautobot/project-static/docs/development/apps/api/models/graphql.html +96 -10
  105. nautobot/project-static/docs/development/apps/api/models/index.html +96 -10
  106. nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +96 -10
  107. nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +96 -10
  108. nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +96 -10
  109. nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +96 -10
  110. nautobot/project-static/docs/development/apps/api/platform-features/index.html +96 -10
  111. nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +96 -10
  112. nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +96 -10
  113. nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +96 -10
  114. nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +96 -10
  115. nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +96 -10
  116. nautobot/project-static/docs/development/apps/api/prometheus.html +96 -10
  117. nautobot/project-static/docs/development/apps/api/setup.html +96 -10
  118. nautobot/project-static/docs/development/apps/api/testing.html +96 -10
  119. nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +96 -10
  120. nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +96 -10
  121. nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +96 -10
  122. nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +96 -10
  123. nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +96 -10
  124. nautobot/project-static/docs/development/apps/api/views/base-template.html +96 -10
  125. nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +96 -10
  126. nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +96 -10
  127. nautobot/project-static/docs/development/apps/api/views/help-documentation.html +96 -10
  128. nautobot/project-static/docs/development/apps/api/views/index.html +96 -10
  129. nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +96 -10
  130. nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +96 -10
  131. nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +96 -10
  132. nautobot/project-static/docs/development/apps/api/views/notes.html +96 -10
  133. nautobot/project-static/docs/development/apps/api/views/rest-api.html +96 -10
  134. nautobot/project-static/docs/development/apps/api/views/urls.html +96 -10
  135. nautobot/project-static/docs/development/apps/index.html +96 -10
  136. nautobot/project-static/docs/development/apps/migration/code-updates.html +97 -11
  137. nautobot/project-static/docs/development/apps/migration/dependency-updates.html +96 -10
  138. nautobot/project-static/docs/development/apps/migration/from-v1.html +96 -10
  139. nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +96 -10
  140. nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +96 -10
  141. nautobot/project-static/docs/development/apps/migration/model-updates/global.html +96 -10
  142. nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +96 -10
  143. nautobot/project-static/docs/development/apps/porting-from-netbox.html +96 -10
  144. nautobot/project-static/docs/development/core/application-registry.html +96 -10
  145. nautobot/project-static/docs/development/core/best-practices.html +96 -10
  146. nautobot/project-static/docs/development/core/bootstrap-ui.html +96 -10
  147. nautobot/project-static/docs/development/core/caching.html +96 -10
  148. nautobot/project-static/docs/development/core/controllers.html +96 -10
  149. nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +96 -10
  150. nautobot/project-static/docs/development/core/generic-views.html +96 -10
  151. nautobot/project-static/docs/development/core/getting-started.html +98 -13
  152. nautobot/project-static/docs/development/core/homepage.html +96 -10
  153. nautobot/project-static/docs/development/core/index.html +96 -10
  154. nautobot/project-static/docs/development/core/model-checklist.html +96 -10
  155. nautobot/project-static/docs/development/core/model-features.html +96 -10
  156. nautobot/project-static/docs/development/core/natural-keys.html +96 -10
  157. nautobot/project-static/docs/development/core/navigation-menu.html +96 -10
  158. nautobot/project-static/docs/development/core/release-checklist.html +96 -10
  159. nautobot/project-static/docs/development/core/role-internals.html +96 -10
  160. nautobot/project-static/docs/development/core/settings.html +96 -10
  161. nautobot/project-static/docs/development/core/style-guide.html +96 -10
  162. nautobot/project-static/docs/development/core/templates.html +96 -10
  163. nautobot/project-static/docs/development/core/testing.html +109 -11
  164. nautobot/project-static/docs/development/core/user-preferences.html +96 -10
  165. nautobot/project-static/docs/development/index.html +96 -10
  166. nautobot/project-static/docs/development/jobs/index.html +96 -10
  167. nautobot/project-static/docs/development/jobs/migration/from-v1.html +96 -10
  168. nautobot/project-static/docs/index.html +13 -8362
  169. nautobot/project-static/docs/objects.inv +0 -0
  170. nautobot/project-static/docs/overview/application_stack.html +8229 -0
  171. nautobot/project-static/docs/overview/design_philosophy.html +8158 -0
  172. nautobot/project-static/docs/overview/index.html +8230 -0
  173. nautobot/project-static/docs/release-notes/index.html +96 -10
  174. nautobot/project-static/docs/release-notes/version-1.0.html +96 -10
  175. nautobot/project-static/docs/release-notes/version-1.1.html +96 -10
  176. nautobot/project-static/docs/release-notes/version-1.2.html +96 -10
  177. nautobot/project-static/docs/release-notes/version-1.3.html +96 -10
  178. nautobot/project-static/docs/release-notes/version-1.4.html +96 -10
  179. nautobot/project-static/docs/release-notes/version-1.5.html +96 -10
  180. nautobot/project-static/docs/release-notes/version-1.6.html +96 -10
  181. nautobot/project-static/docs/release-notes/version-2.0.html +96 -10
  182. nautobot/project-static/docs/release-notes/version-2.1.html +96 -10
  183. nautobot/project-static/docs/release-notes/version-2.2.html +516 -131
  184. nautobot/project-static/docs/requirements.txt +2 -1
  185. nautobot/project-static/docs/search/search_index.json +1 -1
  186. nautobot/project-static/docs/sitemap.xml +268 -258
  187. nautobot/project-static/docs/sitemap.xml.gz +0 -0
  188. nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +96 -10
  189. nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +96 -10
  190. nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +96 -10
  191. nautobot/project-static/docs/user-guide/administration/configuration/index.html +96 -10
  192. nautobot/project-static/docs/user-guide/administration/configuration/optional-settings.html +96 -10
  193. nautobot/project-static/docs/user-guide/administration/configuration/required-settings.html +96 -10
  194. nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +96 -10
  195. nautobot/project-static/docs/user-guide/administration/guides/caching.html +96 -10
  196. nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +96 -10
  197. nautobot/project-static/docs/user-guide/administration/guides/healthcheck.html +96 -10
  198. nautobot/project-static/docs/user-guide/administration/guides/permissions.html +96 -10
  199. nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +96 -10
  200. nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +96 -10
  201. nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +96 -10
  202. nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +96 -10
  203. nautobot/project-static/docs/user-guide/administration/installation/app-install.html +96 -10
  204. nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +96 -10
  205. nautobot/project-static/docs/user-guide/administration/installation/http-server.html +96 -10
  206. nautobot/project-static/docs/user-guide/administration/installation/index.html +96 -10
  207. nautobot/project-static/docs/user-guide/administration/installation/install_system.html +96 -10
  208. nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +96 -10
  209. nautobot/project-static/docs/user-guide/administration/installation/services.html +96 -10
  210. nautobot/project-static/docs/user-guide/administration/installation-extras/docker.html +96 -10
  211. nautobot/project-static/docs/user-guide/administration/installation-extras/health-checks.html +96 -10
  212. nautobot/project-static/docs/user-guide/administration/installation-extras/selinux-troubleshooting.html +96 -10
  213. nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +96 -10
  214. nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +96 -10
  215. nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +96 -10
  216. nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +96 -10
  217. nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +96 -10
  218. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +96 -10
  219. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +96 -10
  220. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +96 -10
  221. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +96 -10
  222. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +96 -10
  223. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +96 -10
  224. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/tables/v2-code-location-changes.yaml +1 -1
  225. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +97 -11
  226. nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +96 -10
  227. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +96 -10
  228. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +96 -10
  229. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +96 -10
  230. nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +96 -10
  231. nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +96 -10
  232. nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +96 -10
  233. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +96 -10
  234. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +96 -10
  235. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +96 -10
  236. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +96 -10
  237. nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +96 -10
  238. nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +96 -10
  239. nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +96 -10
  240. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +96 -10
  241. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +96 -10
  242. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +96 -10
  243. nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +96 -10
  244. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +96 -10
  245. nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +96 -10
  246. nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +96 -10
  247. nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +96 -10
  248. nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +96 -10
  249. nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +96 -10
  250. nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +96 -10
  251. nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +96 -10
  252. nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +96 -10
  253. nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +96 -10
  254. nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +96 -10
  255. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +96 -10
  256. nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +96 -10
  257. nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +96 -10
  258. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +96 -10
  259. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +96 -10
  260. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +96 -10
  261. nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +96 -10
  262. nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +96 -10
  263. nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +96 -10
  264. nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +96 -10
  265. nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +96 -10
  266. nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +96 -10
  267. nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +96 -10
  268. nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +96 -10
  269. nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +96 -10
  270. nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +96 -10
  271. nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +96 -10
  272. nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +96 -10
  273. nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +96 -10
  274. nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +96 -10
  275. nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +96 -10
  276. nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +96 -10
  277. nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +96 -10
  278. nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +96 -10
  279. nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +96 -10
  280. nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +96 -10
  281. nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +96 -10
  282. nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +96 -10
  283. nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +96 -10
  284. nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +96 -10
  285. nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +96 -10
  286. nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +96 -10
  287. nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +96 -10
  288. nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +96 -10
  289. nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +96 -10
  290. nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +96 -10
  291. nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +96 -10
  292. nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +96 -10
  293. nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +96 -10
  294. nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +96 -10
  295. nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +96 -10
  296. nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +96 -10
  297. nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +96 -10
  298. nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +96 -10
  299. nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +96 -10
  300. nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +96 -10
  301. nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +96 -10
  302. nautobot/project-static/docs/user-guide/feature-guides/graphql.html +96 -10
  303. nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +96 -10
  304. nautobot/project-static/docs/user-guide/feature-guides/relationships.html +96 -10
  305. nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +96 -10
  306. nautobot/project-static/docs/user-guide/index.html +99 -13
  307. nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +96 -10
  308. nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +96 -10
  309. nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +96 -10
  310. nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +96 -10
  311. nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +96 -10
  312. nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +96 -10
  313. nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +96 -10
  314. nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +96 -10
  315. nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +96 -10
  316. nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +96 -10
  317. nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +96 -10
  318. nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +97 -11
  319. nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +96 -10
  320. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +101 -14
  321. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +96 -10
  322. nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +96 -10
  323. nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +96 -10
  324. nautobot/project-static/docs/user-guide/platform-functionality/note.html +96 -10
  325. nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +96 -10
  326. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +96 -10
  327. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +96 -10
  328. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +96 -10
  329. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +96 -10
  330. nautobot/project-static/docs/user-guide/platform-functionality/role.html +96 -10
  331. nautobot/project-static/docs/user-guide/platform-functionality/secret.html +96 -10
  332. nautobot/project-static/docs/user-guide/platform-functionality/status.html +96 -10
  333. nautobot/project-static/docs/user-guide/platform-functionality/tag.html +96 -10
  334. nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +96 -10
  335. nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +96 -10
  336. nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +96 -10
  337. nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +96 -10
  338. nautobot/project-static/js/connection_toggles.js +7 -6
  339. {nautobot-2.2.5.dist-info → nautobot-2.2.7.dist-info}/METADATA +2 -2
  340. {nautobot-2.2.5.dist-info → nautobot-2.2.7.dist-info}/RECORD +344 -311
  341. nautobot/extras/tests/test_git.py +0 -23
  342. {nautobot-2.2.5.dist-info → nautobot-2.2.7.dist-info}/LICENSE.txt +0 -0
  343. {nautobot-2.2.5.dist-info → nautobot-2.2.7.dist-info}/NOTICE +0 -0
  344. {nautobot-2.2.5.dist-info → nautobot-2.2.7.dist-info}/WHEEL +0 -0
  345. {nautobot-2.2.5.dist-info → nautobot-2.2.7.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.6.0, mkdocs-material-9.5.23">
21
+ <meta name="generator" content="mkdocs-1.6.0, mkdocs-material-9.5.28">
22
22
 
23
23
 
24
24
 
@@ -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
 
@@ -7370,6 +7454,126 @@
7370
7454
  </ul>
7371
7455
  </nav>
7372
7456
 
7457
+ </li>
7458
+
7459
+ <li class="md-nav__item">
7460
+ <a href="#v227-2024-07-08" class="md-nav__link">
7461
+ <span class="md-ellipsis">
7462
+ v2.2.7 (2024-07-08)
7463
+ </span>
7464
+ </a>
7465
+
7466
+ <nav class="md-nav" aria-label="v2.2.7 (2024-07-08)">
7467
+ <ul class="md-nav__list">
7468
+
7469
+ <li class="md-nav__item">
7470
+ <a href="#security" class="md-nav__link">
7471
+ <span class="md-ellipsis">
7472
+ Security
7473
+ </span>
7474
+ </a>
7475
+
7476
+ </li>
7477
+
7478
+ <li class="md-nav__item">
7479
+ <a href="#fixed" class="md-nav__link">
7480
+ <span class="md-ellipsis">
7481
+ Fixed
7482
+ </span>
7483
+ </a>
7484
+
7485
+ </li>
7486
+
7487
+ <li class="md-nav__item">
7488
+ <a href="#dependencies" class="md-nav__link">
7489
+ <span class="md-ellipsis">
7490
+ Dependencies
7491
+ </span>
7492
+ </a>
7493
+
7494
+ </li>
7495
+
7496
+ <li class="md-nav__item">
7497
+ <a href="#housekeeping" class="md-nav__link">
7498
+ <span class="md-ellipsis">
7499
+ Housekeeping
7500
+ </span>
7501
+ </a>
7502
+
7503
+ </li>
7504
+
7505
+ </ul>
7506
+ </nav>
7507
+
7508
+ </li>
7509
+
7510
+ <li class="md-nav__item">
7511
+ <a href="#v226-2024-06-24" class="md-nav__link">
7512
+ <span class="md-ellipsis">
7513
+ v2.2.6 (2024-06-24)
7514
+ </span>
7515
+ </a>
7516
+
7517
+ <nav class="md-nav" aria-label="v2.2.6 (2024-06-24)">
7518
+ <ul class="md-nav__list">
7519
+
7520
+ <li class="md-nav__item">
7521
+ <a href="#security_1" class="md-nav__link">
7522
+ <span class="md-ellipsis">
7523
+ Security
7524
+ </span>
7525
+ </a>
7526
+
7527
+ </li>
7528
+
7529
+ <li class="md-nav__item">
7530
+ <a href="#added_1" class="md-nav__link">
7531
+ <span class="md-ellipsis">
7532
+ Added
7533
+ </span>
7534
+ </a>
7535
+
7536
+ </li>
7537
+
7538
+ <li class="md-nav__item">
7539
+ <a href="#changed_1" class="md-nav__link">
7540
+ <span class="md-ellipsis">
7541
+ Changed
7542
+ </span>
7543
+ </a>
7544
+
7545
+ </li>
7546
+
7547
+ <li class="md-nav__item">
7548
+ <a href="#fixed_1" class="md-nav__link">
7549
+ <span class="md-ellipsis">
7550
+ Fixed
7551
+ </span>
7552
+ </a>
7553
+
7554
+ </li>
7555
+
7556
+ <li class="md-nav__item">
7557
+ <a href="#documentation" class="md-nav__link">
7558
+ <span class="md-ellipsis">
7559
+ Documentation
7560
+ </span>
7561
+ </a>
7562
+
7563
+ </li>
7564
+
7565
+ <li class="md-nav__item">
7566
+ <a href="#housekeeping_1" class="md-nav__link">
7567
+ <span class="md-ellipsis">
7568
+ Housekeeping
7569
+ </span>
7570
+ </a>
7571
+
7572
+ </li>
7573
+
7574
+ </ul>
7575
+ </nav>
7576
+
7373
7577
  </li>
7374
7578
 
7375
7579
  <li class="md-nav__item">
@@ -7383,7 +7587,7 @@
7383
7587
  <ul class="md-nav__list">
7384
7588
 
7385
7589
  <li class="md-nav__item">
7386
- <a href="#security" class="md-nav__link">
7590
+ <a href="#security_2" class="md-nav__link">
7387
7591
  <span class="md-ellipsis">
7388
7592
  Security
7389
7593
  </span>
@@ -7392,7 +7596,7 @@
7392
7596
  </li>
7393
7597
 
7394
7598
  <li class="md-nav__item">
7395
- <a href="#added_1" class="md-nav__link">
7599
+ <a href="#added_2" class="md-nav__link">
7396
7600
  <span class="md-ellipsis">
7397
7601
  Added
7398
7602
  </span>
@@ -7410,7 +7614,7 @@
7410
7614
  </li>
7411
7615
 
7412
7616
  <li class="md-nav__item">
7413
- <a href="#fixed" class="md-nav__link">
7617
+ <a href="#fixed_2" class="md-nav__link">
7414
7618
  <span class="md-ellipsis">
7415
7619
  Fixed
7416
7620
  </span>
@@ -7419,7 +7623,7 @@
7419
7623
  </li>
7420
7624
 
7421
7625
  <li class="md-nav__item">
7422
- <a href="#documentation" class="md-nav__link">
7626
+ <a href="#documentation_1" class="md-nav__link">
7423
7627
  <span class="md-ellipsis">
7424
7628
  Documentation
7425
7629
  </span>
@@ -7428,7 +7632,7 @@
7428
7632
  </li>
7429
7633
 
7430
7634
  <li class="md-nav__item">
7431
- <a href="#housekeeping" class="md-nav__link">
7635
+ <a href="#housekeeping_2" class="md-nav__link">
7432
7636
  <span class="md-ellipsis">
7433
7637
  Housekeeping
7434
7638
  </span>
@@ -7452,7 +7656,7 @@
7452
7656
  <ul class="md-nav__list">
7453
7657
 
7454
7658
  <li class="md-nav__item">
7455
- <a href="#security_1" class="md-nav__link">
7659
+ <a href="#security_3" class="md-nav__link">
7456
7660
  <span class="md-ellipsis">
7457
7661
  Security
7458
7662
  </span>
@@ -7461,7 +7665,7 @@
7461
7665
  </li>
7462
7666
 
7463
7667
  <li class="md-nav__item">
7464
- <a href="#added_2" class="md-nav__link">
7668
+ <a href="#added_3" class="md-nav__link">
7465
7669
  <span class="md-ellipsis">
7466
7670
  Added
7467
7671
  </span>
@@ -7470,7 +7674,7 @@
7470
7674
  </li>
7471
7675
 
7472
7676
  <li class="md-nav__item">
7473
- <a href="#fixed_1" class="md-nav__link">
7677
+ <a href="#fixed_3" class="md-nav__link">
7474
7678
  <span class="md-ellipsis">
7475
7679
  Fixed
7476
7680
  </span>
@@ -7479,7 +7683,7 @@
7479
7683
  </li>
7480
7684
 
7481
7685
  <li class="md-nav__item">
7482
- <a href="#documentation_1" class="md-nav__link">
7686
+ <a href="#documentation_2" class="md-nav__link">
7483
7687
  <span class="md-ellipsis">
7484
7688
  Documentation
7485
7689
  </span>
@@ -7488,7 +7692,7 @@
7488
7692
  </li>
7489
7693
 
7490
7694
  <li class="md-nav__item">
7491
- <a href="#housekeeping_1" class="md-nav__link">
7695
+ <a href="#housekeeping_3" class="md-nav__link">
7492
7696
  <span class="md-ellipsis">
7493
7697
  Housekeeping
7494
7698
  </span>
@@ -7512,7 +7716,7 @@
7512
7716
  <ul class="md-nav__list">
7513
7717
 
7514
7718
  <li class="md-nav__item">
7515
- <a href="#security_2" class="md-nav__link">
7719
+ <a href="#security_4" class="md-nav__link">
7516
7720
  <span class="md-ellipsis">
7517
7721
  Security
7518
7722
  </span>
@@ -7521,7 +7725,7 @@
7521
7725
  </li>
7522
7726
 
7523
7727
  <li class="md-nav__item">
7524
- <a href="#added_3" class="md-nav__link">
7728
+ <a href="#added_4" class="md-nav__link">
7525
7729
  <span class="md-ellipsis">
7526
7730
  Added
7527
7731
  </span>
@@ -7530,7 +7734,7 @@
7530
7734
  </li>
7531
7735
 
7532
7736
  <li class="md-nav__item">
7533
- <a href="#changed_1" class="md-nav__link">
7737
+ <a href="#changed_2" class="md-nav__link">
7534
7738
  <span class="md-ellipsis">
7535
7739
  Changed
7536
7740
  </span>
@@ -7539,7 +7743,7 @@
7539
7743
  </li>
7540
7744
 
7541
7745
  <li class="md-nav__item">
7542
- <a href="#fixed_2" class="md-nav__link">
7746
+ <a href="#fixed_4" class="md-nav__link">
7543
7747
  <span class="md-ellipsis">
7544
7748
  Fixed
7545
7749
  </span>
@@ -7548,7 +7752,7 @@
7548
7752
  </li>
7549
7753
 
7550
7754
  <li class="md-nav__item">
7551
- <a href="#documentation_2" class="md-nav__link">
7755
+ <a href="#documentation_3" class="md-nav__link">
7552
7756
  <span class="md-ellipsis">
7553
7757
  Documentation
7554
7758
  </span>
@@ -7557,7 +7761,7 @@
7557
7761
  </li>
7558
7762
 
7559
7763
  <li class="md-nav__item">
7560
- <a href="#housekeeping_2" class="md-nav__link">
7764
+ <a href="#housekeeping_4" class="md-nav__link">
7561
7765
  <span class="md-ellipsis">
7562
7766
  Housekeeping
7563
7767
  </span>
@@ -7581,7 +7785,7 @@
7581
7785
  <ul class="md-nav__list">
7582
7786
 
7583
7787
  <li class="md-nav__item">
7584
- <a href="#security_3" class="md-nav__link">
7788
+ <a href="#security_5" class="md-nav__link">
7585
7789
  <span class="md-ellipsis">
7586
7790
  Security
7587
7791
  </span>
@@ -7590,7 +7794,7 @@
7590
7794
  </li>
7591
7795
 
7592
7796
  <li class="md-nav__item">
7593
- <a href="#added_4" class="md-nav__link">
7797
+ <a href="#added_5" class="md-nav__link">
7594
7798
  <span class="md-ellipsis">
7595
7799
  Added
7596
7800
  </span>
@@ -7599,7 +7803,7 @@
7599
7803
  </li>
7600
7804
 
7601
7805
  <li class="md-nav__item">
7602
- <a href="#changed_2" class="md-nav__link">
7806
+ <a href="#changed_3" class="md-nav__link">
7603
7807
  <span class="md-ellipsis">
7604
7808
  Changed
7605
7809
  </span>
@@ -7608,7 +7812,7 @@
7608
7812
  </li>
7609
7813
 
7610
7814
  <li class="md-nav__item">
7611
- <a href="#fixed_3" class="md-nav__link">
7815
+ <a href="#fixed_5" class="md-nav__link">
7612
7816
  <span class="md-ellipsis">
7613
7817
  Fixed
7614
7818
  </span>
@@ -7617,7 +7821,7 @@
7617
7821
  </li>
7618
7822
 
7619
7823
  <li class="md-nav__item">
7620
- <a href="#documentation_3" class="md-nav__link">
7824
+ <a href="#documentation_4" class="md-nav__link">
7621
7825
  <span class="md-ellipsis">
7622
7826
  Documentation
7623
7827
  </span>
@@ -7626,7 +7830,7 @@
7626
7830
  </li>
7627
7831
 
7628
7832
  <li class="md-nav__item">
7629
- <a href="#housekeeping_3" class="md-nav__link">
7833
+ <a href="#housekeeping_5" class="md-nav__link">
7630
7834
  <span class="md-ellipsis">
7631
7835
  Housekeeping
7632
7836
  </span>
@@ -7650,7 +7854,7 @@
7650
7854
  <ul class="md-nav__list">
7651
7855
 
7652
7856
  <li class="md-nav__item">
7653
- <a href="#security_4" class="md-nav__link">
7857
+ <a href="#security_6" class="md-nav__link">
7654
7858
  <span class="md-ellipsis">
7655
7859
  Security
7656
7860
  </span>
@@ -7659,7 +7863,7 @@
7659
7863
  </li>
7660
7864
 
7661
7865
  <li class="md-nav__item">
7662
- <a href="#added_5" class="md-nav__link">
7866
+ <a href="#added_6" class="md-nav__link">
7663
7867
  <span class="md-ellipsis">
7664
7868
  Added
7665
7869
  </span>
@@ -7668,7 +7872,7 @@
7668
7872
  </li>
7669
7873
 
7670
7874
  <li class="md-nav__item">
7671
- <a href="#changed_3" class="md-nav__link">
7875
+ <a href="#changed_4" class="md-nav__link">
7672
7876
  <span class="md-ellipsis">
7673
7877
  Changed
7674
7878
  </span>
@@ -7677,7 +7881,7 @@
7677
7881
  </li>
7678
7882
 
7679
7883
  <li class="md-nav__item">
7680
- <a href="#fixed_4" class="md-nav__link">
7884
+ <a href="#fixed_6" class="md-nav__link">
7681
7885
  <span class="md-ellipsis">
7682
7886
  Fixed
7683
7887
  </span>
@@ -7686,7 +7890,7 @@
7686
7890
  </li>
7687
7891
 
7688
7892
  <li class="md-nav__item">
7689
- <a href="#dependencies" class="md-nav__link">
7893
+ <a href="#dependencies_1" class="md-nav__link">
7690
7894
  <span class="md-ellipsis">
7691
7895
  Dependencies
7692
7896
  </span>
@@ -7695,7 +7899,7 @@
7695
7899
  </li>
7696
7900
 
7697
7901
  <li class="md-nav__item">
7698
- <a href="#documentation_4" class="md-nav__link">
7902
+ <a href="#documentation_5" class="md-nav__link">
7699
7903
  <span class="md-ellipsis">
7700
7904
  Documentation
7701
7905
  </span>
@@ -7704,7 +7908,7 @@
7704
7908
  </li>
7705
7909
 
7706
7910
  <li class="md-nav__item">
7707
- <a href="#housekeeping_4" class="md-nav__link">
7911
+ <a href="#housekeeping_6" class="md-nav__link">
7708
7912
  <span class="md-ellipsis">
7709
7913
  Housekeeping
7710
7914
  </span>
@@ -7728,7 +7932,7 @@
7728
7932
  <ul class="md-nav__list">
7729
7933
 
7730
7934
  <li class="md-nav__item">
7731
- <a href="#added_6" class="md-nav__link">
7935
+ <a href="#added_7" class="md-nav__link">
7732
7936
  <span class="md-ellipsis">
7733
7937
  Added
7734
7938
  </span>
@@ -7737,7 +7941,7 @@
7737
7941
  </li>
7738
7942
 
7739
7943
  <li class="md-nav__item">
7740
- <a href="#changed_4" class="md-nav__link">
7944
+ <a href="#changed_5" class="md-nav__link">
7741
7945
  <span class="md-ellipsis">
7742
7946
  Changed
7743
7947
  </span>
@@ -7746,7 +7950,7 @@
7746
7950
  </li>
7747
7951
 
7748
7952
  <li class="md-nav__item">
7749
- <a href="#fixed_5" class="md-nav__link">
7953
+ <a href="#fixed_7" class="md-nav__link">
7750
7954
  <span class="md-ellipsis">
7751
7955
  Fixed
7752
7956
  </span>
@@ -7755,7 +7959,7 @@
7755
7959
  </li>
7756
7960
 
7757
7961
  <li class="md-nav__item">
7758
- <a href="#dependencies_1" class="md-nav__link">
7962
+ <a href="#dependencies_2" class="md-nav__link">
7759
7963
  <span class="md-ellipsis">
7760
7964
  Dependencies
7761
7965
  </span>
@@ -7764,7 +7968,7 @@
7764
7968
  </li>
7765
7969
 
7766
7970
  <li class="md-nav__item">
7767
- <a href="#housekeeping_5" class="md-nav__link">
7971
+ <a href="#housekeeping_7" class="md-nav__link">
7768
7972
  <span class="md-ellipsis">
7769
7973
  Housekeeping
7770
7974
  </span>
@@ -7788,7 +7992,7 @@
7788
7992
  <ul class="md-nav__list">
7789
7993
 
7790
7994
  <li class="md-nav__item">
7791
- <a href="#added_7" class="md-nav__link">
7995
+ <a href="#added_8" class="md-nav__link">
7792
7996
  <span class="md-ellipsis">
7793
7997
  Added
7794
7998
  </span>
@@ -7797,7 +8001,7 @@
7797
8001
  </li>
7798
8002
 
7799
8003
  <li class="md-nav__item">
7800
- <a href="#changed_5" class="md-nav__link">
8004
+ <a href="#changed_6" class="md-nav__link">
7801
8005
  <span class="md-ellipsis">
7802
8006
  Changed
7803
8007
  </span>
@@ -7824,7 +8028,7 @@
7824
8028
  </li>
7825
8029
 
7826
8030
  <li class="md-nav__item">
7827
- <a href="#fixed_6" class="md-nav__link">
8031
+ <a href="#fixed_8" class="md-nav__link">
7828
8032
  <span class="md-ellipsis">
7829
8033
  Fixed
7830
8034
  </span>
@@ -7833,7 +8037,7 @@
7833
8037
  </li>
7834
8038
 
7835
8039
  <li class="md-nav__item">
7836
- <a href="#dependencies_2" class="md-nav__link">
8040
+ <a href="#dependencies_3" class="md-nav__link">
7837
8041
  <span class="md-ellipsis">
7838
8042
  Dependencies
7839
8043
  </span>
@@ -7842,7 +8046,7 @@
7842
8046
  </li>
7843
8047
 
7844
8048
  <li class="md-nav__item">
7845
- <a href="#documentation_5" class="md-nav__link">
8049
+ <a href="#documentation_6" class="md-nav__link">
7846
8050
  <span class="md-ellipsis">
7847
8051
  Documentation
7848
8052
  </span>
@@ -7851,7 +8055,7 @@
7851
8055
  </li>
7852
8056
 
7853
8057
  <li class="md-nav__item">
7854
- <a href="#housekeeping_6" class="md-nav__link">
8058
+ <a href="#housekeeping_8" class="md-nav__link">
7855
8059
  <span class="md-ellipsis">
7856
8060
  Housekeeping
7857
8061
  </span>
@@ -8560,13 +8764,13 @@
8560
8764
  </li>
8561
8765
 
8562
8766
  <li class="md-nav__item">
8563
- <a href="#v225-2024-05-28" class="md-nav__link">
8767
+ <a href="#v227-2024-07-08" class="md-nav__link">
8564
8768
  <span class="md-ellipsis">
8565
- v2.2.5 (2024-05-28)
8769
+ v2.2.7 (2024-07-08)
8566
8770
  </span>
8567
8771
  </a>
8568
8772
 
8569
- <nav class="md-nav" aria-label="v2.2.5 (2024-05-28)">
8773
+ <nav class="md-nav" aria-label="v2.2.7 (2024-07-08)">
8570
8774
  <ul class="md-nav__list">
8571
8775
 
8572
8776
  <li class="md-nav__item">
@@ -8576,6 +8780,57 @@
8576
8780
  </span>
8577
8781
  </a>
8578
8782
 
8783
+ </li>
8784
+
8785
+ <li class="md-nav__item">
8786
+ <a href="#fixed" class="md-nav__link">
8787
+ <span class="md-ellipsis">
8788
+ Fixed
8789
+ </span>
8790
+ </a>
8791
+
8792
+ </li>
8793
+
8794
+ <li class="md-nav__item">
8795
+ <a href="#dependencies" class="md-nav__link">
8796
+ <span class="md-ellipsis">
8797
+ Dependencies
8798
+ </span>
8799
+ </a>
8800
+
8801
+ </li>
8802
+
8803
+ <li class="md-nav__item">
8804
+ <a href="#housekeeping" class="md-nav__link">
8805
+ <span class="md-ellipsis">
8806
+ Housekeeping
8807
+ </span>
8808
+ </a>
8809
+
8810
+ </li>
8811
+
8812
+ </ul>
8813
+ </nav>
8814
+
8815
+ </li>
8816
+
8817
+ <li class="md-nav__item">
8818
+ <a href="#v226-2024-06-24" class="md-nav__link">
8819
+ <span class="md-ellipsis">
8820
+ v2.2.6 (2024-06-24)
8821
+ </span>
8822
+ </a>
8823
+
8824
+ <nav class="md-nav" aria-label="v2.2.6 (2024-06-24)">
8825
+ <ul class="md-nav__list">
8826
+
8827
+ <li class="md-nav__item">
8828
+ <a href="#security_1" class="md-nav__link">
8829
+ <span class="md-ellipsis">
8830
+ Security
8831
+ </span>
8832
+ </a>
8833
+
8579
8834
  </li>
8580
8835
 
8581
8836
  <li class="md-nav__item">
@@ -8585,6 +8840,75 @@
8585
8840
  </span>
8586
8841
  </a>
8587
8842
 
8843
+ </li>
8844
+
8845
+ <li class="md-nav__item">
8846
+ <a href="#changed_1" class="md-nav__link">
8847
+ <span class="md-ellipsis">
8848
+ Changed
8849
+ </span>
8850
+ </a>
8851
+
8852
+ </li>
8853
+
8854
+ <li class="md-nav__item">
8855
+ <a href="#fixed_1" class="md-nav__link">
8856
+ <span class="md-ellipsis">
8857
+ Fixed
8858
+ </span>
8859
+ </a>
8860
+
8861
+ </li>
8862
+
8863
+ <li class="md-nav__item">
8864
+ <a href="#documentation" class="md-nav__link">
8865
+ <span class="md-ellipsis">
8866
+ Documentation
8867
+ </span>
8868
+ </a>
8869
+
8870
+ </li>
8871
+
8872
+ <li class="md-nav__item">
8873
+ <a href="#housekeeping_1" class="md-nav__link">
8874
+ <span class="md-ellipsis">
8875
+ Housekeeping
8876
+ </span>
8877
+ </a>
8878
+
8879
+ </li>
8880
+
8881
+ </ul>
8882
+ </nav>
8883
+
8884
+ </li>
8885
+
8886
+ <li class="md-nav__item">
8887
+ <a href="#v225-2024-05-28" class="md-nav__link">
8888
+ <span class="md-ellipsis">
8889
+ v2.2.5 (2024-05-28)
8890
+ </span>
8891
+ </a>
8892
+
8893
+ <nav class="md-nav" aria-label="v2.2.5 (2024-05-28)">
8894
+ <ul class="md-nav__list">
8895
+
8896
+ <li class="md-nav__item">
8897
+ <a href="#security_2" class="md-nav__link">
8898
+ <span class="md-ellipsis">
8899
+ Security
8900
+ </span>
8901
+ </a>
8902
+
8903
+ </li>
8904
+
8905
+ <li class="md-nav__item">
8906
+ <a href="#added_2" class="md-nav__link">
8907
+ <span class="md-ellipsis">
8908
+ Added
8909
+ </span>
8910
+ </a>
8911
+
8588
8912
  </li>
8589
8913
 
8590
8914
  <li class="md-nav__item">
@@ -8597,7 +8921,7 @@
8597
8921
  </li>
8598
8922
 
8599
8923
  <li class="md-nav__item">
8600
- <a href="#fixed" class="md-nav__link">
8924
+ <a href="#fixed_2" class="md-nav__link">
8601
8925
  <span class="md-ellipsis">
8602
8926
  Fixed
8603
8927
  </span>
@@ -8606,7 +8930,7 @@
8606
8930
  </li>
8607
8931
 
8608
8932
  <li class="md-nav__item">
8609
- <a href="#documentation" class="md-nav__link">
8933
+ <a href="#documentation_1" class="md-nav__link">
8610
8934
  <span class="md-ellipsis">
8611
8935
  Documentation
8612
8936
  </span>
@@ -8615,7 +8939,7 @@
8615
8939
  </li>
8616
8940
 
8617
8941
  <li class="md-nav__item">
8618
- <a href="#housekeeping" class="md-nav__link">
8942
+ <a href="#housekeeping_2" class="md-nav__link">
8619
8943
  <span class="md-ellipsis">
8620
8944
  Housekeeping
8621
8945
  </span>
@@ -8639,7 +8963,7 @@
8639
8963
  <ul class="md-nav__list">
8640
8964
 
8641
8965
  <li class="md-nav__item">
8642
- <a href="#security_1" class="md-nav__link">
8966
+ <a href="#security_3" class="md-nav__link">
8643
8967
  <span class="md-ellipsis">
8644
8968
  Security
8645
8969
  </span>
@@ -8648,7 +8972,7 @@
8648
8972
  </li>
8649
8973
 
8650
8974
  <li class="md-nav__item">
8651
- <a href="#added_2" class="md-nav__link">
8975
+ <a href="#added_3" class="md-nav__link">
8652
8976
  <span class="md-ellipsis">
8653
8977
  Added
8654
8978
  </span>
@@ -8657,7 +8981,7 @@
8657
8981
  </li>
8658
8982
 
8659
8983
  <li class="md-nav__item">
8660
- <a href="#fixed_1" class="md-nav__link">
8984
+ <a href="#fixed_3" class="md-nav__link">
8661
8985
  <span class="md-ellipsis">
8662
8986
  Fixed
8663
8987
  </span>
@@ -8666,7 +8990,7 @@
8666
8990
  </li>
8667
8991
 
8668
8992
  <li class="md-nav__item">
8669
- <a href="#documentation_1" class="md-nav__link">
8993
+ <a href="#documentation_2" class="md-nav__link">
8670
8994
  <span class="md-ellipsis">
8671
8995
  Documentation
8672
8996
  </span>
@@ -8675,7 +8999,7 @@
8675
8999
  </li>
8676
9000
 
8677
9001
  <li class="md-nav__item">
8678
- <a href="#housekeeping_1" class="md-nav__link">
9002
+ <a href="#housekeeping_3" class="md-nav__link">
8679
9003
  <span class="md-ellipsis">
8680
9004
  Housekeeping
8681
9005
  </span>
@@ -8699,7 +9023,7 @@
8699
9023
  <ul class="md-nav__list">
8700
9024
 
8701
9025
  <li class="md-nav__item">
8702
- <a href="#security_2" class="md-nav__link">
9026
+ <a href="#security_4" class="md-nav__link">
8703
9027
  <span class="md-ellipsis">
8704
9028
  Security
8705
9029
  </span>
@@ -8708,7 +9032,7 @@
8708
9032
  </li>
8709
9033
 
8710
9034
  <li class="md-nav__item">
8711
- <a href="#added_3" class="md-nav__link">
9035
+ <a href="#added_4" class="md-nav__link">
8712
9036
  <span class="md-ellipsis">
8713
9037
  Added
8714
9038
  </span>
@@ -8717,7 +9041,7 @@
8717
9041
  </li>
8718
9042
 
8719
9043
  <li class="md-nav__item">
8720
- <a href="#changed_1" class="md-nav__link">
9044
+ <a href="#changed_2" class="md-nav__link">
8721
9045
  <span class="md-ellipsis">
8722
9046
  Changed
8723
9047
  </span>
@@ -8726,7 +9050,7 @@
8726
9050
  </li>
8727
9051
 
8728
9052
  <li class="md-nav__item">
8729
- <a href="#fixed_2" class="md-nav__link">
9053
+ <a href="#fixed_4" class="md-nav__link">
8730
9054
  <span class="md-ellipsis">
8731
9055
  Fixed
8732
9056
  </span>
@@ -8735,7 +9059,7 @@
8735
9059
  </li>
8736
9060
 
8737
9061
  <li class="md-nav__item">
8738
- <a href="#documentation_2" class="md-nav__link">
9062
+ <a href="#documentation_3" class="md-nav__link">
8739
9063
  <span class="md-ellipsis">
8740
9064
  Documentation
8741
9065
  </span>
@@ -8744,7 +9068,7 @@
8744
9068
  </li>
8745
9069
 
8746
9070
  <li class="md-nav__item">
8747
- <a href="#housekeeping_2" class="md-nav__link">
9071
+ <a href="#housekeeping_4" class="md-nav__link">
8748
9072
  <span class="md-ellipsis">
8749
9073
  Housekeeping
8750
9074
  </span>
@@ -8768,7 +9092,7 @@
8768
9092
  <ul class="md-nav__list">
8769
9093
 
8770
9094
  <li class="md-nav__item">
8771
- <a href="#security_3" class="md-nav__link">
9095
+ <a href="#security_5" class="md-nav__link">
8772
9096
  <span class="md-ellipsis">
8773
9097
  Security
8774
9098
  </span>
@@ -8777,7 +9101,7 @@
8777
9101
  </li>
8778
9102
 
8779
9103
  <li class="md-nav__item">
8780
- <a href="#added_4" class="md-nav__link">
9104
+ <a href="#added_5" class="md-nav__link">
8781
9105
  <span class="md-ellipsis">
8782
9106
  Added
8783
9107
  </span>
@@ -8786,7 +9110,7 @@
8786
9110
  </li>
8787
9111
 
8788
9112
  <li class="md-nav__item">
8789
- <a href="#changed_2" class="md-nav__link">
9113
+ <a href="#changed_3" class="md-nav__link">
8790
9114
  <span class="md-ellipsis">
8791
9115
  Changed
8792
9116
  </span>
@@ -8795,7 +9119,7 @@
8795
9119
  </li>
8796
9120
 
8797
9121
  <li class="md-nav__item">
8798
- <a href="#fixed_3" class="md-nav__link">
9122
+ <a href="#fixed_5" class="md-nav__link">
8799
9123
  <span class="md-ellipsis">
8800
9124
  Fixed
8801
9125
  </span>
@@ -8804,7 +9128,7 @@
8804
9128
  </li>
8805
9129
 
8806
9130
  <li class="md-nav__item">
8807
- <a href="#documentation_3" class="md-nav__link">
9131
+ <a href="#documentation_4" class="md-nav__link">
8808
9132
  <span class="md-ellipsis">
8809
9133
  Documentation
8810
9134
  </span>
@@ -8813,7 +9137,7 @@
8813
9137
  </li>
8814
9138
 
8815
9139
  <li class="md-nav__item">
8816
- <a href="#housekeeping_3" class="md-nav__link">
9140
+ <a href="#housekeeping_5" class="md-nav__link">
8817
9141
  <span class="md-ellipsis">
8818
9142
  Housekeeping
8819
9143
  </span>
@@ -8837,7 +9161,7 @@
8837
9161
  <ul class="md-nav__list">
8838
9162
 
8839
9163
  <li class="md-nav__item">
8840
- <a href="#security_4" class="md-nav__link">
9164
+ <a href="#security_6" class="md-nav__link">
8841
9165
  <span class="md-ellipsis">
8842
9166
  Security
8843
9167
  </span>
@@ -8846,7 +9170,7 @@
8846
9170
  </li>
8847
9171
 
8848
9172
  <li class="md-nav__item">
8849
- <a href="#added_5" class="md-nav__link">
9173
+ <a href="#added_6" class="md-nav__link">
8850
9174
  <span class="md-ellipsis">
8851
9175
  Added
8852
9176
  </span>
@@ -8855,7 +9179,7 @@
8855
9179
  </li>
8856
9180
 
8857
9181
  <li class="md-nav__item">
8858
- <a href="#changed_3" class="md-nav__link">
9182
+ <a href="#changed_4" class="md-nav__link">
8859
9183
  <span class="md-ellipsis">
8860
9184
  Changed
8861
9185
  </span>
@@ -8864,7 +9188,7 @@
8864
9188
  </li>
8865
9189
 
8866
9190
  <li class="md-nav__item">
8867
- <a href="#fixed_4" class="md-nav__link">
9191
+ <a href="#fixed_6" class="md-nav__link">
8868
9192
  <span class="md-ellipsis">
8869
9193
  Fixed
8870
9194
  </span>
@@ -8873,7 +9197,7 @@
8873
9197
  </li>
8874
9198
 
8875
9199
  <li class="md-nav__item">
8876
- <a href="#dependencies" class="md-nav__link">
9200
+ <a href="#dependencies_1" class="md-nav__link">
8877
9201
  <span class="md-ellipsis">
8878
9202
  Dependencies
8879
9203
  </span>
@@ -8882,7 +9206,7 @@
8882
9206
  </li>
8883
9207
 
8884
9208
  <li class="md-nav__item">
8885
- <a href="#documentation_4" class="md-nav__link">
9209
+ <a href="#documentation_5" class="md-nav__link">
8886
9210
  <span class="md-ellipsis">
8887
9211
  Documentation
8888
9212
  </span>
@@ -8891,7 +9215,7 @@
8891
9215
  </li>
8892
9216
 
8893
9217
  <li class="md-nav__item">
8894
- <a href="#housekeeping_4" class="md-nav__link">
9218
+ <a href="#housekeeping_6" class="md-nav__link">
8895
9219
  <span class="md-ellipsis">
8896
9220
  Housekeeping
8897
9221
  </span>
@@ -8915,7 +9239,7 @@
8915
9239
  <ul class="md-nav__list">
8916
9240
 
8917
9241
  <li class="md-nav__item">
8918
- <a href="#added_6" class="md-nav__link">
9242
+ <a href="#added_7" class="md-nav__link">
8919
9243
  <span class="md-ellipsis">
8920
9244
  Added
8921
9245
  </span>
@@ -8924,7 +9248,7 @@
8924
9248
  </li>
8925
9249
 
8926
9250
  <li class="md-nav__item">
8927
- <a href="#changed_4" class="md-nav__link">
9251
+ <a href="#changed_5" class="md-nav__link">
8928
9252
  <span class="md-ellipsis">
8929
9253
  Changed
8930
9254
  </span>
@@ -8933,7 +9257,7 @@
8933
9257
  </li>
8934
9258
 
8935
9259
  <li class="md-nav__item">
8936
- <a href="#fixed_5" class="md-nav__link">
9260
+ <a href="#fixed_7" class="md-nav__link">
8937
9261
  <span class="md-ellipsis">
8938
9262
  Fixed
8939
9263
  </span>
@@ -8942,7 +9266,7 @@
8942
9266
  </li>
8943
9267
 
8944
9268
  <li class="md-nav__item">
8945
- <a href="#dependencies_1" class="md-nav__link">
9269
+ <a href="#dependencies_2" class="md-nav__link">
8946
9270
  <span class="md-ellipsis">
8947
9271
  Dependencies
8948
9272
  </span>
@@ -8951,7 +9275,7 @@
8951
9275
  </li>
8952
9276
 
8953
9277
  <li class="md-nav__item">
8954
- <a href="#housekeeping_5" class="md-nav__link">
9278
+ <a href="#housekeeping_7" class="md-nav__link">
8955
9279
  <span class="md-ellipsis">
8956
9280
  Housekeeping
8957
9281
  </span>
@@ -8975,7 +9299,7 @@
8975
9299
  <ul class="md-nav__list">
8976
9300
 
8977
9301
  <li class="md-nav__item">
8978
- <a href="#added_7" class="md-nav__link">
9302
+ <a href="#added_8" class="md-nav__link">
8979
9303
  <span class="md-ellipsis">
8980
9304
  Added
8981
9305
  </span>
@@ -8984,7 +9308,7 @@
8984
9308
  </li>
8985
9309
 
8986
9310
  <li class="md-nav__item">
8987
- <a href="#changed_5" class="md-nav__link">
9311
+ <a href="#changed_6" class="md-nav__link">
8988
9312
  <span class="md-ellipsis">
8989
9313
  Changed
8990
9314
  </span>
@@ -9011,7 +9335,7 @@
9011
9335
  </li>
9012
9336
 
9013
9337
  <li class="md-nav__item">
9014
- <a href="#fixed_6" class="md-nav__link">
9338
+ <a href="#fixed_8" class="md-nav__link">
9015
9339
  <span class="md-ellipsis">
9016
9340
  Fixed
9017
9341
  </span>
@@ -9020,7 +9344,7 @@
9020
9344
  </li>
9021
9345
 
9022
9346
  <li class="md-nav__item">
9023
- <a href="#dependencies_2" class="md-nav__link">
9347
+ <a href="#dependencies_3" class="md-nav__link">
9024
9348
  <span class="md-ellipsis">
9025
9349
  Dependencies
9026
9350
  </span>
@@ -9029,7 +9353,7 @@
9029
9353
  </li>
9030
9354
 
9031
9355
  <li class="md-nav__item">
9032
- <a href="#documentation_5" class="md-nav__link">
9356
+ <a href="#documentation_6" class="md-nav__link">
9033
9357
  <span class="md-ellipsis">
9034
9358
  Documentation
9035
9359
  </span>
@@ -9038,7 +9362,7 @@
9038
9362
  </li>
9039
9363
 
9040
9364
  <li class="md-nav__item">
9041
- <a href="#housekeeping_6" class="md-nav__link">
9365
+ <a href="#housekeeping_8" class="md-nav__link">
9042
9366
  <span class="md-ellipsis">
9043
9367
  Housekeeping
9044
9368
  </span>
@@ -9107,13 +9431,72 @@
9107
9431
  <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>
9108
9432
  <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>
9109
9433
  <!-- towncrier release notes start -->
9110
- <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>
9434
+ <h2 id="v227-2024-07-08">v2.2.7 (2024-07-08)<a class="headerlink" href="#v227-2024-07-08" title="Permanent link">&para;</a></h2>
9111
9435
  <h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">&para;</a></h3>
9112
9436
  <ul>
9437
+ <li><a href="https://github.com/nautobot/nautobot/issues/5891">#5891</a> - Updated <code>certifi</code> to <code>2024.7.4</code> to address <code>CVE-2024-39689</code>. This is not a direct dependency so it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
9438
+ </ul>
9439
+ <h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">&para;</a></h3>
9440
+ <ul>
9441
+ <li><a href="https://github.com/nautobot/nautobot/issues/4237">#4237</a> - Fixed display issue with multiple tags filter on dynamic groups. Multiple Tags are now correctly displayed with an AND.</li>
9442
+ <li><a href="https://github.com/nautobot/nautobot/issues/5093">#5093</a> - Fixed blank page redirect when syncing or running a dry run on a GIT Repo with no workers available; now redirects to the GIT Repo Detail page with an error message.</li>
9443
+ <li><a href="https://github.com/nautobot/nautobot/issues/5804">#5804</a> - Fixed operation of "Mark planned"/"Mark installed" button in Device component table views.</li>
9444
+ <li><a href="https://github.com/nautobot/nautobot/issues/5832">#5832</a> - Fixed lack of API versioning of responses to a POST to <code>/api/ipam/prefixes/&lt;id&gt;/available-prefixes/</code> to allocate child prefixes of a prefix.</li>
9445
+ <li><a href="https://github.com/nautobot/nautobot/issues/5832">#5832</a> - Fixed incorrect OpenAPI schema for <code>/api/ipam/prefixes/&lt;id&gt;/available-prefixes/</code> and <code>/api/ipam/prefixes/&lt;id&gt;/available-ips/</code>.</li>
9446
+ </ul>
9447
+ <h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">&para;</a></h3>
9448
+ <ul>
9449
+ <li><a href="https://github.com/nautobot/nautobot/issues/5518">#5518</a> - Updated <code>drf-spectacular</code> to version <code>0.27.2</code>.</li>
9450
+ <li><a href="https://github.com/nautobot/nautobot/pull/5896">#5896</a> - Pinned dev dependency <code>faker</code> to <code>&gt;=0.7.0,&lt;26.0.0</code> to work around breaking change in v26.0.0 (<a href="https://github.com/joke2k/faker/issues/2070">faker/#2070</a>).</li>
9451
+ </ul>
9452
+ <h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">&para;</a></h3>
9453
+ <ul>
9454
+ <li><a href="https://github.com/nautobot/nautobot/issues/5847">#5847</a> - Updated the term plugin to app within the GitHub templates.</li>
9455
+ <li><a href="https://github.com/nautobot/nautobot/issues/5858">#5858</a> - Enhanced the test runner to include a hash of applied database migrations as part of the factory dump filename, reducing the likelihood of using the wrong cached data for a given branch.</li>
9456
+ </ul>
9457
+ <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>
9458
+ <h3 id="security_1">Security<a class="headerlink" href="#security_1" title="Permanent link">&para;</a></h3>
9459
+ <ul>
9460
+ <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>
9461
+ </ul>
9462
+ <h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">&para;</a></h3>
9463
+ <ul>
9464
+ <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>
9465
+ <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>
9466
+ <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>
9467
+ <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>
9468
+ </ul>
9469
+ <h3 id="changed_1">Changed<a class="headerlink" href="#changed_1" title="Permanent link">&para;</a></h3>
9470
+ <ul>
9471
+ <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>
9472
+ </ul>
9473
+ <h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">&para;</a></h3>
9474
+ <ul>
9475
+ <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>
9476
+ <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>
9477
+ <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>
9478
+ <li><a href="https://github.com/nautobot/nautobot/issues/5809">#5809</a> - Fixed missing support for the GitRepository model in GraphQL.</li>
9479
+ <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>
9480
+ </ul>
9481
+ <h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">&para;</a></h3>
9482
+ <ul>
9483
+ <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>
9484
+ <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>
9485
+ <li><a href="https://github.com/nautobot/nautobot/issues/5754">#5754</a> - Updated <code>mkdocs-material</code> to 9.5.25.</li>
9486
+ </ul>
9487
+ <h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">&para;</a></h3>
9488
+ <ul>
9489
+ <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>
9490
+ <li><a href="https://github.com/nautobot/nautobot/issues/5793">#5793</a> - Refactored <code>generate_test_data</code> implementation for improved debuggability.</li>
9491
+ <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>
9492
+ </ul>
9493
+ <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>
9494
+ <h3 id="security_2">Security<a class="headerlink" href="#security_2" title="Permanent link">&para;</a></h3>
9495
+ <ul>
9113
9496
  <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>
9114
9497
  <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>
9115
9498
  </ul>
9116
- <h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">&para;</a></h3>
9499
+ <h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">&para;</a></h3>
9117
9500
  <ul>
9118
9501
  <li><a href="https://github.com/nautobot/nautobot/issues/5588">#5588</a> - Added "Add VRFs" and "Remove VRFs" fields to <code>PrefixBulkEditForm</code>.</li>
9119
9502
  <li><a href="https://github.com/nautobot/nautobot/issues/5588">#5588</a> - Added "Add Prefixes" and "Remove Prefixes" fields to <code>VRFBulkEditForm</code>.</li>
@@ -9125,7 +9508,7 @@
9125
9508
  <ul>
9126
9509
  <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>
9127
9510
  </ul>
9128
- <h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">&para;</a></h3>
9511
+ <h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">&para;</a></h3>
9129
9512
  <ul>
9130
9513
  <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>
9131
9514
  <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>
@@ -9138,51 +9521,51 @@
9138
9521
  <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>
9139
9522
  <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>
9140
9523
  </ul>
9141
- <h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">&para;</a></h3>
9524
+ <h3 id="documentation_1">Documentation<a class="headerlink" href="#documentation_1" title="Permanent link">&para;</a></h3>
9142
9525
  <ul>
9143
9526
  <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>
9144
9527
  <li><a href="https://github.com/nautobot/nautobot/issues/5699">#5699</a> - Fixed a number of broken links within the documentation.</li>
9145
9528
  </ul>
9146
- <h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">&para;</a></h3>
9529
+ <h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">&para;</a></h3>
9147
9530
  <ul>
9148
9531
  <li><a href="https://github.com/nautobot/nautobot/issues/5699">#5699</a> - Updated <code>pylint</code> to <code>~3.1.1</code>.</li>
9149
9532
  <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>
9150
9533
  </ul>
9151
9534
  <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>
9152
- <h3 id="security_1">Security<a class="headerlink" href="#security_1" title="Permanent link">&para;</a></h3>
9535
+ <h3 id="security_3">Security<a class="headerlink" href="#security_3" title="Permanent link">&para;</a></h3>
9153
9536
  <ul>
9154
9537
  <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>
9155
9538
  <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>
9156
9539
  </ul>
9157
- <h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">&para;</a></h3>
9540
+ <h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">&para;</a></h3>
9158
9541
  <ul>
9159
9542
  <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>
9160
9543
  <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>
9161
9544
  </ul>
9162
- <h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">&para;</a></h3>
9545
+ <h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">&para;</a></h3>
9163
9546
  <ul>
9164
9547
  <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>
9165
9548
  <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>
9166
9549
  <li><a href="https://github.com/nautobot/nautobot/issues/5684">#5684</a> - Fixed standard CSV export when using export templates.</li>
9167
9550
  <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>
9168
9551
  </ul>
9169
- <h3 id="documentation_1">Documentation<a class="headerlink" href="#documentation_1" title="Permanent link">&para;</a></h3>
9552
+ <h3 id="documentation_2">Documentation<a class="headerlink" href="#documentation_2" title="Permanent link">&para;</a></h3>
9170
9553
  <ul>
9171
9554
  <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>
9172
9555
  </ul>
9173
- <h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">&para;</a></h3>
9556
+ <h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">&para;</a></h3>
9174
9557
  <ul>
9175
9558
  <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>
9176
9559
  <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>
9177
9560
  <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>
9178
9561
  </ul>
9179
9562
  <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>
9180
- <h3 id="security_2">Security<a class="headerlink" href="#security_2" title="Permanent link">&para;</a></h3>
9563
+ <h3 id="security_4">Security<a class="headerlink" href="#security_4" title="Permanent link">&para;</a></h3>
9181
9564
  <ul>
9182
9565
  <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>
9183
9566
  <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>
9184
9567
  </ul>
9185
- <h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">&para;</a></h3>
9568
+ <h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">&para;</a></h3>
9186
9569
  <ul>
9187
9570
  <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>
9188
9571
  <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>
@@ -9190,11 +9573,11 @@
9190
9573
  <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>
9191
9574
  <li><a href="https://github.com/nautobot/nautobot/issues/5586">#5586</a> - Added <code>nautobot.apps.jobs.get_jobs()</code> API.</li>
9192
9575
  </ul>
9193
- <h3 id="changed_1">Changed<a class="headerlink" href="#changed_1" title="Permanent link">&para;</a></h3>
9576
+ <h3 id="changed_2">Changed<a class="headerlink" href="#changed_2" title="Permanent link">&para;</a></h3>
9194
9577
  <ul>
9195
9578
  <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>
9196
9579
  </ul>
9197
- <h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">&para;</a></h3>
9580
+ <h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">&para;</a></h3>
9198
9581
  <ul>
9199
9582
  <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>
9200
9583
  <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>
@@ -9207,67 +9590,67 @@
9207
9590
  <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>
9208
9591
  <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>
9209
9592
  </ul>
9210
- <h3 id="documentation_2">Documentation<a class="headerlink" href="#documentation_2" title="Permanent link">&para;</a></h3>
9593
+ <h3 id="documentation_3">Documentation<a class="headerlink" href="#documentation_3" title="Permanent link">&para;</a></h3>
9211
9594
  <ul>
9212
9595
  <li><a href="https://github.com/nautobot/nautobot/issues/5094">#5094</a> - Added "Reserved Attribute Names" section to the Jobs developer documentation.</li>
9213
9596
  <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>
9214
9597
  <li><a href="https://github.com/nautobot/nautobot/issues/5626">#5626</a> - Added extras features docs to core developer new model checklist.</li>
9215
9598
  <li><a href="https://github.com/nautobot/nautobot/issues/5635">#5635</a> - Added borders to tabbed sections of mkdocs.</li>
9216
9599
  </ul>
9217
- <h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">&para;</a></h3>
9600
+ <h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">&para;</a></h3>
9218
9601
  <ul>
9219
9602
  <li><a href="https://github.com/nautobot/nautobot/issues/4498">#4498</a> - Removed redundant <code>nautobot.extras.plugins.register_jobs</code> function.</li>
9220
9603
  <li><a href="https://github.com/nautobot/nautobot/issues/5586">#5586</a> - Fixed an intermittent ImportError when running tests with certain options.</li>
9221
9604
  <li><a href="https://github.com/nautobot/nautobot/issues/5605">#5605</a> - Added prerelease and release workflow to deploy sandbox environments automatically.</li>
9222
9605
  </ul>
9223
9606
  <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>
9224
- <h3 id="security_3">Security<a class="headerlink" href="#security_3" title="Permanent link">&para;</a></h3>
9607
+ <h3 id="security_5">Security<a class="headerlink" href="#security_5" title="Permanent link">&para;</a></h3>
9225
9608
  <ul>
9226
9609
  <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>
9227
9610
  </ul>
9228
- <h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">&para;</a></h3>
9611
+ <h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">&para;</a></h3>
9229
9612
  <ul>
9230
9613
  <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>
9231
9614
  <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>
9232
9615
  </ul>
9233
- <h3 id="changed_2">Changed<a class="headerlink" href="#changed_2" title="Permanent link">&para;</a></h3>
9616
+ <h3 id="changed_3">Changed<a class="headerlink" href="#changed_3" title="Permanent link">&para;</a></h3>
9234
9617
  <ul>
9235
9618
  <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>
9236
9619
  <li><a href="https://github.com/nautobot/nautobot/issues/5568">#5568</a> - Added hyperlink to the total device count number under device family.</li>
9237
9620
  <li><a href="https://github.com/nautobot/nautobot/issues/5589">#5589</a> - Fixed an invalid Javascript operator in the LLDP neighbor view.</li>
9238
9621
  </ul>
9239
- <h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">&para;</a></h3>
9622
+ <h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">&para;</a></h3>
9240
9623
  <ul>
9241
9624
  <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>
9242
9625
  <li><a href="https://github.com/nautobot/nautobot/issues/5592">#5592</a> - Fixed plugins not loading when using Gunicorn.</li>
9243
9626
  </ul>
9244
- <h3 id="documentation_3">Documentation<a class="headerlink" href="#documentation_3" title="Permanent link">&para;</a></h3>
9627
+ <h3 id="documentation_4">Documentation<a class="headerlink" href="#documentation_4" title="Permanent link">&para;</a></h3>
9245
9628
  <ul>
9246
9629
  <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>
9247
9630
  </ul>
9248
- <h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">&para;</a></h3>
9631
+ <h3 id="housekeeping_5">Housekeeping<a class="headerlink" href="#housekeeping_5" title="Permanent link">&para;</a></h3>
9249
9632
  <ul>
9250
9633
  <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>
9251
9634
  </ul>
9252
9635
  <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>
9253
- <h3 id="security_4">Security<a class="headerlink" href="#security_4" title="Permanent link">&para;</a></h3>
9636
+ <h3 id="security_6">Security<a class="headerlink" href="#security_6" title="Permanent link">&para;</a></h3>
9254
9637
  <ul>
9255
9638
  <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>
9256
9639
  <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>
9257
9640
  <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>
9258
9641
  </ul>
9259
- <h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">&para;</a></h3>
9642
+ <h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">&para;</a></h3>
9260
9643
  <ul>
9261
9644
  <li><a href="https://github.com/nautobot/nautobot/issues/1631">#1631</a> - Added change logging for custom field background tasks.</li>
9262
9645
  <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>
9263
9646
  <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>
9264
9647
  <li><a href="https://github.com/nautobot/nautobot/issues/5540">#5540</a> - Added total devices count to device family detail page.</li>
9265
9648
  </ul>
9266
- <h3 id="changed_3">Changed<a class="headerlink" href="#changed_3" title="Permanent link">&para;</a></h3>
9649
+ <h3 id="changed_4">Changed<a class="headerlink" href="#changed_4" title="Permanent link">&para;</a></h3>
9267
9650
  <ul>
9268
9651
  <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>
9269
9652
  </ul>
9270
- <h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">&para;</a></h3>
9653
+ <h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">&para;</a></h3>
9271
9654
  <ul>
9272
9655
  <li><a href="https://github.com/nautobot/nautobot/issues/5469">#5469</a> - Fixed contacts and teams not being included in the global search.</li>
9273
9656
  <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>
@@ -9277,20 +9660,20 @@
9277
9660
  <li><a href="https://github.com/nautobot/nautobot/issues/5527">#5527</a> - Fixed incorrect "members" links in Virtual Chassis list view.</li>
9278
9661
  <li><a href="https://github.com/nautobot/nautobot/issues/5531">#5531</a> - Re-added <code>nautobot.setup()</code> function mistakenly removed in 2.2.0.</li>
9279
9662
  </ul>
9280
- <h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">&para;</a></h3>
9663
+ <h3 id="dependencies_1">Dependencies<a class="headerlink" href="#dependencies_1" title="Permanent link">&para;</a></h3>
9281
9664
  <ul>
9282
9665
  <li><a href="https://github.com/nautobot/nautobot/issues/5495">#5495</a> - Changed jsonschema version constraint from <code>&gt;=4.7.0,&lt;4.19.0</code> to <code>^4.7.0</code>.</li>
9283
9666
  <li><a href="https://github.com/nautobot/nautobot/issues/5517">#5517</a> - Updated <code>djangorestframework</code> to <code>~3.15.1</code>.</li>
9284
9667
  <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>
9285
9668
  <li><a href="https://github.com/nautobot/nautobot/issues/5543">#5543</a> - Updated <code>jquery</code> to version <code>3.7.1</code>.</li>
9286
9669
  </ul>
9287
- <h3 id="documentation_4">Documentation<a class="headerlink" href="#documentation_4" title="Permanent link">&para;</a></h3>
9670
+ <h3 id="documentation_5">Documentation<a class="headerlink" href="#documentation_5" title="Permanent link">&para;</a></h3>
9288
9671
  <ul>
9289
9672
  <li><a href="https://github.com/nautobot/nautobot/issues/5189">#5189</a> - Added "Model Development Checklist" to the core developer documentation.</li>
9290
9673
  <li><a href="https://github.com/nautobot/nautobot/issues/5189">#5189</a> - Merged "Extending Models" documentation into the "Model Development Checklist" documentation.</li>
9291
9674
  <li><a href="https://github.com/nautobot/nautobot/issues/5526">#5526</a> - Fixed doc reference to job cprofile file location.</li>
9292
9675
  </ul>
9293
- <h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">&para;</a></h3>
9676
+ <h3 id="housekeeping_6">Housekeeping<a class="headerlink" href="#housekeeping_6" title="Permanent link">&para;</a></h3>
9294
9677
  <ul>
9295
9678
  <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>
9296
9679
  <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>
@@ -9300,12 +9683,12 @@
9300
9683
  <p class="admonition-title">Warning</p>
9301
9684
  <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>
9302
9685
  </div>
9303
- <h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">&para;</a></h3>
9686
+ <h3 id="added_7">Added<a class="headerlink" href="#added_7" title="Permanent link">&para;</a></h3>
9304
9687
  <ul>
9305
9688
  <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>
9306
9689
  <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>
9307
9690
  </ul>
9308
- <h3 id="changed_4">Changed<a class="headerlink" href="#changed_4" title="Permanent link">&para;</a></h3>
9691
+ <h3 id="changed_5">Changed<a class="headerlink" href="#changed_5" title="Permanent link">&para;</a></h3>
9309
9692
  <ul>
9310
9693
  <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>
9311
9694
  <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>
@@ -9318,24 +9701,24 @@
9318
9701
  <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>
9319
9702
  <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>
9320
9703
  </ul>
9321
- <h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">&para;</a></h3>
9704
+ <h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">&para;</a></h3>
9322
9705
  <ul>
9323
9706
  <li><a href="https://github.com/nautobot/nautobot/issues/5415">#5415</a> - Fixed Team(s) field not pre-populating when editing a Contact.</li>
9324
9707
  <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>
9325
9708
  <li><a href="https://github.com/nautobot/nautobot/issues/5431">#5431</a> - Fixed Providers API response containing duplicate entries when filtering on more than one <code>location</code> value.</li>
9326
9709
  <li><a href="https://github.com/nautobot/nautobot/issues/5440">#5440</a> - Fixed <code>Cannot resolve keyword 'task_id' into field</code> error when calling <code>nautobot-server celery result &lt;task_id&gt;</code>.</li>
9327
9710
  </ul>
9328
- <h3 id="dependencies_1">Dependencies<a class="headerlink" href="#dependencies_1" title="Permanent link">&para;</a></h3>
9711
+ <h3 id="dependencies_2">Dependencies<a class="headerlink" href="#dependencies_2" title="Permanent link">&para;</a></h3>
9329
9712
  <ul>
9330
9713
  <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>
9331
9714
  </ul>
9332
- <h3 id="housekeeping_5">Housekeeping<a class="headerlink" href="#housekeeping_5" title="Permanent link">&para;</a></h3>
9715
+ <h3 id="housekeeping_7">Housekeeping<a class="headerlink" href="#housekeeping_7" title="Permanent link">&para;</a></h3>
9333
9716
  <ul>
9334
9717
  <li><a href="https://github.com/nautobot/nautobot/issues/5435">#5435</a> - Added <code>--pattern</code> argument to <code>invoke unittest</code>.</li>
9335
9718
  <li><a href="https://github.com/nautobot/nautobot/issues/5435">#5435</a> - Added <code>--parallel-workers</code> argument to <code>invoke unittest</code>.</li>
9336
9719
  </ul>
9337
9720
  <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>
9338
- <h3 id="added_7">Added<a class="headerlink" href="#added_7" title="Permanent link">&para;</a></h3>
9721
+ <h3 id="added_8">Added<a class="headerlink" href="#added_8" title="Permanent link">&para;</a></h3>
9339
9722
  <ul>
9340
9723
  <li><a href="https://github.com/nautobot/nautobot/issues/1">#1</a> - Added new models for software versions and software image files.</li>
9341
9724
  <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>
@@ -9374,7 +9757,7 @@
9374
9757
  <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>
9375
9758
  <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>
9376
9759
  </ul>
9377
- <h3 id="changed_5">Changed<a class="headerlink" href="#changed_5" title="Permanent link">&para;</a></h3>
9760
+ <h3 id="changed_6">Changed<a class="headerlink" href="#changed_6" title="Permanent link">&para;</a></h3>
9378
9761
  <ul>
9379
9762
  <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>
9380
9763
  <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>
@@ -9404,7 +9787,7 @@
9404
9787
  <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>
9405
9788
  <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>
9406
9789
  </ul>
9407
- <h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">&para;</a></h3>
9790
+ <h3 id="fixed_8">Fixed<a class="headerlink" href="#fixed_8" title="Permanent link">&para;</a></h3>
9408
9791
  <ul>
9409
9792
  <li><a href="https://github.com/nautobot/nautobot/issues/4334">#4334</a> - Fixed ordering of VLANs in the UI list view.</li>
9410
9793
  <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>
@@ -9417,18 +9800,18 @@
9417
9800
  <li><a href="https://github.com/nautobot/nautobot/issues/5298">#5298</a> - Fixed a <code>ValidationError</code> that was being thrown when a user logged out.</li>
9418
9801
  <li><a href="https://github.com/nautobot/nautobot/issues/5298">#5298</a> - Fixed a case where viewing a completed JobResult that was missing a <code>date_done</code> value would cause the JobResult view to repeatedly refresh.</li>
9419
9802
  </ul>
9420
- <h3 id="dependencies_2">Dependencies<a class="headerlink" href="#dependencies_2" title="Permanent link">&para;</a></h3>
9803
+ <h3 id="dependencies_3">Dependencies<a class="headerlink" href="#dependencies_3" title="Permanent link">&para;</a></h3>
9421
9804
  <ul>
9422
9805
  <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>
9423
9806
  </ul>
9424
- <h3 id="documentation_5">Documentation<a class="headerlink" href="#documentation_5" title="Permanent link">&para;</a></h3>
9807
+ <h3 id="documentation_6">Documentation<a class="headerlink" href="#documentation_6" title="Permanent link">&para;</a></h3>
9425
9808
  <ul>
9426
9809
  <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>
9427
9810
  <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>
9428
9811
  <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>
9429
9812
  <li><a href="https://github.com/nautobot/nautobot/issues/5341">#5341</a> - Replaced references to "plugins" in the documentation with "Apps".</li>
9430
9813
  </ul>
9431
- <h3 id="housekeeping_6">Housekeeping<a class="headerlink" href="#housekeeping_6" title="Permanent link">&para;</a></h3>
9814
+ <h3 id="housekeeping_8">Housekeeping<a class="headerlink" href="#housekeeping_8" title="Permanent link">&para;</a></h3>
9432
9815
  <ul>
9433
9816
  <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>
9434
9817
  <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>
@@ -9597,10 +9980,12 @@
9597
9980
  <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>
9598
9981
 
9599
9982
 
9600
- <script src="../assets/javascripts/bundle.ebd0bdb7.min.js"></script>
9983
+ <script src="../assets/javascripts/bundle.fe8b6f2b.min.js"></script>
9601
9984
 
9602
9985
  <script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
9603
9986
 
9604
9987
 
9605
- </body>
9988
+ <script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
9989
+ document$.subscribe(() => { lightbox.reload() });
9990
+ </script></body>
9606
9991
  </html>