nautobot 1.6.31__py3-none-any.whl → 1.6.32__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of nautobot might be problematic. Click here for more details.
- nautobot/circuits/forms.py +6 -0
- nautobot/circuits/views.py +1 -0
- nautobot/core/graphql/schema.py +3 -1
- nautobot/core/graphql/types.py +10 -0
- nautobot/core/models/__init__.py +2 -0
- nautobot/core/templates/generic/object_list.html +1 -1
- nautobot/core/tests/test_views.py +73 -0
- nautobot/core/urls.py +3 -3
- nautobot/core/views/__init__.py +21 -0
- nautobot/dcim/forms.py +29 -0
- nautobot/dcim/models/device_component_templates.py +4 -0
- nautobot/dcim/models/device_components.py +4 -0
- nautobot/dcim/models/devices.py +2 -0
- nautobot/dcim/views.py +4 -0
- nautobot/extras/forms/forms.py +12 -0
- nautobot/extras/models/customfields.py +2 -0
- nautobot/extras/models/datasources.py +2 -0
- nautobot/extras/models/groups.py +8 -0
- nautobot/extras/models/jobs.py +10 -0
- nautobot/extras/models/models.py +2 -0
- nautobot/extras/models/secrets.py +8 -2
- nautobot/extras/secrets/__init__.py +14 -0
- nautobot/extras/tests/test_models.py +26 -0
- nautobot/extras/views.py +1 -0
- nautobot/ipam/filters.py +1 -1
- nautobot/ipam/forms.py +6 -0
- nautobot/ipam/models.py +8 -0
- nautobot/ipam/views.py +1 -0
- nautobot/project-static/docs/404.html +62 -0
- nautobot/project-static/docs/additional-features/caching.html +62 -0
- nautobot/project-static/docs/additional-features/change-logging.html +62 -0
- nautobot/project-static/docs/additional-features/config-contexts.html +62 -0
- nautobot/project-static/docs/additional-features/graphql.html +62 -0
- nautobot/project-static/docs/additional-features/healthcheck.html +62 -0
- nautobot/project-static/docs/additional-features/job-scheduling-and-approvals.html +63 -1
- nautobot/project-static/docs/additional-features/jobs.html +62 -0
- nautobot/project-static/docs/additional-features/napalm.html +62 -0
- nautobot/project-static/docs/additional-features/prometheus-metrics.html +62 -0
- nautobot/project-static/docs/additional-features/template-filters.html +62 -0
- nautobot/project-static/docs/administration/celery-queues.html +63 -1
- nautobot/project-static/docs/administration/nautobot-server.html +62 -0
- nautobot/project-static/docs/administration/nautobot-shell.html +62 -0
- nautobot/project-static/docs/administration/permissions.html +62 -0
- nautobot/project-static/docs/administration/replicating-nautobot.html +62 -0
- nautobot/project-static/docs/administration/request-profiling.html +62 -0
- nautobot/project-static/docs/administration/security/index.html +4407 -0
- nautobot/project-static/docs/administration/security/notices.html +4797 -0
- nautobot/project-static/docs/apps/index.html +62 -0
- nautobot/project-static/docs/apps/nautobot-apps.html +62 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +62 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +62 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +62 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +62 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +62 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +62 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +83 -21
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +67 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +140 -52
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +62 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +3203 -3101
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +62 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +62 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +210 -148
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +62 -0
- nautobot/project-static/docs/configuration/authentication/ldap.html +62 -0
- nautobot/project-static/docs/configuration/authentication/remote.html +62 -0
- nautobot/project-static/docs/configuration/authentication/sso.html +62 -0
- nautobot/project-static/docs/configuration/index.html +62 -0
- nautobot/project-static/docs/configuration/optional-settings.html +67 -5
- nautobot/project-static/docs/configuration/required-settings.html +62 -0
- nautobot/project-static/docs/core-functionality/circuits.html +62 -0
- nautobot/project-static/docs/core-functionality/device-types.html +62 -0
- nautobot/project-static/docs/core-functionality/devices.html +62 -0
- nautobot/project-static/docs/core-functionality/ipam.html +62 -0
- nautobot/project-static/docs/core-functionality/power.html +62 -0
- nautobot/project-static/docs/core-functionality/secrets.html +62 -0
- nautobot/project-static/docs/core-functionality/services.html +62 -0
- nautobot/project-static/docs/core-functionality/sites-and-racks.html +62 -0
- nautobot/project-static/docs/core-functionality/tenancy.html +62 -0
- nautobot/project-static/docs/core-functionality/virtualization.html +62 -0
- nautobot/project-static/docs/core-functionality/vlans.html +62 -0
- nautobot/project-static/docs/development/application-registry.html +62 -0
- nautobot/project-static/docs/development/best-practices.html +62 -0
- nautobot/project-static/docs/development/docker-compose-advanced-use-cases.html +62 -0
- nautobot/project-static/docs/development/extending-models.html +62 -0
- nautobot/project-static/docs/development/generic-views.html +62 -0
- nautobot/project-static/docs/development/getting-started.html +63 -1
- nautobot/project-static/docs/development/homepage.html +62 -0
- nautobot/project-static/docs/development/index.html +62 -0
- nautobot/project-static/docs/development/navigation-menu.html +62 -0
- nautobot/project-static/docs/development/release-checklist.html +62 -0
- nautobot/project-static/docs/development/style-guide.html +62 -0
- nautobot/project-static/docs/development/templates.html +62 -0
- nautobot/project-static/docs/development/testing.html +62 -0
- nautobot/project-static/docs/development/user-preferences.html +62 -0
- nautobot/project-static/docs/docker/index.html +62 -0
- nautobot/project-static/docs/index.html +62 -0
- nautobot/project-static/docs/installation/centos.html +62 -0
- nautobot/project-static/docs/installation/external-authentication.html +62 -0
- nautobot/project-static/docs/installation/http-server.html +62 -0
- nautobot/project-static/docs/installation/index.html +62 -0
- nautobot/project-static/docs/installation/migrating-from-netbox.html +62 -0
- nautobot/project-static/docs/installation/migrating-from-postgresql.html +62 -0
- nautobot/project-static/docs/installation/nautobot.html +62 -0
- nautobot/project-static/docs/installation/selinux-troubleshooting.html +62 -0
- nautobot/project-static/docs/installation/services.html +62 -0
- nautobot/project-static/docs/installation/ubuntu.html +62 -0
- nautobot/project-static/docs/installation/upgrading.html +62 -0
- nautobot/project-static/docs/models/circuits/circuit.html +62 -0
- nautobot/project-static/docs/models/circuits/circuittermination.html +62 -0
- nautobot/project-static/docs/models/circuits/circuittype.html +62 -0
- nautobot/project-static/docs/models/circuits/provider.html +62 -0
- nautobot/project-static/docs/models/circuits/providernetwork.html +62 -0
- nautobot/project-static/docs/models/dcim/cable.html +62 -0
- nautobot/project-static/docs/models/dcim/consoleport.html +62 -0
- nautobot/project-static/docs/models/dcim/consoleporttemplate.html +62 -0
- nautobot/project-static/docs/models/dcim/consoleserverport.html +62 -0
- nautobot/project-static/docs/models/dcim/consoleserverporttemplate.html +62 -0
- nautobot/project-static/docs/models/dcim/device.html +62 -0
- nautobot/project-static/docs/models/dcim/devicebay.html +62 -0
- nautobot/project-static/docs/models/dcim/devicebaytemplate.html +62 -0
- nautobot/project-static/docs/models/dcim/deviceredundancygroup.html +62 -0
- nautobot/project-static/docs/models/dcim/devicerole.html +62 -0
- nautobot/project-static/docs/models/dcim/devicetype.html +62 -0
- nautobot/project-static/docs/models/dcim/frontport.html +62 -0
- nautobot/project-static/docs/models/dcim/frontporttemplate.html +62 -0
- nautobot/project-static/docs/models/dcim/interface.html +62 -0
- nautobot/project-static/docs/models/dcim/interfaceredundancygroup.html +62 -0
- nautobot/project-static/docs/models/dcim/interfacetemplate.html +62 -0
- nautobot/project-static/docs/models/dcim/inventoryitem.html +62 -0
- nautobot/project-static/docs/models/dcim/location.html +62 -0
- nautobot/project-static/docs/models/dcim/locationtype.html +62 -0
- nautobot/project-static/docs/models/dcim/manufacturer.html +62 -0
- nautobot/project-static/docs/models/dcim/platform.html +62 -0
- nautobot/project-static/docs/models/dcim/powerfeed.html +62 -0
- nautobot/project-static/docs/models/dcim/poweroutlet.html +62 -0
- nautobot/project-static/docs/models/dcim/poweroutlettemplate.html +62 -0
- nautobot/project-static/docs/models/dcim/powerpanel.html +62 -0
- nautobot/project-static/docs/models/dcim/powerport.html +62 -0
- nautobot/project-static/docs/models/dcim/powerporttemplate.html +62 -0
- nautobot/project-static/docs/models/dcim/rack.html +62 -0
- nautobot/project-static/docs/models/dcim/rackgroup.html +62 -0
- nautobot/project-static/docs/models/dcim/rackreservation.html +62 -0
- nautobot/project-static/docs/models/dcim/rackrole.html +62 -0
- nautobot/project-static/docs/models/dcim/rearport.html +62 -0
- nautobot/project-static/docs/models/dcim/rearporttemplate.html +62 -0
- nautobot/project-static/docs/models/dcim/region.html +62 -0
- nautobot/project-static/docs/models/dcim/site.html +62 -0
- nautobot/project-static/docs/models/dcim/virtualchassis.html +62 -0
- nautobot/project-static/docs/models/extras/computedfield.html +63 -1
- nautobot/project-static/docs/models/extras/configcontext.html +62 -0
- nautobot/project-static/docs/models/extras/configcontextschema.html +62 -0
- nautobot/project-static/docs/models/extras/customfield.html +62 -0
- nautobot/project-static/docs/models/extras/customlink.html +63 -1
- nautobot/project-static/docs/models/extras/dynamicgroup.html +62 -0
- nautobot/project-static/docs/models/extras/exporttemplate.html +62 -0
- nautobot/project-static/docs/models/extras/gitrepository.html +62 -0
- nautobot/project-static/docs/models/extras/graphqlquery.html +62 -0
- nautobot/project-static/docs/models/extras/imageattachment.html +62 -0
- nautobot/project-static/docs/models/extras/job.html +62 -0
- nautobot/project-static/docs/models/extras/jobbutton.html +63 -1
- nautobot/project-static/docs/models/extras/jobhook.html +62 -0
- nautobot/project-static/docs/models/extras/joblogentry.html +62 -0
- nautobot/project-static/docs/models/extras/jobresult.html +62 -0
- nautobot/project-static/docs/models/extras/note.html +62 -0
- nautobot/project-static/docs/models/extras/relationship.html +62 -0
- nautobot/project-static/docs/models/extras/secret.html +62 -0
- nautobot/project-static/docs/models/extras/secretsgroup.html +62 -0
- nautobot/project-static/docs/models/extras/status.html +62 -0
- nautobot/project-static/docs/models/extras/tag.html +62 -0
- nautobot/project-static/docs/models/extras/webhook.html +62 -0
- nautobot/project-static/docs/models/ipam/aggregate.html +62 -0
- nautobot/project-static/docs/models/ipam/ipaddress.html +62 -0
- nautobot/project-static/docs/models/ipam/prefix.html +62 -0
- nautobot/project-static/docs/models/ipam/rir.html +62 -0
- nautobot/project-static/docs/models/ipam/role.html +62 -0
- nautobot/project-static/docs/models/ipam/routetarget.html +62 -0
- nautobot/project-static/docs/models/ipam/service.html +62 -0
- nautobot/project-static/docs/models/ipam/vlan.html +62 -0
- nautobot/project-static/docs/models/ipam/vlangroup.html +62 -0
- nautobot/project-static/docs/models/ipam/vrf.html +62 -0
- nautobot/project-static/docs/models/tenancy/tenant.html +62 -0
- nautobot/project-static/docs/models/tenancy/tenantgroup.html +62 -0
- nautobot/project-static/docs/models/users/objectpermission.html +62 -0
- nautobot/project-static/docs/models/users/token.html +62 -0
- nautobot/project-static/docs/models/virtualization/cluster.html +62 -0
- nautobot/project-static/docs/models/virtualization/clustergroup.html +62 -0
- nautobot/project-static/docs/models/virtualization/clustertype.html +62 -0
- nautobot/project-static/docs/models/virtualization/virtualmachine.html +62 -0
- nautobot/project-static/docs/models/virtualization/vminterface.html +62 -0
- nautobot/project-static/docs/plugins/development.html +63 -1
- nautobot/project-static/docs/plugins/index.html +62 -0
- nautobot/project-static/docs/plugins/porting-from-netbox.html +62 -0
- nautobot/project-static/docs/release-notes/index.html +62 -0
- nautobot/project-static/docs/release-notes/version-1.0.html +62 -0
- nautobot/project-static/docs/release-notes/version-1.1.html +64 -2
- nautobot/project-static/docs/release-notes/version-1.2.html +63 -1
- nautobot/project-static/docs/release-notes/version-1.3.html +62 -0
- nautobot/project-static/docs/release-notes/version-1.4.html +62 -0
- nautobot/project-static/docs/release-notes/version-1.5.html +62 -0
- nautobot/project-static/docs/release-notes/version-1.6.html +354 -188
- nautobot/project-static/docs/rest-api/authentication.html +62 -0
- nautobot/project-static/docs/rest-api/filtering.html +62 -0
- nautobot/project-static/docs/rest-api/overview.html +62 -0
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +197 -187
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guides/custom-fields.html +62 -0
- nautobot/project-static/docs/user-guides/getting-started/creating-devices.html +63 -1
- nautobot/project-static/docs/user-guides/getting-started/index.html +62 -0
- nautobot/project-static/docs/user-guides/getting-started/interfaces.html +62 -0
- nautobot/project-static/docs/user-guides/getting-started/ipam.html +62 -0
- nautobot/project-static/docs/user-guides/getting-started/platforms.html +62 -0
- nautobot/project-static/docs/user-guides/getting-started/regions.html +62 -0
- nautobot/project-static/docs/user-guides/getting-started/search-bar.html +62 -0
- nautobot/project-static/docs/user-guides/getting-started/tenants.html +62 -0
- nautobot/project-static/docs/user-guides/getting-started/vlans-and-vlan-groups.html +63 -1
- nautobot/project-static/docs/user-guides/git-data-source.html +62 -0
- nautobot/project-static/docs/user-guides/graphql.html +62 -0
- nautobot/project-static/docs/user-guides/relationships.html +62 -0
- nautobot/project-static/docs/user-guides/s3-django-storage.html +62 -0
- nautobot/tenancy/forms.py +10 -0
- nautobot/tenancy/views.py +1 -0
- nautobot/users/models.py +4 -0
- nautobot/utilities/testing/views.py +17 -1
- nautobot/utilities/tests/test_jinja_filters.py +26 -2
- nautobot/utilities/utils.py +14 -0
- nautobot/virtualization/forms.py +12 -0
- nautobot/virtualization/views.py +2 -0
- {nautobot-1.6.31.dist-info → nautobot-1.6.32.dist-info}/METADATA +1 -1
- {nautobot-1.6.31.dist-info → nautobot-1.6.32.dist-info}/RECORD +235 -233
- {nautobot-1.6.31.dist-info → nautobot-1.6.32.dist-info}/LICENSE.txt +0 -0
- {nautobot-1.6.31.dist-info → nautobot-1.6.32.dist-info}/NOTICE +0 -0
- {nautobot-1.6.31.dist-info → nautobot-1.6.32.dist-info}/WHEEL +0 -0
- {nautobot-1.6.31.dist-info → nautobot-1.6.32.dist-info}/entry_points.txt +0 -0
|
@@ -869,6 +869,68 @@
|
|
|
869
869
|
|
|
870
870
|
|
|
871
871
|
|
|
872
|
+
|
|
873
|
+
|
|
874
|
+
|
|
875
|
+
|
|
876
|
+
|
|
877
|
+
|
|
878
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
879
|
+
|
|
880
|
+
|
|
881
|
+
|
|
882
|
+
|
|
883
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_5_7" >
|
|
884
|
+
|
|
885
|
+
|
|
886
|
+
|
|
887
|
+
<label class="md-nav__link" for="__nav_2_5_7" id="__nav_2_5_7_label" tabindex="0">
|
|
888
|
+
Security
|
|
889
|
+
<span class="md-nav__icon md-icon"></span>
|
|
890
|
+
</label>
|
|
891
|
+
|
|
892
|
+
<nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_5_7_label" aria-expanded="false">
|
|
893
|
+
<label class="md-nav__title" for="__nav_2_5_7">
|
|
894
|
+
<span class="md-nav__icon md-icon"></span>
|
|
895
|
+
Security
|
|
896
|
+
</label>
|
|
897
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
898
|
+
|
|
899
|
+
|
|
900
|
+
|
|
901
|
+
|
|
902
|
+
|
|
903
|
+
|
|
904
|
+
<li class="md-nav__item">
|
|
905
|
+
<a href="../administration/security/index.html" class="md-nav__link">
|
|
906
|
+
Nautobot Security
|
|
907
|
+
</a>
|
|
908
|
+
</li>
|
|
909
|
+
|
|
910
|
+
|
|
911
|
+
|
|
912
|
+
|
|
913
|
+
|
|
914
|
+
|
|
915
|
+
|
|
916
|
+
|
|
917
|
+
|
|
918
|
+
<li class="md-nav__item">
|
|
919
|
+
<a href="../administration/security/notices.html" class="md-nav__link">
|
|
920
|
+
Notices
|
|
921
|
+
</a>
|
|
922
|
+
</li>
|
|
923
|
+
|
|
924
|
+
|
|
925
|
+
|
|
926
|
+
|
|
927
|
+
</ul>
|
|
928
|
+
</nav>
|
|
929
|
+
</li>
|
|
930
|
+
|
|
931
|
+
|
|
932
|
+
|
|
933
|
+
|
|
872
934
|
</ul>
|
|
873
935
|
</nav>
|
|
874
936
|
</li>
|
|
@@ -3788,6 +3850,47 @@
|
|
|
3788
3850
|
</ul>
|
|
3789
3851
|
</nav>
|
|
3790
3852
|
|
|
3853
|
+
</li>
|
|
3854
|
+
|
|
3855
|
+
<li class="md-nav__item">
|
|
3856
|
+
<a href="#v1632-2025-06-09" class="md-nav__link">
|
|
3857
|
+
v1.6.32 (2025-06-09)
|
|
3858
|
+
</a>
|
|
3859
|
+
|
|
3860
|
+
<nav class="md-nav" aria-label="v1.6.32 (2025-06-09)">
|
|
3861
|
+
<ul class="md-nav__list">
|
|
3862
|
+
|
|
3863
|
+
<li class="md-nav__item">
|
|
3864
|
+
<a href="#security" class="md-nav__link">
|
|
3865
|
+
Security
|
|
3866
|
+
</a>
|
|
3867
|
+
|
|
3868
|
+
</li>
|
|
3869
|
+
|
|
3870
|
+
<li class="md-nav__item">
|
|
3871
|
+
<a href="#added_1" class="md-nav__link">
|
|
3872
|
+
Added
|
|
3873
|
+
</a>
|
|
3874
|
+
|
|
3875
|
+
</li>
|
|
3876
|
+
|
|
3877
|
+
<li class="md-nav__item">
|
|
3878
|
+
<a href="#fixed" class="md-nav__link">
|
|
3879
|
+
Fixed
|
|
3880
|
+
</a>
|
|
3881
|
+
|
|
3882
|
+
</li>
|
|
3883
|
+
|
|
3884
|
+
<li class="md-nav__item">
|
|
3885
|
+
<a href="#documentation" class="md-nav__link">
|
|
3886
|
+
Documentation
|
|
3887
|
+
</a>
|
|
3888
|
+
|
|
3889
|
+
</li>
|
|
3890
|
+
|
|
3891
|
+
</ul>
|
|
3892
|
+
</nav>
|
|
3893
|
+
|
|
3791
3894
|
</li>
|
|
3792
3895
|
|
|
3793
3896
|
<li class="md-nav__item">
|
|
@@ -3799,14 +3902,14 @@
|
|
|
3799
3902
|
<ul class="md-nav__list">
|
|
3800
3903
|
|
|
3801
3904
|
<li class="md-nav__item">
|
|
3802
|
-
<a href="#
|
|
3905
|
+
<a href="#security_1" class="md-nav__link">
|
|
3803
3906
|
Security
|
|
3804
3907
|
</a>
|
|
3805
3908
|
|
|
3806
3909
|
</li>
|
|
3807
3910
|
|
|
3808
3911
|
<li class="md-nav__item">
|
|
3809
|
-
<a href="#
|
|
3912
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
3810
3913
|
Fixed
|
|
3811
3914
|
</a>
|
|
3812
3915
|
|
|
@@ -3833,7 +3936,7 @@
|
|
|
3833
3936
|
<ul class="md-nav__list">
|
|
3834
3937
|
|
|
3835
3938
|
<li class="md-nav__item">
|
|
3836
|
-
<a href="#
|
|
3939
|
+
<a href="#security_2" class="md-nav__link">
|
|
3837
3940
|
Security
|
|
3838
3941
|
</a>
|
|
3839
3942
|
|
|
@@ -3860,14 +3963,14 @@
|
|
|
3860
3963
|
<ul class="md-nav__list">
|
|
3861
3964
|
|
|
3862
3965
|
<li class="md-nav__item">
|
|
3863
|
-
<a href="#
|
|
3966
|
+
<a href="#security_3" class="md-nav__link">
|
|
3864
3967
|
Security
|
|
3865
3968
|
</a>
|
|
3866
3969
|
|
|
3867
3970
|
</li>
|
|
3868
3971
|
|
|
3869
3972
|
<li class="md-nav__item">
|
|
3870
|
-
<a href="#
|
|
3973
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
3871
3974
|
Fixed
|
|
3872
3975
|
</a>
|
|
3873
3976
|
|
|
@@ -3887,7 +3990,7 @@
|
|
|
3887
3990
|
<ul class="md-nav__list">
|
|
3888
3991
|
|
|
3889
3992
|
<li class="md-nav__item">
|
|
3890
|
-
<a href="#
|
|
3993
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
3891
3994
|
Fixed
|
|
3892
3995
|
</a>
|
|
3893
3996
|
|
|
@@ -3914,14 +4017,14 @@
|
|
|
3914
4017
|
<ul class="md-nav__list">
|
|
3915
4018
|
|
|
3916
4019
|
<li class="md-nav__item">
|
|
3917
|
-
<a href="#
|
|
4020
|
+
<a href="#security_4" class="md-nav__link">
|
|
3918
4021
|
Security
|
|
3919
4022
|
</a>
|
|
3920
4023
|
|
|
3921
4024
|
</li>
|
|
3922
4025
|
|
|
3923
4026
|
<li class="md-nav__item">
|
|
3924
|
-
<a href="#
|
|
4027
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
3925
4028
|
Fixed
|
|
3926
4029
|
</a>
|
|
3927
4030
|
|
|
@@ -3941,7 +4044,7 @@
|
|
|
3941
4044
|
<ul class="md-nav__list">
|
|
3942
4045
|
|
|
3943
4046
|
<li class="md-nav__item">
|
|
3944
|
-
<a href="#
|
|
4047
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
3945
4048
|
Fixed
|
|
3946
4049
|
</a>
|
|
3947
4050
|
|
|
@@ -3961,7 +4064,7 @@
|
|
|
3961
4064
|
<ul class="md-nav__list">
|
|
3962
4065
|
|
|
3963
4066
|
<li class="md-nav__item">
|
|
3964
|
-
<a href="#
|
|
4067
|
+
<a href="#security_5" class="md-nav__link">
|
|
3965
4068
|
Security
|
|
3966
4069
|
</a>
|
|
3967
4070
|
|
|
@@ -3988,7 +4091,7 @@
|
|
|
3988
4091
|
<ul class="md-nav__list">
|
|
3989
4092
|
|
|
3990
4093
|
<li class="md-nav__item">
|
|
3991
|
-
<a href="#
|
|
4094
|
+
<a href="#security_6" class="md-nav__link">
|
|
3992
4095
|
Security
|
|
3993
4096
|
</a>
|
|
3994
4097
|
|
|
@@ -4015,7 +4118,7 @@
|
|
|
4015
4118
|
<ul class="md-nav__list">
|
|
4016
4119
|
|
|
4017
4120
|
<li class="md-nav__item">
|
|
4018
|
-
<a href="#
|
|
4121
|
+
<a href="#security_7" class="md-nav__link">
|
|
4019
4122
|
Security
|
|
4020
4123
|
</a>
|
|
4021
4124
|
|
|
@@ -4042,21 +4145,21 @@
|
|
|
4042
4145
|
<ul class="md-nav__list">
|
|
4043
4146
|
|
|
4044
4147
|
<li class="md-nav__item">
|
|
4045
|
-
<a href="#
|
|
4148
|
+
<a href="#security_8" class="md-nav__link">
|
|
4046
4149
|
Security
|
|
4047
4150
|
</a>
|
|
4048
4151
|
|
|
4049
4152
|
</li>
|
|
4050
4153
|
|
|
4051
4154
|
<li class="md-nav__item">
|
|
4052
|
-
<a href="#
|
|
4155
|
+
<a href="#added_2" class="md-nav__link">
|
|
4053
4156
|
Added
|
|
4054
4157
|
</a>
|
|
4055
4158
|
|
|
4056
4159
|
</li>
|
|
4057
4160
|
|
|
4058
4161
|
<li class="md-nav__item">
|
|
4059
|
-
<a href="#
|
|
4162
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
4060
4163
|
Fixed
|
|
4061
4164
|
</a>
|
|
4062
4165
|
|
|
@@ -4076,7 +4179,7 @@
|
|
|
4076
4179
|
<ul class="md-nav__list">
|
|
4077
4180
|
|
|
4078
4181
|
<li class="md-nav__item">
|
|
4079
|
-
<a href="#
|
|
4182
|
+
<a href="#security_9" class="md-nav__link">
|
|
4080
4183
|
Security
|
|
4081
4184
|
</a>
|
|
4082
4185
|
|
|
@@ -4096,14 +4199,14 @@
|
|
|
4096
4199
|
<ul class="md-nav__list">
|
|
4097
4200
|
|
|
4098
4201
|
<li class="md-nav__item">
|
|
4099
|
-
<a href="#
|
|
4202
|
+
<a href="#security_10" class="md-nav__link">
|
|
4100
4203
|
Security
|
|
4101
4204
|
</a>
|
|
4102
4205
|
|
|
4103
4206
|
</li>
|
|
4104
4207
|
|
|
4105
4208
|
<li class="md-nav__item">
|
|
4106
|
-
<a href="#
|
|
4209
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
4107
4210
|
Fixed
|
|
4108
4211
|
</a>
|
|
4109
4212
|
|
|
@@ -4123,14 +4226,14 @@
|
|
|
4123
4226
|
<ul class="md-nav__list">
|
|
4124
4227
|
|
|
4125
4228
|
<li class="md-nav__item">
|
|
4126
|
-
<a href="#
|
|
4229
|
+
<a href="#security_11" class="md-nav__link">
|
|
4127
4230
|
Security
|
|
4128
4231
|
</a>
|
|
4129
4232
|
|
|
4130
4233
|
</li>
|
|
4131
4234
|
|
|
4132
4235
|
<li class="md-nav__item">
|
|
4133
|
-
<a href="#
|
|
4236
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
4134
4237
|
Fixed
|
|
4135
4238
|
</a>
|
|
4136
4239
|
|
|
@@ -4150,7 +4253,7 @@
|
|
|
4150
4253
|
<ul class="md-nav__list">
|
|
4151
4254
|
|
|
4152
4255
|
<li class="md-nav__item">
|
|
4153
|
-
<a href="#
|
|
4256
|
+
<a href="#security_12" class="md-nav__link">
|
|
4154
4257
|
Security
|
|
4155
4258
|
</a>
|
|
4156
4259
|
|
|
@@ -4197,14 +4300,14 @@
|
|
|
4197
4300
|
<ul class="md-nav__list">
|
|
4198
4301
|
|
|
4199
4302
|
<li class="md-nav__item">
|
|
4200
|
-
<a href="#
|
|
4303
|
+
<a href="#security_13" class="md-nav__link">
|
|
4201
4304
|
Security
|
|
4202
4305
|
</a>
|
|
4203
4306
|
|
|
4204
4307
|
</li>
|
|
4205
4308
|
|
|
4206
4309
|
<li class="md-nav__item">
|
|
4207
|
-
<a href="#
|
|
4310
|
+
<a href="#added_3" class="md-nav__link">
|
|
4208
4311
|
Added
|
|
4209
4312
|
</a>
|
|
4210
4313
|
|
|
@@ -4218,14 +4321,14 @@
|
|
|
4218
4321
|
</li>
|
|
4219
4322
|
|
|
4220
4323
|
<li class="md-nav__item">
|
|
4221
|
-
<a href="#
|
|
4324
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
4222
4325
|
Fixed
|
|
4223
4326
|
</a>
|
|
4224
4327
|
|
|
4225
4328
|
</li>
|
|
4226
4329
|
|
|
4227
4330
|
<li class="md-nav__item">
|
|
4228
|
-
<a href="#
|
|
4331
|
+
<a href="#documentation_1" class="md-nav__link">
|
|
4229
4332
|
Documentation
|
|
4230
4333
|
</a>
|
|
4231
4334
|
|
|
@@ -4252,14 +4355,14 @@
|
|
|
4252
4355
|
<ul class="md-nav__list">
|
|
4253
4356
|
|
|
4254
4357
|
<li class="md-nav__item">
|
|
4255
|
-
<a href="#
|
|
4358
|
+
<a href="#added_4" class="md-nav__link">
|
|
4256
4359
|
Added
|
|
4257
4360
|
</a>
|
|
4258
4361
|
|
|
4259
4362
|
</li>
|
|
4260
4363
|
|
|
4261
4364
|
<li class="md-nav__item">
|
|
4262
|
-
<a href="#
|
|
4365
|
+
<a href="#fixed_10" class="md-nav__link">
|
|
4263
4366
|
Fixed
|
|
4264
4367
|
</a>
|
|
4265
4368
|
|
|
@@ -4286,7 +4389,7 @@
|
|
|
4286
4389
|
<ul class="md-nav__list">
|
|
4287
4390
|
|
|
4288
4391
|
<li class="md-nav__item">
|
|
4289
|
-
<a href="#
|
|
4392
|
+
<a href="#fixed_11" class="md-nav__link">
|
|
4290
4393
|
Fixed
|
|
4291
4394
|
</a>
|
|
4292
4395
|
|
|
@@ -4306,21 +4409,21 @@
|
|
|
4306
4409
|
<ul class="md-nav__list">
|
|
4307
4410
|
|
|
4308
4411
|
<li class="md-nav__item">
|
|
4309
|
-
<a href="#
|
|
4412
|
+
<a href="#added_5" class="md-nav__link">
|
|
4310
4413
|
Added
|
|
4311
4414
|
</a>
|
|
4312
4415
|
|
|
4313
4416
|
</li>
|
|
4314
4417
|
|
|
4315
4418
|
<li class="md-nav__item">
|
|
4316
|
-
<a href="#
|
|
4419
|
+
<a href="#fixed_12" class="md-nav__link">
|
|
4317
4420
|
Fixed
|
|
4318
4421
|
</a>
|
|
4319
4422
|
|
|
4320
4423
|
</li>
|
|
4321
4424
|
|
|
4322
4425
|
<li class="md-nav__item">
|
|
4323
|
-
<a href="#
|
|
4426
|
+
<a href="#documentation_2" class="md-nav__link">
|
|
4324
4427
|
Documentation
|
|
4325
4428
|
</a>
|
|
4326
4429
|
|
|
@@ -4340,14 +4443,14 @@
|
|
|
4340
4443
|
<ul class="md-nav__list">
|
|
4341
4444
|
|
|
4342
4445
|
<li class="md-nav__item">
|
|
4343
|
-
<a href="#
|
|
4446
|
+
<a href="#added_6" class="md-nav__link">
|
|
4344
4447
|
Added
|
|
4345
4448
|
</a>
|
|
4346
4449
|
|
|
4347
4450
|
</li>
|
|
4348
4451
|
|
|
4349
4452
|
<li class="md-nav__item">
|
|
4350
|
-
<a href="#
|
|
4453
|
+
<a href="#security_14" class="md-nav__link">
|
|
4351
4454
|
Security
|
|
4352
4455
|
</a>
|
|
4353
4456
|
|
|
@@ -4361,7 +4464,7 @@
|
|
|
4361
4464
|
</li>
|
|
4362
4465
|
|
|
4363
4466
|
<li class="md-nav__item">
|
|
4364
|
-
<a href="#
|
|
4467
|
+
<a href="#fixed_13" class="md-nav__link">
|
|
4365
4468
|
Fixed
|
|
4366
4469
|
</a>
|
|
4367
4470
|
|
|
@@ -4381,21 +4484,21 @@
|
|
|
4381
4484
|
<ul class="md-nav__list">
|
|
4382
4485
|
|
|
4383
4486
|
<li class="md-nav__item">
|
|
4384
|
-
<a href="#
|
|
4487
|
+
<a href="#security_15" class="md-nav__link">
|
|
4385
4488
|
Security
|
|
4386
4489
|
</a>
|
|
4387
4490
|
|
|
4388
4491
|
</li>
|
|
4389
4492
|
|
|
4390
4493
|
<li class="md-nav__item">
|
|
4391
|
-
<a href="#
|
|
4494
|
+
<a href="#added_7" class="md-nav__link">
|
|
4392
4495
|
Added
|
|
4393
4496
|
</a>
|
|
4394
4497
|
|
|
4395
4498
|
</li>
|
|
4396
4499
|
|
|
4397
4500
|
<li class="md-nav__item">
|
|
4398
|
-
<a href="#
|
|
4501
|
+
<a href="#fixed_14" class="md-nav__link">
|
|
4399
4502
|
Fixed
|
|
4400
4503
|
</a>
|
|
4401
4504
|
|
|
@@ -4415,14 +4518,14 @@
|
|
|
4415
4518
|
<ul class="md-nav__list">
|
|
4416
4519
|
|
|
4417
4520
|
<li class="md-nav__item">
|
|
4418
|
-
<a href="#
|
|
4521
|
+
<a href="#security_16" class="md-nav__link">
|
|
4419
4522
|
Security
|
|
4420
4523
|
</a>
|
|
4421
4524
|
|
|
4422
4525
|
</li>
|
|
4423
4526
|
|
|
4424
4527
|
<li class="md-nav__item">
|
|
4425
|
-
<a href="#
|
|
4528
|
+
<a href="#added_8" class="md-nav__link">
|
|
4426
4529
|
Added
|
|
4427
4530
|
</a>
|
|
4428
4531
|
|
|
@@ -4456,7 +4559,7 @@
|
|
|
4456
4559
|
<ul class="md-nav__list">
|
|
4457
4560
|
|
|
4458
4561
|
<li class="md-nav__item">
|
|
4459
|
-
<a href="#
|
|
4562
|
+
<a href="#fixed_15" class="md-nav__link">
|
|
4460
4563
|
Fixed
|
|
4461
4564
|
</a>
|
|
4462
4565
|
|
|
@@ -4476,14 +4579,14 @@
|
|
|
4476
4579
|
<ul class="md-nav__list">
|
|
4477
4580
|
|
|
4478
4581
|
<li class="md-nav__item">
|
|
4479
|
-
<a href="#
|
|
4582
|
+
<a href="#security_17" class="md-nav__link">
|
|
4480
4583
|
Security
|
|
4481
4584
|
</a>
|
|
4482
4585
|
|
|
4483
4586
|
</li>
|
|
4484
4587
|
|
|
4485
4588
|
<li class="md-nav__item">
|
|
4486
|
-
<a href="#
|
|
4589
|
+
<a href="#added_9" class="md-nav__link">
|
|
4487
4590
|
Added
|
|
4488
4591
|
</a>
|
|
4489
4592
|
|
|
@@ -4497,7 +4600,7 @@
|
|
|
4497
4600
|
</li>
|
|
4498
4601
|
|
|
4499
4602
|
<li class="md-nav__item">
|
|
4500
|
-
<a href="#
|
|
4603
|
+
<a href="#fixed_16" class="md-nav__link">
|
|
4501
4604
|
Fixed
|
|
4502
4605
|
</a>
|
|
4503
4606
|
|
|
@@ -4524,14 +4627,14 @@
|
|
|
4524
4627
|
<ul class="md-nav__list">
|
|
4525
4628
|
|
|
4526
4629
|
<li class="md-nav__item">
|
|
4527
|
-
<a href="#
|
|
4630
|
+
<a href="#security_18" class="md-nav__link">
|
|
4528
4631
|
Security
|
|
4529
4632
|
</a>
|
|
4530
4633
|
|
|
4531
4634
|
</li>
|
|
4532
4635
|
|
|
4533
4636
|
<li class="md-nav__item">
|
|
4534
|
-
<a href="#
|
|
4637
|
+
<a href="#added_10" class="md-nav__link">
|
|
4535
4638
|
Added
|
|
4536
4639
|
</a>
|
|
4537
4640
|
|
|
@@ -4545,7 +4648,7 @@
|
|
|
4545
4648
|
</li>
|
|
4546
4649
|
|
|
4547
4650
|
<li class="md-nav__item">
|
|
4548
|
-
<a href="#
|
|
4651
|
+
<a href="#fixed_17" class="md-nav__link">
|
|
4549
4652
|
Fixed
|
|
4550
4653
|
</a>
|
|
4551
4654
|
|
|
@@ -4565,7 +4668,7 @@
|
|
|
4565
4668
|
<ul class="md-nav__list">
|
|
4566
4669
|
|
|
4567
4670
|
<li class="md-nav__item">
|
|
4568
|
-
<a href="#
|
|
4671
|
+
<a href="#security_19" class="md-nav__link">
|
|
4569
4672
|
Security
|
|
4570
4673
|
</a>
|
|
4571
4674
|
|
|
@@ -4579,7 +4682,7 @@
|
|
|
4579
4682
|
</li>
|
|
4580
4683
|
|
|
4581
4684
|
<li class="md-nav__item">
|
|
4582
|
-
<a href="#
|
|
4685
|
+
<a href="#fixed_18" class="md-nav__link">
|
|
4583
4686
|
Fixed
|
|
4584
4687
|
</a>
|
|
4585
4688
|
|
|
@@ -4613,7 +4716,7 @@
|
|
|
4613
4716
|
<ul class="md-nav__list">
|
|
4614
4717
|
|
|
4615
4718
|
<li class="md-nav__item">
|
|
4616
|
-
<a href="#
|
|
4719
|
+
<a href="#added_11" class="md-nav__link">
|
|
4617
4720
|
Added
|
|
4618
4721
|
</a>
|
|
4619
4722
|
|
|
@@ -4627,7 +4730,7 @@
|
|
|
4627
4730
|
</li>
|
|
4628
4731
|
|
|
4629
4732
|
<li class="md-nav__item">
|
|
4630
|
-
<a href="#
|
|
4733
|
+
<a href="#fixed_19" class="md-nav__link">
|
|
4631
4734
|
Fixed
|
|
4632
4735
|
</a>
|
|
4633
4736
|
|
|
@@ -4641,7 +4744,7 @@
|
|
|
4641
4744
|
</li>
|
|
4642
4745
|
|
|
4643
4746
|
<li class="md-nav__item">
|
|
4644
|
-
<a href="#
|
|
4747
|
+
<a href="#security_20" class="md-nav__link">
|
|
4645
4748
|
Security
|
|
4646
4749
|
</a>
|
|
4647
4750
|
|
|
@@ -4661,7 +4764,7 @@
|
|
|
4661
4764
|
<ul class="md-nav__list">
|
|
4662
4765
|
|
|
4663
4766
|
<li class="md-nav__item">
|
|
4664
|
-
<a href="#
|
|
4767
|
+
<a href="#added_12" class="md-nav__link">
|
|
4665
4768
|
Added
|
|
4666
4769
|
</a>
|
|
4667
4770
|
|
|
@@ -4702,14 +4805,14 @@
|
|
|
4702
4805
|
<ul class="md-nav__list">
|
|
4703
4806
|
|
|
4704
4807
|
<li class="md-nav__item">
|
|
4705
|
-
<a href="#
|
|
4808
|
+
<a href="#added_13" class="md-nav__link">
|
|
4706
4809
|
Added
|
|
4707
4810
|
</a>
|
|
4708
4811
|
|
|
4709
4812
|
</li>
|
|
4710
4813
|
|
|
4711
4814
|
<li class="md-nav__item">
|
|
4712
|
-
<a href="#
|
|
4815
|
+
<a href="#fixed_20" class="md-nav__link">
|
|
4713
4816
|
Fixed
|
|
4714
4817
|
</a>
|
|
4715
4818
|
|
|
@@ -4723,7 +4826,7 @@
|
|
|
4723
4826
|
</li>
|
|
4724
4827
|
|
|
4725
4828
|
<li class="md-nav__item">
|
|
4726
|
-
<a href="#
|
|
4829
|
+
<a href="#security_21" class="md-nav__link">
|
|
4727
4830
|
Security
|
|
4728
4831
|
</a>
|
|
4729
4832
|
|
|
@@ -4743,7 +4846,7 @@
|
|
|
4743
4846
|
<ul class="md-nav__list">
|
|
4744
4847
|
|
|
4745
4848
|
<li class="md-nav__item">
|
|
4746
|
-
<a href="#
|
|
4849
|
+
<a href="#added_14" class="md-nav__link">
|
|
4747
4850
|
Added
|
|
4748
4851
|
</a>
|
|
4749
4852
|
|
|
@@ -4757,7 +4860,7 @@
|
|
|
4757
4860
|
</li>
|
|
4758
4861
|
|
|
4759
4862
|
<li class="md-nav__item">
|
|
4760
|
-
<a href="#
|
|
4863
|
+
<a href="#fixed_21" class="md-nav__link">
|
|
4761
4864
|
Fixed
|
|
4762
4865
|
</a>
|
|
4763
4866
|
|
|
@@ -4791,7 +4894,7 @@
|
|
|
4791
4894
|
</li>
|
|
4792
4895
|
|
|
4793
4896
|
<li class="md-nav__item">
|
|
4794
|
-
<a href="#
|
|
4897
|
+
<a href="#fixed_22" class="md-nav__link">
|
|
4795
4898
|
Fixed
|
|
4796
4899
|
</a>
|
|
4797
4900
|
|
|
@@ -4811,7 +4914,7 @@
|
|
|
4811
4914
|
<ul class="md-nav__list">
|
|
4812
4915
|
|
|
4813
4916
|
<li class="md-nav__item">
|
|
4814
|
-
<a href="#
|
|
4917
|
+
<a href="#added_15" class="md-nav__link">
|
|
4815
4918
|
Added
|
|
4816
4919
|
</a>
|
|
4817
4920
|
|
|
@@ -4825,7 +4928,7 @@
|
|
|
4825
4928
|
</li>
|
|
4826
4929
|
|
|
4827
4930
|
<li class="md-nav__item">
|
|
4828
|
-
<a href="#
|
|
4931
|
+
<a href="#fixed_23" class="md-nav__link">
|
|
4829
4932
|
Fixed
|
|
4830
4933
|
</a>
|
|
4831
4934
|
|
|
@@ -4845,7 +4948,7 @@
|
|
|
4845
4948
|
<ul class="md-nav__list">
|
|
4846
4949
|
|
|
4847
4950
|
<li class="md-nav__item">
|
|
4848
|
-
<a href="#
|
|
4951
|
+
<a href="#added_16" class="md-nav__link">
|
|
4849
4952
|
Added
|
|
4850
4953
|
</a>
|
|
4851
4954
|
|
|
@@ -4866,7 +4969,7 @@
|
|
|
4866
4969
|
</li>
|
|
4867
4970
|
|
|
4868
4971
|
<li class="md-nav__item">
|
|
4869
|
-
<a href="#
|
|
4972
|
+
<a href="#fixed_24" class="md-nav__link">
|
|
4870
4973
|
Fixed
|
|
4871
4974
|
</a>
|
|
4872
4975
|
|
|
@@ -5353,6 +5456,47 @@
|
|
|
5353
5456
|
</ul>
|
|
5354
5457
|
</nav>
|
|
5355
5458
|
|
|
5459
|
+
</li>
|
|
5460
|
+
|
|
5461
|
+
<li class="md-nav__item">
|
|
5462
|
+
<a href="#v1632-2025-06-09" class="md-nav__link">
|
|
5463
|
+
v1.6.32 (2025-06-09)
|
|
5464
|
+
</a>
|
|
5465
|
+
|
|
5466
|
+
<nav class="md-nav" aria-label="v1.6.32 (2025-06-09)">
|
|
5467
|
+
<ul class="md-nav__list">
|
|
5468
|
+
|
|
5469
|
+
<li class="md-nav__item">
|
|
5470
|
+
<a href="#security" class="md-nav__link">
|
|
5471
|
+
Security
|
|
5472
|
+
</a>
|
|
5473
|
+
|
|
5474
|
+
</li>
|
|
5475
|
+
|
|
5476
|
+
<li class="md-nav__item">
|
|
5477
|
+
<a href="#added_1" class="md-nav__link">
|
|
5478
|
+
Added
|
|
5479
|
+
</a>
|
|
5480
|
+
|
|
5481
|
+
</li>
|
|
5482
|
+
|
|
5483
|
+
<li class="md-nav__item">
|
|
5484
|
+
<a href="#fixed" class="md-nav__link">
|
|
5485
|
+
Fixed
|
|
5486
|
+
</a>
|
|
5487
|
+
|
|
5488
|
+
</li>
|
|
5489
|
+
|
|
5490
|
+
<li class="md-nav__item">
|
|
5491
|
+
<a href="#documentation" class="md-nav__link">
|
|
5492
|
+
Documentation
|
|
5493
|
+
</a>
|
|
5494
|
+
|
|
5495
|
+
</li>
|
|
5496
|
+
|
|
5497
|
+
</ul>
|
|
5498
|
+
</nav>
|
|
5499
|
+
|
|
5356
5500
|
</li>
|
|
5357
5501
|
|
|
5358
5502
|
<li class="md-nav__item">
|
|
@@ -5364,14 +5508,14 @@
|
|
|
5364
5508
|
<ul class="md-nav__list">
|
|
5365
5509
|
|
|
5366
5510
|
<li class="md-nav__item">
|
|
5367
|
-
<a href="#
|
|
5511
|
+
<a href="#security_1" class="md-nav__link">
|
|
5368
5512
|
Security
|
|
5369
5513
|
</a>
|
|
5370
5514
|
|
|
5371
5515
|
</li>
|
|
5372
5516
|
|
|
5373
5517
|
<li class="md-nav__item">
|
|
5374
|
-
<a href="#
|
|
5518
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
5375
5519
|
Fixed
|
|
5376
5520
|
</a>
|
|
5377
5521
|
|
|
@@ -5398,7 +5542,7 @@
|
|
|
5398
5542
|
<ul class="md-nav__list">
|
|
5399
5543
|
|
|
5400
5544
|
<li class="md-nav__item">
|
|
5401
|
-
<a href="#
|
|
5545
|
+
<a href="#security_2" class="md-nav__link">
|
|
5402
5546
|
Security
|
|
5403
5547
|
</a>
|
|
5404
5548
|
|
|
@@ -5425,14 +5569,14 @@
|
|
|
5425
5569
|
<ul class="md-nav__list">
|
|
5426
5570
|
|
|
5427
5571
|
<li class="md-nav__item">
|
|
5428
|
-
<a href="#
|
|
5572
|
+
<a href="#security_3" class="md-nav__link">
|
|
5429
5573
|
Security
|
|
5430
5574
|
</a>
|
|
5431
5575
|
|
|
5432
5576
|
</li>
|
|
5433
5577
|
|
|
5434
5578
|
<li class="md-nav__item">
|
|
5435
|
-
<a href="#
|
|
5579
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
5436
5580
|
Fixed
|
|
5437
5581
|
</a>
|
|
5438
5582
|
|
|
@@ -5452,7 +5596,7 @@
|
|
|
5452
5596
|
<ul class="md-nav__list">
|
|
5453
5597
|
|
|
5454
5598
|
<li class="md-nav__item">
|
|
5455
|
-
<a href="#
|
|
5599
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
5456
5600
|
Fixed
|
|
5457
5601
|
</a>
|
|
5458
5602
|
|
|
@@ -5479,14 +5623,14 @@
|
|
|
5479
5623
|
<ul class="md-nav__list">
|
|
5480
5624
|
|
|
5481
5625
|
<li class="md-nav__item">
|
|
5482
|
-
<a href="#
|
|
5626
|
+
<a href="#security_4" class="md-nav__link">
|
|
5483
5627
|
Security
|
|
5484
5628
|
</a>
|
|
5485
5629
|
|
|
5486
5630
|
</li>
|
|
5487
5631
|
|
|
5488
5632
|
<li class="md-nav__item">
|
|
5489
|
-
<a href="#
|
|
5633
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
5490
5634
|
Fixed
|
|
5491
5635
|
</a>
|
|
5492
5636
|
|
|
@@ -5506,7 +5650,7 @@
|
|
|
5506
5650
|
<ul class="md-nav__list">
|
|
5507
5651
|
|
|
5508
5652
|
<li class="md-nav__item">
|
|
5509
|
-
<a href="#
|
|
5653
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
5510
5654
|
Fixed
|
|
5511
5655
|
</a>
|
|
5512
5656
|
|
|
@@ -5526,7 +5670,7 @@
|
|
|
5526
5670
|
<ul class="md-nav__list">
|
|
5527
5671
|
|
|
5528
5672
|
<li class="md-nav__item">
|
|
5529
|
-
<a href="#
|
|
5673
|
+
<a href="#security_5" class="md-nav__link">
|
|
5530
5674
|
Security
|
|
5531
5675
|
</a>
|
|
5532
5676
|
|
|
@@ -5553,7 +5697,7 @@
|
|
|
5553
5697
|
<ul class="md-nav__list">
|
|
5554
5698
|
|
|
5555
5699
|
<li class="md-nav__item">
|
|
5556
|
-
<a href="#
|
|
5700
|
+
<a href="#security_6" class="md-nav__link">
|
|
5557
5701
|
Security
|
|
5558
5702
|
</a>
|
|
5559
5703
|
|
|
@@ -5580,7 +5724,7 @@
|
|
|
5580
5724
|
<ul class="md-nav__list">
|
|
5581
5725
|
|
|
5582
5726
|
<li class="md-nav__item">
|
|
5583
|
-
<a href="#
|
|
5727
|
+
<a href="#security_7" class="md-nav__link">
|
|
5584
5728
|
Security
|
|
5585
5729
|
</a>
|
|
5586
5730
|
|
|
@@ -5607,21 +5751,21 @@
|
|
|
5607
5751
|
<ul class="md-nav__list">
|
|
5608
5752
|
|
|
5609
5753
|
<li class="md-nav__item">
|
|
5610
|
-
<a href="#
|
|
5754
|
+
<a href="#security_8" class="md-nav__link">
|
|
5611
5755
|
Security
|
|
5612
5756
|
</a>
|
|
5613
5757
|
|
|
5614
5758
|
</li>
|
|
5615
5759
|
|
|
5616
5760
|
<li class="md-nav__item">
|
|
5617
|
-
<a href="#
|
|
5761
|
+
<a href="#added_2" class="md-nav__link">
|
|
5618
5762
|
Added
|
|
5619
5763
|
</a>
|
|
5620
5764
|
|
|
5621
5765
|
</li>
|
|
5622
5766
|
|
|
5623
5767
|
<li class="md-nav__item">
|
|
5624
|
-
<a href="#
|
|
5768
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
5625
5769
|
Fixed
|
|
5626
5770
|
</a>
|
|
5627
5771
|
|
|
@@ -5641,7 +5785,7 @@
|
|
|
5641
5785
|
<ul class="md-nav__list">
|
|
5642
5786
|
|
|
5643
5787
|
<li class="md-nav__item">
|
|
5644
|
-
<a href="#
|
|
5788
|
+
<a href="#security_9" class="md-nav__link">
|
|
5645
5789
|
Security
|
|
5646
5790
|
</a>
|
|
5647
5791
|
|
|
@@ -5661,14 +5805,14 @@
|
|
|
5661
5805
|
<ul class="md-nav__list">
|
|
5662
5806
|
|
|
5663
5807
|
<li class="md-nav__item">
|
|
5664
|
-
<a href="#
|
|
5808
|
+
<a href="#security_10" class="md-nav__link">
|
|
5665
5809
|
Security
|
|
5666
5810
|
</a>
|
|
5667
5811
|
|
|
5668
5812
|
</li>
|
|
5669
5813
|
|
|
5670
5814
|
<li class="md-nav__item">
|
|
5671
|
-
<a href="#
|
|
5815
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
5672
5816
|
Fixed
|
|
5673
5817
|
</a>
|
|
5674
5818
|
|
|
@@ -5688,14 +5832,14 @@
|
|
|
5688
5832
|
<ul class="md-nav__list">
|
|
5689
5833
|
|
|
5690
5834
|
<li class="md-nav__item">
|
|
5691
|
-
<a href="#
|
|
5835
|
+
<a href="#security_11" class="md-nav__link">
|
|
5692
5836
|
Security
|
|
5693
5837
|
</a>
|
|
5694
5838
|
|
|
5695
5839
|
</li>
|
|
5696
5840
|
|
|
5697
5841
|
<li class="md-nav__item">
|
|
5698
|
-
<a href="#
|
|
5842
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
5699
5843
|
Fixed
|
|
5700
5844
|
</a>
|
|
5701
5845
|
|
|
@@ -5715,7 +5859,7 @@
|
|
|
5715
5859
|
<ul class="md-nav__list">
|
|
5716
5860
|
|
|
5717
5861
|
<li class="md-nav__item">
|
|
5718
|
-
<a href="#
|
|
5862
|
+
<a href="#security_12" class="md-nav__link">
|
|
5719
5863
|
Security
|
|
5720
5864
|
</a>
|
|
5721
5865
|
|
|
@@ -5762,14 +5906,14 @@
|
|
|
5762
5906
|
<ul class="md-nav__list">
|
|
5763
5907
|
|
|
5764
5908
|
<li class="md-nav__item">
|
|
5765
|
-
<a href="#
|
|
5909
|
+
<a href="#security_13" class="md-nav__link">
|
|
5766
5910
|
Security
|
|
5767
5911
|
</a>
|
|
5768
5912
|
|
|
5769
5913
|
</li>
|
|
5770
5914
|
|
|
5771
5915
|
<li class="md-nav__item">
|
|
5772
|
-
<a href="#
|
|
5916
|
+
<a href="#added_3" class="md-nav__link">
|
|
5773
5917
|
Added
|
|
5774
5918
|
</a>
|
|
5775
5919
|
|
|
@@ -5783,14 +5927,14 @@
|
|
|
5783
5927
|
</li>
|
|
5784
5928
|
|
|
5785
5929
|
<li class="md-nav__item">
|
|
5786
|
-
<a href="#
|
|
5930
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
5787
5931
|
Fixed
|
|
5788
5932
|
</a>
|
|
5789
5933
|
|
|
5790
5934
|
</li>
|
|
5791
5935
|
|
|
5792
5936
|
<li class="md-nav__item">
|
|
5793
|
-
<a href="#
|
|
5937
|
+
<a href="#documentation_1" class="md-nav__link">
|
|
5794
5938
|
Documentation
|
|
5795
5939
|
</a>
|
|
5796
5940
|
|
|
@@ -5817,14 +5961,14 @@
|
|
|
5817
5961
|
<ul class="md-nav__list">
|
|
5818
5962
|
|
|
5819
5963
|
<li class="md-nav__item">
|
|
5820
|
-
<a href="#
|
|
5964
|
+
<a href="#added_4" class="md-nav__link">
|
|
5821
5965
|
Added
|
|
5822
5966
|
</a>
|
|
5823
5967
|
|
|
5824
5968
|
</li>
|
|
5825
5969
|
|
|
5826
5970
|
<li class="md-nav__item">
|
|
5827
|
-
<a href="#
|
|
5971
|
+
<a href="#fixed_10" class="md-nav__link">
|
|
5828
5972
|
Fixed
|
|
5829
5973
|
</a>
|
|
5830
5974
|
|
|
@@ -5851,7 +5995,7 @@
|
|
|
5851
5995
|
<ul class="md-nav__list">
|
|
5852
5996
|
|
|
5853
5997
|
<li class="md-nav__item">
|
|
5854
|
-
<a href="#
|
|
5998
|
+
<a href="#fixed_11" class="md-nav__link">
|
|
5855
5999
|
Fixed
|
|
5856
6000
|
</a>
|
|
5857
6001
|
|
|
@@ -5871,21 +6015,21 @@
|
|
|
5871
6015
|
<ul class="md-nav__list">
|
|
5872
6016
|
|
|
5873
6017
|
<li class="md-nav__item">
|
|
5874
|
-
<a href="#
|
|
6018
|
+
<a href="#added_5" class="md-nav__link">
|
|
5875
6019
|
Added
|
|
5876
6020
|
</a>
|
|
5877
6021
|
|
|
5878
6022
|
</li>
|
|
5879
6023
|
|
|
5880
6024
|
<li class="md-nav__item">
|
|
5881
|
-
<a href="#
|
|
6025
|
+
<a href="#fixed_12" class="md-nav__link">
|
|
5882
6026
|
Fixed
|
|
5883
6027
|
</a>
|
|
5884
6028
|
|
|
5885
6029
|
</li>
|
|
5886
6030
|
|
|
5887
6031
|
<li class="md-nav__item">
|
|
5888
|
-
<a href="#
|
|
6032
|
+
<a href="#documentation_2" class="md-nav__link">
|
|
5889
6033
|
Documentation
|
|
5890
6034
|
</a>
|
|
5891
6035
|
|
|
@@ -5905,14 +6049,14 @@
|
|
|
5905
6049
|
<ul class="md-nav__list">
|
|
5906
6050
|
|
|
5907
6051
|
<li class="md-nav__item">
|
|
5908
|
-
<a href="#
|
|
6052
|
+
<a href="#added_6" class="md-nav__link">
|
|
5909
6053
|
Added
|
|
5910
6054
|
</a>
|
|
5911
6055
|
|
|
5912
6056
|
</li>
|
|
5913
6057
|
|
|
5914
6058
|
<li class="md-nav__item">
|
|
5915
|
-
<a href="#
|
|
6059
|
+
<a href="#security_14" class="md-nav__link">
|
|
5916
6060
|
Security
|
|
5917
6061
|
</a>
|
|
5918
6062
|
|
|
@@ -5926,7 +6070,7 @@
|
|
|
5926
6070
|
</li>
|
|
5927
6071
|
|
|
5928
6072
|
<li class="md-nav__item">
|
|
5929
|
-
<a href="#
|
|
6073
|
+
<a href="#fixed_13" class="md-nav__link">
|
|
5930
6074
|
Fixed
|
|
5931
6075
|
</a>
|
|
5932
6076
|
|
|
@@ -5946,21 +6090,21 @@
|
|
|
5946
6090
|
<ul class="md-nav__list">
|
|
5947
6091
|
|
|
5948
6092
|
<li class="md-nav__item">
|
|
5949
|
-
<a href="#
|
|
6093
|
+
<a href="#security_15" class="md-nav__link">
|
|
5950
6094
|
Security
|
|
5951
6095
|
</a>
|
|
5952
6096
|
|
|
5953
6097
|
</li>
|
|
5954
6098
|
|
|
5955
6099
|
<li class="md-nav__item">
|
|
5956
|
-
<a href="#
|
|
6100
|
+
<a href="#added_7" class="md-nav__link">
|
|
5957
6101
|
Added
|
|
5958
6102
|
</a>
|
|
5959
6103
|
|
|
5960
6104
|
</li>
|
|
5961
6105
|
|
|
5962
6106
|
<li class="md-nav__item">
|
|
5963
|
-
<a href="#
|
|
6107
|
+
<a href="#fixed_14" class="md-nav__link">
|
|
5964
6108
|
Fixed
|
|
5965
6109
|
</a>
|
|
5966
6110
|
|
|
@@ -5980,14 +6124,14 @@
|
|
|
5980
6124
|
<ul class="md-nav__list">
|
|
5981
6125
|
|
|
5982
6126
|
<li class="md-nav__item">
|
|
5983
|
-
<a href="#
|
|
6127
|
+
<a href="#security_16" class="md-nav__link">
|
|
5984
6128
|
Security
|
|
5985
6129
|
</a>
|
|
5986
6130
|
|
|
5987
6131
|
</li>
|
|
5988
6132
|
|
|
5989
6133
|
<li class="md-nav__item">
|
|
5990
|
-
<a href="#
|
|
6134
|
+
<a href="#added_8" class="md-nav__link">
|
|
5991
6135
|
Added
|
|
5992
6136
|
</a>
|
|
5993
6137
|
|
|
@@ -6021,7 +6165,7 @@
|
|
|
6021
6165
|
<ul class="md-nav__list">
|
|
6022
6166
|
|
|
6023
6167
|
<li class="md-nav__item">
|
|
6024
|
-
<a href="#
|
|
6168
|
+
<a href="#fixed_15" class="md-nav__link">
|
|
6025
6169
|
Fixed
|
|
6026
6170
|
</a>
|
|
6027
6171
|
|
|
@@ -6041,14 +6185,14 @@
|
|
|
6041
6185
|
<ul class="md-nav__list">
|
|
6042
6186
|
|
|
6043
6187
|
<li class="md-nav__item">
|
|
6044
|
-
<a href="#
|
|
6188
|
+
<a href="#security_17" class="md-nav__link">
|
|
6045
6189
|
Security
|
|
6046
6190
|
</a>
|
|
6047
6191
|
|
|
6048
6192
|
</li>
|
|
6049
6193
|
|
|
6050
6194
|
<li class="md-nav__item">
|
|
6051
|
-
<a href="#
|
|
6195
|
+
<a href="#added_9" class="md-nav__link">
|
|
6052
6196
|
Added
|
|
6053
6197
|
</a>
|
|
6054
6198
|
|
|
@@ -6062,7 +6206,7 @@
|
|
|
6062
6206
|
</li>
|
|
6063
6207
|
|
|
6064
6208
|
<li class="md-nav__item">
|
|
6065
|
-
<a href="#
|
|
6209
|
+
<a href="#fixed_16" class="md-nav__link">
|
|
6066
6210
|
Fixed
|
|
6067
6211
|
</a>
|
|
6068
6212
|
|
|
@@ -6089,14 +6233,14 @@
|
|
|
6089
6233
|
<ul class="md-nav__list">
|
|
6090
6234
|
|
|
6091
6235
|
<li class="md-nav__item">
|
|
6092
|
-
<a href="#
|
|
6236
|
+
<a href="#security_18" class="md-nav__link">
|
|
6093
6237
|
Security
|
|
6094
6238
|
</a>
|
|
6095
6239
|
|
|
6096
6240
|
</li>
|
|
6097
6241
|
|
|
6098
6242
|
<li class="md-nav__item">
|
|
6099
|
-
<a href="#
|
|
6243
|
+
<a href="#added_10" class="md-nav__link">
|
|
6100
6244
|
Added
|
|
6101
6245
|
</a>
|
|
6102
6246
|
|
|
@@ -6110,7 +6254,7 @@
|
|
|
6110
6254
|
</li>
|
|
6111
6255
|
|
|
6112
6256
|
<li class="md-nav__item">
|
|
6113
|
-
<a href="#
|
|
6257
|
+
<a href="#fixed_17" class="md-nav__link">
|
|
6114
6258
|
Fixed
|
|
6115
6259
|
</a>
|
|
6116
6260
|
|
|
@@ -6130,7 +6274,7 @@
|
|
|
6130
6274
|
<ul class="md-nav__list">
|
|
6131
6275
|
|
|
6132
6276
|
<li class="md-nav__item">
|
|
6133
|
-
<a href="#
|
|
6277
|
+
<a href="#security_19" class="md-nav__link">
|
|
6134
6278
|
Security
|
|
6135
6279
|
</a>
|
|
6136
6280
|
|
|
@@ -6144,7 +6288,7 @@
|
|
|
6144
6288
|
</li>
|
|
6145
6289
|
|
|
6146
6290
|
<li class="md-nav__item">
|
|
6147
|
-
<a href="#
|
|
6291
|
+
<a href="#fixed_18" class="md-nav__link">
|
|
6148
6292
|
Fixed
|
|
6149
6293
|
</a>
|
|
6150
6294
|
|
|
@@ -6178,7 +6322,7 @@
|
|
|
6178
6322
|
<ul class="md-nav__list">
|
|
6179
6323
|
|
|
6180
6324
|
<li class="md-nav__item">
|
|
6181
|
-
<a href="#
|
|
6325
|
+
<a href="#added_11" class="md-nav__link">
|
|
6182
6326
|
Added
|
|
6183
6327
|
</a>
|
|
6184
6328
|
|
|
@@ -6192,7 +6336,7 @@
|
|
|
6192
6336
|
</li>
|
|
6193
6337
|
|
|
6194
6338
|
<li class="md-nav__item">
|
|
6195
|
-
<a href="#
|
|
6339
|
+
<a href="#fixed_19" class="md-nav__link">
|
|
6196
6340
|
Fixed
|
|
6197
6341
|
</a>
|
|
6198
6342
|
|
|
@@ -6206,7 +6350,7 @@
|
|
|
6206
6350
|
</li>
|
|
6207
6351
|
|
|
6208
6352
|
<li class="md-nav__item">
|
|
6209
|
-
<a href="#
|
|
6353
|
+
<a href="#security_20" class="md-nav__link">
|
|
6210
6354
|
Security
|
|
6211
6355
|
</a>
|
|
6212
6356
|
|
|
@@ -6226,7 +6370,7 @@
|
|
|
6226
6370
|
<ul class="md-nav__list">
|
|
6227
6371
|
|
|
6228
6372
|
<li class="md-nav__item">
|
|
6229
|
-
<a href="#
|
|
6373
|
+
<a href="#added_12" class="md-nav__link">
|
|
6230
6374
|
Added
|
|
6231
6375
|
</a>
|
|
6232
6376
|
|
|
@@ -6267,14 +6411,14 @@
|
|
|
6267
6411
|
<ul class="md-nav__list">
|
|
6268
6412
|
|
|
6269
6413
|
<li class="md-nav__item">
|
|
6270
|
-
<a href="#
|
|
6414
|
+
<a href="#added_13" class="md-nav__link">
|
|
6271
6415
|
Added
|
|
6272
6416
|
</a>
|
|
6273
6417
|
|
|
6274
6418
|
</li>
|
|
6275
6419
|
|
|
6276
6420
|
<li class="md-nav__item">
|
|
6277
|
-
<a href="#
|
|
6421
|
+
<a href="#fixed_20" class="md-nav__link">
|
|
6278
6422
|
Fixed
|
|
6279
6423
|
</a>
|
|
6280
6424
|
|
|
@@ -6288,7 +6432,7 @@
|
|
|
6288
6432
|
</li>
|
|
6289
6433
|
|
|
6290
6434
|
<li class="md-nav__item">
|
|
6291
|
-
<a href="#
|
|
6435
|
+
<a href="#security_21" class="md-nav__link">
|
|
6292
6436
|
Security
|
|
6293
6437
|
</a>
|
|
6294
6438
|
|
|
@@ -6308,7 +6452,7 @@
|
|
|
6308
6452
|
<ul class="md-nav__list">
|
|
6309
6453
|
|
|
6310
6454
|
<li class="md-nav__item">
|
|
6311
|
-
<a href="#
|
|
6455
|
+
<a href="#added_14" class="md-nav__link">
|
|
6312
6456
|
Added
|
|
6313
6457
|
</a>
|
|
6314
6458
|
|
|
@@ -6322,7 +6466,7 @@
|
|
|
6322
6466
|
</li>
|
|
6323
6467
|
|
|
6324
6468
|
<li class="md-nav__item">
|
|
6325
|
-
<a href="#
|
|
6469
|
+
<a href="#fixed_21" class="md-nav__link">
|
|
6326
6470
|
Fixed
|
|
6327
6471
|
</a>
|
|
6328
6472
|
|
|
@@ -6356,7 +6500,7 @@
|
|
|
6356
6500
|
</li>
|
|
6357
6501
|
|
|
6358
6502
|
<li class="md-nav__item">
|
|
6359
|
-
<a href="#
|
|
6503
|
+
<a href="#fixed_22" class="md-nav__link">
|
|
6360
6504
|
Fixed
|
|
6361
6505
|
</a>
|
|
6362
6506
|
|
|
@@ -6376,7 +6520,7 @@
|
|
|
6376
6520
|
<ul class="md-nav__list">
|
|
6377
6521
|
|
|
6378
6522
|
<li class="md-nav__item">
|
|
6379
|
-
<a href="#
|
|
6523
|
+
<a href="#added_15" class="md-nav__link">
|
|
6380
6524
|
Added
|
|
6381
6525
|
</a>
|
|
6382
6526
|
|
|
@@ -6390,7 +6534,7 @@
|
|
|
6390
6534
|
</li>
|
|
6391
6535
|
|
|
6392
6536
|
<li class="md-nav__item">
|
|
6393
|
-
<a href="#
|
|
6537
|
+
<a href="#fixed_23" class="md-nav__link">
|
|
6394
6538
|
Fixed
|
|
6395
6539
|
</a>
|
|
6396
6540
|
|
|
@@ -6410,7 +6554,7 @@
|
|
|
6410
6554
|
<ul class="md-nav__list">
|
|
6411
6555
|
|
|
6412
6556
|
<li class="md-nav__item">
|
|
6413
|
-
<a href="#
|
|
6557
|
+
<a href="#added_16" class="md-nav__link">
|
|
6414
6558
|
Added
|
|
6415
6559
|
</a>
|
|
6416
6560
|
|
|
@@ -6431,7 +6575,7 @@
|
|
|
6431
6575
|
</li>
|
|
6432
6576
|
|
|
6433
6577
|
<li class="md-nav__item">
|
|
6434
|
-
<a href="#
|
|
6578
|
+
<a href="#fixed_24" class="md-nav__link">
|
|
6435
6579
|
Fixed
|
|
6436
6580
|
</a>
|
|
6437
6581
|
|
|
@@ -6511,22 +6655,44 @@
|
|
|
6511
6655
|
<p>As Python 3.7 has reached end-of-life, Nautobot 1.6 and later do not support installation or operation under Python 3.7.</p>
|
|
6512
6656
|
<!-- towncrier release notes start -->
|
|
6513
6657
|
|
|
6514
|
-
<h2 id="
|
|
6658
|
+
<h2 id="v1632-2025-06-09">v1.6.32 (2025-06-09)<a class="headerlink" href="#v1632-2025-06-09" title="Permanent link">¶</a></h2>
|
|
6515
6659
|
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
6516
6660
|
<ul>
|
|
6517
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/
|
|
6661
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6672">#6672</a> - Added enforcement of user authentication when serving uploaded media files (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-rh67-4c8j-hjjh">GHSA-rh67-4c8j-hjjh</a>).</li>
|
|
6662
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7429">#7429</a> - Added protections against access of various security-related and/or data-altering methods of various Nautobot models from within a Jinja2 sandboxed environment or the Django template renderer (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-wjw6-95h5-4jpx">GHSA-wjw6-95h5-4jpx</a>).</li>
|
|
6663
|
+
</ul>
|
|
6664
|
+
<h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">¶</a></h3>
|
|
6665
|
+
<ul>
|
|
6666
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7305">#7305</a> - Added RackRoleFilterForm, ManufacturerFilterForm, DeviceRoleFilterForm, PlatformFilterForm, RoleFilterForm, TenantGroupFilterForm, ClusterTypeFilterForm, ClusterGroupFilterForm, CustomFieldFilterForm, CircuitTypeFilterForm and set them to proper <code>filterset_form</code> or <code>filterset_form_class</code> in views.</li>
|
|
6667
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7305">#7305</a> - Added a generic test case that asserts that all list views provide an appropriate FilterForm class.</li>
|
|
6518
6668
|
</ul>
|
|
6519
6669
|
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
6520
6670
|
<ul>
|
|
6671
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7250">#7250</a> - Fixed JSON and MULTISELECT custom field being returned as a <code>repr()</code> string when using GraphQL.</li>
|
|
6672
|
+
</ul>
|
|
6673
|
+
<h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">¶</a></h3>
|
|
6674
|
+
<ul>
|
|
6675
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7432">#7432</a> - Added "Security Notices" document to the documentation under <strong>Administration</strong>.</li>
|
|
6676
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7432">#7432</a> - Fixed a number of broken links in the documentation.</li>
|
|
6677
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7432">#7432</a> - Added latest security disclosures to the documentation.</li>
|
|
6678
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7432">#7432</a> - Removed John Anderson as a point of contact for Nautobot security issues.</li>
|
|
6679
|
+
</ul>
|
|
6680
|
+
<h2 id="v1631-2025-05-12">v1.6.31 (2025-05-12)<a class="headerlink" href="#v1631-2025-05-12" title="Permanent link">¶</a></h2>
|
|
6681
|
+
<h3 id="security_1">Security<a class="headerlink" href="#security_1" title="Permanent link">¶</a></h3>
|
|
6682
|
+
<ul>
|
|
6683
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6983">#6983</a> - Updated dependency <code>Jinja2</code> to <code>~3.1.6</code> to address <code>CVE-2025-27516</code>.</li>
|
|
6684
|
+
</ul>
|
|
6685
|
+
<h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">¶</a></h3>
|
|
6686
|
+
<ul>
|
|
6521
6687
|
<li><a href="https://github.com/nautobot/nautobot/issues/6985">#6985</a> - Fixed Rack Elevation filtering by adding <code>filterset_form</code> to the <code>RackElevationListView</code>.</li>
|
|
6522
6688
|
</ul>
|
|
6523
6689
|
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
6524
6690
|
<ul>
|
|
6525
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6618">#6618</a> - Update GitHub actions
|
|
6691
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6618">#6618</a> - Update GitHub actions <code>*.yml</code> file to use minimum ubuntu-24.04 since ubuntu-20.04 is deprecated.</li>
|
|
6526
6692
|
<li><a href="https://github.com/nautobot/nautobot/issues/6988">#6988</a> - Updated GitHub Actions to use <code>networktocode/gh-action-setup-poetry-environment@v6</code>.</li>
|
|
6527
6693
|
</ul>
|
|
6528
6694
|
<h2 id="v1630-2025-01-06">v1.6.30 (2025-01-06)<a class="headerlink" href="#v1630-2025-01-06" title="Permanent link">¶</a></h2>
|
|
6529
|
-
<h3 id="
|
|
6695
|
+
<h3 id="security_2">Security<a class="headerlink" href="#security_2" title="Permanent link">¶</a></h3>
|
|
6530
6696
|
<ul>
|
|
6531
6697
|
<li><a href="https://github.com/nautobot/nautobot/issues/6695">#6695</a> - Updated dependency <code>Jinja2</code> to <code>~3.1.5</code> to address <code>CVE-2024-56201</code> and <code>CVE-2024-56326</code>.</li>
|
|
6532
6698
|
</ul>
|
|
@@ -6535,19 +6701,19 @@
|
|
|
6535
6701
|
<li><a href="https://github.com/nautobot/nautobot/issues/6659">#6659</a> - Enhanced development environment and associated <code>invoke</code> tasks to be Nautobot major/minor version aware, such that a different Docker compose <code>project-name</code> (and different local Docker image label) will be used for containers in a <code>develop</code>-based branch versus a <code>next</code>-based branch versus an <code>ltm</code>-based branch.</li>
|
|
6536
6702
|
</ul>
|
|
6537
6703
|
<h2 id="v1629-2024-12-10">v1.6.29 (2024-12-10)<a class="headerlink" href="#v1629-2024-12-10" title="Permanent link">¶</a></h2>
|
|
6538
|
-
<h3 id="
|
|
6704
|
+
<h3 id="security_3">Security<a class="headerlink" href="#security_3" title="Permanent link">¶</a></h3>
|
|
6539
6705
|
<ul>
|
|
6540
6706
|
<li><a href="https://github.com/nautobot/nautobot/issues/5911">#5911</a> - Updated <code>zipp</code> to <code>3.19.2</code> to address <code>CVE-2024-5569</code>. This is not a direct dependency so it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
6541
6707
|
<li><a href="https://github.com/nautobot/nautobot/issues/6625">#6625</a> - Patched <code>set_values()</code> method of Query class from django.db.models.sql.query to address <code>CVE-2024-42005</code>.</li>
|
|
6542
6708
|
</ul>
|
|
6543
|
-
<h3 id="
|
|
6709
|
+
<h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">¶</a></h3>
|
|
6544
6710
|
<ul>
|
|
6545
6711
|
<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>
|
|
6546
6712
|
<li><a href="https://github.com/nautobot/nautobot/issues/6502">#6502</a> - Fixed a bug in the Dockerfile that prevented <code>docker build</code> from working on some platforms.</li>
|
|
6547
6713
|
<li><a href="https://github.com/nautobot/nautobot/issues/6502">#6502</a> - Fixed Docker builds failing in Gitlab CI.</li>
|
|
6548
6714
|
</ul>
|
|
6549
6715
|
<h2 id="v1628-2024-09-24">v1.6.28 (2024-09-24)<a class="headerlink" href="#v1628-2024-09-24" title="Permanent link">¶</a></h2>
|
|
6550
|
-
<h3 id="
|
|
6716
|
+
<h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">¶</a></h3>
|
|
6551
6717
|
<ul>
|
|
6552
6718
|
<li><a href="https://github.com/nautobot/nautobot/issues/6152">#6152</a> - Fixed table column ordering.</li>
|
|
6553
6719
|
<li><a href="https://github.com/nautobot/nautobot/issues/6237">#6237</a> - Corrected presentation of rendered Markdown content in Notes table.</li>
|
|
@@ -6560,21 +6726,21 @@
|
|
|
6560
6726
|
<li><a href="https://github.com/nautobot/nautobot/issues/6262">#6262</a> - Brought <code>.gitignore</code> up to date with latest to aid in branch switching.</li>
|
|
6561
6727
|
</ul>
|
|
6562
6728
|
<h2 id="v1627-2024-09-03">v1.6.27 (2024-09-03)<a class="headerlink" href="#v1627-2024-09-03" title="Permanent link">¶</a></h2>
|
|
6563
|
-
<h3 id="
|
|
6729
|
+
<h3 id="security_4">Security<a class="headerlink" href="#security_4" title="Permanent link">¶</a></h3>
|
|
6564
6730
|
<ul>
|
|
6565
6731
|
<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>
|
|
6566
6732
|
</ul>
|
|
6567
|
-
<h3 id="
|
|
6733
|
+
<h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">¶</a></h3>
|
|
6568
6734
|
<ul>
|
|
6569
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6081">#6081</a> - Fixed AttributeError during pre_migrate when permission constraints are applied to custom fields.</li>
|
|
6735
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6081">#6081</a> - Fixed AttributeError during <code>pre_migrate</code> when permission constraints are applied to custom fields.</li>
|
|
6570
6736
|
</ul>
|
|
6571
6737
|
<h2 id="v1626-2024-07-22">v1.6.26 (2024-07-22)<a class="headerlink" href="#v1626-2024-07-22" title="Permanent link">¶</a></h2>
|
|
6572
|
-
<h3 id="
|
|
6738
|
+
<h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">¶</a></h3>
|
|
6573
6739
|
<ul>
|
|
6574
6740
|
<li><a href="https://github.com/nautobot/nautobot/issues/5935">#5935</a> - Fixed issue in which a save() could be called unnecessarily on child devices.</li>
|
|
6575
6741
|
</ul>
|
|
6576
6742
|
<h2 id="v1625-2024-07-09">v1.6.25 (2024-07-09)<a class="headerlink" href="#v1625-2024-07-09" title="Permanent link">¶</a></h2>
|
|
6577
|
-
<h3 id="
|
|
6743
|
+
<h3 id="security_5">Security<a class="headerlink" href="#security_5" title="Permanent link">¶</a></h3>
|
|
6578
6744
|
<ul>
|
|
6579
6745
|
<li><a href="https://github.com/nautobot/nautobot/issues/5891">#5891</a> - Updated <code>certifi</code> to <code>2024.7.4</code> to address <code>CVE-2024-39689</code>. This is not a direct dependency so it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
6580
6746
|
</ul>
|
|
@@ -6583,7 +6749,7 @@
|
|
|
6583
6749
|
<li><a href="https://github.com/nautobot/nautobot/pull/5897">#5897</a> - Pinned dev dependency <code>faker</code> to <code>>=0.7.0,<26.0.0</code> to work around breaking change in v26.0.0 (<a href="https://github.com/joke2k/faker/issues/2070">faker/#2070</a>).</li>
|
|
6584
6750
|
</ul>
|
|
6585
6751
|
<h2 id="v1624-2024-06-24">v1.6.24 (2024-06-24)<a class="headerlink" href="#v1624-2024-06-24" title="Permanent link">¶</a></h2>
|
|
6586
|
-
<h3 id="
|
|
6752
|
+
<h3 id="security_6">Security<a class="headerlink" href="#security_6" title="Permanent link">¶</a></h3>
|
|
6587
6753
|
<ul>
|
|
6588
6754
|
<li><a href="https://github.com/nautobot/nautobot/issues/5821">#5821</a> - Updated <code>urllib3</code> to 2.2.2 due to CVE-2024-37891. This is not a direct dependency so it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
6589
6755
|
</ul>
|
|
@@ -6592,7 +6758,7 @@
|
|
|
6592
6758
|
<li><a href="https://github.com/nautobot/nautobot/issues/5754">#5754</a> - Updated development dependency <code>requests</code> to <code>~2.32.2</code>.</li>
|
|
6593
6759
|
</ul>
|
|
6594
6760
|
<h2 id="v1623-2024-05-28">v1.6.23 (2024-05-28)<a class="headerlink" href="#v1623-2024-05-28" title="Permanent link">¶</a></h2>
|
|
6595
|
-
<h3 id="
|
|
6761
|
+
<h3 id="security_7">Security<a class="headerlink" href="#security_7" title="Permanent link">¶</a></h3>
|
|
6596
6762
|
<ul>
|
|
6597
6763
|
<li><a href="https://github.com/nautobot/nautobot/issues/5740">#5740</a> - Updated <code>requests</code> to <code>2.32.1</code> to address <a href="https://github.com/psf/requests/security/advisories/GHSA-9wx4-h78v-vm56">GHSA-9wx4-h78v-vm56</a>. This is not a direct dependency so it will not auto-update when upgrading Nautobot. Please be sure to update your local environment.</li>
|
|
6598
6764
|
<li><a href="https://github.com/nautobot/nautobot/issues/5762">#5762</a> - Fixed missing member object permission enforcement (e.g., enforce Device permissions for a Dynamic Group containing Devices) when viewing Dynamic Group member objects in the UI or REST API (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-qmjf-wc2h-6x3q">GHSA-qmjf-wc2h-6x3q</a>).</li>
|
|
@@ -6602,21 +6768,21 @@
|
|
|
6602
6768
|
<li><a href="https://github.com/nautobot/nautobot/issues/5740">#5740</a> - Updated test dependency <code>requests</code> to <code>~2.32.1</code>.</li>
|
|
6603
6769
|
</ul>
|
|
6604
6770
|
<h2 id="v1622-2024-05-13">v1.6.22 (2024-05-13)<a class="headerlink" href="#v1622-2024-05-13" title="Permanent link">¶</a></h2>
|
|
6605
|
-
<h3 id="
|
|
6771
|
+
<h3 id="security_8">Security<a class="headerlink" href="#security_8" title="Permanent link">¶</a></h3>
|
|
6606
6772
|
<ul>
|
|
6607
6773
|
<li><a href="https://github.com/nautobot/nautobot/issues/1858">#1858</a> - Added sanitization of HTML tags in the content of <code>BANNER_TOP</code>, <code>BANNER_BOTTOM</code>, and <code>BANNER_LOGIN</code> configuration to prevent against potential injection of malicious scripts (stored XSS) via these features (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-r2hr-4v48-fjv3">GHSA-r2hr-4v48-fjv3</a>).</li>
|
|
6608
6774
|
</ul>
|
|
6609
|
-
<h3 id="
|
|
6775
|
+
<h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">¶</a></h3>
|
|
6610
6776
|
<ul>
|
|
6611
6777
|
<li><a href="https://github.com/nautobot/nautobot/issues/1858">#1858</a> - Added support in <code>BRANDING_FILEPATHS</code> configuration to specify a custom <code>css</code> and/or <code>javascript</code> file to be added to Nautobot page content.</li>
|
|
6612
6778
|
<li><a href="https://github.com/nautobot/nautobot/issues/1858">#1858</a> - Added Markdown support to the <code>BANNER_TOP</code>, <code>BANNER_BOTTOM</code>, and <code>BANNER_LOGIN</code> configuration settings.</li>
|
|
6613
6779
|
</ul>
|
|
6614
|
-
<h3 id="
|
|
6780
|
+
<h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">¶</a></h3>
|
|
6615
6781
|
<ul>
|
|
6616
6782
|
<li><a href="https://github.com/nautobot/nautobot/issues/2974">#2974</a> - Fixed an error when deleting and then recreating a GitRepository that provides Jobs.</li>
|
|
6617
6783
|
</ul>
|
|
6618
6784
|
<h2 id="v1621-2024-05-07">v1.6.21 (2024-05-07)<a class="headerlink" href="#v1621-2024-05-07" title="Permanent link">¶</a></h2>
|
|
6619
|
-
<h3 id="
|
|
6785
|
+
<h3 id="security_9">Security<a class="headerlink" href="#security_9" title="Permanent link">¶</a></h3>
|
|
6620
6786
|
<ul>
|
|
6621
6787
|
<li><a href="https://github.com/nautobot/nautobot/issues/5521">#5521</a> - Updated <code>Pillow</code> dependency to <code>~10.3.0</code> to address <code>CVE-2024-28219</code>.</li>
|
|
6622
6788
|
<li><a href="https://github.com/nautobot/nautobot/issues/5561">#5561</a> - Updated <code>idna</code> to <code>3.7</code> due to <code>CVE-2024-3651</code>. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
@@ -6624,25 +6790,25 @@
|
|
|
6624
6790
|
<li><a href="https://github.com/nautobot/nautobot/issues/5675">#5675</a> - Updated <code>Jinja2</code> dependency to <code>3.1.4</code> to address <code>CVE-2024-34064</code>.</li>
|
|
6625
6791
|
</ul>
|
|
6626
6792
|
<h2 id="v1620-2024-04-30">v1.6.20 (2024-04-30)<a class="headerlink" href="#v1620-2024-04-30" title="Permanent link">¶</a></h2>
|
|
6627
|
-
<h3 id="
|
|
6793
|
+
<h3 id="security_10">Security<a class="headerlink" href="#security_10" title="Permanent link">¶</a></h3>
|
|
6628
6794
|
<ul>
|
|
6629
6795
|
<li><a href="https://github.com/nautobot/nautobot/issues/5647">#5647</a> - Fixed a reflected-XSS vulnerability (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-jxgr-gcj5-cqqg">GHSA-jxgr-gcj5-cqqg</a>) in object-list view rendering of user-provided query parameters.</li>
|
|
6630
6796
|
</ul>
|
|
6631
|
-
<h3 id="
|
|
6797
|
+
<h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">¶</a></h3>
|
|
6632
6798
|
<ul>
|
|
6633
6799
|
<li><a href="https://github.com/nautobot/nautobot/issues/5626">#5626</a> - Increased performance of <code>brief=true</code> in API endpoints by eliminating unnecessary database joins.</li>
|
|
6634
6800
|
</ul>
|
|
6635
6801
|
<h2 id="v1619-2024-04-23">v1.6.19 (2024-04-23)<a class="headerlink" href="#v1619-2024-04-23" title="Permanent link">¶</a></h2>
|
|
6636
|
-
<h3 id="
|
|
6802
|
+
<h3 id="security_11">Security<a class="headerlink" href="#security_11" title="Permanent link">¶</a></h3>
|
|
6637
6803
|
<ul>
|
|
6638
6804
|
<li><a href="https://github.com/nautobot/nautobot/issues/5579">#5579</a> - Updated <code>sqlparse</code> to <code>0.5.0</code> to fix <a href="https://github.com/advisories/GHSA-2m57-hf25-phgg">GHSA-2m57-hf25-phgg</a>. This is not a direct dependency so it will not auto-update when upgrading Nautobot. Please be sure to update your local environment.</li>
|
|
6639
6805
|
</ul>
|
|
6640
|
-
<h3 id="
|
|
6806
|
+
<h3 id="fixed_8">Fixed<a class="headerlink" href="#fixed_8" title="Permanent link">¶</a></h3>
|
|
6641
6807
|
<ul>
|
|
6642
6808
|
<li><a href="https://github.com/nautobot/nautobot/issues/5610">#5610</a> - Fixed static media failure on <code>/graphql/</code> and <code>/admin/</code> pages.</li>
|
|
6643
6809
|
</ul>
|
|
6644
6810
|
<h2 id="v1618-2024-04-15">v1.6.18 (2024-04-15)<a class="headerlink" href="#v1618-2024-04-15" title="Permanent link">¶</a></h2>
|
|
6645
|
-
<h3 id="
|
|
6811
|
+
<h3 id="security_12">Security<a class="headerlink" href="#security_12" title="Permanent link">¶</a></h3>
|
|
6646
6812
|
<ul>
|
|
6647
6813
|
<li><a href="https://github.com/nautobot/nautobot/issues/5543">#5543</a> - Updated <code>jquery-ui</code> to version <code>1.13.2</code> due to <code>CVE-2022-31160</code>.</li>
|
|
6648
6814
|
</ul>
|
|
@@ -6657,7 +6823,7 @@
|
|
|
6657
6823
|
<li><a href="https://github.com/nautobot/nautobot/issues/5495">#5495</a> - Changed <code>jsonschema</code> version constraint from <code>>=4.7.0,<4.18.0</code> to <code>^4.7.0</code>.</li>
|
|
6658
6824
|
</ul>
|
|
6659
6825
|
<h2 id="v1616-2024-03-25">v1.6.16 (2024-03-25)<a class="headerlink" href="#v1616-2024-03-25" title="Permanent link">¶</a></h2>
|
|
6660
|
-
<h3 id="
|
|
6826
|
+
<h3 id="security_13">Security<a class="headerlink" href="#security_13" title="Permanent link">¶</a></h3>
|
|
6661
6827
|
<ul>
|
|
6662
6828
|
<li><a href="https://github.com/nautobot/nautobot/issues/5450">#5450</a> - Updated <code>django</code> to <code>~3.2.25</code> due to <code>CVE-2024-27351</code>.</li>
|
|
6663
6829
|
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added requirement for user authentication to access the endpoint <code>/extras/job-results/<uuid:pk>/log-table/</code>; furthermore it will not allow an authenticated user to view log entries for a JobResult they don't otherwise have permission to view. (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-m732-wvh2-7cq4">GHSA-m732-wvh2-7cq4</a>)</li>
|
|
@@ -6669,7 +6835,7 @@
|
|
|
6669
6835
|
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added requirement for user authentication to access the endpoints <code>/dcim/racks/<uuid>/dynamic-groups/</code>, <code>/dcim/devices/<uuid>/dynamic-groups/</code>, <code>/ipam/prefixes/<uuid>/dynamic-groups/</code>, <code>/ipam/ip-addresses/<uuid>/dynamic-groups/</code>, <code>/virtualization/clusters/<uuid>/dynamic-groups/</code>, and <code>/virtualization/virtual-machines/<uuid>/dynamic-groups/</code>, even when <code>EXEMPT_VIEW_PERMISSIONS</code> is configured. (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-m732-wvh2-7cq4">GHSA-m732-wvh2-7cq4</a>)</li>
|
|
6670
6836
|
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added requirement for user authentication to access the endpoint <code>/extras/secrets/provider/<str:provider_slug>/form/</code>. (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-m732-wvh2-7cq4">GHSA-m732-wvh2-7cq4</a>)</li>
|
|
6671
6837
|
</ul>
|
|
6672
|
-
<h3 id="
|
|
6838
|
+
<h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">¶</a></h3>
|
|
6673
6839
|
<ul>
|
|
6674
6840
|
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added <code>nautobot.apps.utils.get_url_for_url_pattern</code> and <code>nautobot.apps.utils.get_url_patterns</code> lookup functions.</li>
|
|
6675
6841
|
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added <code>nautobot.apps.views.GenericView</code> base class.</li>
|
|
@@ -6680,11 +6846,11 @@
|
|
|
6680
6846
|
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added requirement for user authentication by default on the <code>nautobot.core.api.AuthenticatedAPIRootView</code> class. As a consequence, viewing the browsable REST API root endpoints (e.g. <code>/api/</code>, <code>/api/circuits/</code>, <code>/api/dcim/</code>, etc.) now requires user authentication.</li>
|
|
6681
6847
|
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added requirement for user authentication to access <code>/api/docs/</code> and <code>/graphql/</code> even when <code>HIDE_RESTRICTED_UI</code> is False.</li>
|
|
6682
6848
|
</ul>
|
|
6683
|
-
<h3 id="
|
|
6849
|
+
<h3 id="fixed_9">Fixed<a class="headerlink" href="#fixed_9" title="Permanent link">¶</a></h3>
|
|
6684
6850
|
<ul>
|
|
6685
6851
|
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Fixed a 500 error when accessing any of the <code>/dcim/<port-type>/<uuid>/connect/<termination_b_type>/</code> view endpoints with an invalid/nonexistent <code>termination_b_type</code> string.</li>
|
|
6686
6852
|
</ul>
|
|
6687
|
-
<h3 id="
|
|
6853
|
+
<h3 id="documentation_1">Documentation<a class="headerlink" href="#documentation_1" title="Permanent link">¶</a></h3>
|
|
6688
6854
|
<ul>
|
|
6689
6855
|
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Updated example views in the App developer documentation to include <code>ObjectPermissionRequiredMixin</code> or <code>LoginRequiredMixin</code> as appropriate best practices.</li>
|
|
6690
6856
|
</ul>
|
|
@@ -6693,12 +6859,12 @@
|
|
|
6693
6859
|
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Updated custom views in the <code>example_plugin</code> to use the new <code>GenericView</code> base class as a best practice.</li>
|
|
6694
6860
|
</ul>
|
|
6695
6861
|
<h2 id="v1615-2024-03-18">v1.6.15 (2024-03-18)<a class="headerlink" href="#v1615-2024-03-18" title="Permanent link">¶</a></h2>
|
|
6696
|
-
<h3 id="
|
|
6862
|
+
<h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">¶</a></h3>
|
|
6697
6863
|
<ul>
|
|
6698
6864
|
<li><a href="https://github.com/nautobot/nautobot/issues/1102">#1102</a> - Added <code>CELERY_BEAT_HEARTBEAT_FILE</code> settings variable.</li>
|
|
6699
6865
|
<li><a href="https://github.com/nautobot/nautobot/issues/5424">#5424</a> - Added <code>TemplateExtension.list_buttons()</code> API, allowing apps to register button content to be injected into object list views.</li>
|
|
6700
6866
|
</ul>
|
|
6701
|
-
<h3 id="
|
|
6867
|
+
<h3 id="fixed_10">Fixed<a class="headerlink" href="#fixed_10" title="Permanent link">¶</a></h3>
|
|
6702
6868
|
<ul>
|
|
6703
6869
|
<li><a href="https://github.com/nautobot/nautobot/issues/5247">#5247</a> - Fixed Job buttons do not respect the <code>task_queues</code> of the job class.</li>
|
|
6704
6870
|
<li><a href="https://github.com/nautobot/nautobot/issues/5354">#5354</a> - Fixed Configuration Context not applied based on nested Tenant Groups.</li>
|
|
@@ -6709,32 +6875,32 @@
|
|
|
6709
6875
|
<li><a href="https://github.com/nautobot/nautobot/issues/5434">#5434</a> - Fixed health check for beat container in <code>docker-compose.yml</code> under <code>docker-compose</code> v1.x.</li>
|
|
6710
6876
|
</ul>
|
|
6711
6877
|
<h2 id="v1614-2024-03-05">v1.6.14 (2024-03-05)<a class="headerlink" href="#v1614-2024-03-05" title="Permanent link">¶</a></h2>
|
|
6712
|
-
<h3 id="
|
|
6878
|
+
<h3 id="fixed_11">Fixed<a class="headerlink" href="#fixed_11" title="Permanent link">¶</a></h3>
|
|
6713
6879
|
<ul>
|
|
6714
6880
|
<li><a href="https://github.com/nautobot/nautobot/issues/5387">#5387</a> - Fixed an error in the Dockerfile that resulted in <code>pyuwsgi</code> being installed without SSL support.</li>
|
|
6715
6881
|
</ul>
|
|
6716
6882
|
<h2 id="v1613-2024-03-04">v1.6.13 (2024-03-04)<a class="headerlink" href="#v1613-2024-03-04" title="Permanent link">¶</a></h2>
|
|
6717
|
-
<h3 id="
|
|
6883
|
+
<h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">¶</a></h3>
|
|
6718
6884
|
<ul>
|
|
6719
6885
|
<li><a href="https://github.com/nautobot/nautobot/issues/4247">#4247</a> - Added a check to the <code>nautobot-server pre_migrate</code> command to identify Interfaces and VMInterfaces with multiple VRFs through IPAddress relationships.</li>
|
|
6720
6886
|
</ul>
|
|
6721
|
-
<h3 id="
|
|
6887
|
+
<h3 id="fixed_12">Fixed<a class="headerlink" href="#fixed_12" title="Permanent link">¶</a></h3>
|
|
6722
6888
|
<ul>
|
|
6723
6889
|
<li><a href="https://github.com/nautobot/nautobot/issues/5307">#5307</a> - Fixed Custom Field form field(s) missing from git repository edit form.</li>
|
|
6724
6890
|
<li><a href="https://github.com/nautobot/nautobot/issues/5336">#5336</a> - Fixed 'docker-compose: command not found' error when running invoke commands.</li>
|
|
6725
6891
|
<li><a href="https://github.com/nautobot/nautobot/issues/5345">#5345</a> - Fixed intermittent 405 errors when using the Docker image with SAML authentication.</li>
|
|
6726
6892
|
</ul>
|
|
6727
|
-
<h3 id="
|
|
6893
|
+
<h3 id="documentation_2">Documentation<a class="headerlink" href="#documentation_2" title="Permanent link">¶</a></h3>
|
|
6728
6894
|
<ul>
|
|
6729
6895
|
<li><a href="https://github.com/nautobot/nautobot/issues/5345">#5345</a> - Added a note to the Nautobot installation documentation about the need to do <code>pip3 install --no-binary=pyuwsgi</code> in order to have SSL support in <code>pyuwsgi</code>.</li>
|
|
6730
6896
|
<li><a href="https://github.com/nautobot/nautobot/issues/5345">#5345</a> - Added a note to the SSO documentation about the need to do <code>pip3 install --no-binary=lxml</code> to avoid incompatibilities between <code>lxml</code> and <code>xmlsec</code> packages.</li>
|
|
6731
6897
|
</ul>
|
|
6732
6898
|
<h2 id="v1612-2024-02-20">v1.6.12 (2024-02-20)<a class="headerlink" href="#v1612-2024-02-20" title="Permanent link">¶</a></h2>
|
|
6733
|
-
<h3 id="
|
|
6899
|
+
<h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">¶</a></h3>
|
|
6734
6900
|
<ul>
|
|
6735
6901
|
<li><a href="https://github.com/nautobot/nautobot/issues/5104">#5104</a> - Added User Token as permission constraints.</li>
|
|
6736
6902
|
</ul>
|
|
6737
|
-
<h3 id="
|
|
6903
|
+
<h3 id="security_14">Security<a class="headerlink" href="#security_14" title="Permanent link">¶</a></h3>
|
|
6738
6904
|
<ul>
|
|
6739
6905
|
<li><a href="https://github.com/nautobot/nautobot/issues/5251">#5251</a> - Updated <code>Django</code> dependency to 3.2.24 due to CVE-2024-24680.</li>
|
|
6740
6906
|
</ul>
|
|
@@ -6743,32 +6909,32 @@
|
|
|
6743
6909
|
<li><a href="https://github.com/nautobot/nautobot/issues/5254">#5254</a> - Changed <code>TreeQuerySet.ancestors</code> implementation to a more efficient approach for shallow trees.</li>
|
|
6744
6910
|
<li><a href="https://github.com/nautobot/nautobot/issues/5254">#5254</a> - Changed the location detail view not to annotate tree fields on its queries.</li>
|
|
6745
6911
|
</ul>
|
|
6746
|
-
<h3 id="
|
|
6912
|
+
<h3 id="fixed_13">Fixed<a class="headerlink" href="#fixed_13" title="Permanent link">¶</a></h3>
|
|
6747
6913
|
<ul>
|
|
6748
6914
|
<li><a href="https://github.com/nautobot/nautobot/issues/5253">#5253</a> - Fixed issue with Job Button Groups displaying when Conditional Rendering should remove the button.</li>
|
|
6749
6915
|
<li><a href="https://github.com/nautobot/nautobot/issues/5261">#5261</a> - Fixed a regression introduced in v1.6.8 where Job Buttons would always run with <code>commit=False</code>.</li>
|
|
6750
6916
|
</ul>
|
|
6751
6917
|
<h2 id="v1611-2024-02-05">v1.6.11 (2024-02-05)<a class="headerlink" href="#v1611-2024-02-05" title="Permanent link">¶</a></h2>
|
|
6752
|
-
<h3 id="
|
|
6918
|
+
<h3 id="security_15">Security<a class="headerlink" href="#security_15" title="Permanent link">¶</a></h3>
|
|
6753
6919
|
<ul>
|
|
6754
6920
|
<li><a href="https://github.com/nautobot/nautobot/issues/5151">#5151</a> - Updated <code>pillow</code> dependency to 10.2.0 due to CVE-2023-50447.</li>
|
|
6755
6921
|
</ul>
|
|
6756
|
-
<h3 id="
|
|
6922
|
+
<h3 id="added_7">Added<a class="headerlink" href="#added_7" title="Permanent link">¶</a></h3>
|
|
6757
6923
|
<ul>
|
|
6758
6924
|
<li><a href="https://github.com/nautobot/nautobot/issues/5169">#5169</a> - Added support for user session profiling via django-silk.</li>
|
|
6759
6925
|
</ul>
|
|
6760
|
-
<h3 id="
|
|
6926
|
+
<h3 id="fixed_14">Fixed<a class="headerlink" href="#fixed_14" title="Permanent link">¶</a></h3>
|
|
6761
6927
|
<ul>
|
|
6762
6928
|
<li><a href="https://github.com/nautobot/nautobot/issues/3664">#3664</a> - Fixed AssertionError when querying Date type custom fields in GraphQL.</li>
|
|
6763
6929
|
<li><a href="https://github.com/nautobot/nautobot/issues/5162">#5162</a> - Fixed incorrect rack group variable in device template.</li>
|
|
6764
6930
|
</ul>
|
|
6765
6931
|
<h2 id="v1610-2024-01-22">v1.6.10 (2024-01-22)<a class="headerlink" href="#v1610-2024-01-22" title="Permanent link">¶</a></h2>
|
|
6766
|
-
<h3 id="
|
|
6932
|
+
<h3 id="security_16">Security<a class="headerlink" href="#security_16" title="Permanent link">¶</a></h3>
|
|
6767
6933
|
<ul>
|
|
6768
6934
|
<li><a href="https://github.com/nautobot/nautobot/issues/5109">#5109</a> - Removed <code>/files/get/</code> URL endpoint (for viewing FileAttachment files in the browser), as it was unused and could potentially pose security issues.</li>
|
|
6769
6935
|
<li><a href="https://github.com/nautobot/nautobot/issues/5134">#5134</a> - Fixed an XSS vulnerability (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-v4xv-795h-rv4h">GHSA-v4xv-795h-rv4h</a>) in the <code>render_markdown()</code> utility function used to render comments, notes, job log entries, etc.</li>
|
|
6770
6936
|
</ul>
|
|
6771
|
-
<h3 id="
|
|
6937
|
+
<h3 id="added_8">Added<a class="headerlink" href="#added_8" title="Permanent link">¶</a></h3>
|
|
6772
6938
|
<ul>
|
|
6773
6939
|
<li><a href="https://github.com/nautobot/nautobot/issues/5134">#5134</a> - Enhanced Markdown-supporting fields (<code>comments</code>, <code>description</code>, Notes, Job log entries, etc.) to also permit the use of a limited subset of "safe" HTML tags and attributes.</li>
|
|
6774
6940
|
</ul>
|
|
@@ -6783,19 +6949,19 @@
|
|
|
6783
6949
|
<li><a href="https://github.com/nautobot/nautobot/issues/5134">#5134</a> - Added <code>nh3</code> HTML sanitization library as a dependency.</li>
|
|
6784
6950
|
</ul>
|
|
6785
6951
|
<h2 id="v169-2024-01-08">v1.6.9 (2024-01-08)<a class="headerlink" href="#v169-2024-01-08" title="Permanent link">¶</a></h2>
|
|
6786
|
-
<h3 id="
|
|
6952
|
+
<h3 id="fixed_15">Fixed<a class="headerlink" href="#fixed_15" title="Permanent link">¶</a></h3>
|
|
6787
6953
|
<ul>
|
|
6788
6954
|
<li><a href="https://github.com/nautobot/nautobot/issues/5042">#5042</a> - Fixed early return conditional in <code>ensure_git_repository</code>.</li>
|
|
6789
6955
|
</ul>
|
|
6790
6956
|
<h2 id="v168-2023-12-21">v1.6.8 (2023-12-21)<a class="headerlink" href="#v168-2023-12-21" title="Permanent link">¶</a></h2>
|
|
6791
|
-
<h3 id="
|
|
6957
|
+
<h3 id="security_17">Security<a class="headerlink" href="#security_17" title="Permanent link">¶</a></h3>
|
|
6792
6958
|
<ul>
|
|
6793
6959
|
<li><a href="https://github.com/nautobot/nautobot/issues/4876">#4876</a> - Updated <code>cryptography</code> to <code>41.0.7</code> due to CVE-2023-49083. As this is not a direct dependency of Nautobot, it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
6794
6960
|
<li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Fixed missing object-level permissions enforcement when running a JobButton (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-vf5m-xrhm-v999">GHSA-vf5m-xrhm-v999</a>).</li>
|
|
6795
6961
|
<li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Removed the requirement for users to have both <code>extras.run_job</code> and <code>extras.run_jobbutton</code> permissions to run a Job via a Job Button. Only <code>extras.run_job</code> permission is now required.</li>
|
|
6796
6962
|
<li><a href="https://github.com/nautobot/nautobot/issues/5002">#5002</a> - Updated <code>paramiko</code> to <code>3.4.0</code> due to CVE-2023-48795. As this is not a direct dependency of Nautobot, it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
6797
6963
|
</ul>
|
|
6798
|
-
<h3 id="
|
|
6964
|
+
<h3 id="added_9">Added<a class="headerlink" href="#added_9" title="Permanent link">¶</a></h3>
|
|
6799
6965
|
<ul>
|
|
6800
6966
|
<li><a href="https://github.com/nautobot/nautobot/issues/4965">#4965</a> - Added MMF OM5 cable type to cable type choices.</li>
|
|
6801
6967
|
</ul>
|
|
@@ -6803,7 +6969,7 @@
|
|
|
6803
6969
|
<ul>
|
|
6804
6970
|
<li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Removed redundant <code>/extras/job-button/<uuid>/run/</code> URL endpoint; Job Buttons now use <code>/extras/jobs/<uuid>/run/</code> endpoint like any other job.</li>
|
|
6805
6971
|
</ul>
|
|
6806
|
-
<h3 id="
|
|
6972
|
+
<h3 id="fixed_16">Fixed<a class="headerlink" href="#fixed_16" title="Permanent link">¶</a></h3>
|
|
6807
6973
|
<ul>
|
|
6808
6974
|
<li><a href="https://github.com/nautobot/nautobot/issues/4977">#4977</a> - Fixed early return conditional in <code>ensure_git_repository</code>.</li>
|
|
6809
6975
|
</ul>
|
|
@@ -6812,11 +6978,11 @@
|
|
|
6812
6978
|
<li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Fixed some bugs in <code>example_plugin.jobs.ExampleComplexJobButtonReceiver</code>.</li>
|
|
6813
6979
|
</ul>
|
|
6814
6980
|
<h2 id="v167-2023-12-12">v1.6.7 (2023-12-12)<a class="headerlink" href="#v167-2023-12-12" title="Permanent link">¶</a></h2>
|
|
6815
|
-
<h3 id="
|
|
6981
|
+
<h3 id="security_18">Security<a class="headerlink" href="#security_18" title="Permanent link">¶</a></h3>
|
|
6816
6982
|
<ul>
|
|
6817
6983
|
<li><a href="https://github.com/nautobot/nautobot/issues/4959">#4959</a> - Enforce authentication and object permissions on DB file storage views (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-75mc-3pjc-727q">GHSA-75mc-3pjc-727q</a>).</li>
|
|
6818
6984
|
</ul>
|
|
6819
|
-
<h3 id="
|
|
6985
|
+
<h3 id="added_10">Added<a class="headerlink" href="#added_10" title="Permanent link">¶</a></h3>
|
|
6820
6986
|
<ul>
|
|
6821
6987
|
<li><a href="https://github.com/nautobot/nautobot/issues/4873">#4873</a> - Added QSFP112 interface type to interface type choices.</li>
|
|
6822
6988
|
</ul>
|
|
@@ -6825,14 +6991,14 @@
|
|
|
6825
6991
|
<li><a href="https://github.com/nautobot/nautobot/issues/4797">#4797</a> - Removed erroneous <code>custom_fields</code> decorator from InterfaceRedundancyGroupAssociation as it's not a supported feature for this model.</li>
|
|
6826
6992
|
<li><a href="https://github.com/nautobot/nautobot/issues/4857">#4857</a> - Removed Jathan McCollum as a point of contact in <code>SECURITY.md</code>.</li>
|
|
6827
6993
|
</ul>
|
|
6828
|
-
<h3 id="
|
|
6994
|
+
<h3 id="fixed_17">Fixed<a class="headerlink" href="#fixed_17" title="Permanent link">¶</a></h3>
|
|
6829
6995
|
<ul>
|
|
6830
6996
|
<li><a href="https://github.com/nautobot/nautobot/issues/4142">#4142</a> - Fixed unnecessary git operations when calling <code>ensure_git_repository</code> while the desired commit is already checked out.</li>
|
|
6831
6997
|
<li><a href="https://github.com/nautobot/nautobot/issues/4917">#4917</a> - Fixed slow performance on location hierarchy html template.</li>
|
|
6832
6998
|
<li><a href="https://github.com/nautobot/nautobot/issues/4921">#4921</a> - Fixed inefficient queries in <code>Location.base_site</code>.</li>
|
|
6833
6999
|
</ul>
|
|
6834
7000
|
<h2 id="v166-2023-11-21">v1.6.6 (2023-11-21)<a class="headerlink" href="#v166-2023-11-21" title="Permanent link">¶</a></h2>
|
|
6835
|
-
<h3 id="
|
|
7001
|
+
<h3 id="security_19">Security<a class="headerlink" href="#security_19" title="Permanent link">¶</a></h3>
|
|
6836
7002
|
<ul>
|
|
6837
7003
|
<li><a href="https://github.com/nautobot/nautobot/issues/4833">#4833</a> - Fixed cross-site-scripting (XSS) potential with maliciously crafted Custom Links, Computed Fields, and Job Buttons (GHSA-cf9f-wmhp-v4pr).</li>
|
|
6838
7004
|
</ul>
|
|
@@ -6840,7 +7006,7 @@
|
|
|
6840
7006
|
<ul>
|
|
6841
7007
|
<li><a href="https://github.com/nautobot/nautobot/issues/4833">#4833</a> - Changed the <code>render_jinja2()</code> API to no longer automatically call <code>mark_safe()</code> on the output.</li>
|
|
6842
7008
|
</ul>
|
|
6843
|
-
<h3 id="
|
|
7009
|
+
<h3 id="fixed_18">Fixed<a class="headerlink" href="#fixed_18" title="Permanent link">¶</a></h3>
|
|
6844
7010
|
<ul>
|
|
6845
7011
|
<li><a href="https://github.com/nautobot/nautobot/issues/3179">#3179</a> - Fixed the error that occurred when fetching the API response for CircuitTermination with a cable connected to CircuitTermination, FrontPort, or RearPort.</li>
|
|
6846
7012
|
<li><a href="https://github.com/nautobot/nautobot/issues/4799">#4799</a> - Reduced size of Nautobot <code>sdist</code> and <code>wheel</code> packages from 69 MB to 29 MB.</li>
|
|
@@ -6855,7 +7021,7 @@
|
|
|
6855
7021
|
<li><a href="https://github.com/nautobot/nautobot/issues/4833">#4833</a> - Added <code>ruff</code> to invoke tasks and CI.</li>
|
|
6856
7022
|
</ul>
|
|
6857
7023
|
<h2 id="v165-2023-11-13">v1.6.5 (2023-11-13)<a class="headerlink" href="#v165-2023-11-13" title="Permanent link">¶</a></h2>
|
|
6858
|
-
<h3 id="
|
|
7024
|
+
<h3 id="added_11">Added<a class="headerlink" href="#added_11" title="Permanent link">¶</a></h3>
|
|
6859
7025
|
<ul>
|
|
6860
7026
|
<li><a href="https://github.com/nautobot/nautobot/issues/4649">#4649</a> - Added <code>device_redundancy_groups</code> field to <code>ConfigContextSerializer</code>.</li>
|
|
6861
7027
|
</ul>
|
|
@@ -6863,7 +7029,7 @@
|
|
|
6863
7029
|
<ul>
|
|
6864
7030
|
<li><a href="https://github.com/nautobot/nautobot/issues/4638">#4638</a> - Renamed <code>ltm/1.6</code> branch to <code>ltm-1.6</code>.</li>
|
|
6865
7031
|
</ul>
|
|
6866
|
-
<h3 id="
|
|
7032
|
+
<h3 id="fixed_19">Fixed<a class="headerlink" href="#fixed_19" title="Permanent link">¶</a></h3>
|
|
6867
7033
|
<ul>
|
|
6868
7034
|
<li><a href="https://github.com/nautobot/nautobot/issues/4645">#4645</a> - Fixed a bug where the <code>failover-strategy</code> field was required for the device redundancy group api.</li>
|
|
6869
7035
|
<li><a href="https://github.com/nautobot/nautobot/issues/4686">#4686</a> - Fixed incorrect tagging of 1.6.x Docker <code>nautobot-dev</code> images as <code>latest</code>.</li>
|
|
@@ -6875,13 +7041,13 @@
|
|
|
6875
7041
|
<ul>
|
|
6876
7042
|
<li><a href="https://github.com/nautobot/nautobot/issues/4700">#4700</a> - Removed incorrect <code>NAUTOBOT_DYNAMIC_GROUPS_MEMBER_CACHE_TIMEOUT</code> environment variable reference from settings documentation.</li>
|
|
6877
7043
|
</ul>
|
|
6878
|
-
<h3 id="
|
|
7044
|
+
<h3 id="security_20">Security<a class="headerlink" href="#security_20" title="Permanent link">¶</a></h3>
|
|
6879
7045
|
<ul>
|
|
6880
7046
|
<li><a href="https://github.com/nautobot/nautobot/issues/4671">#4671</a> - Updated <code>urllib3</code> to 2.0.7 due to CVE-2023-45803. This is not a direct dependency so it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
6881
7047
|
<li><a href="https://github.com/nautobot/nautobot/issues/4748">#4748</a> - Updated <code>Django</code> minimum version to 3.2.23 to protect against CVE-2023-46695.</li>
|
|
6882
7048
|
</ul>
|
|
6883
7049
|
<h2 id="v164-2023-10-17">v1.6.4 (2023-10-17)<a class="headerlink" href="#v164-2023-10-17" title="Permanent link">¶</a></h2>
|
|
6884
|
-
<h3 id="
|
|
7050
|
+
<h3 id="added_12">Added<a class="headerlink" href="#added_12" title="Permanent link">¶</a></h3>
|
|
6885
7051
|
<ul>
|
|
6886
7052
|
<li><a href="https://github.com/nautobot/nautobot/issues/4361">#4361</a> - Added <code>SUPPORT_MESSAGE</code> configuration setting.</li>
|
|
6887
7053
|
<li><a href="https://github.com/nautobot/nautobot/issues/4573">#4573</a> - Added caching for <code>display</code> property of <code>Location</code> and <code>LocationType</code>, mitigating duplicated SQL queries in the related API views.</li>
|
|
@@ -6899,11 +7065,11 @@
|
|
|
6899
7065
|
<li><a href="https://github.com/nautobot/nautobot/issues/4595">#4595</a> - Removed <code>stable</code> tagging for container builds in LTM release workflow.</li>
|
|
6900
7066
|
</ul>
|
|
6901
7067
|
<h2 id="v163-2023-10-03">v1.6.3 (2023-10-03)<a class="headerlink" href="#v163-2023-10-03" title="Permanent link">¶</a></h2>
|
|
6902
|
-
<h3 id="
|
|
7068
|
+
<h3 id="added_13">Added<a class="headerlink" href="#added_13" title="Permanent link">¶</a></h3>
|
|
6903
7069
|
<ul>
|
|
6904
7070
|
<li><a href="https://github.com/nautobot/nautobot/issues/3372">#3372</a> - Added ObjectPermission constraints check to pre_migrate management command.</li>
|
|
6905
7071
|
</ul>
|
|
6906
|
-
<h3 id="
|
|
7072
|
+
<h3 id="fixed_20">Fixed<a class="headerlink" href="#fixed_20" title="Permanent link">¶</a></h3>
|
|
6907
7073
|
<ul>
|
|
6908
7074
|
<li><a href="https://github.com/nautobot/nautobot/issues/4396">#4396</a> - Fixed rack form silently dropping custom field values.</li>
|
|
6909
7075
|
</ul>
|
|
@@ -6912,12 +7078,12 @@
|
|
|
6912
7078
|
<li><a href="https://github.com/nautobot/nautobot/issues/4587">#4587</a> - Fixed <code>release.yml</code> and <code>pre-release.yml</code> workflow files to target <code>ci_integration.yml</code> in its own branch.</li>
|
|
6913
7079
|
<li><a href="https://github.com/nautobot/nautobot/issues/4587">#4587</a> - Enforced changelog requirement in <code>ci_pullrequest.yml</code> for <code>ltm/1.6</code>.</li>
|
|
6914
7080
|
</ul>
|
|
6915
|
-
<h3 id="
|
|
7081
|
+
<h3 id="security_21">Security<a class="headerlink" href="#security_21" title="Permanent link">¶</a></h3>
|
|
6916
7082
|
<ul>
|
|
6917
7083
|
<li><a href="https://github.com/nautobot/nautobot/issues/4446">#4446</a> - Updated <code>GitPython</code> to <code>3.1.36</code> to address <code>CVE-2023-41040</code>.</li>
|
|
6918
7084
|
</ul>
|
|
6919
7085
|
<h2 id="v162-2023-09-01">v1.6.2 (2023-09-01)<a class="headerlink" href="#v162-2023-09-01" title="Permanent link">¶</a></h2>
|
|
6920
|
-
<h3 id="
|
|
7086
|
+
<h3 id="added_14">Added<a class="headerlink" href="#added_14" title="Permanent link">¶</a></h3>
|
|
6921
7087
|
<ul>
|
|
6922
7088
|
<li><a href="https://github.com/nautobot/nautobot/issues/3289">#3289</a> - Added documentation on factory data caching.</li>
|
|
6923
7089
|
<li><a href="https://github.com/nautobot/nautobot/issues/3913">#3913</a> - Added <code>url</code> field to GraphQL objects.</li>
|
|
@@ -6932,7 +7098,7 @@
|
|
|
6932
7098
|
<li><a href="https://github.com/nautobot/nautobot/issues/4216">#4216</a> - Changed the rendering of <code>TagFilterField</code> to prevent very slow rendering of pages when large numbers of tags are defined.</li>
|
|
6933
7099
|
<li><a href="https://github.com/nautobot/nautobot/issues/4217">#4217</a> - Added a restriction that two Git repositories with the same <code>remote_url</code> cannot overlap in their <code>provided_contents</code>, as such cases are highly likely to introduce data conflicts.</li>
|
|
6934
7100
|
</ul>
|
|
6935
|
-
<h3 id="
|
|
7101
|
+
<h3 id="fixed_21">Fixed<a class="headerlink" href="#fixed_21" title="Permanent link">¶</a></h3>
|
|
6936
7102
|
<ul>
|
|
6937
7103
|
<li><a href="https://github.com/nautobot/nautobot/issues/3949">#3949</a> - Fixed a ValueError when editing an existing DynamicGroup that has invalid <code>filter</code> data.</li>
|
|
6938
7104
|
<li><a href="https://github.com/nautobot/nautobot/issues/3949">#3949</a> - Fixed <code>DynamicGroup.clean_fields()</code> so that it will respect an <code>exclude=["filter"]</code> kwarg by not validating the <code>filter</code> field.</li>
|
|
@@ -6948,7 +7114,7 @@
|
|
|
6948
7114
|
<li><a href="https://github.com/nautobot/nautobot/issues/4242">#4242</a> - Changed <code>development/nautobot_config.py</code> to disable installation metrics for developer environments by default.</li>
|
|
6949
7115
|
<li><a href="https://github.com/nautobot/nautobot/issues/4242">#4242</a> - Changed behavior of <code>dev</code> and <code>final-dev</code> Docker images to disable installation metrics by default.</li>
|
|
6950
7116
|
</ul>
|
|
6951
|
-
<h3 id="
|
|
7117
|
+
<h3 id="fixed_22">Fixed<a class="headerlink" href="#fixed_22" title="Permanent link">¶</a></h3>
|
|
6952
7118
|
<ul>
|
|
6953
7119
|
<li><a href="https://github.com/nautobot/nautobot/issues/4028">#4028</a> - Fixed CI integration workflow to publish 'final-dev', and build only <code>final</code> images.</li>
|
|
6954
7120
|
<li><a href="https://github.com/nautobot/nautobot/issues/4028">#4028</a> - Fixed CI integration workflow <code>set-output</code> warnings.</li>
|
|
@@ -6960,7 +7126,7 @@
|
|
|
6960
7126
|
<li><a href="https://github.com/nautobot/nautobot/issues/4258">#4258</a> - Re-enabled copy-to-clipboard button in mkdocs theme.</li>
|
|
6961
7127
|
</ul>
|
|
6962
7128
|
<h2 id="v160-2023-08-08">v1.6.0 (2023-08-08)<a class="headerlink" href="#v160-2023-08-08" title="Permanent link">¶</a></h2>
|
|
6963
|
-
<h3 id="
|
|
7129
|
+
<h3 id="added_15">Added<a class="headerlink" href="#added_15" title="Permanent link">¶</a></h3>
|
|
6964
7130
|
<ul>
|
|
6965
7131
|
<li><a href="https://github.com/nautobot/nautobot/issues/4169">#4169</a> - Added environment variable <code>NAUTOBOT_SESSION_EXPIRE_AT_BROWSER_CLOSE</code> to set the <code>SESSION_EXPIRE_AT_BROWSER_CLOSE</code> Django setting which expires session cookies when the user closes their browser.</li>
|
|
6966
7132
|
<li><a href="https://github.com/nautobot/nautobot/issues/4184">#4184</a> - Added documentation detailing rack power utilization calculation.</li>
|
|
@@ -6973,7 +7139,7 @@
|
|
|
6973
7139
|
<li><a href="https://github.com/nautobot/nautobot/issues/4199">#4199</a> - Updated <code>cryptography</code> to <code>~41.0.3</code>. As this is not a direct dependency of Nautobot, it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
6974
7140
|
<li><a href="https://github.com/nautobot/nautobot/issues/4215">#4215</a> - Broadened the range of acceptable <code>packaging</code> dependency versions.</li>
|
|
6975
7141
|
</ul>
|
|
6976
|
-
<h3 id="
|
|
7142
|
+
<h3 id="fixed_23">Fixed<a class="headerlink" href="#fixed_23" title="Permanent link">¶</a></h3>
|
|
6977
7143
|
<ul>
|
|
6978
7144
|
<li><a href="https://github.com/nautobot/nautobot/issues/3985">#3985</a> - Added error handling in <code>JobResult.log()</code> for the case where an object's <code>get_absolute_url()</code> raises an exception.</li>
|
|
6979
7145
|
<li><a href="https://github.com/nautobot/nautobot/issues/3985">#3985</a> - Added missing <code>get_absolute_url()</code> implementation on <code>CustomFieldChoice</code> model.</li>
|
|
@@ -6983,7 +7149,7 @@
|
|
|
6983
7149
|
<li><a href="https://github.com/nautobot/nautobot/issues/4222">#4222</a> - Fixed a bug in which <code>Job</code> <code>ChoiceVars</code> could sometimes get rendered incorrectly in the UI as multiple-choice fields.</li>
|
|
6984
7150
|
</ul>
|
|
6985
7151
|
<h2 id="v160-rc1-2023-08-02">v1.6.0-rc.1 (2023-08-02)<a class="headerlink" href="#v160-rc1-2023-08-02" title="Permanent link">¶</a></h2>
|
|
6986
|
-
<h3 id="
|
|
7152
|
+
<h3 id="added_16">Added<a class="headerlink" href="#added_16" title="Permanent link">¶</a></h3>
|
|
6987
7153
|
<ul>
|
|
6988
7154
|
<li><a href="https://github.com/nautobot/nautobot/issues/2825">#2825</a> - Added InterfaceRedundancyGroup and related views, forms, filtersets and table.</li>
|
|
6989
7155
|
<li><a href="https://github.com/nautobot/nautobot/issues/3269">#3269</a> - Added ability to cache <code>DynamicGroup</code> memberships in Redis to improve reverse lookup performance.</li>
|
|
@@ -7039,7 +7205,7 @@
|
|
|
7039
7205
|
<li><a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a> - Updated <code>social-auth-app-django</code> dependency to <code>~5.2.0</code>.</li>
|
|
7040
7206
|
<li><a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a> - Updated various development-only dependencies to the latest available versions.</li>
|
|
7041
7207
|
</ul>
|
|
7042
|
-
<h3 id="
|
|
7208
|
+
<h3 id="fixed_24">Fixed<a class="headerlink" href="#fixed_24" title="Permanent link">¶</a></h3>
|
|
7043
7209
|
<ul>
|
|
7044
7210
|
<li><a href="https://github.com/nautobot/nautobot/issues/4178">#4178</a> - Fixed JSON serialization of overloaded/non-default FilterForm fields on Dynamic Groups.</li>
|
|
7045
7211
|
</ul>
|