nautobot 2.3.11__py3-none-any.whl → 2.3.13__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 (516) hide show
  1. nautobot/core/api/serializers.py +1 -0
  2. nautobot/core/celery/log.py +4 -4
  3. nautobot/core/models/tree_queries.py +5 -2
  4. nautobot/core/settings.py +26 -0
  5. nautobot/core/settings.yaml +31 -0
  6. nautobot/core/tables.py +60 -10
  7. nautobot/core/templates/generic/object_notes.html +1 -1
  8. nautobot/core/templates/generic/object_retrieve.html +1 -1
  9. nautobot/core/templatetags/helpers.py +7 -1
  10. nautobot/core/testing/api.py +5 -1
  11. nautobot/core/testing/views.py +15 -4
  12. nautobot/core/tests/test_api.py +20 -0
  13. nautobot/core/tests/test_csv.py +25 -3
  14. nautobot/core/tests/test_utils.py +8 -0
  15. nautobot/core/utils/lookup.py +11 -8
  16. nautobot/dcim/api/views.py +3 -0
  17. nautobot/dcim/choices.py +6 -0
  18. nautobot/dcim/filters/__init__.py +26 -1
  19. nautobot/dcim/forms.py +4 -0
  20. nautobot/dcim/tables/devices.py +2 -6
  21. nautobot/dcim/templates/dcim/controller_retrieve.html +1 -1
  22. nautobot/dcim/templates/dcim/device/base.html +1 -1
  23. nautobot/dcim/tests/test_filters.py +33 -0
  24. nautobot/dcim/tests/test_views.py +6 -0
  25. nautobot/extras/api/serializers.py +1 -0
  26. nautobot/extras/api/views.py +2 -0
  27. nautobot/extras/forms/forms.py +2 -0
  28. nautobot/extras/group_sync.py +42 -0
  29. nautobot/extras/models/metadata.py +1 -0
  30. nautobot/extras/models/models.py +1 -1
  31. nautobot/extras/plugins/__init__.py +15 -3
  32. nautobot/extras/tables.py +1 -0
  33. nautobot/extras/templates/extras/inc/job_table.html +1 -1
  34. nautobot/extras/tests/test_views.py +2 -2
  35. nautobot/extras/views.py +0 -2
  36. nautobot/ipam/lookups.py +101 -62
  37. nautobot/ipam/tables.py +22 -15
  38. nautobot/ipam/templates/ipam/ipaddresstointerface_retrieve.html +1 -1
  39. nautobot/ipam/tests/test_querysets.py +49 -1
  40. nautobot/ipam/utils/__init__.py +24 -0
  41. nautobot/ipam/views.py +61 -68
  42. nautobot/project-static/docs/404.html +10 -10
  43. nautobot/project-static/docs/additional-features/caching.html +1 -2
  44. nautobot/project-static/docs/additional-features/change-logging.html +1 -2
  45. nautobot/project-static/docs/additional-features/config-contexts.html +1 -2
  46. nautobot/project-static/docs/additional-features/healthcheck.html +1 -2
  47. nautobot/project-static/docs/additional-features/jobs.html +1 -2
  48. nautobot/project-static/docs/additional-features/prometheus-metrics.html +1 -2
  49. nautobot/project-static/docs/administration/celery-queues.html +1 -2
  50. nautobot/project-static/docs/administration/nautobot-server.html +1 -2
  51. nautobot/project-static/docs/administration/nautobot-shell.html +1 -2
  52. nautobot/project-static/docs/administration/permissions.html +1 -2
  53. nautobot/project-static/docs/administration/replicating-nautobot.html +1 -2
  54. nautobot/project-static/docs/apps/index.html +10 -10
  55. nautobot/project-static/docs/apps/migrating-jobs-from-nautobot-v1.html +1 -2
  56. nautobot/project-static/docs/apps/nautobot-apps.html +10 -10
  57. nautobot/project-static/docs/assets/stylesheets/main.6f8fc17f.min.css +1 -0
  58. nautobot/project-static/docs/assets/stylesheets/main.6f8fc17f.min.css.map +1 -0
  59. nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +10 -10
  60. nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +10 -10
  61. nautobot/project-static/docs/code-reference/nautobot/apps/api.html +10 -10
  62. nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +10 -10
  63. nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +10 -10
  64. nautobot/project-static/docs/code-reference/nautobot/apps/config.html +10 -10
  65. nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +10 -10
  66. nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +10 -10
  67. nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +10 -10
  68. nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +10 -10
  69. nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +10 -10
  70. nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +10 -10
  71. nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +10 -10
  72. nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +10 -10
  73. nautobot/project-static/docs/code-reference/nautobot/apps/models.html +10 -10
  74. nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +10 -10
  75. nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +10 -10
  76. nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +206 -14
  77. nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +10 -10
  78. nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +10 -10
  79. nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +10 -10
  80. nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +25 -11
  81. nautobot/project-static/docs/code-reference/nautobot/apps/views.html +10 -10
  82. nautobot/project-static/docs/configuration/authentication/ldap.html +1 -2
  83. nautobot/project-static/docs/configuration/authentication/remote.html +1 -2
  84. nautobot/project-static/docs/configuration/authentication/sso.html +1 -2
  85. nautobot/project-static/docs/configuration/index.html +1 -2
  86. nautobot/project-static/docs/configuration/optional-settings.html +1 -2
  87. nautobot/project-static/docs/configuration/required-settings.html +1 -2
  88. nautobot/project-static/docs/core-functionality/circuits.html +1 -2
  89. nautobot/project-static/docs/core-functionality/device-types.html +1 -2
  90. nautobot/project-static/docs/core-functionality/devices.html +1 -2
  91. nautobot/project-static/docs/core-functionality/ipam.html +1 -2
  92. nautobot/project-static/docs/core-functionality/power.html +1 -2
  93. nautobot/project-static/docs/core-functionality/secrets.html +1 -2
  94. nautobot/project-static/docs/core-functionality/services.html +1 -2
  95. nautobot/project-static/docs/core-functionality/sites-and-racks.html +1 -2
  96. nautobot/project-static/docs/core-functionality/tenancy.html +1 -2
  97. nautobot/project-static/docs/core-functionality/virtualization.html +1 -2
  98. nautobot/project-static/docs/core-functionality/vlans.html +1 -2
  99. nautobot/project-static/docs/development/application-registry.html +1 -2
  100. nautobot/project-static/docs/development/apps/api/configuration-view.html +10 -10
  101. nautobot/project-static/docs/development/apps/api/database-backend-config.html +10 -10
  102. nautobot/project-static/docs/development/apps/api/models/django-admin.html +10 -10
  103. nautobot/project-static/docs/development/apps/api/models/global-search.html +10 -10
  104. nautobot/project-static/docs/development/apps/api/models/graphql.html +10 -10
  105. nautobot/project-static/docs/development/apps/api/models/index.html +10 -10
  106. nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +10 -10
  107. nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +10 -10
  108. nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +10 -10
  109. nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +10 -10
  110. nautobot/project-static/docs/development/apps/api/platform-features/index.html +10 -10
  111. nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +10 -10
  112. nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +10 -10
  113. nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +10 -10
  114. nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +10 -10
  115. nautobot/project-static/docs/development/apps/api/platform-features/table-extensions.html +32 -13
  116. nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +10 -10
  117. nautobot/project-static/docs/development/apps/api/prometheus.html +10 -10
  118. nautobot/project-static/docs/development/apps/api/setup.html +10 -10
  119. nautobot/project-static/docs/development/apps/api/testing.html +10 -10
  120. nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +10 -10
  121. nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +10 -10
  122. nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +10 -10
  123. nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +10 -10
  124. nautobot/project-static/docs/development/apps/api/ui-extensions/object-detail-views.html +1 -2
  125. nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +10 -10
  126. nautobot/project-static/docs/development/apps/api/ui-extensions/tabs.html +1 -2
  127. nautobot/project-static/docs/development/apps/api/views/base-template.html +10 -10
  128. nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +10 -10
  129. nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +10 -10
  130. nautobot/project-static/docs/development/apps/api/views/help-documentation.html +10 -10
  131. nautobot/project-static/docs/development/apps/api/views/index.html +10 -10
  132. nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +10 -10
  133. nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +10 -10
  134. nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +10 -10
  135. nautobot/project-static/docs/development/apps/api/views/notes.html +10 -10
  136. nautobot/project-static/docs/development/apps/api/views/rest-api.html +10 -10
  137. nautobot/project-static/docs/development/apps/api/views/urls.html +10 -10
  138. nautobot/project-static/docs/development/apps/api/views/view-overrides.html +1 -2
  139. nautobot/project-static/docs/development/apps/index.html +10 -10
  140. nautobot/project-static/docs/development/apps/migration/code-updates.html +10 -10
  141. nautobot/project-static/docs/development/apps/migration/dependency-updates.html +10 -10
  142. nautobot/project-static/docs/development/apps/migration/from-v1.html +10 -10
  143. nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +10 -10
  144. nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +10 -10
  145. nautobot/project-static/docs/development/apps/migration/model-updates/global.html +10 -10
  146. nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +10 -10
  147. nautobot/project-static/docs/development/apps/porting-from-netbox.html +10 -10
  148. nautobot/project-static/docs/development/best-practices.html +1 -2
  149. nautobot/project-static/docs/development/core/application-registry.html +10 -10
  150. nautobot/project-static/docs/development/core/best-practices.html +10 -10
  151. nautobot/project-static/docs/development/core/bootstrap-ui.html +10 -10
  152. nautobot/project-static/docs/development/core/caching.html +10 -10
  153. nautobot/project-static/docs/development/core/controllers.html +10 -10
  154. nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +10 -10
  155. nautobot/project-static/docs/development/core/extending-models.html +1 -2
  156. nautobot/project-static/docs/development/core/generic-views.html +10 -10
  157. nautobot/project-static/docs/development/core/getting-started.html +10 -10
  158. nautobot/project-static/docs/development/core/homepage.html +10 -10
  159. nautobot/project-static/docs/development/core/index.html +10 -10
  160. nautobot/project-static/docs/development/core/model-checklist.html +10 -10
  161. nautobot/project-static/docs/development/core/model-features.html +10 -10
  162. nautobot/project-static/docs/development/core/natural-keys.html +10 -10
  163. nautobot/project-static/docs/development/core/navigation-menu.html +10 -10
  164. nautobot/project-static/docs/development/core/react-ui.html +1 -2
  165. nautobot/project-static/docs/development/core/release-checklist.html +10 -10
  166. nautobot/project-static/docs/development/core/role-internals.html +10 -10
  167. nautobot/project-static/docs/development/core/settings.html +10 -10
  168. nautobot/project-static/docs/development/core/style-guide.html +10 -10
  169. nautobot/project-static/docs/development/core/templates.html +10 -10
  170. nautobot/project-static/docs/development/core/testing.html +12 -12
  171. nautobot/project-static/docs/development/core/user-preferences.html +10 -10
  172. nautobot/project-static/docs/development/docker-compose-advanced-use-cases.html +1 -2
  173. nautobot/project-static/docs/development/extending-models.html +1 -2
  174. nautobot/project-static/docs/development/generic-views.html +1 -2
  175. nautobot/project-static/docs/development/getting-started.html +1 -2
  176. nautobot/project-static/docs/development/homepage.html +1 -2
  177. nautobot/project-static/docs/development/index.html +10 -10
  178. nautobot/project-static/docs/development/jobs/index.html +10 -10
  179. nautobot/project-static/docs/development/jobs/migration/from-v1.html +10 -10
  180. nautobot/project-static/docs/development/model-features.html +1 -2
  181. nautobot/project-static/docs/development/natural-keys.html +1 -2
  182. nautobot/project-static/docs/development/navigation-menu.html +1 -2
  183. nautobot/project-static/docs/development/react-ui.html +1 -2
  184. nautobot/project-static/docs/development/release-checklist.html +1 -2
  185. nautobot/project-static/docs/development/role-internals.html +1 -2
  186. nautobot/project-static/docs/development/style-guide.html +1 -2
  187. nautobot/project-static/docs/development/templates.html +1 -2
  188. nautobot/project-static/docs/development/testing.html +1 -2
  189. nautobot/project-static/docs/development/user-preferences.html +1 -2
  190. nautobot/project-static/docs/docker/index.html +1 -2
  191. nautobot/project-static/docs/index.html +10 -10
  192. nautobot/project-static/docs/installation/centos.html +1 -2
  193. nautobot/project-static/docs/installation/external-authentication.html +1 -2
  194. nautobot/project-static/docs/installation/http-server.html +1 -2
  195. nautobot/project-static/docs/installation/index.html +1 -2
  196. nautobot/project-static/docs/installation/migrating-from-netbox.html +1 -2
  197. nautobot/project-static/docs/installation/migrating-from-postgresql.html +1 -2
  198. nautobot/project-static/docs/installation/nautobot.html +1 -2
  199. nautobot/project-static/docs/installation/region-and-site-data-migration-guide.html +1 -2
  200. nautobot/project-static/docs/installation/selinux-troubleshooting.html +1 -2
  201. nautobot/project-static/docs/installation/services.html +1 -2
  202. nautobot/project-static/docs/installation/ubuntu.html +1 -2
  203. nautobot/project-static/docs/installation/upgrading-from-nautobot-v1.html +1 -2
  204. nautobot/project-static/docs/installation/upgrading.html +1 -2
  205. nautobot/project-static/docs/models/circuits/circuit.html +1 -2
  206. nautobot/project-static/docs/models/circuits/circuittermination.html +1 -2
  207. nautobot/project-static/docs/models/circuits/circuittype.html +1 -2
  208. nautobot/project-static/docs/models/circuits/provider.html +1 -2
  209. nautobot/project-static/docs/models/circuits/providernetwork.html +1 -2
  210. nautobot/project-static/docs/models/cloud/cloudaccount.html +1 -2
  211. nautobot/project-static/docs/models/cloud/cloudnetwork.html +1 -2
  212. nautobot/project-static/docs/models/cloud/cloudnetworkprefixassignment.html +1 -2
  213. nautobot/project-static/docs/models/cloud/cloudresourcetype.html +1 -2
  214. nautobot/project-static/docs/models/cloud/cloudservice.html +1 -2
  215. nautobot/project-static/docs/models/cloud/cloudservicenetworkassignment.html +1 -2
  216. nautobot/project-static/docs/models/dcim/cable.html +1 -2
  217. nautobot/project-static/docs/models/dcim/consoleport.html +1 -2
  218. nautobot/project-static/docs/models/dcim/consoleporttemplate.html +1 -2
  219. nautobot/project-static/docs/models/dcim/consoleserverport.html +1 -2
  220. nautobot/project-static/docs/models/dcim/consoleserverporttemplate.html +1 -2
  221. nautobot/project-static/docs/models/dcim/controller.html +1 -2
  222. nautobot/project-static/docs/models/dcim/controllermanageddevicegroup.html +1 -2
  223. nautobot/project-static/docs/models/dcim/device.html +1 -2
  224. nautobot/project-static/docs/models/dcim/devicebay.html +1 -2
  225. nautobot/project-static/docs/models/dcim/devicebaytemplate.html +1 -2
  226. nautobot/project-static/docs/models/dcim/devicefamily.html +1 -2
  227. nautobot/project-static/docs/models/dcim/deviceredundancygroup.html +1 -2
  228. nautobot/project-static/docs/models/dcim/devicetype.html +1 -2
  229. nautobot/project-static/docs/models/dcim/frontport.html +1 -2
  230. nautobot/project-static/docs/models/dcim/frontporttemplate.html +1 -2
  231. nautobot/project-static/docs/models/dcim/interface.html +1 -2
  232. nautobot/project-static/docs/models/dcim/interfacetemplate.html +1 -2
  233. nautobot/project-static/docs/models/dcim/inventoryitem.html +1 -2
  234. nautobot/project-static/docs/models/dcim/location.html +1 -2
  235. nautobot/project-static/docs/models/dcim/locationtype.html +1 -2
  236. nautobot/project-static/docs/models/dcim/manufacturer.html +1 -2
  237. nautobot/project-static/docs/models/dcim/module.html +1 -2
  238. nautobot/project-static/docs/models/dcim/modulebay.html +1 -2
  239. nautobot/project-static/docs/models/dcim/modulebaytemplate.html +1 -2
  240. nautobot/project-static/docs/models/dcim/moduletype.html +1 -2
  241. nautobot/project-static/docs/models/dcim/platform.html +1 -2
  242. nautobot/project-static/docs/models/dcim/powerfeed.html +1 -2
  243. nautobot/project-static/docs/models/dcim/poweroutlet.html +1 -2
  244. nautobot/project-static/docs/models/dcim/poweroutlettemplate.html +1 -2
  245. nautobot/project-static/docs/models/dcim/powerpanel.html +1 -2
  246. nautobot/project-static/docs/models/dcim/powerport.html +1 -2
  247. nautobot/project-static/docs/models/dcim/powerporttemplate.html +1 -2
  248. nautobot/project-static/docs/models/dcim/rack.html +1 -2
  249. nautobot/project-static/docs/models/dcim/rackgroup.html +1 -2
  250. nautobot/project-static/docs/models/dcim/rackreservation.html +1 -2
  251. nautobot/project-static/docs/models/dcim/rearport.html +1 -2
  252. nautobot/project-static/docs/models/dcim/rearporttemplate.html +1 -2
  253. nautobot/project-static/docs/models/dcim/softwareimagefile.html +1 -2
  254. nautobot/project-static/docs/models/dcim/softwareversion.html +1 -2
  255. nautobot/project-static/docs/models/dcim/virtualchassis.html +1 -2
  256. nautobot/project-static/docs/models/extras/computedfield.html +1 -2
  257. nautobot/project-static/docs/models/extras/configcontext.html +1 -2
  258. nautobot/project-static/docs/models/extras/configcontextschema.html +1 -2
  259. nautobot/project-static/docs/models/extras/contact.html +1 -2
  260. nautobot/project-static/docs/models/extras/customfield.html +1 -2
  261. nautobot/project-static/docs/models/extras/customlink.html +1 -2
  262. nautobot/project-static/docs/models/extras/dynamicgroup.html +1 -2
  263. nautobot/project-static/docs/models/extras/exporttemplate.html +1 -2
  264. nautobot/project-static/docs/models/extras/gitrepository.html +1 -2
  265. nautobot/project-static/docs/models/extras/jobhook.html +1 -2
  266. nautobot/project-static/docs/models/extras/joblogentry.html +1 -2
  267. nautobot/project-static/docs/models/extras/jobresult.html +1 -2
  268. nautobot/project-static/docs/models/extras/metadatachoice.html +1 -2
  269. nautobot/project-static/docs/models/extras/metadatatype.html +1 -2
  270. nautobot/project-static/docs/models/extras/objectmetadata.html +1 -2
  271. nautobot/project-static/docs/models/extras/role.html +1 -2
  272. nautobot/project-static/docs/models/extras/savedview.html +1 -2
  273. nautobot/project-static/docs/models/extras/secret.html +1 -2
  274. nautobot/project-static/docs/models/extras/secretsgroup.html +1 -2
  275. nautobot/project-static/docs/models/extras/staticgroupassociation.html +1 -2
  276. nautobot/project-static/docs/models/extras/status.html +1 -2
  277. nautobot/project-static/docs/models/extras/team.html +1 -2
  278. nautobot/project-static/docs/models/ipam/ipaddress.html +1 -2
  279. nautobot/project-static/docs/models/ipam/prefix.html +1 -2
  280. nautobot/project-static/docs/models/ipam/rir.html +1 -2
  281. nautobot/project-static/docs/models/ipam/routetarget.html +1 -2
  282. nautobot/project-static/docs/models/ipam/service.html +1 -2
  283. nautobot/project-static/docs/models/ipam/vlan.html +1 -2
  284. nautobot/project-static/docs/models/ipam/vlangroup.html +1 -2
  285. nautobot/project-static/docs/models/ipam/vrf.html +1 -2
  286. nautobot/project-static/docs/models/tenancy/tenant.html +1 -2
  287. nautobot/project-static/docs/models/tenancy/tenantgroup.html +1 -2
  288. nautobot/project-static/docs/models/virtualization/cluster.html +1 -2
  289. nautobot/project-static/docs/models/virtualization/clustergroup.html +1 -2
  290. nautobot/project-static/docs/models/virtualization/clustertype.html +1 -2
  291. nautobot/project-static/docs/models/virtualization/virtualmachine.html +1 -2
  292. nautobot/project-static/docs/models/virtualization/vminterface.html +1 -2
  293. nautobot/project-static/docs/objects.inv +0 -0
  294. nautobot/project-static/docs/overview/application_stack.html +10 -10
  295. nautobot/project-static/docs/overview/design_philosophy.html +10 -10
  296. nautobot/project-static/docs/overview/index.html +1 -2
  297. nautobot/project-static/docs/plugins/development.html +1 -2
  298. nautobot/project-static/docs/plugins/index.html +1 -2
  299. nautobot/project-static/docs/plugins/porting-from-netbox.html +1 -2
  300. nautobot/project-static/docs/release-notes/index.html +15 -15
  301. nautobot/project-static/docs/release-notes/version-1.0.html +10 -10
  302. nautobot/project-static/docs/release-notes/version-1.1.html +10 -10
  303. nautobot/project-static/docs/release-notes/version-1.2.html +10 -10
  304. nautobot/project-static/docs/release-notes/version-1.3.html +10 -10
  305. nautobot/project-static/docs/release-notes/version-1.4.html +10 -10
  306. nautobot/project-static/docs/release-notes/version-1.5.html +10 -10
  307. nautobot/project-static/docs/release-notes/version-1.6.html +623 -188
  308. nautobot/project-static/docs/release-notes/version-2.0.html +10 -10
  309. nautobot/project-static/docs/release-notes/version-2.1.html +10 -10
  310. nautobot/project-static/docs/release-notes/version-2.2.html +10 -10
  311. nautobot/project-static/docs/release-notes/version-2.3.html +548 -192
  312. nautobot/project-static/docs/requirements.txt +2 -2
  313. nautobot/project-static/docs/rest-api/overview.html +1 -2
  314. nautobot/project-static/docs/search/search_index.json +1 -1
  315. nautobot/project-static/docs/sitemap.xml +270 -270
  316. nautobot/project-static/docs/sitemap.xml.gz +0 -0
  317. nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +10 -10
  318. nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +10 -10
  319. nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +65 -12
  320. nautobot/project-static/docs/user-guide/administration/configuration/index.html +10 -10
  321. nautobot/project-static/docs/user-guide/administration/configuration/node-configuration.html +1 -2
  322. nautobot/project-static/docs/user-guide/administration/configuration/optional-settings.html +1 -2
  323. nautobot/project-static/docs/user-guide/administration/configuration/redis.html +10 -10
  324. nautobot/project-static/docs/user-guide/administration/configuration/required-settings.html +1 -2
  325. nautobot/project-static/docs/user-guide/administration/configuration/settings.html +122 -10
  326. nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +10 -10
  327. nautobot/project-static/docs/user-guide/administration/guides/caching.html +1 -2
  328. nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +10 -10
  329. nautobot/project-static/docs/user-guide/administration/guides/docker.html +10 -10
  330. nautobot/project-static/docs/user-guide/administration/guides/health-checks.html +10 -10
  331. nautobot/project-static/docs/user-guide/administration/guides/healthcheck.html +1 -2
  332. nautobot/project-static/docs/user-guide/administration/guides/permissions.html +10 -10
  333. nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +10 -10
  334. nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +10 -10
  335. nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +10 -10
  336. nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +10 -10
  337. nautobot/project-static/docs/user-guide/administration/guides/selinux-troubleshooting.html +10 -10
  338. nautobot/project-static/docs/user-guide/administration/installation/app-install.html +10 -10
  339. nautobot/project-static/docs/user-guide/administration/installation/docker.html +1 -2
  340. nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +10 -10
  341. nautobot/project-static/docs/user-guide/administration/installation/health-checks.html +1 -2
  342. nautobot/project-static/docs/user-guide/administration/installation/http-server.html +10 -10
  343. nautobot/project-static/docs/user-guide/administration/installation/index.html +10 -10
  344. nautobot/project-static/docs/user-guide/administration/installation/install_system.html +10 -10
  345. nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +10 -10
  346. nautobot/project-static/docs/user-guide/administration/installation/selinux-troubleshooting.html +1 -2
  347. nautobot/project-static/docs/user-guide/administration/installation/services.html +10 -10
  348. nautobot/project-static/docs/user-guide/administration/installation-extras/docker.html +1 -2
  349. nautobot/project-static/docs/user-guide/administration/installation-extras/health-checks.html +1 -2
  350. nautobot/project-static/docs/user-guide/administration/installation-extras/selinux-troubleshooting.html +1 -2
  351. nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +10 -10
  352. nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +10 -10
  353. nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +10 -10
  354. nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +10 -10
  355. nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +10 -10
  356. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +10 -10
  357. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +10 -10
  358. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +10 -10
  359. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +10 -10
  360. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +10 -10
  361. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +10 -10
  362. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +10 -10
  363. nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +10 -10
  364. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +10 -10
  365. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +10 -10
  366. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +10 -10
  367. nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +10 -10
  368. nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +10 -10
  369. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloud.html +10 -10
  370. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudaccount.html +10 -10
  371. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetwork.html +10 -10
  372. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetworkprefixassignment.html +10 -10
  373. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudresourcetype.html +10 -10
  374. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservice.html +10 -10
  375. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservicenetworkassignment.html +10 -10
  376. nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +10 -10
  377. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +10 -10
  378. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +10 -10
  379. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +10 -10
  380. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +10 -10
  381. nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +10 -10
  382. nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +10 -10
  383. nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +10 -10
  384. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +10 -10
  385. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +10 -10
  386. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +10 -10
  387. nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +10 -10
  388. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +10 -10
  389. nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +10 -10
  390. nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +10 -10
  391. nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +10 -10
  392. nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +10 -10
  393. nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +10 -10
  394. nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +10 -10
  395. nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +10 -10
  396. nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +10 -10
  397. nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +10 -10
  398. nautobot/project-static/docs/user-guide/core-data-model/dcim/module.html +10 -10
  399. nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebay.html +10 -10
  400. nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebaytemplate.html +10 -10
  401. nautobot/project-static/docs/user-guide/core-data-model/dcim/moduletype.html +10 -10
  402. nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +10 -10
  403. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +10 -10
  404. nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +10 -10
  405. nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +10 -10
  406. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +10 -10
  407. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +10 -10
  408. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +10 -10
  409. nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +10 -10
  410. nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +10 -10
  411. nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +10 -10
  412. nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +10 -10
  413. nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +10 -10
  414. nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +10 -10
  415. nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +10 -10
  416. nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +10 -10
  417. nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +10 -10
  418. nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +10 -10
  419. nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +10 -10
  420. nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +10 -10
  421. nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +10 -10
  422. nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +10 -10
  423. nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +10 -10
  424. nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +10 -10
  425. nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +10 -10
  426. nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +10 -10
  427. nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +10 -10
  428. nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +10 -10
  429. nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +10 -10
  430. nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +10 -10
  431. nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +10 -10
  432. nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +10 -10
  433. nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +10 -10
  434. nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +10 -10
  435. nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +10 -10
  436. nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +10 -10
  437. nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +10 -10
  438. nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +10 -10
  439. nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +10 -10
  440. nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +10 -10
  441. nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +10 -10
  442. nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +10 -10
  443. nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +10 -10
  444. nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +10 -10
  445. nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +10 -10
  446. nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +10 -10
  447. nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +10 -10
  448. nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +10 -10
  449. nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +10 -10
  450. nautobot/project-static/docs/user-guide/feature-guides/graphql.html +10 -10
  451. nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +10 -10
  452. nautobot/project-static/docs/user-guide/feature-guides/relationships.html +10 -10
  453. nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +10 -10
  454. nautobot/project-static/docs/user-guide/index.html +10 -10
  455. nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +10 -10
  456. nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +10 -10
  457. nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +10 -10
  458. nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +10 -10
  459. nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +10 -10
  460. nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +10 -10
  461. nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +10 -10
  462. nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +10 -10
  463. nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +10 -10
  464. nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +10 -10
  465. nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +10 -10
  466. nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +10 -10
  467. nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +10 -10
  468. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +10 -10
  469. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +10 -10
  470. nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +10 -10
  471. nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +10 -10
  472. nautobot/project-static/docs/user-guide/platform-functionality/note.html +10 -10
  473. nautobot/project-static/docs/user-guide/platform-functionality/objectmetadata.html +10 -10
  474. nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +10 -10
  475. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +10 -10
  476. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +10 -10
  477. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +10 -10
  478. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +10 -10
  479. nautobot/project-static/docs/user-guide/platform-functionality/role.html +10 -10
  480. nautobot/project-static/docs/user-guide/platform-functionality/savedview.html +10 -10
  481. nautobot/project-static/docs/user-guide/platform-functionality/secret.html +10 -10
  482. nautobot/project-static/docs/user-guide/platform-functionality/staticgroupassociation.html +10 -10
  483. nautobot/project-static/docs/user-guide/platform-functionality/status.html +10 -10
  484. nautobot/project-static/docs/user-guide/platform-functionality/tag.html +10 -10
  485. nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +10 -10
  486. nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +10 -10
  487. nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +10 -10
  488. nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +10 -10
  489. nautobot/project-static/docs/user-guides/custom-fields.html +1 -2
  490. nautobot/project-static/docs/user-guides/getting-started/creating-devices.html +1 -2
  491. nautobot/project-static/docs/user-guides/getting-started/index.html +1 -2
  492. nautobot/project-static/docs/user-guides/getting-started/interfaces.html +1 -2
  493. nautobot/project-static/docs/user-guides/getting-started/ipam.html +1 -2
  494. nautobot/project-static/docs/user-guides/getting-started/platforms.html +1 -2
  495. nautobot/project-static/docs/user-guides/getting-started/search-bar.html +1 -2
  496. nautobot/project-static/docs/user-guides/getting-started/tenants.html +1 -2
  497. nautobot/project-static/docs/user-guides/getting-started/vlans-and-vlan-groups.html +1 -2
  498. nautobot/project-static/docs/user-guides/git-data-source.html +1 -2
  499. nautobot/project-static/docs/user-guides/graphql.html +1 -2
  500. nautobot/project-static/docs/user-guides/ip-address-merge-tool.html +1 -2
  501. nautobot/project-static/docs/user-guides/relationships.html +1 -2
  502. nautobot/project-static/docs/user-guides/s3-django-storage.html +1 -2
  503. nautobot/project-static/js/forms.js +10 -0
  504. nautobot/users/api/serializers.py +1 -0
  505. nautobot/virtualization/filters.py +19 -2
  506. nautobot/virtualization/forms.py +3 -3
  507. nautobot/virtualization/templates/virtualization/vminterface.html +4 -0
  508. nautobot/virtualization/tests/test_filters.py +9 -0
  509. {nautobot-2.3.11.dist-info → nautobot-2.3.13.dist-info}/METADATA +4 -4
  510. {nautobot-2.3.11.dist-info → nautobot-2.3.13.dist-info}/RECORD +514 -513
  511. nautobot/project-static/docs/assets/stylesheets/main.0253249f.min.css +0 -1
  512. nautobot/project-static/docs/assets/stylesheets/main.0253249f.min.css.map +0 -1
  513. {nautobot-2.3.11.dist-info → nautobot-2.3.13.dist-info}/LICENSE.txt +0 -0
  514. {nautobot-2.3.11.dist-info → nautobot-2.3.13.dist-info}/NOTICE +0 -0
  515. {nautobot-2.3.11.dist-info → nautobot-2.3.13.dist-info}/WHEEL +0 -0
  516. {nautobot-2.3.11.dist-info → nautobot-2.3.13.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.1, mkdocs-material-9.5.42">
21
+ <meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.5.47">
22
22
 
23
23
 
24
24
 
@@ -26,7 +26,7 @@
26
26
 
27
27
 
28
28
 
29
- <link rel="stylesheet" href="../assets/stylesheets/main.0253249f.min.css">
29
+ <link rel="stylesheet" href="../assets/stylesheets/main.6f8fc17f.min.css">
30
30
 
31
31
 
32
32
  <link rel="stylesheet" href="../assets/stylesheets/palette.06af60db.min.css">
@@ -38,7 +38,7 @@
38
38
 
39
39
 
40
40
 
41
- <style>:root{--md-admonition-icon--example:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M288 0H128c-17.7 0-32 14.3-32 32s14.3 32 32 32v132.8c0 11.8-3.3 23.5-9.5 33.5L10.3 406.2C3.6 417.2 0 429.7 0 442.6 0 480.9 31.1 512 69.4 512h309.2c38.3 0 69.4-31.1 69.4-69.4 0-12.8-3.6-25.4-10.3-36.4L329.5 230.4c-6.2-10.1-9.5-21.7-9.5-33.5V64c17.7 0 32-14.3 32-32S337.7 0 320 0zm-96 196.8V64h64v132.8c0 23.7 6.6 46.9 19 67.1l34.5 56.1h-171l34.5-56.1c12.4-20.2 19-43.4 19-67.1"/></svg>');}</style>
41
+ <style>:root{--md-admonition-icon--example:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M288 0H128c-17.7 0-32 14.3-32 32s14.3 32 32 32v132.8c0 11.8-3.3 23.5-9.5 33.5L10.3 406.2C3.6 417.2 0 429.7 0 442.6 0 480.9 31.1 512 69.4 512h309.2c38.3 0 69.4-31.1 69.4-69.4 0-12.8-3.6-25.4-10.3-36.4L329.5 230.4c-6.2-10.1-9.5-21.7-9.5-33.5V64c17.7 0 32-14.3 32-32S337.7 0 320 0zm-96 196.8V64h64v132.8c0 23.7 6.6 46.9 19 67.1l34.5 56.1h-171l34.5-56.1c12.4-20.2 19-43.4 19-67.1"/></svg>');}</style>
42
42
 
43
43
 
44
44
 
@@ -217,7 +217,7 @@
217
217
  <a href="https://github.com/nautobot/nautobot" title="Go to repository" class="md-source" data-md-component="source">
218
218
  <div class="md-source__icon md-icon">
219
219
 
220
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81"/></svg>
220
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81"/></svg>
221
221
  </div>
222
222
  <div class="md-source__repository">
223
223
  GitHub
@@ -377,7 +377,7 @@
377
377
  <a href="https://github.com/nautobot/nautobot" title="Go to repository" class="md-source" data-md-component="source">
378
378
  <div class="md-source__icon md-icon">
379
379
 
380
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81"/></svg>
380
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81"/></svg>
381
381
  </div>
382
382
  <div class="md-source__repository">
383
383
  GitHub
@@ -8257,15 +8257,24 @@
8257
8257
  </li>
8258
8258
 
8259
8259
  <li class="md-nav__item">
8260
- <a href="#v2311-2024-11-12" class="md-nav__link">
8260
+ <a href="#v2313-2024-12-10" class="md-nav__link">
8261
8261
  <span class="md-ellipsis">
8262
- v2.3.11 (2024-11-12)
8262
+ v2.3.13 (2024-12-10)
8263
8263
  </span>
8264
8264
  </a>
8265
8265
 
8266
- <nav class="md-nav" aria-label="v2.3.11 (2024-11-12)">
8266
+ <nav class="md-nav" aria-label="v2.3.13 (2024-12-10)">
8267
8267
  <ul class="md-nav__list">
8268
8268
 
8269
+ <li class="md-nav__item">
8270
+ <a href="#security" class="md-nav__link">
8271
+ <span class="md-ellipsis">
8272
+ Security
8273
+ </span>
8274
+ </a>
8275
+
8276
+ </li>
8277
+
8269
8278
  <li class="md-nav__item">
8270
8279
  <a href="#added_1" class="md-nav__link">
8271
8280
  <span class="md-ellipsis">
@@ -8291,6 +8300,15 @@
8291
8300
  </span>
8292
8301
  </a>
8293
8302
 
8303
+ </li>
8304
+
8305
+ <li class="md-nav__item">
8306
+ <a href="#dependencies_1" class="md-nav__link">
8307
+ <span class="md-ellipsis">
8308
+ Dependencies
8309
+ </span>
8310
+ </a>
8311
+
8294
8312
  </li>
8295
8313
 
8296
8314
  <li class="md-nav__item">
@@ -8314,6 +8332,126 @@
8314
8332
  </ul>
8315
8333
  </nav>
8316
8334
 
8335
+ </li>
8336
+
8337
+ <li class="md-nav__item">
8338
+ <a href="#v2312-2024-11-25" class="md-nav__link">
8339
+ <span class="md-ellipsis">
8340
+ v2.3.12 (2024-11-25)
8341
+ </span>
8342
+ </a>
8343
+
8344
+ <nav class="md-nav" aria-label="v2.3.12 (2024-11-25)">
8345
+ <ul class="md-nav__list">
8346
+
8347
+ <li class="md-nav__item">
8348
+ <a href="#added_2" class="md-nav__link">
8349
+ <span class="md-ellipsis">
8350
+ Added
8351
+ </span>
8352
+ </a>
8353
+
8354
+ </li>
8355
+
8356
+ <li class="md-nav__item">
8357
+ <a href="#fixed_1" class="md-nav__link">
8358
+ <span class="md-ellipsis">
8359
+ Fixed
8360
+ </span>
8361
+ </a>
8362
+
8363
+ </li>
8364
+
8365
+ <li class="md-nav__item">
8366
+ <a href="#dependencies_2" class="md-nav__link">
8367
+ <span class="md-ellipsis">
8368
+ Dependencies
8369
+ </span>
8370
+ </a>
8371
+
8372
+ </li>
8373
+
8374
+ <li class="md-nav__item">
8375
+ <a href="#documentation_1" class="md-nav__link">
8376
+ <span class="md-ellipsis">
8377
+ Documentation
8378
+ </span>
8379
+ </a>
8380
+
8381
+ </li>
8382
+
8383
+ <li class="md-nav__item">
8384
+ <a href="#housekeeping_1" class="md-nav__link">
8385
+ <span class="md-ellipsis">
8386
+ Housekeeping
8387
+ </span>
8388
+ </a>
8389
+
8390
+ </li>
8391
+
8392
+ </ul>
8393
+ </nav>
8394
+
8395
+ </li>
8396
+
8397
+ <li class="md-nav__item">
8398
+ <a href="#v2311-2024-11-12" class="md-nav__link">
8399
+ <span class="md-ellipsis">
8400
+ v2.3.11 (2024-11-12)
8401
+ </span>
8402
+ </a>
8403
+
8404
+ <nav class="md-nav" aria-label="v2.3.11 (2024-11-12)">
8405
+ <ul class="md-nav__list">
8406
+
8407
+ <li class="md-nav__item">
8408
+ <a href="#added_3" class="md-nav__link">
8409
+ <span class="md-ellipsis">
8410
+ Added
8411
+ </span>
8412
+ </a>
8413
+
8414
+ </li>
8415
+
8416
+ <li class="md-nav__item">
8417
+ <a href="#changed_2" class="md-nav__link">
8418
+ <span class="md-ellipsis">
8419
+ Changed
8420
+ </span>
8421
+ </a>
8422
+
8423
+ </li>
8424
+
8425
+ <li class="md-nav__item">
8426
+ <a href="#fixed_2" class="md-nav__link">
8427
+ <span class="md-ellipsis">
8428
+ Fixed
8429
+ </span>
8430
+ </a>
8431
+
8432
+ </li>
8433
+
8434
+ <li class="md-nav__item">
8435
+ <a href="#documentation_2" class="md-nav__link">
8436
+ <span class="md-ellipsis">
8437
+ Documentation
8438
+ </span>
8439
+ </a>
8440
+
8441
+ </li>
8442
+
8443
+ <li class="md-nav__item">
8444
+ <a href="#housekeeping_2" class="md-nav__link">
8445
+ <span class="md-ellipsis">
8446
+ Housekeeping
8447
+ </span>
8448
+ </a>
8449
+
8450
+ </li>
8451
+
8452
+ </ul>
8453
+ </nav>
8454
+
8317
8455
  </li>
8318
8456
 
8319
8457
  <li class="md-nav__item">
@@ -8327,7 +8465,7 @@
8327
8465
  <ul class="md-nav__list">
8328
8466
 
8329
8467
  <li class="md-nav__item">
8330
- <a href="#added_2" class="md-nav__link">
8468
+ <a href="#added_4" class="md-nav__link">
8331
8469
  <span class="md-ellipsis">
8332
8470
  Added
8333
8471
  </span>
@@ -8336,7 +8474,7 @@
8336
8474
  </li>
8337
8475
 
8338
8476
  <li class="md-nav__item">
8339
- <a href="#changed_2" class="md-nav__link">
8477
+ <a href="#changed_3" class="md-nav__link">
8340
8478
  <span class="md-ellipsis">
8341
8479
  Changed
8342
8480
  </span>
@@ -8345,7 +8483,7 @@
8345
8483
  </li>
8346
8484
 
8347
8485
  <li class="md-nav__item">
8348
- <a href="#fixed_1" class="md-nav__link">
8486
+ <a href="#fixed_3" class="md-nav__link">
8349
8487
  <span class="md-ellipsis">
8350
8488
  Fixed
8351
8489
  </span>
@@ -8354,7 +8492,7 @@
8354
8492
  </li>
8355
8493
 
8356
8494
  <li class="md-nav__item">
8357
- <a href="#dependencies_1" class="md-nav__link">
8495
+ <a href="#dependencies_3" class="md-nav__link">
8358
8496
  <span class="md-ellipsis">
8359
8497
  Dependencies
8360
8498
  </span>
@@ -8363,7 +8501,7 @@
8363
8501
  </li>
8364
8502
 
8365
8503
  <li class="md-nav__item">
8366
- <a href="#housekeeping_1" class="md-nav__link">
8504
+ <a href="#housekeeping_3" class="md-nav__link">
8367
8505
  <span class="md-ellipsis">
8368
8506
  Housekeeping
8369
8507
  </span>
@@ -8387,7 +8525,7 @@
8387
8525
  <ul class="md-nav__list">
8388
8526
 
8389
8527
  <li class="md-nav__item">
8390
- <a href="#added_3" class="md-nav__link">
8528
+ <a href="#added_5" class="md-nav__link">
8391
8529
  <span class="md-ellipsis">
8392
8530
  Added
8393
8531
  </span>
@@ -8396,7 +8534,7 @@
8396
8534
  </li>
8397
8535
 
8398
8536
  <li class="md-nav__item">
8399
- <a href="#changed_3" class="md-nav__link">
8537
+ <a href="#changed_4" class="md-nav__link">
8400
8538
  <span class="md-ellipsis">
8401
8539
  Changed
8402
8540
  </span>
@@ -8405,7 +8543,7 @@
8405
8543
  </li>
8406
8544
 
8407
8545
  <li class="md-nav__item">
8408
- <a href="#fixed_2" class="md-nav__link">
8546
+ <a href="#fixed_4" class="md-nav__link">
8409
8547
  <span class="md-ellipsis">
8410
8548
  Fixed
8411
8549
  </span>
@@ -8414,7 +8552,7 @@
8414
8552
  </li>
8415
8553
 
8416
8554
  <li class="md-nav__item">
8417
- <a href="#dependencies_2" class="md-nav__link">
8555
+ <a href="#dependencies_4" class="md-nav__link">
8418
8556
  <span class="md-ellipsis">
8419
8557
  Dependencies
8420
8558
  </span>
@@ -8423,7 +8561,7 @@
8423
8561
  </li>
8424
8562
 
8425
8563
  <li class="md-nav__item">
8426
- <a href="#housekeeping_2" class="md-nav__link">
8564
+ <a href="#housekeeping_4" class="md-nav__link">
8427
8565
  <span class="md-ellipsis">
8428
8566
  Housekeeping
8429
8567
  </span>
@@ -8447,7 +8585,7 @@
8447
8585
  <ul class="md-nav__list">
8448
8586
 
8449
8587
  <li class="md-nav__item">
8450
- <a href="#fixed_3" class="md-nav__link">
8588
+ <a href="#fixed_5" class="md-nav__link">
8451
8589
  <span class="md-ellipsis">
8452
8590
  Fixed
8453
8591
  </span>
@@ -8471,7 +8609,7 @@
8471
8609
  <ul class="md-nav__list">
8472
8610
 
8473
8611
  <li class="md-nav__item">
8474
- <a href="#added_4" class="md-nav__link">
8612
+ <a href="#added_6" class="md-nav__link">
8475
8613
  <span class="md-ellipsis">
8476
8614
  Added
8477
8615
  </span>
@@ -8480,7 +8618,7 @@
8480
8618
  </li>
8481
8619
 
8482
8620
  <li class="md-nav__item">
8483
- <a href="#changed_4" class="md-nav__link">
8621
+ <a href="#changed_5" class="md-nav__link">
8484
8622
  <span class="md-ellipsis">
8485
8623
  Changed
8486
8624
  </span>
@@ -8489,7 +8627,7 @@
8489
8627
  </li>
8490
8628
 
8491
8629
  <li class="md-nav__item">
8492
- <a href="#fixed_4" class="md-nav__link">
8630
+ <a href="#fixed_6" class="md-nav__link">
8493
8631
  <span class="md-ellipsis">
8494
8632
  Fixed
8495
8633
  </span>
@@ -8498,7 +8636,7 @@
8498
8636
  </li>
8499
8637
 
8500
8638
  <li class="md-nav__item">
8501
- <a href="#dependencies_3" class="md-nav__link">
8639
+ <a href="#dependencies_5" class="md-nav__link">
8502
8640
  <span class="md-ellipsis">
8503
8641
  Dependencies
8504
8642
  </span>
@@ -8507,7 +8645,7 @@
8507
8645
  </li>
8508
8646
 
8509
8647
  <li class="md-nav__item">
8510
- <a href="#housekeeping_3" class="md-nav__link">
8648
+ <a href="#housekeeping_5" class="md-nav__link">
8511
8649
  <span class="md-ellipsis">
8512
8650
  Housekeeping
8513
8651
  </span>
@@ -8531,7 +8669,7 @@
8531
8669
  <ul class="md-nav__list">
8532
8670
 
8533
8671
  <li class="md-nav__item">
8534
- <a href="#added_5" class="md-nav__link">
8672
+ <a href="#added_7" class="md-nav__link">
8535
8673
  <span class="md-ellipsis">
8536
8674
  Added
8537
8675
  </span>
@@ -8540,7 +8678,7 @@
8540
8678
  </li>
8541
8679
 
8542
8680
  <li class="md-nav__item">
8543
- <a href="#fixed_5" class="md-nav__link">
8681
+ <a href="#fixed_7" class="md-nav__link">
8544
8682
  <span class="md-ellipsis">
8545
8683
  Fixed
8546
8684
  </span>
@@ -8549,7 +8687,7 @@
8549
8687
  </li>
8550
8688
 
8551
8689
  <li class="md-nav__item">
8552
- <a href="#documentation_1" class="md-nav__link">
8690
+ <a href="#documentation_3" class="md-nav__link">
8553
8691
  <span class="md-ellipsis">
8554
8692
  Documentation
8555
8693
  </span>
@@ -8558,7 +8696,7 @@
8558
8696
  </li>
8559
8697
 
8560
8698
  <li class="md-nav__item">
8561
- <a href="#housekeeping_4" class="md-nav__link">
8699
+ <a href="#housekeeping_6" class="md-nav__link">
8562
8700
  <span class="md-ellipsis">
8563
8701
  Housekeeping
8564
8702
  </span>
@@ -8582,7 +8720,7 @@
8582
8720
  <ul class="md-nav__list">
8583
8721
 
8584
8722
  <li class="md-nav__item">
8585
- <a href="#added_6" class="md-nav__link">
8723
+ <a href="#added_8" class="md-nav__link">
8586
8724
  <span class="md-ellipsis">
8587
8725
  Added
8588
8726
  </span>
@@ -8591,7 +8729,7 @@
8591
8729
  </li>
8592
8730
 
8593
8731
  <li class="md-nav__item">
8594
- <a href="#changed_5" class="md-nav__link">
8732
+ <a href="#changed_6" class="md-nav__link">
8595
8733
  <span class="md-ellipsis">
8596
8734
  Changed
8597
8735
  </span>
@@ -8600,7 +8738,7 @@
8600
8738
  </li>
8601
8739
 
8602
8740
  <li class="md-nav__item">
8603
- <a href="#fixed_6" class="md-nav__link">
8741
+ <a href="#fixed_8" class="md-nav__link">
8604
8742
  <span class="md-ellipsis">
8605
8743
  Fixed
8606
8744
  </span>
@@ -8609,7 +8747,7 @@
8609
8747
  </li>
8610
8748
 
8611
8749
  <li class="md-nav__item">
8612
- <a href="#dependencies_4" class="md-nav__link">
8750
+ <a href="#dependencies_6" class="md-nav__link">
8613
8751
  <span class="md-ellipsis">
8614
8752
  Dependencies
8615
8753
  </span>
@@ -8618,7 +8756,7 @@
8618
8756
  </li>
8619
8757
 
8620
8758
  <li class="md-nav__item">
8621
- <a href="#documentation_2" class="md-nav__link">
8759
+ <a href="#documentation_4" class="md-nav__link">
8622
8760
  <span class="md-ellipsis">
8623
8761
  Documentation
8624
8762
  </span>
@@ -8627,7 +8765,7 @@
8627
8765
  </li>
8628
8766
 
8629
8767
  <li class="md-nav__item">
8630
- <a href="#housekeeping_5" class="md-nav__link">
8768
+ <a href="#housekeeping_7" class="md-nav__link">
8631
8769
  <span class="md-ellipsis">
8632
8770
  Housekeeping
8633
8771
  </span>
@@ -8651,7 +8789,7 @@
8651
8789
  <ul class="md-nav__list">
8652
8790
 
8653
8791
  <li class="md-nav__item">
8654
- <a href="#added_7" class="md-nav__link">
8792
+ <a href="#added_9" class="md-nav__link">
8655
8793
  <span class="md-ellipsis">
8656
8794
  Added
8657
8795
  </span>
@@ -8660,7 +8798,7 @@
8660
8798
  </li>
8661
8799
 
8662
8800
  <li class="md-nav__item">
8663
- <a href="#changed_6" class="md-nav__link">
8801
+ <a href="#changed_7" class="md-nav__link">
8664
8802
  <span class="md-ellipsis">
8665
8803
  Changed
8666
8804
  </span>
@@ -8669,7 +8807,7 @@
8669
8807
  </li>
8670
8808
 
8671
8809
  <li class="md-nav__item">
8672
- <a href="#fixed_7" class="md-nav__link">
8810
+ <a href="#fixed_9" class="md-nav__link">
8673
8811
  <span class="md-ellipsis">
8674
8812
  Fixed
8675
8813
  </span>
@@ -8678,7 +8816,7 @@
8678
8816
  </li>
8679
8817
 
8680
8818
  <li class="md-nav__item">
8681
- <a href="#documentation_3" class="md-nav__link">
8819
+ <a href="#documentation_5" class="md-nav__link">
8682
8820
  <span class="md-ellipsis">
8683
8821
  Documentation
8684
8822
  </span>
@@ -8687,7 +8825,7 @@
8687
8825
  </li>
8688
8826
 
8689
8827
  <li class="md-nav__item">
8690
- <a href="#housekeeping_6" class="md-nav__link">
8828
+ <a href="#housekeeping_8" class="md-nav__link">
8691
8829
  <span class="md-ellipsis">
8692
8830
  Housekeeping
8693
8831
  </span>
@@ -8711,7 +8849,7 @@
8711
8849
  <ul class="md-nav__list">
8712
8850
 
8713
8851
  <li class="md-nav__item">
8714
- <a href="#security" class="md-nav__link">
8852
+ <a href="#security_1" class="md-nav__link">
8715
8853
  <span class="md-ellipsis">
8716
8854
  Security
8717
8855
  </span>
@@ -8720,7 +8858,7 @@
8720
8858
  </li>
8721
8859
 
8722
8860
  <li class="md-nav__item">
8723
- <a href="#fixed_8" class="md-nav__link">
8861
+ <a href="#fixed_10" class="md-nav__link">
8724
8862
  <span class="md-ellipsis">
8725
8863
  Fixed
8726
8864
  </span>
@@ -8729,7 +8867,7 @@
8729
8867
  </li>
8730
8868
 
8731
8869
  <li class="md-nav__item">
8732
- <a href="#dependencies_5" class="md-nav__link">
8870
+ <a href="#dependencies_7" class="md-nav__link">
8733
8871
  <span class="md-ellipsis">
8734
8872
  Dependencies
8735
8873
  </span>
@@ -8738,7 +8876,7 @@
8738
8876
  </li>
8739
8877
 
8740
8878
  <li class="md-nav__item">
8741
- <a href="#housekeeping_7" class="md-nav__link">
8879
+ <a href="#housekeeping_9" class="md-nav__link">
8742
8880
  <span class="md-ellipsis">
8743
8881
  Housekeeping
8744
8882
  </span>
@@ -8762,7 +8900,7 @@
8762
8900
  <ul class="md-nav__list">
8763
8901
 
8764
8902
  <li class="md-nav__item">
8765
- <a href="#security_1" class="md-nav__link">
8903
+ <a href="#security_2" class="md-nav__link">
8766
8904
  <span class="md-ellipsis">
8767
8905
  Security
8768
8906
  </span>
@@ -8771,7 +8909,7 @@
8771
8909
  </li>
8772
8910
 
8773
8911
  <li class="md-nav__item">
8774
- <a href="#added_8" class="md-nav__link">
8912
+ <a href="#added_10" class="md-nav__link">
8775
8913
  <span class="md-ellipsis">
8776
8914
  Added
8777
8915
  </span>
@@ -8780,7 +8918,7 @@
8780
8918
  </li>
8781
8919
 
8782
8920
  <li class="md-nav__item">
8783
- <a href="#fixed_9" class="md-nav__link">
8921
+ <a href="#fixed_11" class="md-nav__link">
8784
8922
  <span class="md-ellipsis">
8785
8923
  Fixed
8786
8924
  </span>
@@ -8789,7 +8927,7 @@
8789
8927
  </li>
8790
8928
 
8791
8929
  <li class="md-nav__item">
8792
- <a href="#housekeeping_8" class="md-nav__link">
8930
+ <a href="#housekeeping_10" class="md-nav__link">
8793
8931
  <span class="md-ellipsis">
8794
8932
  Housekeeping
8795
8933
  </span>
@@ -8813,7 +8951,7 @@
8813
8951
  <ul class="md-nav__list">
8814
8952
 
8815
8953
  <li class="md-nav__item">
8816
- <a href="#added_9" class="md-nav__link">
8954
+ <a href="#added_11" class="md-nav__link">
8817
8955
  <span class="md-ellipsis">
8818
8956
  Added
8819
8957
  </span>
@@ -8822,7 +8960,7 @@
8822
8960
  </li>
8823
8961
 
8824
8962
  <li class="md-nav__item">
8825
- <a href="#changed_7" class="md-nav__link">
8963
+ <a href="#changed_8" class="md-nav__link">
8826
8964
  <span class="md-ellipsis">
8827
8965
  Changed
8828
8966
  </span>
@@ -8831,7 +8969,7 @@
8831
8969
  </li>
8832
8970
 
8833
8971
  <li class="md-nav__item">
8834
- <a href="#fixed_10" class="md-nav__link">
8972
+ <a href="#fixed_12" class="md-nav__link">
8835
8973
  <span class="md-ellipsis">
8836
8974
  Fixed
8837
8975
  </span>
@@ -8840,7 +8978,7 @@
8840
8978
  </li>
8841
8979
 
8842
8980
  <li class="md-nav__item">
8843
- <a href="#housekeeping_9" class="md-nav__link">
8981
+ <a href="#housekeeping_11" class="md-nav__link">
8844
8982
  <span class="md-ellipsis">
8845
8983
  Housekeeping
8846
8984
  </span>
@@ -8864,7 +9002,7 @@
8864
9002
  <ul class="md-nav__list">
8865
9003
 
8866
9004
  <li class="md-nav__item">
8867
- <a href="#security_2" class="md-nav__link">
9005
+ <a href="#security_3" class="md-nav__link">
8868
9006
  <span class="md-ellipsis">
8869
9007
  Security
8870
9008
  </span>
@@ -8873,7 +9011,7 @@
8873
9011
  </li>
8874
9012
 
8875
9013
  <li class="md-nav__item">
8876
- <a href="#added_10" class="md-nav__link">
9014
+ <a href="#added_12" class="md-nav__link">
8877
9015
  <span class="md-ellipsis">
8878
9016
  Added
8879
9017
  </span>
@@ -8882,7 +9020,7 @@
8882
9020
  </li>
8883
9021
 
8884
9022
  <li class="md-nav__item">
8885
- <a href="#changed_8" class="md-nav__link">
9023
+ <a href="#changed_9" class="md-nav__link">
8886
9024
  <span class="md-ellipsis">
8887
9025
  Changed
8888
9026
  </span>
@@ -8900,7 +9038,7 @@
8900
9038
  </li>
8901
9039
 
8902
9040
  <li class="md-nav__item">
8903
- <a href="#fixed_11" class="md-nav__link">
9041
+ <a href="#fixed_13" class="md-nav__link">
8904
9042
  <span class="md-ellipsis">
8905
9043
  Fixed
8906
9044
  </span>
@@ -8909,7 +9047,7 @@
8909
9047
  </li>
8910
9048
 
8911
9049
  <li class="md-nav__item">
8912
- <a href="#documentation_4" class="md-nav__link">
9050
+ <a href="#documentation_6" class="md-nav__link">
8913
9051
  <span class="md-ellipsis">
8914
9052
  Documentation
8915
9053
  </span>
@@ -8918,7 +9056,7 @@
8918
9056
  </li>
8919
9057
 
8920
9058
  <li class="md-nav__item">
8921
- <a href="#housekeeping_10" class="md-nav__link">
9059
+ <a href="#housekeeping_12" class="md-nav__link">
8922
9060
  <span class="md-ellipsis">
8923
9061
  Housekeeping
8924
9062
  </span>
@@ -8942,7 +9080,7 @@
8942
9080
  <ul class="md-nav__list">
8943
9081
 
8944
9082
  <li class="md-nav__item">
8945
- <a href="#security_3" class="md-nav__link">
9083
+ <a href="#security_4" class="md-nav__link">
8946
9084
  <span class="md-ellipsis">
8947
9085
  Security
8948
9086
  </span>
@@ -8951,7 +9089,7 @@
8951
9089
  </li>
8952
9090
 
8953
9091
  <li class="md-nav__item">
8954
- <a href="#added_11" class="md-nav__link">
9092
+ <a href="#added_13" class="md-nav__link">
8955
9093
  <span class="md-ellipsis">
8956
9094
  Added
8957
9095
  </span>
@@ -8960,7 +9098,7 @@
8960
9098
  </li>
8961
9099
 
8962
9100
  <li class="md-nav__item">
8963
- <a href="#changed_9" class="md-nav__link">
9101
+ <a href="#changed_10" class="md-nav__link">
8964
9102
  <span class="md-ellipsis">
8965
9103
  Changed
8966
9104
  </span>
@@ -8987,7 +9125,7 @@
8987
9125
  </li>
8988
9126
 
8989
9127
  <li class="md-nav__item">
8990
- <a href="#fixed_12" class="md-nav__link">
9128
+ <a href="#fixed_14" class="md-nav__link">
8991
9129
  <span class="md-ellipsis">
8992
9130
  Fixed
8993
9131
  </span>
@@ -8996,7 +9134,7 @@
8996
9134
  </li>
8997
9135
 
8998
9136
  <li class="md-nav__item">
8999
- <a href="#dependencies_6" class="md-nav__link">
9137
+ <a href="#dependencies_8" class="md-nav__link">
9000
9138
  <span class="md-ellipsis">
9001
9139
  Dependencies
9002
9140
  </span>
@@ -9005,7 +9143,7 @@
9005
9143
  </li>
9006
9144
 
9007
9145
  <li class="md-nav__item">
9008
- <a href="#documentation_5" class="md-nav__link">
9146
+ <a href="#documentation_7" class="md-nav__link">
9009
9147
  <span class="md-ellipsis">
9010
9148
  Documentation
9011
9149
  </span>
@@ -9014,7 +9152,7 @@
9014
9152
  </li>
9015
9153
 
9016
9154
  <li class="md-nav__item">
9017
- <a href="#housekeeping_11" class="md-nav__link">
9155
+ <a href="#housekeeping_13" class="md-nav__link">
9018
9156
  <span class="md-ellipsis">
9019
9157
  Housekeeping
9020
9158
  </span>
@@ -9828,15 +9966,24 @@
9828
9966
  </li>
9829
9967
 
9830
9968
  <li class="md-nav__item">
9831
- <a href="#v2311-2024-11-12" class="md-nav__link">
9969
+ <a href="#v2313-2024-12-10" class="md-nav__link">
9832
9970
  <span class="md-ellipsis">
9833
- v2.3.11 (2024-11-12)
9971
+ v2.3.13 (2024-12-10)
9834
9972
  </span>
9835
9973
  </a>
9836
9974
 
9837
- <nav class="md-nav" aria-label="v2.3.11 (2024-11-12)">
9975
+ <nav class="md-nav" aria-label="v2.3.13 (2024-12-10)">
9838
9976
  <ul class="md-nav__list">
9839
9977
 
9978
+ <li class="md-nav__item">
9979
+ <a href="#security" class="md-nav__link">
9980
+ <span class="md-ellipsis">
9981
+ Security
9982
+ </span>
9983
+ </a>
9984
+
9985
+ </li>
9986
+
9840
9987
  <li class="md-nav__item">
9841
9988
  <a href="#added_1" class="md-nav__link">
9842
9989
  <span class="md-ellipsis">
@@ -9865,16 +10012,145 @@
9865
10012
  </li>
9866
10013
 
9867
10014
  <li class="md-nav__item">
9868
- <a href="#documentation" class="md-nav__link">
10015
+ <a href="#dependencies_1" class="md-nav__link">
9869
10016
  <span class="md-ellipsis">
9870
- Documentation
10017
+ Dependencies
9871
10018
  </span>
9872
10019
  </a>
9873
10020
 
9874
10021
  </li>
9875
10022
 
9876
10023
  <li class="md-nav__item">
9877
- <a href="#housekeeping" class="md-nav__link">
10024
+ <a href="#documentation" class="md-nav__link">
10025
+ <span class="md-ellipsis">
10026
+ Documentation
10027
+ </span>
10028
+ </a>
10029
+
10030
+ </li>
10031
+
10032
+ <li class="md-nav__item">
10033
+ <a href="#housekeeping" class="md-nav__link">
10034
+ <span class="md-ellipsis">
10035
+ Housekeeping
10036
+ </span>
10037
+ </a>
10038
+
10039
+ </li>
10040
+
10041
+ </ul>
10042
+ </nav>
10043
+
10044
+ </li>
10045
+
10046
+ <li class="md-nav__item">
10047
+ <a href="#v2312-2024-11-25" class="md-nav__link">
10048
+ <span class="md-ellipsis">
10049
+ v2.3.12 (2024-11-25)
10050
+ </span>
10051
+ </a>
10052
+
10053
+ <nav class="md-nav" aria-label="v2.3.12 (2024-11-25)">
10054
+ <ul class="md-nav__list">
10055
+
10056
+ <li class="md-nav__item">
10057
+ <a href="#added_2" class="md-nav__link">
10058
+ <span class="md-ellipsis">
10059
+ Added
10060
+ </span>
10061
+ </a>
10062
+
10063
+ </li>
10064
+
10065
+ <li class="md-nav__item">
10066
+ <a href="#fixed_1" class="md-nav__link">
10067
+ <span class="md-ellipsis">
10068
+ Fixed
10069
+ </span>
10070
+ </a>
10071
+
10072
+ </li>
10073
+
10074
+ <li class="md-nav__item">
10075
+ <a href="#dependencies_2" class="md-nav__link">
10076
+ <span class="md-ellipsis">
10077
+ Dependencies
10078
+ </span>
10079
+ </a>
10080
+
10081
+ </li>
10082
+
10083
+ <li class="md-nav__item">
10084
+ <a href="#documentation_1" class="md-nav__link">
10085
+ <span class="md-ellipsis">
10086
+ Documentation
10087
+ </span>
10088
+ </a>
10089
+
10090
+ </li>
10091
+
10092
+ <li class="md-nav__item">
10093
+ <a href="#housekeeping_1" class="md-nav__link">
10094
+ <span class="md-ellipsis">
10095
+ Housekeeping
10096
+ </span>
10097
+ </a>
10098
+
10099
+ </li>
10100
+
10101
+ </ul>
10102
+ </nav>
10103
+
10104
+ </li>
10105
+
10106
+ <li class="md-nav__item">
10107
+ <a href="#v2311-2024-11-12" class="md-nav__link">
10108
+ <span class="md-ellipsis">
10109
+ v2.3.11 (2024-11-12)
10110
+ </span>
10111
+ </a>
10112
+
10113
+ <nav class="md-nav" aria-label="v2.3.11 (2024-11-12)">
10114
+ <ul class="md-nav__list">
10115
+
10116
+ <li class="md-nav__item">
10117
+ <a href="#added_3" class="md-nav__link">
10118
+ <span class="md-ellipsis">
10119
+ Added
10120
+ </span>
10121
+ </a>
10122
+
10123
+ </li>
10124
+
10125
+ <li class="md-nav__item">
10126
+ <a href="#changed_2" class="md-nav__link">
10127
+ <span class="md-ellipsis">
10128
+ Changed
10129
+ </span>
10130
+ </a>
10131
+
10132
+ </li>
10133
+
10134
+ <li class="md-nav__item">
10135
+ <a href="#fixed_2" class="md-nav__link">
10136
+ <span class="md-ellipsis">
10137
+ Fixed
10138
+ </span>
10139
+ </a>
10140
+
10141
+ </li>
10142
+
10143
+ <li class="md-nav__item">
10144
+ <a href="#documentation_2" class="md-nav__link">
10145
+ <span class="md-ellipsis">
10146
+ Documentation
10147
+ </span>
10148
+ </a>
10149
+
10150
+ </li>
10151
+
10152
+ <li class="md-nav__item">
10153
+ <a href="#housekeeping_2" class="md-nav__link">
9878
10154
  <span class="md-ellipsis">
9879
10155
  Housekeeping
9880
10156
  </span>
@@ -9898,7 +10174,7 @@
9898
10174
  <ul class="md-nav__list">
9899
10175
 
9900
10176
  <li class="md-nav__item">
9901
- <a href="#added_2" class="md-nav__link">
10177
+ <a href="#added_4" class="md-nav__link">
9902
10178
  <span class="md-ellipsis">
9903
10179
  Added
9904
10180
  </span>
@@ -9907,7 +10183,7 @@
9907
10183
  </li>
9908
10184
 
9909
10185
  <li class="md-nav__item">
9910
- <a href="#changed_2" class="md-nav__link">
10186
+ <a href="#changed_3" class="md-nav__link">
9911
10187
  <span class="md-ellipsis">
9912
10188
  Changed
9913
10189
  </span>
@@ -9916,7 +10192,7 @@
9916
10192
  </li>
9917
10193
 
9918
10194
  <li class="md-nav__item">
9919
- <a href="#fixed_1" class="md-nav__link">
10195
+ <a href="#fixed_3" class="md-nav__link">
9920
10196
  <span class="md-ellipsis">
9921
10197
  Fixed
9922
10198
  </span>
@@ -9925,7 +10201,7 @@
9925
10201
  </li>
9926
10202
 
9927
10203
  <li class="md-nav__item">
9928
- <a href="#dependencies_1" class="md-nav__link">
10204
+ <a href="#dependencies_3" class="md-nav__link">
9929
10205
  <span class="md-ellipsis">
9930
10206
  Dependencies
9931
10207
  </span>
@@ -9934,7 +10210,7 @@
9934
10210
  </li>
9935
10211
 
9936
10212
  <li class="md-nav__item">
9937
- <a href="#housekeeping_1" class="md-nav__link">
10213
+ <a href="#housekeeping_3" class="md-nav__link">
9938
10214
  <span class="md-ellipsis">
9939
10215
  Housekeeping
9940
10216
  </span>
@@ -9958,7 +10234,7 @@
9958
10234
  <ul class="md-nav__list">
9959
10235
 
9960
10236
  <li class="md-nav__item">
9961
- <a href="#added_3" class="md-nav__link">
10237
+ <a href="#added_5" class="md-nav__link">
9962
10238
  <span class="md-ellipsis">
9963
10239
  Added
9964
10240
  </span>
@@ -9967,7 +10243,7 @@
9967
10243
  </li>
9968
10244
 
9969
10245
  <li class="md-nav__item">
9970
- <a href="#changed_3" class="md-nav__link">
10246
+ <a href="#changed_4" class="md-nav__link">
9971
10247
  <span class="md-ellipsis">
9972
10248
  Changed
9973
10249
  </span>
@@ -9976,7 +10252,7 @@
9976
10252
  </li>
9977
10253
 
9978
10254
  <li class="md-nav__item">
9979
- <a href="#fixed_2" class="md-nav__link">
10255
+ <a href="#fixed_4" class="md-nav__link">
9980
10256
  <span class="md-ellipsis">
9981
10257
  Fixed
9982
10258
  </span>
@@ -9985,7 +10261,7 @@
9985
10261
  </li>
9986
10262
 
9987
10263
  <li class="md-nav__item">
9988
- <a href="#dependencies_2" class="md-nav__link">
10264
+ <a href="#dependencies_4" class="md-nav__link">
9989
10265
  <span class="md-ellipsis">
9990
10266
  Dependencies
9991
10267
  </span>
@@ -9994,7 +10270,7 @@
9994
10270
  </li>
9995
10271
 
9996
10272
  <li class="md-nav__item">
9997
- <a href="#housekeeping_2" class="md-nav__link">
10273
+ <a href="#housekeeping_4" class="md-nav__link">
9998
10274
  <span class="md-ellipsis">
9999
10275
  Housekeeping
10000
10276
  </span>
@@ -10018,7 +10294,7 @@
10018
10294
  <ul class="md-nav__list">
10019
10295
 
10020
10296
  <li class="md-nav__item">
10021
- <a href="#fixed_3" class="md-nav__link">
10297
+ <a href="#fixed_5" class="md-nav__link">
10022
10298
  <span class="md-ellipsis">
10023
10299
  Fixed
10024
10300
  </span>
@@ -10042,7 +10318,7 @@
10042
10318
  <ul class="md-nav__list">
10043
10319
 
10044
10320
  <li class="md-nav__item">
10045
- <a href="#added_4" class="md-nav__link">
10321
+ <a href="#added_6" class="md-nav__link">
10046
10322
  <span class="md-ellipsis">
10047
10323
  Added
10048
10324
  </span>
@@ -10051,7 +10327,7 @@
10051
10327
  </li>
10052
10328
 
10053
10329
  <li class="md-nav__item">
10054
- <a href="#changed_4" class="md-nav__link">
10330
+ <a href="#changed_5" class="md-nav__link">
10055
10331
  <span class="md-ellipsis">
10056
10332
  Changed
10057
10333
  </span>
@@ -10060,7 +10336,7 @@
10060
10336
  </li>
10061
10337
 
10062
10338
  <li class="md-nav__item">
10063
- <a href="#fixed_4" class="md-nav__link">
10339
+ <a href="#fixed_6" class="md-nav__link">
10064
10340
  <span class="md-ellipsis">
10065
10341
  Fixed
10066
10342
  </span>
@@ -10069,7 +10345,7 @@
10069
10345
  </li>
10070
10346
 
10071
10347
  <li class="md-nav__item">
10072
- <a href="#dependencies_3" class="md-nav__link">
10348
+ <a href="#dependencies_5" class="md-nav__link">
10073
10349
  <span class="md-ellipsis">
10074
10350
  Dependencies
10075
10351
  </span>
@@ -10078,7 +10354,7 @@
10078
10354
  </li>
10079
10355
 
10080
10356
  <li class="md-nav__item">
10081
- <a href="#housekeeping_3" class="md-nav__link">
10357
+ <a href="#housekeeping_5" class="md-nav__link">
10082
10358
  <span class="md-ellipsis">
10083
10359
  Housekeeping
10084
10360
  </span>
@@ -10102,7 +10378,7 @@
10102
10378
  <ul class="md-nav__list">
10103
10379
 
10104
10380
  <li class="md-nav__item">
10105
- <a href="#added_5" class="md-nav__link">
10381
+ <a href="#added_7" class="md-nav__link">
10106
10382
  <span class="md-ellipsis">
10107
10383
  Added
10108
10384
  </span>
@@ -10111,7 +10387,7 @@
10111
10387
  </li>
10112
10388
 
10113
10389
  <li class="md-nav__item">
10114
- <a href="#fixed_5" class="md-nav__link">
10390
+ <a href="#fixed_7" class="md-nav__link">
10115
10391
  <span class="md-ellipsis">
10116
10392
  Fixed
10117
10393
  </span>
@@ -10120,7 +10396,7 @@
10120
10396
  </li>
10121
10397
 
10122
10398
  <li class="md-nav__item">
10123
- <a href="#documentation_1" class="md-nav__link">
10399
+ <a href="#documentation_3" class="md-nav__link">
10124
10400
  <span class="md-ellipsis">
10125
10401
  Documentation
10126
10402
  </span>
@@ -10129,7 +10405,7 @@
10129
10405
  </li>
10130
10406
 
10131
10407
  <li class="md-nav__item">
10132
- <a href="#housekeeping_4" class="md-nav__link">
10408
+ <a href="#housekeeping_6" class="md-nav__link">
10133
10409
  <span class="md-ellipsis">
10134
10410
  Housekeeping
10135
10411
  </span>
@@ -10153,7 +10429,7 @@
10153
10429
  <ul class="md-nav__list">
10154
10430
 
10155
10431
  <li class="md-nav__item">
10156
- <a href="#added_6" class="md-nav__link">
10432
+ <a href="#added_8" class="md-nav__link">
10157
10433
  <span class="md-ellipsis">
10158
10434
  Added
10159
10435
  </span>
@@ -10162,7 +10438,7 @@
10162
10438
  </li>
10163
10439
 
10164
10440
  <li class="md-nav__item">
10165
- <a href="#changed_5" class="md-nav__link">
10441
+ <a href="#changed_6" class="md-nav__link">
10166
10442
  <span class="md-ellipsis">
10167
10443
  Changed
10168
10444
  </span>
@@ -10171,7 +10447,7 @@
10171
10447
  </li>
10172
10448
 
10173
10449
  <li class="md-nav__item">
10174
- <a href="#fixed_6" class="md-nav__link">
10450
+ <a href="#fixed_8" class="md-nav__link">
10175
10451
  <span class="md-ellipsis">
10176
10452
  Fixed
10177
10453
  </span>
@@ -10180,7 +10456,7 @@
10180
10456
  </li>
10181
10457
 
10182
10458
  <li class="md-nav__item">
10183
- <a href="#dependencies_4" class="md-nav__link">
10459
+ <a href="#dependencies_6" class="md-nav__link">
10184
10460
  <span class="md-ellipsis">
10185
10461
  Dependencies
10186
10462
  </span>
@@ -10189,7 +10465,7 @@
10189
10465
  </li>
10190
10466
 
10191
10467
  <li class="md-nav__item">
10192
- <a href="#documentation_2" class="md-nav__link">
10468
+ <a href="#documentation_4" class="md-nav__link">
10193
10469
  <span class="md-ellipsis">
10194
10470
  Documentation
10195
10471
  </span>
@@ -10198,7 +10474,7 @@
10198
10474
  </li>
10199
10475
 
10200
10476
  <li class="md-nav__item">
10201
- <a href="#housekeeping_5" class="md-nav__link">
10477
+ <a href="#housekeeping_7" class="md-nav__link">
10202
10478
  <span class="md-ellipsis">
10203
10479
  Housekeeping
10204
10480
  </span>
@@ -10222,7 +10498,7 @@
10222
10498
  <ul class="md-nav__list">
10223
10499
 
10224
10500
  <li class="md-nav__item">
10225
- <a href="#added_7" class="md-nav__link">
10501
+ <a href="#added_9" class="md-nav__link">
10226
10502
  <span class="md-ellipsis">
10227
10503
  Added
10228
10504
  </span>
@@ -10231,7 +10507,7 @@
10231
10507
  </li>
10232
10508
 
10233
10509
  <li class="md-nav__item">
10234
- <a href="#changed_6" class="md-nav__link">
10510
+ <a href="#changed_7" class="md-nav__link">
10235
10511
  <span class="md-ellipsis">
10236
10512
  Changed
10237
10513
  </span>
@@ -10240,7 +10516,7 @@
10240
10516
  </li>
10241
10517
 
10242
10518
  <li class="md-nav__item">
10243
- <a href="#fixed_7" class="md-nav__link">
10519
+ <a href="#fixed_9" class="md-nav__link">
10244
10520
  <span class="md-ellipsis">
10245
10521
  Fixed
10246
10522
  </span>
@@ -10249,7 +10525,7 @@
10249
10525
  </li>
10250
10526
 
10251
10527
  <li class="md-nav__item">
10252
- <a href="#documentation_3" class="md-nav__link">
10528
+ <a href="#documentation_5" class="md-nav__link">
10253
10529
  <span class="md-ellipsis">
10254
10530
  Documentation
10255
10531
  </span>
@@ -10258,7 +10534,7 @@
10258
10534
  </li>
10259
10535
 
10260
10536
  <li class="md-nav__item">
10261
- <a href="#housekeeping_6" class="md-nav__link">
10537
+ <a href="#housekeeping_8" class="md-nav__link">
10262
10538
  <span class="md-ellipsis">
10263
10539
  Housekeeping
10264
10540
  </span>
@@ -10282,7 +10558,7 @@
10282
10558
  <ul class="md-nav__list">
10283
10559
 
10284
10560
  <li class="md-nav__item">
10285
- <a href="#security" class="md-nav__link">
10561
+ <a href="#security_1" class="md-nav__link">
10286
10562
  <span class="md-ellipsis">
10287
10563
  Security
10288
10564
  </span>
@@ -10291,7 +10567,7 @@
10291
10567
  </li>
10292
10568
 
10293
10569
  <li class="md-nav__item">
10294
- <a href="#fixed_8" class="md-nav__link">
10570
+ <a href="#fixed_10" class="md-nav__link">
10295
10571
  <span class="md-ellipsis">
10296
10572
  Fixed
10297
10573
  </span>
@@ -10300,7 +10576,7 @@
10300
10576
  </li>
10301
10577
 
10302
10578
  <li class="md-nav__item">
10303
- <a href="#dependencies_5" class="md-nav__link">
10579
+ <a href="#dependencies_7" class="md-nav__link">
10304
10580
  <span class="md-ellipsis">
10305
10581
  Dependencies
10306
10582
  </span>
@@ -10309,7 +10585,7 @@
10309
10585
  </li>
10310
10586
 
10311
10587
  <li class="md-nav__item">
10312
- <a href="#housekeeping_7" class="md-nav__link">
10588
+ <a href="#housekeeping_9" class="md-nav__link">
10313
10589
  <span class="md-ellipsis">
10314
10590
  Housekeeping
10315
10591
  </span>
@@ -10333,7 +10609,7 @@
10333
10609
  <ul class="md-nav__list">
10334
10610
 
10335
10611
  <li class="md-nav__item">
10336
- <a href="#security_1" class="md-nav__link">
10612
+ <a href="#security_2" class="md-nav__link">
10337
10613
  <span class="md-ellipsis">
10338
10614
  Security
10339
10615
  </span>
@@ -10342,7 +10618,7 @@
10342
10618
  </li>
10343
10619
 
10344
10620
  <li class="md-nav__item">
10345
- <a href="#added_8" class="md-nav__link">
10621
+ <a href="#added_10" class="md-nav__link">
10346
10622
  <span class="md-ellipsis">
10347
10623
  Added
10348
10624
  </span>
@@ -10351,7 +10627,7 @@
10351
10627
  </li>
10352
10628
 
10353
10629
  <li class="md-nav__item">
10354
- <a href="#fixed_9" class="md-nav__link">
10630
+ <a href="#fixed_11" class="md-nav__link">
10355
10631
  <span class="md-ellipsis">
10356
10632
  Fixed
10357
10633
  </span>
@@ -10360,7 +10636,7 @@
10360
10636
  </li>
10361
10637
 
10362
10638
  <li class="md-nav__item">
10363
- <a href="#housekeeping_8" class="md-nav__link">
10639
+ <a href="#housekeeping_10" class="md-nav__link">
10364
10640
  <span class="md-ellipsis">
10365
10641
  Housekeeping
10366
10642
  </span>
@@ -10384,7 +10660,7 @@
10384
10660
  <ul class="md-nav__list">
10385
10661
 
10386
10662
  <li class="md-nav__item">
10387
- <a href="#added_9" class="md-nav__link">
10663
+ <a href="#added_11" class="md-nav__link">
10388
10664
  <span class="md-ellipsis">
10389
10665
  Added
10390
10666
  </span>
@@ -10393,7 +10669,7 @@
10393
10669
  </li>
10394
10670
 
10395
10671
  <li class="md-nav__item">
10396
- <a href="#changed_7" class="md-nav__link">
10672
+ <a href="#changed_8" class="md-nav__link">
10397
10673
  <span class="md-ellipsis">
10398
10674
  Changed
10399
10675
  </span>
@@ -10402,7 +10678,7 @@
10402
10678
  </li>
10403
10679
 
10404
10680
  <li class="md-nav__item">
10405
- <a href="#fixed_10" class="md-nav__link">
10681
+ <a href="#fixed_12" class="md-nav__link">
10406
10682
  <span class="md-ellipsis">
10407
10683
  Fixed
10408
10684
  </span>
@@ -10411,7 +10687,7 @@
10411
10687
  </li>
10412
10688
 
10413
10689
  <li class="md-nav__item">
10414
- <a href="#housekeeping_9" class="md-nav__link">
10690
+ <a href="#housekeeping_11" class="md-nav__link">
10415
10691
  <span class="md-ellipsis">
10416
10692
  Housekeeping
10417
10693
  </span>
@@ -10435,7 +10711,7 @@
10435
10711
  <ul class="md-nav__list">
10436
10712
 
10437
10713
  <li class="md-nav__item">
10438
- <a href="#security_2" class="md-nav__link">
10714
+ <a href="#security_3" class="md-nav__link">
10439
10715
  <span class="md-ellipsis">
10440
10716
  Security
10441
10717
  </span>
@@ -10444,7 +10720,7 @@
10444
10720
  </li>
10445
10721
 
10446
10722
  <li class="md-nav__item">
10447
- <a href="#added_10" class="md-nav__link">
10723
+ <a href="#added_12" class="md-nav__link">
10448
10724
  <span class="md-ellipsis">
10449
10725
  Added
10450
10726
  </span>
@@ -10453,7 +10729,7 @@
10453
10729
  </li>
10454
10730
 
10455
10731
  <li class="md-nav__item">
10456
- <a href="#changed_8" class="md-nav__link">
10732
+ <a href="#changed_9" class="md-nav__link">
10457
10733
  <span class="md-ellipsis">
10458
10734
  Changed
10459
10735
  </span>
@@ -10471,7 +10747,7 @@
10471
10747
  </li>
10472
10748
 
10473
10749
  <li class="md-nav__item">
10474
- <a href="#fixed_11" class="md-nav__link">
10750
+ <a href="#fixed_13" class="md-nav__link">
10475
10751
  <span class="md-ellipsis">
10476
10752
  Fixed
10477
10753
  </span>
@@ -10480,7 +10756,7 @@
10480
10756
  </li>
10481
10757
 
10482
10758
  <li class="md-nav__item">
10483
- <a href="#documentation_4" class="md-nav__link">
10759
+ <a href="#documentation_6" class="md-nav__link">
10484
10760
  <span class="md-ellipsis">
10485
10761
  Documentation
10486
10762
  </span>
@@ -10489,7 +10765,7 @@
10489
10765
  </li>
10490
10766
 
10491
10767
  <li class="md-nav__item">
10492
- <a href="#housekeeping_10" class="md-nav__link">
10768
+ <a href="#housekeeping_12" class="md-nav__link">
10493
10769
  <span class="md-ellipsis">
10494
10770
  Housekeeping
10495
10771
  </span>
@@ -10513,7 +10789,7 @@
10513
10789
  <ul class="md-nav__list">
10514
10790
 
10515
10791
  <li class="md-nav__item">
10516
- <a href="#security_3" class="md-nav__link">
10792
+ <a href="#security_4" class="md-nav__link">
10517
10793
  <span class="md-ellipsis">
10518
10794
  Security
10519
10795
  </span>
@@ -10522,7 +10798,7 @@
10522
10798
  </li>
10523
10799
 
10524
10800
  <li class="md-nav__item">
10525
- <a href="#added_11" class="md-nav__link">
10801
+ <a href="#added_13" class="md-nav__link">
10526
10802
  <span class="md-ellipsis">
10527
10803
  Added
10528
10804
  </span>
@@ -10531,7 +10807,7 @@
10531
10807
  </li>
10532
10808
 
10533
10809
  <li class="md-nav__item">
10534
- <a href="#changed_9" class="md-nav__link">
10810
+ <a href="#changed_10" class="md-nav__link">
10535
10811
  <span class="md-ellipsis">
10536
10812
  Changed
10537
10813
  </span>
@@ -10558,7 +10834,7 @@
10558
10834
  </li>
10559
10835
 
10560
10836
  <li class="md-nav__item">
10561
- <a href="#fixed_12" class="md-nav__link">
10837
+ <a href="#fixed_14" class="md-nav__link">
10562
10838
  <span class="md-ellipsis">
10563
10839
  Fixed
10564
10840
  </span>
@@ -10567,7 +10843,7 @@
10567
10843
  </li>
10568
10844
 
10569
10845
  <li class="md-nav__item">
10570
- <a href="#dependencies_6" class="md-nav__link">
10846
+ <a href="#dependencies_8" class="md-nav__link">
10571
10847
  <span class="md-ellipsis">
10572
10848
  Dependencies
10573
10849
  </span>
@@ -10576,7 +10852,7 @@
10576
10852
  </li>
10577
10853
 
10578
10854
  <li class="md-nav__item">
10579
- <a href="#documentation_5" class="md-nav__link">
10855
+ <a href="#documentation_7" class="md-nav__link">
10580
10856
  <span class="md-ellipsis">
10581
10857
  Documentation
10582
10858
  </span>
@@ -10585,7 +10861,7 @@
10585
10861
  </li>
10586
10862
 
10587
10863
  <li class="md-nav__item">
10588
- <a href="#housekeeping_11" class="md-nav__link">
10864
+ <a href="#housekeeping_13" class="md-nav__link">
10589
10865
  <span class="md-ellipsis">
10590
10866
  Housekeeping
10591
10867
  </span>
@@ -10708,19 +10984,99 @@
10708
10984
  <h4 id="updated-to-django-42-3581">Updated to Django 4.2 (<a href="https://github.com/nautobot/nautobot/issues/3581">#3581</a>)<a class="headerlink" href="#updated-to-django-42-3581" title="Permanent link">&para;</a></h4>
10709
10985
  <p>As Django 3.2 has reached end-of-life, Nautobot 2.3 requires Django 4.2, the next long-term-support (LTS) version of Django. There are a number of changes in Django itself as a result of this upgrade; Nautobot App maintainers are urged to review the Django release-notes (<a href="https://docs.djangoproject.com/en/4.2/releases/4.0/">4.0</a>, <a href="https://docs.djangoproject.com/en/4.2/releases/4.1/">4.1</a>, <a href="https://docs.djangoproject.com/en/4.2/releases/4.2/">4.2</a>), especially the relevant "Backwards incompatible changes" sections, to proactively identify any impact to their Apps.</p>
10710
10986
  <!-- towncrier release notes start -->
10711
- <h2 id="v2311-2024-11-12">v2.3.11 (2024-11-12)<a class="headerlink" href="#v2311-2024-11-12" title="Permanent link">&para;</a></h2>
10987
+ <h2 id="v2313-2024-12-10">v2.3.13 (2024-12-10)<a class="headerlink" href="#v2313-2024-12-10" title="Permanent link">&para;</a></h2>
10988
+ <h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">&para;</a></h3>
10989
+ <ul>
10990
+ <li><a href="https://github.com/nautobot/nautobot/issues/6615">#6615</a> - Updated <code>Django</code> to <code>~4.2.17</code> due to <code>CVE-2024-53907</code> and <code>CVE-2024-53908</code>.</li>
10991
+ </ul>
10712
10992
  <h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">&para;</a></h3>
10713
10993
  <ul>
10994
+ <li><a href="https://github.com/nautobot/nautobot/issues/4817">#4817</a> - Added <code>Cluster</code> field on DeviceBulkEditForm.</li>
10995
+ <li><a href="https://github.com/nautobot/nautobot/issues/5333">#5333</a> - Added <code>Comments</code> field on DeviceBulkEditForm.</li>
10996
+ <li><a href="https://github.com/nautobot/nautobot/issues/6498">#6498</a> - Added support for an additional <code>suffix</code> when utilizing TableExtension to support tables like IPAddressDetailTable.</li>
10997
+ <li><a href="https://github.com/nautobot/nautobot/issues/6586">#6586</a> - Added description and weight on RoleBulkEditForm.</li>
10998
+ <li><a href="https://github.com/nautobot/nautobot/issues/6605">#6605</a> - Added <code>BaseTable</code> support for a <code>data_transform_callback</code> function that can be used to modify the table data after performing automatic QuerySet optimizations. (Several IPAM tables now use this functionality).</li>
10999
+ <li><a href="https://github.com/nautobot/nautobot/issues/6605">#6605</a> - Enhanced <code>LinkedCountColumn</code> to support a <code>distinct</code> parameter to handle cases where counts may otherwise be incorrect.</li>
11000
+ <li><a href="https://github.com/nautobot/nautobot/issues/6605">#6605</a> - Added <code>ip_addresses</code> and <code>has_ip_addresses</code> filter support to Device, Interface, and VirtualMachine FilterSets.</li>
11001
+ <li><a href="https://github.com/nautobot/nautobot/issues/6613">#6613</a> - Enhanced Prefix detail view "Child Prefixes" table to render associated Locations more intelligently.</li>
11002
+ <li><a href="https://github.com/nautobot/nautobot/issues/6614">#6614</a> - Enhanced IP Address tables to show the name of the associated Interface or VM Interface if only a single such association is present for a given IP Address.</li>
11003
+ </ul>
11004
+ <h3 id="changed_1">Changed<a class="headerlink" href="#changed_1" title="Permanent link">&para;</a></h3>
11005
+ <ul>
11006
+ <li><a href="https://github.com/nautobot/nautobot/issues/6166">#6166</a> - Enhanced the REST API to generally make it possible to create objects with known ids on request.</li>
11007
+ </ul>
11008
+ <h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">&para;</a></h3>
11009
+ <ul>
11010
+ <li><a href="https://github.com/nautobot/nautobot/issues/3124">#3124</a> - Fixed inability of ImageAttachment and DeviceType API endpoints to accept <code>multipart/form-data</code> file uploads.</li>
11011
+ <li><a href="https://github.com/nautobot/nautobot/issues/5166">#5166</a> - Fixed a <code>ProgrammingError</code> when applying permissions containing network-address-based constraints.</li>
11012
+ <li><a href="https://github.com/nautobot/nautobot/issues/6466">#6466</a> - Fixed <code>table_config</code> field not showing up correctly in the Saved View modal.</li>
11013
+ <li><a href="https://github.com/nautobot/nautobot/issues/6498">#6498</a> - Fixed error when using TableExtension when the table is missing Meta.default_columns.</li>
11014
+ <li><a href="https://github.com/nautobot/nautobot/issues/6605">#6605</a> - Improved rendering performance of the IPAddress list view in cases where the <code>Interfaces</code>, <code>Devices</code>, <code>VM Interfaces</code>, <code>Virtual Machines</code>, and/or <code>Assigned</code> columns are not shown.</li>
11015
+ <li><a href="https://github.com/nautobot/nautobot/issues/6605">#6605</a> - Improved performance of <code>TreeModel.display</code> calculation by making better use of the cache.</li>
11016
+ <li><a href="https://github.com/nautobot/nautobot/issues/6609">#6609</a> - Fixed unnecessary call to the database when logging from a Job with the parameter <code>extra={"skip_db_logging": True}</code>.</li>
11017
+ <li><a href="https://github.com/nautobot/nautobot/issues/6624">#6624</a> - Fixed issue with <code>group_sync.py</code> where it was accessing the settings using environment variable name vs the actual settings name.</li>
11018
+ <li><a href="https://github.com/nautobot/nautobot/issues/6624">#6624</a> - Fixed the <code>SOCIAL_AUTH_PIPELINE</code> settings to include the entire path of the <code>group_sync</code> function.</li>
11019
+ </ul>
11020
+ <h3 id="dependencies_1">Dependencies<a class="headerlink" href="#dependencies_1" title="Permanent link">&para;</a></h3>
11021
+ <ul>
11022
+ <li><a href="https://github.com/nautobot/nautobot/issues/6615">#6615</a> - Updated <code>nh3</code> to <code>~0.2.19</code>.</li>
11023
+ </ul>
11024
+ <h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">&para;</a></h3>
11025
+ <ul>
11026
+ <li><a href="https://github.com/nautobot/nautobot/issues/6622">#6622</a> - Fixed AzureAD documentation for custom_module logging example.</li>
11027
+ <li><a href="https://github.com/nautobot/nautobot/issues/6636">#6636</a> - Fixed group_sync path in the SSO documentation.</li>
11028
+ </ul>
11029
+ <h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">&para;</a></h3>
11030
+ <ul>
11031
+ <li><a href="https://github.com/nautobot/nautobot/issues/6615">#6615</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.47</code>.</li>
11032
+ </ul>
11033
+ <h2 id="v2312-2024-11-25">v2.3.12 (2024-11-25)<a class="headerlink" href="#v2312-2024-11-25" title="Permanent link">&para;</a></h2>
11034
+ <h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">&para;</a></h3>
11035
+ <ul>
11036
+ <li><a href="https://github.com/nautobot/nautobot/issues/6532">#6532</a> - Added a keyboard shortcut (⌘+enter or ctrl+enter) to submit forms when typing in a textarea.</li>
11037
+ <li><a href="https://github.com/nautobot/nautobot/issues/6543">#6543</a> - Defined a generic SSO group authentication module that can be shared by any OAuth2/OIDC backend.</li>
11038
+ <li><a href="https://github.com/nautobot/nautobot/issues/6550">#6550</a> - Added OSFP-XD (800GE and 1600GE) and OSFP1600 interface types.</li>
11039
+ </ul>
11040
+ <h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">&para;</a></h3>
11041
+ <ul>
11042
+ <li><a href="https://github.com/nautobot/nautobot/issues/6242">#6242</a> - Fixed "copy" button on Device tabbed views to now only copy the device name.</li>
11043
+ <li><a href="https://github.com/nautobot/nautobot/issues/6478">#6478</a> - Fixed inconsistent rendering of the Role field.</li>
11044
+ <li><a href="https://github.com/nautobot/nautobot/issues/6509">#6509</a> - Disallowed association of <code>ObjectMetadata</code> as metadata to other <code>ObjectMetadata</code> records.</li>
11045
+ <li><a href="https://github.com/nautobot/nautobot/issues/6509">#6509</a> - Removed unused object-detail view for <code>ObjectMetadata</code> records.</li>
11046
+ <li><a href="https://github.com/nautobot/nautobot/issues/6519">#6519</a> - Fixed <code>vrf</code> field options not loading in VMInterfaceBulkEditForm, VMInterfaceForm, and VMInterfaceCreateForm.</li>
11047
+ <li><a href="https://github.com/nautobot/nautobot/issues/6519">#6519</a> - Added missing <code>VRF</code> entry in VMInterface detail view.</li>
11048
+ <li><a href="https://github.com/nautobot/nautobot/issues/6533">#6533</a> - Fixed an issue where the string representation of the Note model would throw an error if accessed before saving it to the database.</li>
11049
+ <li><a href="https://github.com/nautobot/nautobot/issues/6547">#6547</a> - Fixed incorrect VRF filter specified on VRF column on Prefix Table.</li>
11050
+ <li><a href="https://github.com/nautobot/nautobot/issues/6564">#6564</a> - Fixed an <code>AttributeError</code> raised when an App overrides a NautobotUIViewSet view.</li>
11051
+ </ul>
11052
+ <h3 id="dependencies_2">Dependencies<a class="headerlink" href="#dependencies_2" title="Permanent link">&para;</a></h3>
11053
+ <ul>
11054
+ <li><a href="https://github.com/nautobot/nautobot/issues/6459">#6459</a> - Updated <code>mysqlclient</code> dependency to <code>~2.2.6</code>.</li>
11055
+ </ul>
11056
+ <h3 id="documentation_1">Documentation<a class="headerlink" href="#documentation_1" title="Permanent link">&para;</a></h3>
11057
+ <ul>
11058
+ <li><a href="https://github.com/nautobot/nautobot/issues/6516">#6516</a> - Updated release notes to make it clearer which are model changes.</li>
11059
+ <li><a href="https://github.com/nautobot/nautobot/issues/6524">#6524</a> - Updated AzureAD authentication documentation.</li>
11060
+ <li><a href="https://github.com/nautobot/nautobot/issues/6567">#6567</a> - Fixed incorrect example in documentation on using test factories.</li>
11061
+ </ul>
11062
+ <h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">&para;</a></h3>
11063
+ <ul>
11064
+ <li><a href="https://github.com/nautobot/nautobot/issues/6459">#6459</a> - Updated documentation dependencies <code>mkdocs-redirects</code> to <code>1.2.2</code> and <code>mkdocs-material</code> to <code>9.5.46</code>.</li>
11065
+ <li><a href="https://github.com/nautobot/nautobot/issues/6500">#6500</a> - Added support for <code>invoke showmigrations</code> command.</li>
11066
+ </ul>
11067
+ <h2 id="v2311-2024-11-12">v2.3.11 (2024-11-12)<a class="headerlink" href="#v2311-2024-11-12" title="Permanent link">&para;</a></h2>
11068
+ <h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">&para;</a></h3>
11069
+ <ul>
10714
11070
  <li><a href="https://github.com/nautobot/nautobot/issues/6231">#6231</a> - Added <code>nautobot.apps.utils.get_related_field_for_models()</code> helper function.</li>
10715
11071
  <li><a href="https://github.com/nautobot/nautobot/issues/6231">#6231</a> - Added optional <code>lookup</code> parameter to <code>LinkedCountColumn</code>.</li>
10716
11072
  </ul>
10717
- <h3 id="changed_1">Changed<a class="headerlink" href="#changed_1" title="Permanent link">&para;</a></h3>
11073
+ <h3 id="changed_2">Changed<a class="headerlink" href="#changed_2" title="Permanent link">&para;</a></h3>
10718
11074
  <ul>
10719
11075
  <li><a href="https://github.com/nautobot/nautobot/issues/5321">#5321</a> - For bulk delete all objects view, only show the confirmation dialog without the table that shows the objects that would be deleted.</li>
10720
11076
  <li><a href="https://github.com/nautobot/nautobot/issues/6231">#6231</a> - Changed most related-object-count table columns (e.g. the "Locations" column in a Prefix table) to, if only a single related record is present (e.g. a single Location is associated with a given Prefix), display that related record directly instead of just displaying <code>1</code>.</li>
10721
11077
  <li><a href="https://github.com/nautobot/nautobot/issues/6465">#6465</a> - For bulk edit all objects view, skip rendering the table of related objects in the confirmation page.</li>
10722
11078
  </ul>
10723
- <h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">&para;</a></h3>
11079
+ <h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">&para;</a></h3>
10724
11080
  <ul>
10725
11081
  <li><a href="https://github.com/nautobot/nautobot/issues/6414">#6414</a> - Fixed layout bug in browsable REST API.</li>
10726
11082
  <li><a href="https://github.com/nautobot/nautobot/issues/6442">#6442</a> - Fixed an issue where GitLab CI pipelines fail using all versions of official Docker images.</li>
@@ -10731,11 +11087,11 @@
10731
11087
  <li><a href="https://github.com/nautobot/nautobot/issues/6491">#6491</a> - Added missing <code>vrf</code> field to <code>VMInterfaceForm</code> and <code>VMInterfaceCreateForm</code>.</li>
10732
11088
  <li><a href="https://github.com/nautobot/nautobot/issues/6492">#6492</a> - Fixed <code>vlan_group</code> field is not filtered by <code>locations</code> field input on VLANForm.</li>
10733
11089
  </ul>
10734
- <h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">&para;</a></h3>
11090
+ <h3 id="documentation_2">Documentation<a class="headerlink" href="#documentation_2" title="Permanent link">&para;</a></h3>
10735
11091
  <ul>
10736
11092
  <li><a href="https://github.com/nautobot/nautobot/issues/6485">#6485</a> - Added additional clarification for enabling request profiling via user profile.</li>
10737
11093
  </ul>
10738
- <h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">&para;</a></h3>
11094
+ <h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">&para;</a></h3>
10739
11095
  <ul>
10740
11096
  <li><a href="https://github.com/nautobot/nautobot/issues/6449">#6449</a> - Added an integration test to create a Manufacturer, DeviceType, LocationType, Location, Role and Device to test the create forms and select2 api form fields are working correctly.</li>
10741
11097
  <li><a href="https://github.com/nautobot/nautobot/issues/6449">#6449</a> - Fixed incorrect assertion in core navbar integration tests.</li>
@@ -10744,44 +11100,44 @@
10744
11100
  <li><a href="https://github.com/nautobot/nautobot/issues/6497">#6497</a> - Added support for <code>--no-reusedb</code> option to <code>invoke integration-test</code> task.</li>
10745
11101
  </ul>
10746
11102
  <h2 id="v2310-2024-10-29">v2.3.10 (2024-10-29)<a class="headerlink" href="#v2310-2024-10-29" title="Permanent link">&para;</a></h2>
10747
- <h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">&para;</a></h3>
11103
+ <h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">&para;</a></h3>
10748
11104
  <ul>
10749
11105
  <li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Added cacheable <code>CustomField.objects.keys_for_model(model)</code> API.</li>
10750
11106
  <li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Added queryset caching in <code>web_request_context</code> for more efficient JobHook and Webhook dispatching on bulk requests.</li>
10751
11107
  <li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Added logging to JobResults for CustomField provisioning background tasks.</li>
10752
11108
  <li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Added more efficient database calls for most cases of bulk-provisioning CustomField data on model objects.</li>
10753
11109
  </ul>
10754
- <h3 id="changed_2">Changed<a class="headerlink" href="#changed_2" title="Permanent link">&para;</a></h3>
11110
+ <h3 id="changed_3">Changed<a class="headerlink" href="#changed_3" title="Permanent link">&para;</a></h3>
10755
11111
  <ul>
10756
11112
  <li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Increased soft/hard time limits on CustomField provisioning background tasks to 1800 and 2000 seconds respectively.</li>
10757
11113
  </ul>
10758
- <h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">&para;</a></h3>
11114
+ <h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">&para;</a></h3>
10759
11115
  <ul>
10760
11116
  <li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Fixed long-running-at-scale transaction lock on records while adding/removing a CustomField definition.</li>
10761
11117
  <li><a href="https://github.com/nautobot/nautobot/issues/6441">#6441</a> - Fixed a regression in 2.3.9 that broke the rendering of the Device create/edit form.</li>
10762
11118
  </ul>
10763
- <h3 id="dependencies_1">Dependencies<a class="headerlink" href="#dependencies_1" title="Permanent link">&para;</a></h3>
11119
+ <h3 id="dependencies_3">Dependencies<a class="headerlink" href="#dependencies_3" title="Permanent link">&para;</a></h3>
10764
11120
  <ul>
10765
11121
  <li><a href="https://github.com/nautobot/nautobot/issues/6423">#6423</a> - Updated <code>mysqlclient</code> to <code>~2.2.5</code>.</li>
10766
11122
  </ul>
10767
- <h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">&para;</a></h3>
11123
+ <h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">&para;</a></h3>
10768
11124
  <ul>
10769
11125
  <li><a href="https://github.com/nautobot/nautobot/issues/6423">#6423</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.42</code>.</li>
10770
11126
  </ul>
10771
11127
  <h2 id="v239-2024-10-28">v2.3.9 (2024-10-28)<a class="headerlink" href="#v239-2024-10-28" title="Permanent link">&para;</a></h2>
10772
- <h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">&para;</a></h3>
11128
+ <h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">&para;</a></h3>
10773
11129
  <ul>
10774
11130
  <li><a href="https://github.com/nautobot/nautobot/issues/4899">#4899</a> - Added TableExtension class to allow app developers to add columns to core tables.</li>
10775
11131
  <li><a href="https://github.com/nautobot/nautobot/issues/6336">#6336</a> - Added logic to ModuleBay model to ensure that if the <code>position</code> field is empty, its value will be automatically populated from the <code>name</code> of the Module Bay instance.</li>
10776
11132
  <li><a href="https://github.com/nautobot/nautobot/issues/6372">#6372</a> - Added environment variable support for setting <code>CSRF_TRUSTED_ORIGINS</code>.</li>
10777
11133
  </ul>
10778
- <h3 id="changed_3">Changed<a class="headerlink" href="#changed_3" title="Permanent link">&para;</a></h3>
11134
+ <h3 id="changed_4">Changed<a class="headerlink" href="#changed_4" title="Permanent link">&para;</a></h3>
10779
11135
  <ul>
10780
11136
  <li><a href="https://github.com/nautobot/nautobot/issues/6336">#6336</a> - Enhanced <code>position</code> fields on ModuleBayCreate/UpdateForms to auto-populate their values from <code>name</code> fields.</li>
10781
11137
  <li><a href="https://github.com/nautobot/nautobot/issues/6386">#6386</a> - Changed <code>GitRepositorySync</code> system Job to run atomically (all-or-nothing), such that any failure in the resync will cause all associated database updates to be reverted.</li>
10782
11138
  <li><a href="https://github.com/nautobot/nautobot/issues/6386">#6386</a> - Changed behavior of change logging <code>web_request_context()</code> to only reload Job code when a relevant JobHook is found to apply to the change in question.</li>
10783
11139
  </ul>
10784
- <h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">&para;</a></h3>
11140
+ <h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">&para;</a></h3>
10785
11141
  <ul>
10786
11142
  <li><a href="https://github.com/nautobot/nautobot/issues/6297">#6297</a> - Fixed overly broad scope of the TreeModel <code>invalidate_max_depth_cache</code> signal so that it now correctly only fires for TreeModel instances rather than all models.</li>
10787
11143
  <li><a href="https://github.com/nautobot/nautobot/issues/6297">#6297</a> - Improved performance of DynamicGroup membership updates/recalculations when dealing with large numbers of member objects.</li>
@@ -10790,16 +11146,16 @@
10790
11146
  <li><a href="https://github.com/nautobot/nautobot/issues/6415">#6415</a> - Added missing column <code>software_version</code> to the Device Table in Device List View.</li>
10791
11147
  <li><a href="https://github.com/nautobot/nautobot/issues/6425">#6425</a> - Fixed bug in which ColoredLabelColumn() wasn't being applied to the `role' column on Device/VM interfaces.</li>
10792
11148
  </ul>
10793
- <h3 id="dependencies_2">Dependencies<a class="headerlink" href="#dependencies_2" title="Permanent link">&para;</a></h3>
11149
+ <h3 id="dependencies_4">Dependencies<a class="headerlink" href="#dependencies_4" title="Permanent link">&para;</a></h3>
10794
11150
  <ul>
10795
11151
  <li><a href="https://github.com/nautobot/nautobot/issues/6362">#6362</a> - Updated <code>psycopg2-binary</code> dependency to <code>~2.9.10</code>.</li>
10796
11152
  </ul>
10797
- <h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">&para;</a></h3>
11153
+ <h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">&para;</a></h3>
10798
11154
  <ul>
10799
11155
  <li><a href="https://github.com/nautobot/nautobot/issues/6362">#6362</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.41</code>.</li>
10800
11156
  </ul>
10801
11157
  <h2 id="v238-2024-10-18">v2.3.8 (2024-10-18)<a class="headerlink" href="#v238-2024-10-18" title="Permanent link">&para;</a></h2>
10802
- <h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">&para;</a></h3>
11158
+ <h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">&para;</a></h3>
10803
11159
  <ul>
10804
11160
  <li><a href="https://github.com/nautobot/nautobot/issues/5050">#5050</a> - Changed logic to permit VLANs assigned to a device's location's parent locations (including parents of parents, etc.) to be assigned to that device's interfaces.</li>
10805
11161
  <li><a href="https://github.com/nautobot/nautobot/issues/6297">#6297</a> - Fixed paginator widget to display the current selected <code>per_page</code> value even if it's not one of the <code>PER_PAGE_DEFAULTS</code> options.</li>
@@ -10808,27 +11164,27 @@
10808
11164
  <li><a href="https://github.com/nautobot/nautobot/issues/6385">#6385</a> - Restored <code>Prefix.get_child_ips()</code> API mistakenly removed from v2.3.5 through v2.3.7.</li>
10809
11165
  </ul>
10810
11166
  <h2 id="v237-2024-10-15">v2.3.7 (2024-10-15)<a class="headerlink" href="#v237-2024-10-15" title="Permanent link">&para;</a></h2>
10811
- <h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">&para;</a></h3>
11167
+ <h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">&para;</a></h3>
10812
11168
  <ul>
10813
11169
  <li><a href="https://github.com/nautobot/nautobot/issues/2784">#2784</a> - Added <code>assertBodyContains()</code> test helper API to <code>NautobotTestCaseMixin</code>.</li>
10814
11170
  </ul>
10815
- <h3 id="changed_4">Changed<a class="headerlink" href="#changed_4" title="Permanent link">&para;</a></h3>
11171
+ <h3 id="changed_5">Changed<a class="headerlink" href="#changed_5" title="Permanent link">&para;</a></h3>
10816
11172
  <ul>
10817
11173
  <li><a href="https://github.com/nautobot/nautobot/issues/6205">#6205</a> - Changed initial <code>Nautobot initialized!</code> message logged on startup to include the Nautobot version number.</li>
10818
11174
  <li><a href="https://github.com/nautobot/nautobot/issues/6350">#6350</a> - Changed the way that <code>ensure_git_repository</code> logs hashes to include the name of the repository.</li>
10819
11175
  </ul>
10820
- <h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">&para;</a></h3>
11176
+ <h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">&para;</a></h3>
10821
11177
  <ul>
10822
11178
  <li><a href="https://github.com/nautobot/nautobot/issues/6158">#6158</a> - Fixed a UI overflow issue with the Tenant Stats panel.</li>
10823
11179
  <li><a href="https://github.com/nautobot/nautobot/issues/6299">#6299</a> - Added retry logic and error handling for several cases where an intermittent Redis connection error could cause Celery to throw an exception.</li>
10824
11180
  <li><a href="https://github.com/nautobot/nautobot/issues/6318">#6318</a> - Fixed duplicate loading of <code>nautobot_config.py</code> during Nautobot startup.</li>
10825
11181
  <li><a href="https://github.com/nautobot/nautobot/issues/6329">#6329</a> - Added a data migration to fix DynamicGroup <code>group_type</code> values set incorrectly in upgrading to Nautobot 2.3.x.</li>
10826
11182
  </ul>
10827
- <h3 id="dependencies_3">Dependencies<a class="headerlink" href="#dependencies_3" title="Permanent link">&para;</a></h3>
11183
+ <h3 id="dependencies_5">Dependencies<a class="headerlink" href="#dependencies_5" title="Permanent link">&para;</a></h3>
10828
11184
  <ul>
10829
11185
  <li><a href="https://github.com/nautobot/nautobot/issues/6299">#6299</a> - Added a direct dependency on <code>kombu</code> to guarantee the presence of some essential fixes for this Celery dependency.</li>
10830
11186
  </ul>
10831
- <h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">&para;</a></h3>
11187
+ <h3 id="housekeeping_5">Housekeeping<a class="headerlink" href="#housekeeping_5" title="Permanent link">&para;</a></h3>
10832
11188
  <ul>
10833
11189
  <li><a href="https://github.com/nautobot/nautobot/issues/2784">#2784</a> - Added usage of <code>extract_page_body()</code> to many view-related test cases in order to make their failure output more readable.</li>
10834
11190
  <li><a href="https://github.com/nautobot/nautobot/issues/2784">#2784</a> - Modified many view-related test cases to use new <code>assertBodyContains()</code> test helper method for brevity.</li>
@@ -10839,36 +11195,36 @@
10839
11195
  <li><a href="https://github.com/nautobot/nautobot/issues/6318">#6318</a> - Added <code>--remove-orphans</code> to the docker compose commands for <code>invoke stop</code> and <code>invoke destroy</code>.</li>
10840
11196
  </ul>
10841
11197
  <h2 id="v236-2024-10-02">v2.3.6 (2024-10-02)<a class="headerlink" href="#v236-2024-10-02" title="Permanent link">&para;</a></h2>
10842
- <h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">&para;</a></h3>
11198
+ <h3 id="added_7">Added<a class="headerlink" href="#added_7" title="Permanent link">&para;</a></h3>
10843
11199
  <ul>
10844
11200
  <li><a href="https://github.com/nautobot/nautobot/issues/5903">#5903</a> - Added range field on <code>VLANGroup</code> model.</li>
10845
11201
  <li><a href="https://github.com/nautobot/nautobot/issues/5903">#5903</a> - Added tags on <code>VLANGroup</code> model.</li>
10846
11202
  </ul>
10847
- <h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">&para;</a></h3>
11203
+ <h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">&para;</a></h3>
10848
11204
  <ul>
10849
11205
  <li><a href="https://github.com/nautobot/nautobot/issues/6304">#6304</a> - Fixed an error during startup when an App included a REST API serializer inheriting from an unexpected base class.</li>
10850
11206
  <li><a href="https://github.com/nautobot/nautobot/issues/6304">#6304</a> - Fixed a warning during startup about the <code>extras.FileAttachment</code> model.</li>
10851
11207
  </ul>
10852
- <h3 id="documentation_1">Documentation<a class="headerlink" href="#documentation_1" title="Permanent link">&para;</a></h3>
11208
+ <h3 id="documentation_3">Documentation<a class="headerlink" href="#documentation_3" title="Permanent link">&para;</a></h3>
10853
11209
  <ul>
10854
11210
  <li><a href="https://github.com/nautobot/nautobot/issues/6304">#6304</a> - Added a note to the release overview section for app developers regarding opt-in/opt-out of model features.</li>
10855
11211
  <li><a href="https://github.com/nautobot/nautobot/issues/6304">#6304</a> - Updated app model developer documentation with more details about feature opt-out.</li>
10856
11212
  </ul>
10857
- <h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">&para;</a></h3>
11213
+ <h3 id="housekeeping_6">Housekeeping<a class="headerlink" href="#housekeeping_6" title="Permanent link">&para;</a></h3>
10858
11214
  <ul>
10859
11215
  <li><a href="https://github.com/nautobot/nautobot/issues/6308">#6308</a> - Increase the minimum number of content-types to three and capped the maximum to five for MetadataType instances created by MetadataTypeFactory.</li>
10860
11216
  </ul>
10861
11217
  <h2 id="v235-2024-09-30">v2.3.5 (2024-09-30)<a class="headerlink" href="#v235-2024-09-30" title="Permanent link">&para;</a></h2>
10862
- <h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">&para;</a></h3>
11218
+ <h3 id="added_8">Added<a class="headerlink" href="#added_8" title="Permanent link">&para;</a></h3>
10863
11219
  <ul>
10864
11220
  <li><a href="https://github.com/nautobot/nautobot/issues/6257">#6257</a> - Added <code>is_occupied</code> boolean filter to the Rack elevation API endpoint to allow filtering by occupied or unoccupied units.</li>
10865
11221
  <li><a href="https://github.com/nautobot/nautobot/issues/6289">#6289</a> - Added the add button to IPAM Services.</li>
10866
11222
  </ul>
10867
- <h3 id="changed_5">Changed<a class="headerlink" href="#changed_5" title="Permanent link">&para;</a></h3>
11223
+ <h3 id="changed_6">Changed<a class="headerlink" href="#changed_6" title="Permanent link">&para;</a></h3>
10868
11224
  <ul>
10869
11225
  <li><a href="https://github.com/nautobot/nautobot/issues/6057">#6057</a> - Enhanced job delete functions to prevent users from deleting system jobs from the UI and the API.</li>
10870
11226
  </ul>
10871
- <h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">&para;</a></h3>
11227
+ <h3 id="fixed_8">Fixed<a class="headerlink" href="#fixed_8" title="Permanent link">&para;</a></h3>
10872
11228
  <ul>
10873
11229
  <li><a href="https://github.com/nautobot/nautobot/issues/5802">#5802</a> - Override <code>get_required_permission()</code> in SavedViewUIViewSet to achieve the intended behavior.</li>
10874
11230
  <li><a href="https://github.com/nautobot/nautobot/issues/5924">#5924</a> - Fixed the redirect URL for the Device Bay Populate/Depopulate view to take the user back to the Device Bays tab on the Device page.</li>
@@ -10879,16 +11235,16 @@
10879
11235
  <li><a href="https://github.com/nautobot/nautobot/issues/6257">#6257</a> - Fixed the selection options for <code>position</code> on the device add/edit form to disable RUs that are currently occupied.</li>
10880
11236
  <li><a href="https://github.com/nautobot/nautobot/issues/6289">#6289</a> - Fixed lookup of IP Addresses in the Service form.</li>
10881
11237
  </ul>
10882
- <h3 id="dependencies_4">Dependencies<a class="headerlink" href="#dependencies_4" title="Permanent link">&para;</a></h3>
11238
+ <h3 id="dependencies_6">Dependencies<a class="headerlink" href="#dependencies_6" title="Permanent link">&para;</a></h3>
10883
11239
  <ul>
10884
11240
  <li><a href="https://github.com/nautobot/nautobot/issues/6247">#6247</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.35</code>.</li>
10885
11241
  <li><a href="https://github.com/nautobot/nautobot/issues/6287">#6287</a> - Replaced incorrect <code>django-structlog[all]</code> dependency with <code>django-structlog[celery]</code>.</li>
10886
11242
  </ul>
10887
- <h3 id="documentation_2">Documentation<a class="headerlink" href="#documentation_2" title="Permanent link">&para;</a></h3>
11243
+ <h3 id="documentation_4">Documentation<a class="headerlink" href="#documentation_4" title="Permanent link">&para;</a></h3>
10888
11244
  <ul>
10889
11245
  <li><a href="https://github.com/nautobot/nautobot/issues/6264">#6264</a> - Added to the core developer documentation a warning against the use of data factories within test case code.</li>
10890
11246
  </ul>
10891
- <h3 id="housekeeping_5">Housekeeping<a class="headerlink" href="#housekeeping_5" title="Permanent link">&para;</a></h3>
11247
+ <h3 id="housekeeping_7">Housekeeping<a class="headerlink" href="#housekeeping_7" title="Permanent link">&para;</a></h3>
10892
11248
  <ul>
10893
11249
  <li><a href="https://github.com/nautobot/nautobot/issues/5802">#5802</a> - Override <code>get_required_permission()</code> in SavedViewUIViewSet to achieve the intended behavior.</li>
10894
11250
  <li><a href="https://github.com/nautobot/nautobot/issues/6264">#6264</a> - Changed <code>invoke unittest</code> to default to <code>--parallel</code> even when a <code>--label</code> value is specified.</li>
@@ -10897,22 +11253,22 @@
10897
11253
  <li><a href="https://github.com/nautobot/nautobot/issues/6292">#6292</a> - Corrected logic of several VLAN test cases.</li>
10898
11254
  </ul>
10899
11255
  <h2 id="v234-2024-09-18">v2.3.4 (2024-09-18)<a class="headerlink" href="#v234-2024-09-18" title="Permanent link">&para;</a></h2>
10900
- <h3 id="added_7">Added<a class="headerlink" href="#added_7" title="Permanent link">&para;</a></h3>
11256
+ <h3 id="added_9">Added<a class="headerlink" href="#added_9" title="Permanent link">&para;</a></h3>
10901
11257
  <ul>
10902
11258
  <li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Added support for <code>NAUTOBOT_CACHES_TIMEOUT</code> environment variable.</li>
10903
11259
  <li><a href="https://github.com/nautobot/nautobot/issues/6207">#6207</a> - Added the ability to filter virtual machines by their <code>cluster</code> names or IDs.</li>
10904
11260
  </ul>
10905
- <h3 id="changed_6">Changed<a class="headerlink" href="#changed_6" title="Permanent link">&para;</a></h3>
11261
+ <h3 id="changed_7">Changed<a class="headerlink" href="#changed_7" title="Permanent link">&para;</a></h3>
10906
11262
  <ul>
10907
11263
  <li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Changed default cache timeout for Constance configuration from 1 day to 300 seconds to match other caches.</li>
10908
11264
  </ul>
10909
- <h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">&para;</a></h3>
11265
+ <h3 id="fixed_9">Fixed<a class="headerlink" href="#fixed_9" title="Permanent link">&para;</a></h3>
10910
11266
  <ul>
10911
11267
  <li><a href="https://github.com/nautobot/nautobot/issues/6207">#6207</a> - Fixed incorrect link in ClusterTable for device count column.</li>
10912
11268
  <li><a href="https://github.com/nautobot/nautobot/issues/6207">#6207</a> - Fixed incorrect link in PowerPanelTable for power feed count column.</li>
10913
11269
  <li><a href="https://github.com/nautobot/nautobot/issues/6230">#6230</a> - Fixed an issue with Celery Scheduler around datetime imports.</li>
10914
11270
  </ul>
10915
- <h3 id="documentation_3">Documentation<a class="headerlink" href="#documentation_3" title="Permanent link">&para;</a></h3>
11271
+ <h3 id="documentation_5">Documentation<a class="headerlink" href="#documentation_5" title="Permanent link">&para;</a></h3>
10916
11272
  <ul>
10917
11273
  <li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Consolidated "Required Settings" and "Optional Settings" docs into a single unified "Settings" document.</li>
10918
11274
  <li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Consolidated "Administration: Installation Extras" docs section into the "Administration: Guides" section.</li>
@@ -10920,7 +11276,7 @@
10920
11276
  <li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Added <code>environment_variables</code> keys to <code>settings.yaml</code> to more accurately document settings that are influenced by multiple environment variables together.</li>
10921
11277
  <li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Removed <code>is_required_setting</code> keys from <code>settings.yaml</code> as no longer relevant.</li>
10922
11278
  </ul>
10923
- <h3 id="housekeeping_6">Housekeeping<a class="headerlink" href="#housekeeping_6" title="Permanent link">&para;</a></h3>
11279
+ <h3 id="housekeeping_8">Housekeeping<a class="headerlink" href="#housekeeping_8" title="Permanent link">&para;</a></h3>
10924
11280
  <ul>
10925
11281
  <li><a href="https://github.com/nautobot/nautobot/issues/5859">#5859</a> - Changed <code>--cache-test-fixtures</code> and <code>--keepdb</code> flags from opt-in to opt-out for <code>invoke unittest</code> and <code>invoke integration-test</code> commands.</li>
10926
11282
  <li><a href="https://github.com/nautobot/nautobot/issues/5859">#5859</a> - Changed <code>invoke unittest</code> to automatically include <code>--parallel</code> flag when running the entire unit test suite.</li>
@@ -10928,22 +11284,22 @@
10928
11284
  <li><a href="https://github.com/nautobot/nautobot/issues/6227">#6227</a> - Fixed typo in app upstream testing workflow.</li>
10929
11285
  </ul>
10930
11286
  <h2 id="v233-2024-09-16">v2.3.3 (2024-09-16)<a class="headerlink" href="#v233-2024-09-16" title="Permanent link">&para;</a></h2>
10931
- <h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">&para;</a></h3>
11287
+ <h3 id="security_1">Security<a class="headerlink" href="#security_1" title="Permanent link">&para;</a></h3>
10932
11288
  <ul>
10933
11289
  <li><a href="https://github.com/nautobot/nautobot/issues/6212">#6212</a> - Updated <code>Django</code> to <code>~4.2.16</code> to address <code>CVE-2024-45230</code> and <code>CVE-2024-45231</code>.</li>
10934
11290
  </ul>
10935
- <h3 id="fixed_8">Fixed<a class="headerlink" href="#fixed_8" title="Permanent link">&para;</a></h3>
11291
+ <h3 id="fixed_10">Fixed<a class="headerlink" href="#fixed_10" title="Permanent link">&para;</a></h3>
10936
11292
  <ul>
10937
11293
  <li><a href="https://github.com/nautobot/nautobot/issues/6184">#6184</a> - Fixed an exception in <code>extras.models.groups._map_filter_fields</code> method when certain App <code>filter_extensions</code> were present.</li>
10938
11294
  <li><a href="https://github.com/nautobot/nautobot/issues/6190">#6190</a> - Added <code>display</code> property to Prefix to display its namespace along with the prefix to allow differentiation between prefixes in the UI.</li>
10939
11295
  <li><a href="https://github.com/nautobot/nautobot/issues/6197">#6197</a> - Fixed an exception in <code>core.utils.lookup.get_model_for_view_name</code> function when rendering certain App object list views.</li>
10940
11296
  <li><a href="https://github.com/nautobot/nautobot/issues/6203">#6203</a> - Fixed a performance regression observed when change logging resulted in a large number of ObjectChange records (such as in an SSOT Job).</li>
10941
11297
  </ul>
10942
- <h3 id="dependencies_5">Dependencies<a class="headerlink" href="#dependencies_5" title="Permanent link">&para;</a></h3>
11298
+ <h3 id="dependencies_7">Dependencies<a class="headerlink" href="#dependencies_7" title="Permanent link">&para;</a></h3>
10943
11299
  <ul>
10944
11300
  <li><a href="https://github.com/nautobot/nautobot/issues/6084">#6084</a> - Updated <code>pyuwsgi</code> to <code>~2.0.26</code> and <code>PyYAML</code> to <code>~6.0.2</code>.</li>
10945
11301
  </ul>
10946
- <h3 id="housekeeping_7">Housekeeping<a class="headerlink" href="#housekeeping_7" title="Permanent link">&para;</a></h3>
11302
+ <h3 id="housekeeping_9">Housekeeping<a class="headerlink" href="#housekeeping_9" title="Permanent link">&para;</a></h3>
10947
11303
  <ul>
10948
11304
  <li><a href="https://github.com/nautobot/nautobot/issues/5376">#5376</a> - Disabled <code>coverage</code> during initial test database setup to improve test performance.</li>
10949
11305
  <li><a href="https://github.com/nautobot/nautobot/issues/6084">#6084</a> - Updated development dependencies <code>factory-boy</code> to <code>~3.3.1</code>, <code>ruff</code> to <code>~0.5.7</code>, and <code>watchdog</code> to <code>~4.0.2</code>.</li>
@@ -10953,18 +11309,18 @@
10953
11309
  <li><a href="https://github.com/nautobot/nautobot/issues/6212">#6212</a> - Updated development dependency <code>pylint</code> to <code>~3.2.7</code>.</li>
10954
11310
  </ul>
10955
11311
  <h2 id="v232-2024-09-03">v2.3.2 (2024-09-03)<a class="headerlink" href="#v232-2024-09-03" title="Permanent link">&para;</a></h2>
10956
- <h3 id="security_1">Security<a class="headerlink" href="#security_1" title="Permanent link">&para;</a></h3>
11312
+ <h3 id="security_2">Security<a class="headerlink" href="#security_2" title="Permanent link">&para;</a></h3>
10957
11313
  <ul>
10958
11314
  <li><a href="https://github.com/nautobot/nautobot/issues/6182">#6182</a> - Updated <code>cryptography</code> to <code>43.0.1</code> to address <code>GHSA-h4gh-qq45-vh27</code>. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
10959
11315
  </ul>
10960
- <h3 id="added_8">Added<a class="headerlink" href="#added_8" title="Permanent link">&para;</a></h3>
11316
+ <h3 id="added_10">Added<a class="headerlink" href="#added_10" title="Permanent link">&para;</a></h3>
10961
11317
  <ul>
10962
11318
  <li><a href="https://github.com/nautobot/nautobot/issues/5180">#5180</a> - Add filtering Job Results by Scheduled Job.</li>
10963
11319
  <li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Added <code>time_zone</code> field to <code>ScheduledJob</code> model.</li>
10964
11320
  <li><a href="https://github.com/nautobot/nautobot/issues/6120">#6120</a> - Added Status Field to VRF model.</li>
10965
11321
  <li><a href="https://github.com/nautobot/nautobot/issues/6129">#6129</a> - Added collapsible icon rotation to homepage panels.</li>
10966
11322
  </ul>
10967
- <h3 id="fixed_9">Fixed<a class="headerlink" href="#fixed_9" title="Permanent link">&para;</a></h3>
11323
+ <h3 id="fixed_11">Fixed<a class="headerlink" href="#fixed_11" title="Permanent link">&para;</a></h3>
10968
11324
  <ul>
10969
11325
  <li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Corrected several bugs around handling of <code>ScheduledJob</code> execution when <code>settings.TIME_ZONE</code> is other than "UTC".</li>
10970
11326
  <li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Added missing <code>Meta.ordering</code> definition to <code>ScheduledJob</code> model.</li>
@@ -10973,7 +11329,7 @@
10973
11329
  <li><a href="https://github.com/nautobot/nautobot/issues/6146">#6146</a> - Added missing DynamicGroup content to Device Detail View and Software Image File Detail View.</li>
10974
11330
  <li><a href="https://github.com/nautobot/nautobot/issues/6175">#6175</a> - Prevented some <code>AttributeError</code> exceptions from being raised when an App contains a model that doesn't inherit from <code>BaseModel</code>.</li>
10975
11331
  </ul>
10976
- <h3 id="housekeeping_8">Housekeeping<a class="headerlink" href="#housekeeping_8" title="Permanent link">&para;</a></h3>
11332
+ <h3 id="housekeeping_10">Housekeeping<a class="headerlink" href="#housekeeping_10" title="Permanent link">&para;</a></h3>
10977
11333
  <ul>
10978
11334
  <li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Added <code>watchmedo</code> to <code>celery_beat</code> development container.</li>
10979
11335
  <li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Added <code>time-machine</code> as a development environment (test execution) dependency.</li>
@@ -10981,33 +11337,33 @@
10981
11337
  <li><a href="https://github.com/nautobot/nautobot/issues/6147">#6147</a> - Added <code>development/cleanup_factory_dump.py</code> helper script to aid in identifying other issues with test data.</li>
10982
11338
  </ul>
10983
11339
  <h2 id="v231-2024-08-19">v2.3.1 (2024-08-19)<a class="headerlink" href="#v231-2024-08-19" title="Permanent link">&para;</a></h2>
10984
- <h3 id="added_9">Added<a class="headerlink" href="#added_9" title="Permanent link">&para;</a></h3>
11340
+ <h3 id="added_11">Added<a class="headerlink" href="#added_11" title="Permanent link">&para;</a></h3>
10985
11341
  <ul>
10986
11342
  <li><a href="https://github.com/nautobot/nautobot/issues/5232">#5232</a> - Added support for groupings to computed fields.</li>
10987
11343
  <li><a href="https://github.com/nautobot/nautobot/issues/5494">#5494</a> - Added validation logic to <code>DeviceForm</code> <code>clean()</code> method to raise a validation error if there is any invalid software image file specified.</li>
10988
11344
  <li><a href="https://github.com/nautobot/nautobot/issues/5915">#5915</a> - Enhanced <code>IPAddress.objects.get_or_create</code> method to permit specifying a namespace as an alternative to a parent prefix.</li>
10989
11345
  </ul>
10990
- <h3 id="changed_7">Changed<a class="headerlink" href="#changed_7" title="Permanent link">&para;</a></h3>
11346
+ <h3 id="changed_8">Changed<a class="headerlink" href="#changed_8" title="Permanent link">&para;</a></h3>
10991
11347
  <ul>
10992
11348
  <li><a href="https://github.com/nautobot/nautobot/issues/5970">#5970</a> - Removed indentations for PrefixTable in various locations in the UI.</li>
10993
11349
  </ul>
10994
- <h3 id="fixed_10">Fixed<a class="headerlink" href="#fixed_10" title="Permanent link">&para;</a></h3>
11350
+ <h3 id="fixed_12">Fixed<a class="headerlink" href="#fixed_12" title="Permanent link">&para;</a></h3>
10995
11351
  <ul>
10996
11352
  <li><a href="https://github.com/nautobot/nautobot/issues/5494">#5494</a> - Fixed <code>Device</code> model <code>clean()</code> validation logic to allow user to specify a software version on a device without specifying any software image files.</li>
10997
11353
  <li><a href="https://github.com/nautobot/nautobot/issues/6096">#6096</a> - Updated CloudAccount UI: Set the <code>secrets_group</code> form field to be optional.</li>
10998
11354
  <li><a href="https://github.com/nautobot/nautobot/issues/6097">#6097</a> - Updated ContactAssociation API: Set the role field to be required.</li>
10999
11355
  <li><a href="https://github.com/nautobot/nautobot/issues/6116">#6116</a> - Added handling for an <code>OperationalError</code> that might be raised when running <code>pylint-nautobot</code> or similar linters that depend on successfully running <code>nautobot.setup()</code>.</li>
11000
11356
  </ul>
11001
- <h3 id="housekeeping_9">Housekeeping<a class="headerlink" href="#housekeeping_9" title="Permanent link">&para;</a></h3>
11357
+ <h3 id="housekeeping_11">Housekeeping<a class="headerlink" href="#housekeeping_11" title="Permanent link">&para;</a></h3>
11002
11358
  <ul>
11003
11359
  <li><a href="https://github.com/nautobot/nautobot/issues/6107">#6107</a> - Updated documentation dependency <code>mkdocstrings-python</code> to <code>~1.10.8</code>.</li>
11004
11360
  </ul>
11005
11361
  <h2 id="v230-2024-08-08">v2.3.0 (2024-08-08)<a class="headerlink" href="#v230-2024-08-08" title="Permanent link">&para;</a></h2>
11006
- <h3 id="security_2">Security<a class="headerlink" href="#security_2" title="Permanent link">&para;</a></h3>
11362
+ <h3 id="security_3">Security<a class="headerlink" href="#security_3" title="Permanent link">&para;</a></h3>
11007
11363
  <ul>
11008
11364
  <li><a href="https://github.com/nautobot/nautobot/issues/6073">#6073</a> - Updated <code>Django</code> to <code>~4.2.15</code> due to <code>CVE-2024-41989</code>, <code>CVE-2024-41990</code>, <code>CVE-2024-41991</code>, and <code>CVE-2024-42005</code>.</li>
11009
11365
  </ul>
11010
- <h3 id="added_10">Added<a class="headerlink" href="#added_10" title="Permanent link">&para;</a></h3>
11366
+ <h3 id="added_12">Added<a class="headerlink" href="#added_12" title="Permanent link">&para;</a></h3>
11011
11367
  <ul>
11012
11368
  <li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Added missing <code>comments</code> field to DeviceType bulk edit.</li>
11013
11369
  <li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Added <code>comments</code> field to ModuleType.</li>
@@ -11017,7 +11373,7 @@
11017
11373
  <li><a href="https://github.com/nautobot/nautobot/issues/6039">#6039</a> - Added support for querying <code>GenericRelation</code> relationships (reverse of <code>GenericForeignKey</code>) in GraphQL.</li>
11018
11374
  <li><a href="https://github.com/nautobot/nautobot/issues/6039">#6039</a> - Added support for filtering an object's <code>associated_contacts</code> in GraphQL.</li>
11019
11375
  </ul>
11020
- <h3 id="changed_8">Changed<a class="headerlink" href="#changed_8" title="Permanent link">&para;</a></h3>
11376
+ <h3 id="changed_9">Changed<a class="headerlink" href="#changed_9" title="Permanent link">&para;</a></h3>
11021
11377
  <ul>
11022
11378
  <li><a href="https://github.com/nautobot/nautobot/issues/6003">#6003</a> - Changed rendering of <code>scoped_fields</code> column in <code>ObjectMetadataTable</code>.</li>
11023
11379
  <li><a href="https://github.com/nautobot/nautobot/issues/6003">#6003</a> - Changed default ordering of <code>ObjectMetadata</code> list views.</li>
@@ -11031,7 +11387,7 @@
11031
11387
  <li><a href="https://github.com/nautobot/nautobot/issues/6005">#6005</a> - Removed "delete" and "bulk-delete" functionalities from the ObjectMetadata views.</li>
11032
11388
  <li><a href="https://github.com/nautobot/nautobot/issues/6039">#6039</a> - Removed unneeded <code>CloudNetworkPrefixAssignmentTable</code>.</li>
11033
11389
  </ul>
11034
- <h3 id="fixed_11">Fixed<a class="headerlink" href="#fixed_11" title="Permanent link">&para;</a></h3>
11390
+ <h3 id="fixed_13">Fixed<a class="headerlink" href="#fixed_13" title="Permanent link">&para;</a></h3>
11035
11391
  <ul>
11036
11392
  <li><a href="https://github.com/nautobot/nautobot/issues/5967">#5967</a> - Fixed a regression in the display of custom fields in object-edit forms.</li>
11037
11393
  <li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Fixed URL typo in module and module type list views.</li>
@@ -11047,7 +11403,7 @@
11047
11403
  <li><a href="https://github.com/nautobot/nautobot/issues/6064">#6064</a> - Reverted an undesired change to <code>IPAddressFilterSet.device</code> filter.</li>
11048
11404
  <li><a href="https://github.com/nautobot/nautobot/issues/6064">#6064</a> - Reverted an undesired change to <code>ServiceForm.ip_addresses</code> valid addresses.</li>
11049
11405
  </ul>
11050
- <h3 id="documentation_4">Documentation<a class="headerlink" href="#documentation_4" title="Permanent link">&para;</a></h3>
11406
+ <h3 id="documentation_6">Documentation<a class="headerlink" href="#documentation_6" title="Permanent link">&para;</a></h3>
11051
11407
  <ul>
11052
11408
  <li><a href="https://github.com/nautobot/nautobot/issues/5920">#5920</a> - Updated documentation for installation under Ubuntu 24.04 LTS, Fedora 40, AlmaLinux 9, and similar distros.</li>
11053
11409
  <li><a href="https://github.com/nautobot/nautobot/issues/6019">#6019</a> - Updated the installation documentation to recommend a more secure set of filesystem permissions.</li>
@@ -11055,7 +11411,7 @@
11055
11411
  <li><a href="https://github.com/nautobot/nautobot/issues/6050">#6050</a> - Added some crosslinks within the DCIM model documentation.</li>
11056
11412
  <li><a href="https://github.com/nautobot/nautobot/issues/6062">#6062</a> - Updated Configuration Context docs with additional examples for dictionary of dictionaries.</li>
11057
11413
  </ul>
11058
- <h3 id="housekeeping_10">Housekeeping<a class="headerlink" href="#housekeeping_10" title="Permanent link">&para;</a></h3>
11414
+ <h3 id="housekeeping_12">Housekeeping<a class="headerlink" href="#housekeeping_12" title="Permanent link">&para;</a></h3>
11059
11415
  <ul>
11060
11416
  <li><a href="https://github.com/nautobot/nautobot/issues/5962">#5962</a> - Updated development dependency <code>ruff</code> to <code>~0.5.6</code>.</li>
11061
11417
  <li><a href="https://github.com/nautobot/nautobot/issues/5962">#5962</a> - Updated documentation dependencies: <code>mkdocs-material</code> to <code>~9.5.31</code>, <code>mkdocstrings</code> to <code>~0.25.2</code>, and <code>mkdocstrings-python</code> to <code>~1.10.7</code>.</li>
@@ -11066,11 +11422,11 @@
11066
11422
  <li><a href="https://github.com/nautobot/nautobot/issues/6071">#6071</a> - Fixed incorrect generic-test logic in <code>FilterTestCase.test_q_filter_valid</code> for <code>q</code> filters containing <code>iexact</code> lookups.</li>
11067
11423
  </ul>
11068
11424
  <h2 id="v230-beta1-2024-07-25">v2.3.0-beta.1 (2024-07-25)<a class="headerlink" href="#v230-beta1-2024-07-25" title="Permanent link">&para;</a></h2>
11069
- <h3 id="security_3">Security<a class="headerlink" href="#security_3" title="Permanent link">&para;</a></h3>
11425
+ <h3 id="security_4">Security<a class="headerlink" href="#security_4" title="Permanent link">&para;</a></h3>
11070
11426
  <ul>
11071
11427
  <li><a href="https://github.com/nautobot/nautobot/issues/5889">#5889</a> - Updated <code>Django</code> to <code>~4.2.14</code> due to <code>CVE-2024-38875</code>, <code>CVE-2024-39329</code>, <code>CVE-2024-39330</code>, and <code>CVE-2024-39614</code>.</li>
11072
11428
  </ul>
11073
- <h3 id="added_11">Added<a class="headerlink" href="#added_11" title="Permanent link">&para;</a></h3>
11429
+ <h3 id="added_13">Added<a class="headerlink" href="#added_13" title="Permanent link">&para;</a></h3>
11074
11430
  <ul>
11075
11431
  <li><a href="https://github.com/nautobot/nautobot/issues/1758">#1758</a> - Implemented SavedView model.</li>
11076
11432
  <li><a href="https://github.com/nautobot/nautobot/issues/2101">#2101</a> - Added ModuleBay, Module, ModuleType and ModuleBayTemplate models to support modeling line cards and other modular components of a device.</li>
@@ -11117,7 +11473,7 @@
11117
11473
  <li><a href="https://github.com/nautobot/nautobot/issues/5933">#5933</a> - Added tables of related <code>CloudService</code> and/or <code>CloudNetwork</code> instances to the <code>CloudResourceType</code> detail view.</li>
11118
11474
  <li><a href="https://github.com/nautobot/nautobot/issues/5933">#5933</a> - Added <code>description</code> field to <code>CloudService</code> model.</li>
11119
11475
  </ul>
11120
- <h3 id="changed_9">Changed<a class="headerlink" href="#changed_9" title="Permanent link">&para;</a></h3>
11476
+ <h3 id="changed_10">Changed<a class="headerlink" href="#changed_10" title="Permanent link">&para;</a></h3>
11121
11477
  <ul>
11122
11478
  <li><a href="https://github.com/nautobot/nautobot/issues/2101">#2101</a> - Updated device interfaces filter to support filtering by interface name as well as by ID.</li>
11123
11479
  <li><a href="https://github.com/nautobot/nautobot/issues/3749">#3749</a> - Changed behavior of the <code>CHANGELOG_RETENTION</code> setting; it no longer applies automatically to force cleanup of ObjectChange records over a certain age cutoff, but instead serves as the default cutoff age whenever running the new "Logs Cleanup" system Job.</li>
@@ -11161,7 +11517,7 @@
11161
11517
  <li><a href="https://github.com/nautobot/nautobot/issues/5473">#5473</a> - Removed <code>DYNAMIC_GROUPS_MEMBER_CACHE_TIMEOUT</code> setting as it is no longer relevant after refactoring the Dynamic Group membership caching implementation.</li>
11162
11518
  <li><a href="https://github.com/nautobot/nautobot/issues/5786">#5786</a> - Removed the <code>StaticGroup</code> model added in #5472, replacing it with a subtype of the <code>DynamicGroup</code> model.</li>
11163
11519
  </ul>
11164
- <h3 id="fixed_12">Fixed<a class="headerlink" href="#fixed_12" title="Permanent link">&para;</a></h3>
11520
+ <h3 id="fixed_14">Fixed<a class="headerlink" href="#fixed_14" title="Permanent link">&para;</a></h3>
11165
11521
  <ul>
11166
11522
  <li><a href="https://github.com/nautobot/nautobot/issues/2352">#2352</a> - Fixed random deadlocks in long-running Jobs resulting from the ObjectChange automatic cleanup signal.</li>
11167
11523
  <li><a href="https://github.com/nautobot/nautobot/issues/5123">#5123</a> - Fixed an unhandled <code>ValueError</code> when filtering on <code>vlans</code> by their UUID rather than their VLAN ID.</li>
@@ -11185,7 +11541,7 @@
11185
11541
  <li><a href="https://github.com/nautobot/nautobot/issues/5951">#5951</a> - Removed unused consolidated action button on job list view.</li>
11186
11542
  <li><a href="https://github.com/nautobot/nautobot/issues/5952">#5952</a> - Changed generic "Bulk Actions" dropup button styling to match generic "Actions" dropdown button.</li>
11187
11543
  </ul>
11188
- <h3 id="dependencies_6">Dependencies<a class="headerlink" href="#dependencies_6" title="Permanent link">&para;</a></h3>
11544
+ <h3 id="dependencies_8">Dependencies<a class="headerlink" href="#dependencies_8" title="Permanent link">&para;</a></h3>
11189
11545
  <ul>
11190
11546
  <li><a href="https://github.com/nautobot/nautobot/issues/1758">#1758</a> - Updated <code>materialdesignicons</code> to version 7.4.47.</li>
11191
11547
  <li><a href="https://github.com/nautobot/nautobot/issues/4616">#4616</a> - Updated <code>django-taggit</code> to <code>~5.0.0</code>.</li>
@@ -11211,13 +11567,13 @@
11211
11567
  <li><a href="https://github.com/nautobot/nautobot/issues/5889">#5889</a> - Updated <code>django-filter</code> to version <code>~24.2</code>.</li>
11212
11568
  <li><a href="https://github.com/nautobot/nautobot/issues/5889">#5889</a> - Updated <code>django-timezone-field</code> to version <code>~7.0</code>.</li>
11213
11569
  </ul>
11214
- <h3 id="documentation_5">Documentation<a class="headerlink" href="#documentation_5" title="Permanent link">&para;</a></h3>
11570
+ <h3 id="documentation_7">Documentation<a class="headerlink" href="#documentation_7" title="Permanent link">&para;</a></h3>
11215
11571
  <ul>
11216
11572
  <li><a href="https://github.com/nautobot/nautobot/issues/5699">#5699</a> - Fixed a number of broken links within the documentation.</li>
11217
11573
  <li><a href="https://github.com/nautobot/nautobot/issues/5895">#5895</a> - Added missing model documentation for <code>CloudNetwork</code>, <code>CloudNetworkPrefixAssignment</code>, <code>CloudService</code> and <del><code>CloudType</code></del> <code>CloudResourceType</code>.</li>
11218
11574
  <li><a href="https://github.com/nautobot/nautobot/issues/5934">#5934</a> - Add Cloud Model Example and Entity Diagram.</li>
11219
11575
  </ul>
11220
- <h3 id="housekeeping_11">Housekeeping<a class="headerlink" href="#housekeeping_11" title="Permanent link">&para;</a></h3>
11576
+ <h3 id="housekeeping_13">Housekeeping<a class="headerlink" href="#housekeeping_13" title="Permanent link">&para;</a></h3>
11221
11577
  <ul>
11222
11578
  <li><a href="https://github.com/nautobot/nautobot/issues/5160">#5160</a> - Replaced references to <code>pytz</code> with <code>zoneinfo</code> in keeping with Django 4.</li>
11223
11579
  <li><a href="https://github.com/nautobot/nautobot/issues/5212">#5212</a> - Enhanced <code>nautobot.core.testing.filters.FilterTestCases.BaseFilterTestCase.test_filters_generic()</code> test case to test for the presence and proper functioning of the <code>contacts</code> and <code>teams</code> filters on any appropriate model FilterSet.</li>
@@ -11338,7 +11694,7 @@
11338
11694
 
11339
11695
 
11340
11696
  <a href="https://blog.networktocode.com/blog/tags/nautobot" target="_blank" rel="noopener" title="Network to Code Blog" class="md-social__link">
11341
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 64c0-17.7 14.3-32 32-32 229.8 0 416 186.2 416 416 0 17.7-14.3 32-32 32s-32-14.3-32-32C384 253.6 226.4 96 32 96 14.3 96 0 81.7 0 64m0 352a64 64 0 1 1 128 0 64 64 0 1 1-128 0m32-256c159.1 0 288 128.9 288 288 0 17.7-14.3 32-32 32s-32-14.3-32-32c0-123.7-100.3-224-224-224-17.7 0-32-14.3-32-32s14.3-32 32-32"/></svg>
11697
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 64c0-17.7 14.3-32 32-32 229.8 0 416 186.2 416 416 0 17.7-14.3 32-32 32s-32-14.3-32-32C384 253.6 226.4 96 32 96 14.3 96 0 81.7 0 64m0 352a64 64 0 1 1 128 0 64 64 0 1 1-128 0m32-256c159.1 0 288 128.9 288 288 0 17.7-14.3 32-32 32s-32-14.3-32-32c0-123.7-100.3-224-224-224-17.7 0-32-14.3-32-32s14.3-32 32-32"/></svg>
11342
11698
  </a>
11343
11699
 
11344
11700
 
@@ -11346,7 +11702,7 @@
11346
11702
 
11347
11703
 
11348
11704
  <a href="https://www.youtube.com/playlist?list=PLjA0bhxgryJ2Ts4GJMDA-tPzVWEncv4pb" target="_blank" rel="noopener" title="Nautobot Videos" class="md-social__link">
11349
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305m-317.51 213.508V175.185l142.739 81.205z"/></svg>
11705
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305m-317.51 213.508V175.185l142.739 81.205z"/></svg>
11350
11706
  </a>
11351
11707
 
11352
11708
 
@@ -11354,7 +11710,7 @@
11354
11710
 
11355
11711
 
11356
11712
  <a href="https://www.networktocode.com/community/" target="_blank" rel="noopener" title="Network to Code Community" class="md-social__link">
11357
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M94.12 315.1c0 25.9-21.16 47.06-47.06 47.06S0 341 0 315.1s21.16-47.06 47.06-47.06h47.06zm23.72 0c0-25.9 21.16-47.06 47.06-47.06s47.06 21.16 47.06 47.06v117.84c0 25.9-21.16 47.06-47.06 47.06s-47.06-21.16-47.06-47.06zm47.06-188.98c-25.9 0-47.06-21.16-47.06-47.06S139 32 164.9 32s47.06 21.16 47.06 47.06v47.06zm0 23.72c25.9 0 47.06 21.16 47.06 47.06s-21.16 47.06-47.06 47.06H47.06C21.16 243.96 0 222.8 0 196.9s21.16-47.06 47.06-47.06zm188.98 47.06c0-25.9 21.16-47.06 47.06-47.06S448 171 448 196.9s-21.16 47.06-47.06 47.06h-47.06zm-23.72 0c0 25.9-21.16 47.06-47.06 47.06s-47.06-21.16-47.06-47.06V79.06c0-25.9 21.16-47.06 47.06-47.06s47.06 21.16 47.06 47.06zM283.1 385.88c25.9 0 47.06 21.16 47.06 47.06S309 480 283.1 480s-47.06-21.16-47.06-47.06v-47.06zm0-23.72c-25.9 0-47.06-21.16-47.06-47.06s21.16-47.06 47.06-47.06h117.84c25.9 0 47.06 21.16 47.06 47.06s-21.16 47.06-47.06 47.06z"/></svg>
11713
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M94.12 315.1c0 25.9-21.16 47.06-47.06 47.06S0 341 0 315.1s21.16-47.06 47.06-47.06h47.06zm23.72 0c0-25.9 21.16-47.06 47.06-47.06s47.06 21.16 47.06 47.06v117.84c0 25.9-21.16 47.06-47.06 47.06s-47.06-21.16-47.06-47.06zm47.06-188.98c-25.9 0-47.06-21.16-47.06-47.06S139 32 164.9 32s47.06 21.16 47.06 47.06v47.06zm0 23.72c25.9 0 47.06 21.16 47.06 47.06s-21.16 47.06-47.06 47.06H47.06C21.16 243.96 0 222.8 0 196.9s21.16-47.06 47.06-47.06zm188.98 47.06c0-25.9 21.16-47.06 47.06-47.06S448 171 448 196.9s-21.16 47.06-47.06 47.06h-47.06zm-23.72 0c0 25.9-21.16 47.06-47.06 47.06s-47.06-21.16-47.06-47.06V79.06c0-25.9 21.16-47.06 47.06-47.06s47.06 21.16 47.06 47.06zM283.1 385.88c25.9 0 47.06 21.16 47.06 47.06S309 480 283.1 480s-47.06-21.16-47.06-47.06v-47.06zm0-23.72c-25.9 0-47.06-21.16-47.06-47.06s21.16-47.06 47.06-47.06h117.84c25.9 0 47.06 21.16 47.06 47.06s-21.16 47.06-47.06 47.06z"/></svg>
11358
11714
  </a>
11359
11715
 
11360
11716
 
@@ -11362,7 +11718,7 @@
11362
11718
 
11363
11719
 
11364
11720
  <a href="https://github.com/nautobot/nautobot" target="_blank" rel="noopener" title="GitHub Repo" class="md-social__link">
11365
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6m-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3m44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9M244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8M97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1m-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7m32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1m-11.4-14.7c-1.6 1-1.6 3.6 0 5.9s4.3 3.3 5.6 2.3c1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2"/></svg>
11721
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6m-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3m44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9M244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8M97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1m-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7m32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1m-11.4-14.7c-1.6 1-1.6 3.6 0 5.9s4.3 3.3 5.6 2.3c1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2"/></svg>
11366
11722
  </a>
11367
11723
 
11368
11724
 
@@ -11370,7 +11726,7 @@
11370
11726
 
11371
11727
 
11372
11728
  <a href="https://twitter.com/networktocode" target="_blank" rel="noopener" title="Network to Code Twitter" class="md-social__link">
11373
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253"/></svg>
11729
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253"/></svg>
11374
11730
  </a>
11375
11731
 
11376
11732
  </div>