nautobot 1.6.30__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 +5 -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 +466 -217
- nautobot/project-static/docs/requirements.txt +2 -1
- 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.30.dist-info → nautobot-1.6.32.dist-info}/METADATA +2 -2
- {nautobot-1.6.30.dist-info → nautobot-1.6.32.dist-info}/RECORD +236 -234
- {nautobot-1.6.30.dist-info → nautobot-1.6.32.dist-info}/LICENSE.txt +0 -0
- {nautobot-1.6.30.dist-info → nautobot-1.6.32.dist-info}/NOTICE +0 -0
- {nautobot-1.6.30.dist-info → nautobot-1.6.32.dist-info}/WHEEL +0 -0
- {nautobot-1.6.30.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,81 @@
|
|
|
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
|
+
|
|
3894
|
+
</li>
|
|
3895
|
+
|
|
3896
|
+
<li class="md-nav__item">
|
|
3897
|
+
<a href="#v1631-2025-05-12" class="md-nav__link">
|
|
3898
|
+
v1.6.31 (2025-05-12)
|
|
3899
|
+
</a>
|
|
3900
|
+
|
|
3901
|
+
<nav class="md-nav" aria-label="v1.6.31 (2025-05-12)">
|
|
3902
|
+
<ul class="md-nav__list">
|
|
3903
|
+
|
|
3904
|
+
<li class="md-nav__item">
|
|
3905
|
+
<a href="#security_1" class="md-nav__link">
|
|
3906
|
+
Security
|
|
3907
|
+
</a>
|
|
3908
|
+
|
|
3909
|
+
</li>
|
|
3910
|
+
|
|
3911
|
+
<li class="md-nav__item">
|
|
3912
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
3913
|
+
Fixed
|
|
3914
|
+
</a>
|
|
3915
|
+
|
|
3916
|
+
</li>
|
|
3917
|
+
|
|
3918
|
+
<li class="md-nav__item">
|
|
3919
|
+
<a href="#housekeeping" class="md-nav__link">
|
|
3920
|
+
Housekeeping
|
|
3921
|
+
</a>
|
|
3922
|
+
|
|
3923
|
+
</li>
|
|
3924
|
+
|
|
3925
|
+
</ul>
|
|
3926
|
+
</nav>
|
|
3927
|
+
|
|
3791
3928
|
</li>
|
|
3792
3929
|
|
|
3793
3930
|
<li class="md-nav__item">
|
|
@@ -3799,14 +3936,14 @@
|
|
|
3799
3936
|
<ul class="md-nav__list">
|
|
3800
3937
|
|
|
3801
3938
|
<li class="md-nav__item">
|
|
3802
|
-
<a href="#
|
|
3939
|
+
<a href="#security_2" class="md-nav__link">
|
|
3803
3940
|
Security
|
|
3804
3941
|
</a>
|
|
3805
3942
|
|
|
3806
3943
|
</li>
|
|
3807
3944
|
|
|
3808
3945
|
<li class="md-nav__item">
|
|
3809
|
-
<a href="#
|
|
3946
|
+
<a href="#housekeeping_1" class="md-nav__link">
|
|
3810
3947
|
Housekeeping
|
|
3811
3948
|
</a>
|
|
3812
3949
|
|
|
@@ -3826,14 +3963,14 @@
|
|
|
3826
3963
|
<ul class="md-nav__list">
|
|
3827
3964
|
|
|
3828
3965
|
<li class="md-nav__item">
|
|
3829
|
-
<a href="#
|
|
3966
|
+
<a href="#security_3" class="md-nav__link">
|
|
3830
3967
|
Security
|
|
3831
3968
|
</a>
|
|
3832
3969
|
|
|
3833
3970
|
</li>
|
|
3834
3971
|
|
|
3835
3972
|
<li class="md-nav__item">
|
|
3836
|
-
<a href="#
|
|
3973
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
3837
3974
|
Fixed
|
|
3838
3975
|
</a>
|
|
3839
3976
|
|
|
@@ -3853,14 +3990,14 @@
|
|
|
3853
3990
|
<ul class="md-nav__list">
|
|
3854
3991
|
|
|
3855
3992
|
<li class="md-nav__item">
|
|
3856
|
-
<a href="#
|
|
3993
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
3857
3994
|
Fixed
|
|
3858
3995
|
</a>
|
|
3859
3996
|
|
|
3860
3997
|
</li>
|
|
3861
3998
|
|
|
3862
3999
|
<li class="md-nav__item">
|
|
3863
|
-
<a href="#
|
|
4000
|
+
<a href="#housekeeping_2" class="md-nav__link">
|
|
3864
4001
|
Housekeeping
|
|
3865
4002
|
</a>
|
|
3866
4003
|
|
|
@@ -3880,14 +4017,14 @@
|
|
|
3880
4017
|
<ul class="md-nav__list">
|
|
3881
4018
|
|
|
3882
4019
|
<li class="md-nav__item">
|
|
3883
|
-
<a href="#
|
|
4020
|
+
<a href="#security_4" class="md-nav__link">
|
|
3884
4021
|
Security
|
|
3885
4022
|
</a>
|
|
3886
4023
|
|
|
3887
4024
|
</li>
|
|
3888
4025
|
|
|
3889
4026
|
<li class="md-nav__item">
|
|
3890
|
-
<a href="#
|
|
4027
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
3891
4028
|
Fixed
|
|
3892
4029
|
</a>
|
|
3893
4030
|
|
|
@@ -3907,7 +4044,7 @@
|
|
|
3907
4044
|
<ul class="md-nav__list">
|
|
3908
4045
|
|
|
3909
4046
|
<li class="md-nav__item">
|
|
3910
|
-
<a href="#
|
|
4047
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
3911
4048
|
Fixed
|
|
3912
4049
|
</a>
|
|
3913
4050
|
|
|
@@ -3927,7 +4064,7 @@
|
|
|
3927
4064
|
<ul class="md-nav__list">
|
|
3928
4065
|
|
|
3929
4066
|
<li class="md-nav__item">
|
|
3930
|
-
<a href="#
|
|
4067
|
+
<a href="#security_5" class="md-nav__link">
|
|
3931
4068
|
Security
|
|
3932
4069
|
</a>
|
|
3933
4070
|
|
|
@@ -3954,14 +4091,14 @@
|
|
|
3954
4091
|
<ul class="md-nav__list">
|
|
3955
4092
|
|
|
3956
4093
|
<li class="md-nav__item">
|
|
3957
|
-
<a href="#
|
|
4094
|
+
<a href="#security_6" class="md-nav__link">
|
|
3958
4095
|
Security
|
|
3959
4096
|
</a>
|
|
3960
4097
|
|
|
3961
4098
|
</li>
|
|
3962
4099
|
|
|
3963
4100
|
<li class="md-nav__item">
|
|
3964
|
-
<a href="#
|
|
4101
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
3965
4102
|
Housekeeping
|
|
3966
4103
|
</a>
|
|
3967
4104
|
|
|
@@ -3981,14 +4118,14 @@
|
|
|
3981
4118
|
<ul class="md-nav__list">
|
|
3982
4119
|
|
|
3983
4120
|
<li class="md-nav__item">
|
|
3984
|
-
<a href="#
|
|
4121
|
+
<a href="#security_7" class="md-nav__link">
|
|
3985
4122
|
Security
|
|
3986
4123
|
</a>
|
|
3987
4124
|
|
|
3988
4125
|
</li>
|
|
3989
4126
|
|
|
3990
4127
|
<li class="md-nav__item">
|
|
3991
|
-
<a href="#
|
|
4128
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
3992
4129
|
Housekeeping
|
|
3993
4130
|
</a>
|
|
3994
4131
|
|
|
@@ -4008,21 +4145,21 @@
|
|
|
4008
4145
|
<ul class="md-nav__list">
|
|
4009
4146
|
|
|
4010
4147
|
<li class="md-nav__item">
|
|
4011
|
-
<a href="#
|
|
4148
|
+
<a href="#security_8" class="md-nav__link">
|
|
4012
4149
|
Security
|
|
4013
4150
|
</a>
|
|
4014
4151
|
|
|
4015
4152
|
</li>
|
|
4016
4153
|
|
|
4017
4154
|
<li class="md-nav__item">
|
|
4018
|
-
<a href="#
|
|
4155
|
+
<a href="#added_2" class="md-nav__link">
|
|
4019
4156
|
Added
|
|
4020
4157
|
</a>
|
|
4021
4158
|
|
|
4022
4159
|
</li>
|
|
4023
4160
|
|
|
4024
4161
|
<li class="md-nav__item">
|
|
4025
|
-
<a href="#
|
|
4162
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
4026
4163
|
Fixed
|
|
4027
4164
|
</a>
|
|
4028
4165
|
|
|
@@ -4042,7 +4179,7 @@
|
|
|
4042
4179
|
<ul class="md-nav__list">
|
|
4043
4180
|
|
|
4044
4181
|
<li class="md-nav__item">
|
|
4045
|
-
<a href="#
|
|
4182
|
+
<a href="#security_9" class="md-nav__link">
|
|
4046
4183
|
Security
|
|
4047
4184
|
</a>
|
|
4048
4185
|
|
|
@@ -4062,14 +4199,14 @@
|
|
|
4062
4199
|
<ul class="md-nav__list">
|
|
4063
4200
|
|
|
4064
4201
|
<li class="md-nav__item">
|
|
4065
|
-
<a href="#
|
|
4202
|
+
<a href="#security_10" class="md-nav__link">
|
|
4066
4203
|
Security
|
|
4067
4204
|
</a>
|
|
4068
4205
|
|
|
4069
4206
|
</li>
|
|
4070
4207
|
|
|
4071
4208
|
<li class="md-nav__item">
|
|
4072
|
-
<a href="#
|
|
4209
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
4073
4210
|
Fixed
|
|
4074
4211
|
</a>
|
|
4075
4212
|
|
|
@@ -4089,14 +4226,14 @@
|
|
|
4089
4226
|
<ul class="md-nav__list">
|
|
4090
4227
|
|
|
4091
4228
|
<li class="md-nav__item">
|
|
4092
|
-
<a href="#
|
|
4229
|
+
<a href="#security_11" class="md-nav__link">
|
|
4093
4230
|
Security
|
|
4094
4231
|
</a>
|
|
4095
4232
|
|
|
4096
4233
|
</li>
|
|
4097
4234
|
|
|
4098
4235
|
<li class="md-nav__item">
|
|
4099
|
-
<a href="#
|
|
4236
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
4100
4237
|
Fixed
|
|
4101
4238
|
</a>
|
|
4102
4239
|
|
|
@@ -4116,7 +4253,7 @@
|
|
|
4116
4253
|
<ul class="md-nav__list">
|
|
4117
4254
|
|
|
4118
4255
|
<li class="md-nav__item">
|
|
4119
|
-
<a href="#
|
|
4256
|
+
<a href="#security_12" class="md-nav__link">
|
|
4120
4257
|
Security
|
|
4121
4258
|
</a>
|
|
4122
4259
|
|
|
@@ -4163,14 +4300,14 @@
|
|
|
4163
4300
|
<ul class="md-nav__list">
|
|
4164
4301
|
|
|
4165
4302
|
<li class="md-nav__item">
|
|
4166
|
-
<a href="#
|
|
4303
|
+
<a href="#security_13" class="md-nav__link">
|
|
4167
4304
|
Security
|
|
4168
4305
|
</a>
|
|
4169
4306
|
|
|
4170
4307
|
</li>
|
|
4171
4308
|
|
|
4172
4309
|
<li class="md-nav__item">
|
|
4173
|
-
<a href="#
|
|
4310
|
+
<a href="#added_3" class="md-nav__link">
|
|
4174
4311
|
Added
|
|
4175
4312
|
</a>
|
|
4176
4313
|
|
|
@@ -4184,21 +4321,21 @@
|
|
|
4184
4321
|
</li>
|
|
4185
4322
|
|
|
4186
4323
|
<li class="md-nav__item">
|
|
4187
|
-
<a href="#
|
|
4324
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
4188
4325
|
Fixed
|
|
4189
4326
|
</a>
|
|
4190
4327
|
|
|
4191
4328
|
</li>
|
|
4192
4329
|
|
|
4193
4330
|
<li class="md-nav__item">
|
|
4194
|
-
<a href="#
|
|
4331
|
+
<a href="#documentation_1" class="md-nav__link">
|
|
4195
4332
|
Documentation
|
|
4196
4333
|
</a>
|
|
4197
4334
|
|
|
4198
4335
|
</li>
|
|
4199
4336
|
|
|
4200
4337
|
<li class="md-nav__item">
|
|
4201
|
-
<a href="#
|
|
4338
|
+
<a href="#housekeeping_5" class="md-nav__link">
|
|
4202
4339
|
Housekeeping
|
|
4203
4340
|
</a>
|
|
4204
4341
|
|
|
@@ -4218,21 +4355,21 @@
|
|
|
4218
4355
|
<ul class="md-nav__list">
|
|
4219
4356
|
|
|
4220
4357
|
<li class="md-nav__item">
|
|
4221
|
-
<a href="#
|
|
4358
|
+
<a href="#added_4" class="md-nav__link">
|
|
4222
4359
|
Added
|
|
4223
4360
|
</a>
|
|
4224
4361
|
|
|
4225
4362
|
</li>
|
|
4226
4363
|
|
|
4227
4364
|
<li class="md-nav__item">
|
|
4228
|
-
<a href="#
|
|
4365
|
+
<a href="#fixed_10" class="md-nav__link">
|
|
4229
4366
|
Fixed
|
|
4230
4367
|
</a>
|
|
4231
4368
|
|
|
4232
4369
|
</li>
|
|
4233
4370
|
|
|
4234
4371
|
<li class="md-nav__item">
|
|
4235
|
-
<a href="#
|
|
4372
|
+
<a href="#housekeeping_6" class="md-nav__link">
|
|
4236
4373
|
Housekeeping
|
|
4237
4374
|
</a>
|
|
4238
4375
|
|
|
@@ -4252,7 +4389,7 @@
|
|
|
4252
4389
|
<ul class="md-nav__list">
|
|
4253
4390
|
|
|
4254
4391
|
<li class="md-nav__item">
|
|
4255
|
-
<a href="#
|
|
4392
|
+
<a href="#fixed_11" class="md-nav__link">
|
|
4256
4393
|
Fixed
|
|
4257
4394
|
</a>
|
|
4258
4395
|
|
|
@@ -4272,21 +4409,21 @@
|
|
|
4272
4409
|
<ul class="md-nav__list">
|
|
4273
4410
|
|
|
4274
4411
|
<li class="md-nav__item">
|
|
4275
|
-
<a href="#
|
|
4412
|
+
<a href="#added_5" class="md-nav__link">
|
|
4276
4413
|
Added
|
|
4277
4414
|
</a>
|
|
4278
4415
|
|
|
4279
4416
|
</li>
|
|
4280
4417
|
|
|
4281
4418
|
<li class="md-nav__item">
|
|
4282
|
-
<a href="#
|
|
4419
|
+
<a href="#fixed_12" class="md-nav__link">
|
|
4283
4420
|
Fixed
|
|
4284
4421
|
</a>
|
|
4285
4422
|
|
|
4286
4423
|
</li>
|
|
4287
4424
|
|
|
4288
4425
|
<li class="md-nav__item">
|
|
4289
|
-
<a href="#
|
|
4426
|
+
<a href="#documentation_2" class="md-nav__link">
|
|
4290
4427
|
Documentation
|
|
4291
4428
|
</a>
|
|
4292
4429
|
|
|
@@ -4306,14 +4443,14 @@
|
|
|
4306
4443
|
<ul class="md-nav__list">
|
|
4307
4444
|
|
|
4308
4445
|
<li class="md-nav__item">
|
|
4309
|
-
<a href="#
|
|
4446
|
+
<a href="#added_6" class="md-nav__link">
|
|
4310
4447
|
Added
|
|
4311
4448
|
</a>
|
|
4312
4449
|
|
|
4313
4450
|
</li>
|
|
4314
4451
|
|
|
4315
4452
|
<li class="md-nav__item">
|
|
4316
|
-
<a href="#
|
|
4453
|
+
<a href="#security_14" class="md-nav__link">
|
|
4317
4454
|
Security
|
|
4318
4455
|
</a>
|
|
4319
4456
|
|
|
@@ -4327,7 +4464,7 @@
|
|
|
4327
4464
|
</li>
|
|
4328
4465
|
|
|
4329
4466
|
<li class="md-nav__item">
|
|
4330
|
-
<a href="#
|
|
4467
|
+
<a href="#fixed_13" class="md-nav__link">
|
|
4331
4468
|
Fixed
|
|
4332
4469
|
</a>
|
|
4333
4470
|
|
|
@@ -4347,21 +4484,21 @@
|
|
|
4347
4484
|
<ul class="md-nav__list">
|
|
4348
4485
|
|
|
4349
4486
|
<li class="md-nav__item">
|
|
4350
|
-
<a href="#
|
|
4487
|
+
<a href="#security_15" class="md-nav__link">
|
|
4351
4488
|
Security
|
|
4352
4489
|
</a>
|
|
4353
4490
|
|
|
4354
4491
|
</li>
|
|
4355
4492
|
|
|
4356
4493
|
<li class="md-nav__item">
|
|
4357
|
-
<a href="#
|
|
4494
|
+
<a href="#added_7" class="md-nav__link">
|
|
4358
4495
|
Added
|
|
4359
4496
|
</a>
|
|
4360
4497
|
|
|
4361
4498
|
</li>
|
|
4362
4499
|
|
|
4363
4500
|
<li class="md-nav__item">
|
|
4364
|
-
<a href="#
|
|
4501
|
+
<a href="#fixed_14" class="md-nav__link">
|
|
4365
4502
|
Fixed
|
|
4366
4503
|
</a>
|
|
4367
4504
|
|
|
@@ -4381,14 +4518,14 @@
|
|
|
4381
4518
|
<ul class="md-nav__list">
|
|
4382
4519
|
|
|
4383
4520
|
<li class="md-nav__item">
|
|
4384
|
-
<a href="#
|
|
4521
|
+
<a href="#security_16" class="md-nav__link">
|
|
4385
4522
|
Security
|
|
4386
4523
|
</a>
|
|
4387
4524
|
|
|
4388
4525
|
</li>
|
|
4389
4526
|
|
|
4390
4527
|
<li class="md-nav__item">
|
|
4391
|
-
<a href="#
|
|
4528
|
+
<a href="#added_8" class="md-nav__link">
|
|
4392
4529
|
Added
|
|
4393
4530
|
</a>
|
|
4394
4531
|
|
|
@@ -4422,7 +4559,7 @@
|
|
|
4422
4559
|
<ul class="md-nav__list">
|
|
4423
4560
|
|
|
4424
4561
|
<li class="md-nav__item">
|
|
4425
|
-
<a href="#
|
|
4562
|
+
<a href="#fixed_15" class="md-nav__link">
|
|
4426
4563
|
Fixed
|
|
4427
4564
|
</a>
|
|
4428
4565
|
|
|
@@ -4442,14 +4579,14 @@
|
|
|
4442
4579
|
<ul class="md-nav__list">
|
|
4443
4580
|
|
|
4444
4581
|
<li class="md-nav__item">
|
|
4445
|
-
<a href="#
|
|
4582
|
+
<a href="#security_17" class="md-nav__link">
|
|
4446
4583
|
Security
|
|
4447
4584
|
</a>
|
|
4448
4585
|
|
|
4449
4586
|
</li>
|
|
4450
4587
|
|
|
4451
4588
|
<li class="md-nav__item">
|
|
4452
|
-
<a href="#
|
|
4589
|
+
<a href="#added_9" class="md-nav__link">
|
|
4453
4590
|
Added
|
|
4454
4591
|
</a>
|
|
4455
4592
|
|
|
@@ -4463,14 +4600,14 @@
|
|
|
4463
4600
|
</li>
|
|
4464
4601
|
|
|
4465
4602
|
<li class="md-nav__item">
|
|
4466
|
-
<a href="#
|
|
4603
|
+
<a href="#fixed_16" class="md-nav__link">
|
|
4467
4604
|
Fixed
|
|
4468
4605
|
</a>
|
|
4469
4606
|
|
|
4470
4607
|
</li>
|
|
4471
4608
|
|
|
4472
4609
|
<li class="md-nav__item">
|
|
4473
|
-
<a href="#
|
|
4610
|
+
<a href="#housekeeping_7" class="md-nav__link">
|
|
4474
4611
|
Housekeeping
|
|
4475
4612
|
</a>
|
|
4476
4613
|
|
|
@@ -4490,14 +4627,14 @@
|
|
|
4490
4627
|
<ul class="md-nav__list">
|
|
4491
4628
|
|
|
4492
4629
|
<li class="md-nav__item">
|
|
4493
|
-
<a href="#
|
|
4630
|
+
<a href="#security_18" class="md-nav__link">
|
|
4494
4631
|
Security
|
|
4495
4632
|
</a>
|
|
4496
4633
|
|
|
4497
4634
|
</li>
|
|
4498
4635
|
|
|
4499
4636
|
<li class="md-nav__item">
|
|
4500
|
-
<a href="#
|
|
4637
|
+
<a href="#added_10" class="md-nav__link">
|
|
4501
4638
|
Added
|
|
4502
4639
|
</a>
|
|
4503
4640
|
|
|
@@ -4511,7 +4648,7 @@
|
|
|
4511
4648
|
</li>
|
|
4512
4649
|
|
|
4513
4650
|
<li class="md-nav__item">
|
|
4514
|
-
<a href="#
|
|
4651
|
+
<a href="#fixed_17" class="md-nav__link">
|
|
4515
4652
|
Fixed
|
|
4516
4653
|
</a>
|
|
4517
4654
|
|
|
@@ -4531,7 +4668,7 @@
|
|
|
4531
4668
|
<ul class="md-nav__list">
|
|
4532
4669
|
|
|
4533
4670
|
<li class="md-nav__item">
|
|
4534
|
-
<a href="#
|
|
4671
|
+
<a href="#security_19" class="md-nav__link">
|
|
4535
4672
|
Security
|
|
4536
4673
|
</a>
|
|
4537
4674
|
|
|
@@ -4545,7 +4682,7 @@
|
|
|
4545
4682
|
</li>
|
|
4546
4683
|
|
|
4547
4684
|
<li class="md-nav__item">
|
|
4548
|
-
<a href="#
|
|
4685
|
+
<a href="#fixed_18" class="md-nav__link">
|
|
4549
4686
|
Fixed
|
|
4550
4687
|
</a>
|
|
4551
4688
|
|
|
@@ -4559,7 +4696,7 @@
|
|
|
4559
4696
|
</li>
|
|
4560
4697
|
|
|
4561
4698
|
<li class="md-nav__item">
|
|
4562
|
-
<a href="#
|
|
4699
|
+
<a href="#housekeeping_8" class="md-nav__link">
|
|
4563
4700
|
Housekeeping
|
|
4564
4701
|
</a>
|
|
4565
4702
|
|
|
@@ -4579,7 +4716,7 @@
|
|
|
4579
4716
|
<ul class="md-nav__list">
|
|
4580
4717
|
|
|
4581
4718
|
<li class="md-nav__item">
|
|
4582
|
-
<a href="#
|
|
4719
|
+
<a href="#added_11" class="md-nav__link">
|
|
4583
4720
|
Added
|
|
4584
4721
|
</a>
|
|
4585
4722
|
|
|
@@ -4593,21 +4730,21 @@
|
|
|
4593
4730
|
</li>
|
|
4594
4731
|
|
|
4595
4732
|
<li class="md-nav__item">
|
|
4596
|
-
<a href="#
|
|
4733
|
+
<a href="#fixed_19" class="md-nav__link">
|
|
4597
4734
|
Fixed
|
|
4598
4735
|
</a>
|
|
4599
4736
|
|
|
4600
4737
|
</li>
|
|
4601
4738
|
|
|
4602
4739
|
<li class="md-nav__item">
|
|
4603
|
-
<a href="#
|
|
4740
|
+
<a href="#housekeeping_9" class="md-nav__link">
|
|
4604
4741
|
Housekeeping
|
|
4605
4742
|
</a>
|
|
4606
4743
|
|
|
4607
4744
|
</li>
|
|
4608
4745
|
|
|
4609
4746
|
<li class="md-nav__item">
|
|
4610
|
-
<a href="#
|
|
4747
|
+
<a href="#security_20" class="md-nav__link">
|
|
4611
4748
|
Security
|
|
4612
4749
|
</a>
|
|
4613
4750
|
|
|
@@ -4627,7 +4764,7 @@
|
|
|
4627
4764
|
<ul class="md-nav__list">
|
|
4628
4765
|
|
|
4629
4766
|
<li class="md-nav__item">
|
|
4630
|
-
<a href="#
|
|
4767
|
+
<a href="#added_12" class="md-nav__link">
|
|
4631
4768
|
Added
|
|
4632
4769
|
</a>
|
|
4633
4770
|
|
|
@@ -4641,7 +4778,7 @@
|
|
|
4641
4778
|
</li>
|
|
4642
4779
|
|
|
4643
4780
|
<li class="md-nav__item">
|
|
4644
|
-
<a href="#
|
|
4781
|
+
<a href="#housekeeping_10" class="md-nav__link">
|
|
4645
4782
|
Housekeeping
|
|
4646
4783
|
</a>
|
|
4647
4784
|
|
|
@@ -4668,28 +4805,28 @@
|
|
|
4668
4805
|
<ul class="md-nav__list">
|
|
4669
4806
|
|
|
4670
4807
|
<li class="md-nav__item">
|
|
4671
|
-
<a href="#
|
|
4808
|
+
<a href="#added_13" class="md-nav__link">
|
|
4672
4809
|
Added
|
|
4673
4810
|
</a>
|
|
4674
4811
|
|
|
4675
4812
|
</li>
|
|
4676
4813
|
|
|
4677
4814
|
<li class="md-nav__item">
|
|
4678
|
-
<a href="#
|
|
4815
|
+
<a href="#fixed_20" class="md-nav__link">
|
|
4679
4816
|
Fixed
|
|
4680
4817
|
</a>
|
|
4681
4818
|
|
|
4682
4819
|
</li>
|
|
4683
4820
|
|
|
4684
4821
|
<li class="md-nav__item">
|
|
4685
|
-
<a href="#
|
|
4822
|
+
<a href="#housekeeping_11" class="md-nav__link">
|
|
4686
4823
|
Housekeeping
|
|
4687
4824
|
</a>
|
|
4688
4825
|
|
|
4689
4826
|
</li>
|
|
4690
4827
|
|
|
4691
4828
|
<li class="md-nav__item">
|
|
4692
|
-
<a href="#
|
|
4829
|
+
<a href="#security_21" class="md-nav__link">
|
|
4693
4830
|
Security
|
|
4694
4831
|
</a>
|
|
4695
4832
|
|
|
@@ -4709,7 +4846,7 @@
|
|
|
4709
4846
|
<ul class="md-nav__list">
|
|
4710
4847
|
|
|
4711
4848
|
<li class="md-nav__item">
|
|
4712
|
-
<a href="#
|
|
4849
|
+
<a href="#added_14" class="md-nav__link">
|
|
4713
4850
|
Added
|
|
4714
4851
|
</a>
|
|
4715
4852
|
|
|
@@ -4723,14 +4860,14 @@
|
|
|
4723
4860
|
</li>
|
|
4724
4861
|
|
|
4725
4862
|
<li class="md-nav__item">
|
|
4726
|
-
<a href="#
|
|
4863
|
+
<a href="#fixed_21" class="md-nav__link">
|
|
4727
4864
|
Fixed
|
|
4728
4865
|
</a>
|
|
4729
4866
|
|
|
4730
4867
|
</li>
|
|
4731
4868
|
|
|
4732
4869
|
<li class="md-nav__item">
|
|
4733
|
-
<a href="#
|
|
4870
|
+
<a href="#housekeeping_12" class="md-nav__link">
|
|
4734
4871
|
Housekeeping
|
|
4735
4872
|
</a>
|
|
4736
4873
|
|
|
@@ -4757,7 +4894,7 @@
|
|
|
4757
4894
|
</li>
|
|
4758
4895
|
|
|
4759
4896
|
<li class="md-nav__item">
|
|
4760
|
-
<a href="#
|
|
4897
|
+
<a href="#fixed_22" class="md-nav__link">
|
|
4761
4898
|
Fixed
|
|
4762
4899
|
</a>
|
|
4763
4900
|
|
|
@@ -4777,7 +4914,7 @@
|
|
|
4777
4914
|
<ul class="md-nav__list">
|
|
4778
4915
|
|
|
4779
4916
|
<li class="md-nav__item">
|
|
4780
|
-
<a href="#
|
|
4917
|
+
<a href="#added_15" class="md-nav__link">
|
|
4781
4918
|
Added
|
|
4782
4919
|
</a>
|
|
4783
4920
|
|
|
@@ -4791,7 +4928,7 @@
|
|
|
4791
4928
|
</li>
|
|
4792
4929
|
|
|
4793
4930
|
<li class="md-nav__item">
|
|
4794
|
-
<a href="#
|
|
4931
|
+
<a href="#fixed_23" class="md-nav__link">
|
|
4795
4932
|
Fixed
|
|
4796
4933
|
</a>
|
|
4797
4934
|
|
|
@@ -4811,7 +4948,7 @@
|
|
|
4811
4948
|
<ul class="md-nav__list">
|
|
4812
4949
|
|
|
4813
4950
|
<li class="md-nav__item">
|
|
4814
|
-
<a href="#
|
|
4951
|
+
<a href="#added_16" class="md-nav__link">
|
|
4815
4952
|
Added
|
|
4816
4953
|
</a>
|
|
4817
4954
|
|
|
@@ -4832,7 +4969,7 @@
|
|
|
4832
4969
|
</li>
|
|
4833
4970
|
|
|
4834
4971
|
<li class="md-nav__item">
|
|
4835
|
-
<a href="#
|
|
4972
|
+
<a href="#fixed_24" class="md-nav__link">
|
|
4836
4973
|
Fixed
|
|
4837
4974
|
</a>
|
|
4838
4975
|
|
|
@@ -5319,6 +5456,81 @@
|
|
|
5319
5456
|
</ul>
|
|
5320
5457
|
</nav>
|
|
5321
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
|
+
|
|
5500
|
+
</li>
|
|
5501
|
+
|
|
5502
|
+
<li class="md-nav__item">
|
|
5503
|
+
<a href="#v1631-2025-05-12" class="md-nav__link">
|
|
5504
|
+
v1.6.31 (2025-05-12)
|
|
5505
|
+
</a>
|
|
5506
|
+
|
|
5507
|
+
<nav class="md-nav" aria-label="v1.6.31 (2025-05-12)">
|
|
5508
|
+
<ul class="md-nav__list">
|
|
5509
|
+
|
|
5510
|
+
<li class="md-nav__item">
|
|
5511
|
+
<a href="#security_1" class="md-nav__link">
|
|
5512
|
+
Security
|
|
5513
|
+
</a>
|
|
5514
|
+
|
|
5515
|
+
</li>
|
|
5516
|
+
|
|
5517
|
+
<li class="md-nav__item">
|
|
5518
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
5519
|
+
Fixed
|
|
5520
|
+
</a>
|
|
5521
|
+
|
|
5522
|
+
</li>
|
|
5523
|
+
|
|
5524
|
+
<li class="md-nav__item">
|
|
5525
|
+
<a href="#housekeeping" class="md-nav__link">
|
|
5526
|
+
Housekeeping
|
|
5527
|
+
</a>
|
|
5528
|
+
|
|
5529
|
+
</li>
|
|
5530
|
+
|
|
5531
|
+
</ul>
|
|
5532
|
+
</nav>
|
|
5533
|
+
|
|
5322
5534
|
</li>
|
|
5323
5535
|
|
|
5324
5536
|
<li class="md-nav__item">
|
|
@@ -5330,14 +5542,14 @@
|
|
|
5330
5542
|
<ul class="md-nav__list">
|
|
5331
5543
|
|
|
5332
5544
|
<li class="md-nav__item">
|
|
5333
|
-
<a href="#
|
|
5545
|
+
<a href="#security_2" class="md-nav__link">
|
|
5334
5546
|
Security
|
|
5335
5547
|
</a>
|
|
5336
5548
|
|
|
5337
5549
|
</li>
|
|
5338
5550
|
|
|
5339
5551
|
<li class="md-nav__item">
|
|
5340
|
-
<a href="#
|
|
5552
|
+
<a href="#housekeeping_1" class="md-nav__link">
|
|
5341
5553
|
Housekeeping
|
|
5342
5554
|
</a>
|
|
5343
5555
|
|
|
@@ -5357,14 +5569,14 @@
|
|
|
5357
5569
|
<ul class="md-nav__list">
|
|
5358
5570
|
|
|
5359
5571
|
<li class="md-nav__item">
|
|
5360
|
-
<a href="#
|
|
5572
|
+
<a href="#security_3" class="md-nav__link">
|
|
5361
5573
|
Security
|
|
5362
5574
|
</a>
|
|
5363
5575
|
|
|
5364
5576
|
</li>
|
|
5365
5577
|
|
|
5366
5578
|
<li class="md-nav__item">
|
|
5367
|
-
<a href="#
|
|
5579
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
5368
5580
|
Fixed
|
|
5369
5581
|
</a>
|
|
5370
5582
|
|
|
@@ -5384,14 +5596,14 @@
|
|
|
5384
5596
|
<ul class="md-nav__list">
|
|
5385
5597
|
|
|
5386
5598
|
<li class="md-nav__item">
|
|
5387
|
-
<a href="#
|
|
5599
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
5388
5600
|
Fixed
|
|
5389
5601
|
</a>
|
|
5390
5602
|
|
|
5391
5603
|
</li>
|
|
5392
5604
|
|
|
5393
5605
|
<li class="md-nav__item">
|
|
5394
|
-
<a href="#
|
|
5606
|
+
<a href="#housekeeping_2" class="md-nav__link">
|
|
5395
5607
|
Housekeeping
|
|
5396
5608
|
</a>
|
|
5397
5609
|
|
|
@@ -5411,14 +5623,14 @@
|
|
|
5411
5623
|
<ul class="md-nav__list">
|
|
5412
5624
|
|
|
5413
5625
|
<li class="md-nav__item">
|
|
5414
|
-
<a href="#
|
|
5626
|
+
<a href="#security_4" class="md-nav__link">
|
|
5415
5627
|
Security
|
|
5416
5628
|
</a>
|
|
5417
5629
|
|
|
5418
5630
|
</li>
|
|
5419
5631
|
|
|
5420
5632
|
<li class="md-nav__item">
|
|
5421
|
-
<a href="#
|
|
5633
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
5422
5634
|
Fixed
|
|
5423
5635
|
</a>
|
|
5424
5636
|
|
|
@@ -5438,7 +5650,7 @@
|
|
|
5438
5650
|
<ul class="md-nav__list">
|
|
5439
5651
|
|
|
5440
5652
|
<li class="md-nav__item">
|
|
5441
|
-
<a href="#
|
|
5653
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
5442
5654
|
Fixed
|
|
5443
5655
|
</a>
|
|
5444
5656
|
|
|
@@ -5458,7 +5670,7 @@
|
|
|
5458
5670
|
<ul class="md-nav__list">
|
|
5459
5671
|
|
|
5460
5672
|
<li class="md-nav__item">
|
|
5461
|
-
<a href="#
|
|
5673
|
+
<a href="#security_5" class="md-nav__link">
|
|
5462
5674
|
Security
|
|
5463
5675
|
</a>
|
|
5464
5676
|
|
|
@@ -5485,14 +5697,14 @@
|
|
|
5485
5697
|
<ul class="md-nav__list">
|
|
5486
5698
|
|
|
5487
5699
|
<li class="md-nav__item">
|
|
5488
|
-
<a href="#
|
|
5700
|
+
<a href="#security_6" class="md-nav__link">
|
|
5489
5701
|
Security
|
|
5490
5702
|
</a>
|
|
5491
5703
|
|
|
5492
5704
|
</li>
|
|
5493
5705
|
|
|
5494
5706
|
<li class="md-nav__item">
|
|
5495
|
-
<a href="#
|
|
5707
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
5496
5708
|
Housekeeping
|
|
5497
5709
|
</a>
|
|
5498
5710
|
|
|
@@ -5512,14 +5724,14 @@
|
|
|
5512
5724
|
<ul class="md-nav__list">
|
|
5513
5725
|
|
|
5514
5726
|
<li class="md-nav__item">
|
|
5515
|
-
<a href="#
|
|
5727
|
+
<a href="#security_7" class="md-nav__link">
|
|
5516
5728
|
Security
|
|
5517
5729
|
</a>
|
|
5518
5730
|
|
|
5519
5731
|
</li>
|
|
5520
5732
|
|
|
5521
5733
|
<li class="md-nav__item">
|
|
5522
|
-
<a href="#
|
|
5734
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
5523
5735
|
Housekeeping
|
|
5524
5736
|
</a>
|
|
5525
5737
|
|
|
@@ -5539,21 +5751,21 @@
|
|
|
5539
5751
|
<ul class="md-nav__list">
|
|
5540
5752
|
|
|
5541
5753
|
<li class="md-nav__item">
|
|
5542
|
-
<a href="#
|
|
5754
|
+
<a href="#security_8" class="md-nav__link">
|
|
5543
5755
|
Security
|
|
5544
5756
|
</a>
|
|
5545
5757
|
|
|
5546
5758
|
</li>
|
|
5547
5759
|
|
|
5548
5760
|
<li class="md-nav__item">
|
|
5549
|
-
<a href="#
|
|
5761
|
+
<a href="#added_2" class="md-nav__link">
|
|
5550
5762
|
Added
|
|
5551
5763
|
</a>
|
|
5552
5764
|
|
|
5553
5765
|
</li>
|
|
5554
5766
|
|
|
5555
5767
|
<li class="md-nav__item">
|
|
5556
|
-
<a href="#
|
|
5768
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
5557
5769
|
Fixed
|
|
5558
5770
|
</a>
|
|
5559
5771
|
|
|
@@ -5573,7 +5785,7 @@
|
|
|
5573
5785
|
<ul class="md-nav__list">
|
|
5574
5786
|
|
|
5575
5787
|
<li class="md-nav__item">
|
|
5576
|
-
<a href="#
|
|
5788
|
+
<a href="#security_9" class="md-nav__link">
|
|
5577
5789
|
Security
|
|
5578
5790
|
</a>
|
|
5579
5791
|
|
|
@@ -5593,14 +5805,14 @@
|
|
|
5593
5805
|
<ul class="md-nav__list">
|
|
5594
5806
|
|
|
5595
5807
|
<li class="md-nav__item">
|
|
5596
|
-
<a href="#
|
|
5808
|
+
<a href="#security_10" class="md-nav__link">
|
|
5597
5809
|
Security
|
|
5598
5810
|
</a>
|
|
5599
5811
|
|
|
5600
5812
|
</li>
|
|
5601
5813
|
|
|
5602
5814
|
<li class="md-nav__item">
|
|
5603
|
-
<a href="#
|
|
5815
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
5604
5816
|
Fixed
|
|
5605
5817
|
</a>
|
|
5606
5818
|
|
|
@@ -5620,14 +5832,14 @@
|
|
|
5620
5832
|
<ul class="md-nav__list">
|
|
5621
5833
|
|
|
5622
5834
|
<li class="md-nav__item">
|
|
5623
|
-
<a href="#
|
|
5835
|
+
<a href="#security_11" class="md-nav__link">
|
|
5624
5836
|
Security
|
|
5625
5837
|
</a>
|
|
5626
5838
|
|
|
5627
5839
|
</li>
|
|
5628
5840
|
|
|
5629
5841
|
<li class="md-nav__item">
|
|
5630
|
-
<a href="#
|
|
5842
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
5631
5843
|
Fixed
|
|
5632
5844
|
</a>
|
|
5633
5845
|
|
|
@@ -5647,7 +5859,7 @@
|
|
|
5647
5859
|
<ul class="md-nav__list">
|
|
5648
5860
|
|
|
5649
5861
|
<li class="md-nav__item">
|
|
5650
|
-
<a href="#
|
|
5862
|
+
<a href="#security_12" class="md-nav__link">
|
|
5651
5863
|
Security
|
|
5652
5864
|
</a>
|
|
5653
5865
|
|
|
@@ -5694,14 +5906,14 @@
|
|
|
5694
5906
|
<ul class="md-nav__list">
|
|
5695
5907
|
|
|
5696
5908
|
<li class="md-nav__item">
|
|
5697
|
-
<a href="#
|
|
5909
|
+
<a href="#security_13" class="md-nav__link">
|
|
5698
5910
|
Security
|
|
5699
5911
|
</a>
|
|
5700
5912
|
|
|
5701
5913
|
</li>
|
|
5702
5914
|
|
|
5703
5915
|
<li class="md-nav__item">
|
|
5704
|
-
<a href="#
|
|
5916
|
+
<a href="#added_3" class="md-nav__link">
|
|
5705
5917
|
Added
|
|
5706
5918
|
</a>
|
|
5707
5919
|
|
|
@@ -5715,21 +5927,21 @@
|
|
|
5715
5927
|
</li>
|
|
5716
5928
|
|
|
5717
5929
|
<li class="md-nav__item">
|
|
5718
|
-
<a href="#
|
|
5930
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
5719
5931
|
Fixed
|
|
5720
5932
|
</a>
|
|
5721
5933
|
|
|
5722
5934
|
</li>
|
|
5723
5935
|
|
|
5724
5936
|
<li class="md-nav__item">
|
|
5725
|
-
<a href="#
|
|
5937
|
+
<a href="#documentation_1" class="md-nav__link">
|
|
5726
5938
|
Documentation
|
|
5727
5939
|
</a>
|
|
5728
5940
|
|
|
5729
5941
|
</li>
|
|
5730
5942
|
|
|
5731
5943
|
<li class="md-nav__item">
|
|
5732
|
-
<a href="#
|
|
5944
|
+
<a href="#housekeeping_5" class="md-nav__link">
|
|
5733
5945
|
Housekeeping
|
|
5734
5946
|
</a>
|
|
5735
5947
|
|
|
@@ -5749,21 +5961,21 @@
|
|
|
5749
5961
|
<ul class="md-nav__list">
|
|
5750
5962
|
|
|
5751
5963
|
<li class="md-nav__item">
|
|
5752
|
-
<a href="#
|
|
5964
|
+
<a href="#added_4" class="md-nav__link">
|
|
5753
5965
|
Added
|
|
5754
5966
|
</a>
|
|
5755
5967
|
|
|
5756
5968
|
</li>
|
|
5757
5969
|
|
|
5758
5970
|
<li class="md-nav__item">
|
|
5759
|
-
<a href="#
|
|
5971
|
+
<a href="#fixed_10" class="md-nav__link">
|
|
5760
5972
|
Fixed
|
|
5761
5973
|
</a>
|
|
5762
5974
|
|
|
5763
5975
|
</li>
|
|
5764
5976
|
|
|
5765
5977
|
<li class="md-nav__item">
|
|
5766
|
-
<a href="#
|
|
5978
|
+
<a href="#housekeeping_6" class="md-nav__link">
|
|
5767
5979
|
Housekeeping
|
|
5768
5980
|
</a>
|
|
5769
5981
|
|
|
@@ -5783,7 +5995,7 @@
|
|
|
5783
5995
|
<ul class="md-nav__list">
|
|
5784
5996
|
|
|
5785
5997
|
<li class="md-nav__item">
|
|
5786
|
-
<a href="#
|
|
5998
|
+
<a href="#fixed_11" class="md-nav__link">
|
|
5787
5999
|
Fixed
|
|
5788
6000
|
</a>
|
|
5789
6001
|
|
|
@@ -5803,21 +6015,21 @@
|
|
|
5803
6015
|
<ul class="md-nav__list">
|
|
5804
6016
|
|
|
5805
6017
|
<li class="md-nav__item">
|
|
5806
|
-
<a href="#
|
|
6018
|
+
<a href="#added_5" class="md-nav__link">
|
|
5807
6019
|
Added
|
|
5808
6020
|
</a>
|
|
5809
6021
|
|
|
5810
6022
|
</li>
|
|
5811
6023
|
|
|
5812
6024
|
<li class="md-nav__item">
|
|
5813
|
-
<a href="#
|
|
6025
|
+
<a href="#fixed_12" class="md-nav__link">
|
|
5814
6026
|
Fixed
|
|
5815
6027
|
</a>
|
|
5816
6028
|
|
|
5817
6029
|
</li>
|
|
5818
6030
|
|
|
5819
6031
|
<li class="md-nav__item">
|
|
5820
|
-
<a href="#
|
|
6032
|
+
<a href="#documentation_2" class="md-nav__link">
|
|
5821
6033
|
Documentation
|
|
5822
6034
|
</a>
|
|
5823
6035
|
|
|
@@ -5837,14 +6049,14 @@
|
|
|
5837
6049
|
<ul class="md-nav__list">
|
|
5838
6050
|
|
|
5839
6051
|
<li class="md-nav__item">
|
|
5840
|
-
<a href="#
|
|
6052
|
+
<a href="#added_6" class="md-nav__link">
|
|
5841
6053
|
Added
|
|
5842
6054
|
</a>
|
|
5843
6055
|
|
|
5844
6056
|
</li>
|
|
5845
6057
|
|
|
5846
6058
|
<li class="md-nav__item">
|
|
5847
|
-
<a href="#
|
|
6059
|
+
<a href="#security_14" class="md-nav__link">
|
|
5848
6060
|
Security
|
|
5849
6061
|
</a>
|
|
5850
6062
|
|
|
@@ -5858,7 +6070,7 @@
|
|
|
5858
6070
|
</li>
|
|
5859
6071
|
|
|
5860
6072
|
<li class="md-nav__item">
|
|
5861
|
-
<a href="#
|
|
6073
|
+
<a href="#fixed_13" class="md-nav__link">
|
|
5862
6074
|
Fixed
|
|
5863
6075
|
</a>
|
|
5864
6076
|
|
|
@@ -5878,21 +6090,21 @@
|
|
|
5878
6090
|
<ul class="md-nav__list">
|
|
5879
6091
|
|
|
5880
6092
|
<li class="md-nav__item">
|
|
5881
|
-
<a href="#
|
|
6093
|
+
<a href="#security_15" class="md-nav__link">
|
|
5882
6094
|
Security
|
|
5883
6095
|
</a>
|
|
5884
6096
|
|
|
5885
6097
|
</li>
|
|
5886
6098
|
|
|
5887
6099
|
<li class="md-nav__item">
|
|
5888
|
-
<a href="#
|
|
6100
|
+
<a href="#added_7" class="md-nav__link">
|
|
5889
6101
|
Added
|
|
5890
6102
|
</a>
|
|
5891
6103
|
|
|
5892
6104
|
</li>
|
|
5893
6105
|
|
|
5894
6106
|
<li class="md-nav__item">
|
|
5895
|
-
<a href="#
|
|
6107
|
+
<a href="#fixed_14" class="md-nav__link">
|
|
5896
6108
|
Fixed
|
|
5897
6109
|
</a>
|
|
5898
6110
|
|
|
@@ -5912,14 +6124,14 @@
|
|
|
5912
6124
|
<ul class="md-nav__list">
|
|
5913
6125
|
|
|
5914
6126
|
<li class="md-nav__item">
|
|
5915
|
-
<a href="#
|
|
6127
|
+
<a href="#security_16" class="md-nav__link">
|
|
5916
6128
|
Security
|
|
5917
6129
|
</a>
|
|
5918
6130
|
|
|
5919
6131
|
</li>
|
|
5920
6132
|
|
|
5921
6133
|
<li class="md-nav__item">
|
|
5922
|
-
<a href="#
|
|
6134
|
+
<a href="#added_8" class="md-nav__link">
|
|
5923
6135
|
Added
|
|
5924
6136
|
</a>
|
|
5925
6137
|
|
|
@@ -5953,7 +6165,7 @@
|
|
|
5953
6165
|
<ul class="md-nav__list">
|
|
5954
6166
|
|
|
5955
6167
|
<li class="md-nav__item">
|
|
5956
|
-
<a href="#
|
|
6168
|
+
<a href="#fixed_15" class="md-nav__link">
|
|
5957
6169
|
Fixed
|
|
5958
6170
|
</a>
|
|
5959
6171
|
|
|
@@ -5973,14 +6185,14 @@
|
|
|
5973
6185
|
<ul class="md-nav__list">
|
|
5974
6186
|
|
|
5975
6187
|
<li class="md-nav__item">
|
|
5976
|
-
<a href="#
|
|
6188
|
+
<a href="#security_17" class="md-nav__link">
|
|
5977
6189
|
Security
|
|
5978
6190
|
</a>
|
|
5979
6191
|
|
|
5980
6192
|
</li>
|
|
5981
6193
|
|
|
5982
6194
|
<li class="md-nav__item">
|
|
5983
|
-
<a href="#
|
|
6195
|
+
<a href="#added_9" class="md-nav__link">
|
|
5984
6196
|
Added
|
|
5985
6197
|
</a>
|
|
5986
6198
|
|
|
@@ -5994,14 +6206,14 @@
|
|
|
5994
6206
|
</li>
|
|
5995
6207
|
|
|
5996
6208
|
<li class="md-nav__item">
|
|
5997
|
-
<a href="#
|
|
6209
|
+
<a href="#fixed_16" class="md-nav__link">
|
|
5998
6210
|
Fixed
|
|
5999
6211
|
</a>
|
|
6000
6212
|
|
|
6001
6213
|
</li>
|
|
6002
6214
|
|
|
6003
6215
|
<li class="md-nav__item">
|
|
6004
|
-
<a href="#
|
|
6216
|
+
<a href="#housekeeping_7" class="md-nav__link">
|
|
6005
6217
|
Housekeeping
|
|
6006
6218
|
</a>
|
|
6007
6219
|
|
|
@@ -6021,14 +6233,14 @@
|
|
|
6021
6233
|
<ul class="md-nav__list">
|
|
6022
6234
|
|
|
6023
6235
|
<li class="md-nav__item">
|
|
6024
|
-
<a href="#
|
|
6236
|
+
<a href="#security_18" class="md-nav__link">
|
|
6025
6237
|
Security
|
|
6026
6238
|
</a>
|
|
6027
6239
|
|
|
6028
6240
|
</li>
|
|
6029
6241
|
|
|
6030
6242
|
<li class="md-nav__item">
|
|
6031
|
-
<a href="#
|
|
6243
|
+
<a href="#added_10" class="md-nav__link">
|
|
6032
6244
|
Added
|
|
6033
6245
|
</a>
|
|
6034
6246
|
|
|
@@ -6042,7 +6254,7 @@
|
|
|
6042
6254
|
</li>
|
|
6043
6255
|
|
|
6044
6256
|
<li class="md-nav__item">
|
|
6045
|
-
<a href="#
|
|
6257
|
+
<a href="#fixed_17" class="md-nav__link">
|
|
6046
6258
|
Fixed
|
|
6047
6259
|
</a>
|
|
6048
6260
|
|
|
@@ -6062,7 +6274,7 @@
|
|
|
6062
6274
|
<ul class="md-nav__list">
|
|
6063
6275
|
|
|
6064
6276
|
<li class="md-nav__item">
|
|
6065
|
-
<a href="#
|
|
6277
|
+
<a href="#security_19" class="md-nav__link">
|
|
6066
6278
|
Security
|
|
6067
6279
|
</a>
|
|
6068
6280
|
|
|
@@ -6076,7 +6288,7 @@
|
|
|
6076
6288
|
</li>
|
|
6077
6289
|
|
|
6078
6290
|
<li class="md-nav__item">
|
|
6079
|
-
<a href="#
|
|
6291
|
+
<a href="#fixed_18" class="md-nav__link">
|
|
6080
6292
|
Fixed
|
|
6081
6293
|
</a>
|
|
6082
6294
|
|
|
@@ -6090,7 +6302,7 @@
|
|
|
6090
6302
|
</li>
|
|
6091
6303
|
|
|
6092
6304
|
<li class="md-nav__item">
|
|
6093
|
-
<a href="#
|
|
6305
|
+
<a href="#housekeeping_8" class="md-nav__link">
|
|
6094
6306
|
Housekeeping
|
|
6095
6307
|
</a>
|
|
6096
6308
|
|
|
@@ -6110,7 +6322,7 @@
|
|
|
6110
6322
|
<ul class="md-nav__list">
|
|
6111
6323
|
|
|
6112
6324
|
<li class="md-nav__item">
|
|
6113
|
-
<a href="#
|
|
6325
|
+
<a href="#added_11" class="md-nav__link">
|
|
6114
6326
|
Added
|
|
6115
6327
|
</a>
|
|
6116
6328
|
|
|
@@ -6124,21 +6336,21 @@
|
|
|
6124
6336
|
</li>
|
|
6125
6337
|
|
|
6126
6338
|
<li class="md-nav__item">
|
|
6127
|
-
<a href="#
|
|
6339
|
+
<a href="#fixed_19" class="md-nav__link">
|
|
6128
6340
|
Fixed
|
|
6129
6341
|
</a>
|
|
6130
6342
|
|
|
6131
6343
|
</li>
|
|
6132
6344
|
|
|
6133
6345
|
<li class="md-nav__item">
|
|
6134
|
-
<a href="#
|
|
6346
|
+
<a href="#housekeeping_9" class="md-nav__link">
|
|
6135
6347
|
Housekeeping
|
|
6136
6348
|
</a>
|
|
6137
6349
|
|
|
6138
6350
|
</li>
|
|
6139
6351
|
|
|
6140
6352
|
<li class="md-nav__item">
|
|
6141
|
-
<a href="#
|
|
6353
|
+
<a href="#security_20" class="md-nav__link">
|
|
6142
6354
|
Security
|
|
6143
6355
|
</a>
|
|
6144
6356
|
|
|
@@ -6158,7 +6370,7 @@
|
|
|
6158
6370
|
<ul class="md-nav__list">
|
|
6159
6371
|
|
|
6160
6372
|
<li class="md-nav__item">
|
|
6161
|
-
<a href="#
|
|
6373
|
+
<a href="#added_12" class="md-nav__link">
|
|
6162
6374
|
Added
|
|
6163
6375
|
</a>
|
|
6164
6376
|
|
|
@@ -6172,7 +6384,7 @@
|
|
|
6172
6384
|
</li>
|
|
6173
6385
|
|
|
6174
6386
|
<li class="md-nav__item">
|
|
6175
|
-
<a href="#
|
|
6387
|
+
<a href="#housekeeping_10" class="md-nav__link">
|
|
6176
6388
|
Housekeeping
|
|
6177
6389
|
</a>
|
|
6178
6390
|
|
|
@@ -6199,28 +6411,28 @@
|
|
|
6199
6411
|
<ul class="md-nav__list">
|
|
6200
6412
|
|
|
6201
6413
|
<li class="md-nav__item">
|
|
6202
|
-
<a href="#
|
|
6414
|
+
<a href="#added_13" class="md-nav__link">
|
|
6203
6415
|
Added
|
|
6204
6416
|
</a>
|
|
6205
6417
|
|
|
6206
6418
|
</li>
|
|
6207
6419
|
|
|
6208
6420
|
<li class="md-nav__item">
|
|
6209
|
-
<a href="#
|
|
6421
|
+
<a href="#fixed_20" class="md-nav__link">
|
|
6210
6422
|
Fixed
|
|
6211
6423
|
</a>
|
|
6212
6424
|
|
|
6213
6425
|
</li>
|
|
6214
6426
|
|
|
6215
6427
|
<li class="md-nav__item">
|
|
6216
|
-
<a href="#
|
|
6428
|
+
<a href="#housekeeping_11" class="md-nav__link">
|
|
6217
6429
|
Housekeeping
|
|
6218
6430
|
</a>
|
|
6219
6431
|
|
|
6220
6432
|
</li>
|
|
6221
6433
|
|
|
6222
6434
|
<li class="md-nav__item">
|
|
6223
|
-
<a href="#
|
|
6435
|
+
<a href="#security_21" class="md-nav__link">
|
|
6224
6436
|
Security
|
|
6225
6437
|
</a>
|
|
6226
6438
|
|
|
@@ -6240,7 +6452,7 @@
|
|
|
6240
6452
|
<ul class="md-nav__list">
|
|
6241
6453
|
|
|
6242
6454
|
<li class="md-nav__item">
|
|
6243
|
-
<a href="#
|
|
6455
|
+
<a href="#added_14" class="md-nav__link">
|
|
6244
6456
|
Added
|
|
6245
6457
|
</a>
|
|
6246
6458
|
|
|
@@ -6254,14 +6466,14 @@
|
|
|
6254
6466
|
</li>
|
|
6255
6467
|
|
|
6256
6468
|
<li class="md-nav__item">
|
|
6257
|
-
<a href="#
|
|
6469
|
+
<a href="#fixed_21" class="md-nav__link">
|
|
6258
6470
|
Fixed
|
|
6259
6471
|
</a>
|
|
6260
6472
|
|
|
6261
6473
|
</li>
|
|
6262
6474
|
|
|
6263
6475
|
<li class="md-nav__item">
|
|
6264
|
-
<a href="#
|
|
6476
|
+
<a href="#housekeeping_12" class="md-nav__link">
|
|
6265
6477
|
Housekeeping
|
|
6266
6478
|
</a>
|
|
6267
6479
|
|
|
@@ -6288,7 +6500,7 @@
|
|
|
6288
6500
|
</li>
|
|
6289
6501
|
|
|
6290
6502
|
<li class="md-nav__item">
|
|
6291
|
-
<a href="#
|
|
6503
|
+
<a href="#fixed_22" class="md-nav__link">
|
|
6292
6504
|
Fixed
|
|
6293
6505
|
</a>
|
|
6294
6506
|
|
|
@@ -6308,7 +6520,7 @@
|
|
|
6308
6520
|
<ul class="md-nav__list">
|
|
6309
6521
|
|
|
6310
6522
|
<li class="md-nav__item">
|
|
6311
|
-
<a href="#
|
|
6523
|
+
<a href="#added_15" class="md-nav__link">
|
|
6312
6524
|
Added
|
|
6313
6525
|
</a>
|
|
6314
6526
|
|
|
@@ -6322,7 +6534,7 @@
|
|
|
6322
6534
|
</li>
|
|
6323
6535
|
|
|
6324
6536
|
<li class="md-nav__item">
|
|
6325
|
-
<a href="#
|
|
6537
|
+
<a href="#fixed_23" class="md-nav__link">
|
|
6326
6538
|
Fixed
|
|
6327
6539
|
</a>
|
|
6328
6540
|
|
|
@@ -6342,7 +6554,7 @@
|
|
|
6342
6554
|
<ul class="md-nav__list">
|
|
6343
6555
|
|
|
6344
6556
|
<li class="md-nav__item">
|
|
6345
|
-
<a href="#
|
|
6557
|
+
<a href="#added_16" class="md-nav__link">
|
|
6346
6558
|
Added
|
|
6347
6559
|
</a>
|
|
6348
6560
|
|
|
@@ -6363,7 +6575,7 @@
|
|
|
6363
6575
|
</li>
|
|
6364
6576
|
|
|
6365
6577
|
<li class="md-nav__item">
|
|
6366
|
-
<a href="#
|
|
6578
|
+
<a href="#fixed_24" class="md-nav__link">
|
|
6367
6579
|
Fixed
|
|
6368
6580
|
</a>
|
|
6369
6581
|
|
|
@@ -6442,56 +6654,93 @@
|
|
|
6442
6654
|
<h4 id="removed-python-37-support-3561">Removed Python 3.7 Support (<a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a>)<a class="headerlink" href="#removed-python-37-support-3561" title="Permanent link">¶</a></h4>
|
|
6443
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>
|
|
6444
6656
|
<!-- towncrier release notes start -->
|
|
6445
|
-
|
|
6657
|
+
|
|
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>
|
|
6446
6659
|
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
6447
6660
|
<ul>
|
|
6448
|
-
<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>
|
|
6668
|
+
</ul>
|
|
6669
|
+
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
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>
|
|
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>
|
|
6449
6688
|
</ul>
|
|
6450
6689
|
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
6451
6690
|
<ul>
|
|
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>
|
|
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>
|
|
6693
|
+
</ul>
|
|
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>
|
|
6695
|
+
<h3 id="security_2">Security<a class="headerlink" href="#security_2" title="Permanent link">¶</a></h3>
|
|
6696
|
+
<ul>
|
|
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>
|
|
6698
|
+
</ul>
|
|
6699
|
+
<h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">¶</a></h3>
|
|
6700
|
+
<ul>
|
|
6452
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>
|
|
6453
6702
|
</ul>
|
|
6454
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>
|
|
6455
|
-
<h3 id="
|
|
6704
|
+
<h3 id="security_3">Security<a class="headerlink" href="#security_3" title="Permanent link">¶</a></h3>
|
|
6456
6705
|
<ul>
|
|
6457
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>
|
|
6458
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>
|
|
6459
6708
|
</ul>
|
|
6460
|
-
<h3 id="
|
|
6709
|
+
<h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">¶</a></h3>
|
|
6461
6710
|
<ul>
|
|
6462
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>
|
|
6463
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>
|
|
6464
6713
|
<li><a href="https://github.com/nautobot/nautobot/issues/6502">#6502</a> - Fixed Docker builds failing in Gitlab CI.</li>
|
|
6465
6714
|
</ul>
|
|
6466
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>
|
|
6467
|
-
<h3 id="
|
|
6716
|
+
<h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">¶</a></h3>
|
|
6468
6717
|
<ul>
|
|
6469
6718
|
<li><a href="https://github.com/nautobot/nautobot/issues/6152">#6152</a> - Fixed table column ordering.</li>
|
|
6470
6719
|
<li><a href="https://github.com/nautobot/nautobot/issues/6237">#6237</a> - Corrected presentation of rendered Markdown content in Notes table.</li>
|
|
6471
6720
|
<li><a href="https://github.com/nautobot/nautobot/issues/6262">#6262</a> - Fixed invalid installation of <code>xmlsec</code> library in the Nautobot Docker images.</li>
|
|
6472
6721
|
</ul>
|
|
6473
|
-
<h3 id="
|
|
6722
|
+
<h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">¶</a></h3>
|
|
6474
6723
|
<ul>
|
|
6475
6724
|
<li><a href="https://github.com/nautobot/nautobot/issues/5637">#5637</a> - Removed "version" from development <code>docker-compose.yml</code> files as newer versions of Docker complain about it being obsolete.</li>
|
|
6476
6725
|
<li><a href="https://github.com/nautobot/nautobot/issues/5637">#5637</a> - Fixed behavior of <code>invoke stop</code> so that it also stops the optional <code>mkdocs</code> container if present.</li>
|
|
6477
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>
|
|
6478
6727
|
</ul>
|
|
6479
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>
|
|
6480
|
-
<h3 id="
|
|
6729
|
+
<h3 id="security_4">Security<a class="headerlink" href="#security_4" title="Permanent link">¶</a></h3>
|
|
6481
6730
|
<ul>
|
|
6482
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>
|
|
6483
6732
|
</ul>
|
|
6484
|
-
<h3 id="
|
|
6733
|
+
<h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">¶</a></h3>
|
|
6485
6734
|
<ul>
|
|
6486
|
-
<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>
|
|
6487
6736
|
</ul>
|
|
6488
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>
|
|
6489
|
-
<h3 id="
|
|
6738
|
+
<h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">¶</a></h3>
|
|
6490
6739
|
<ul>
|
|
6491
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>
|
|
6492
6741
|
</ul>
|
|
6493
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>
|
|
6494
|
-
<h3 id="
|
|
6743
|
+
<h3 id="security_5">Security<a class="headerlink" href="#security_5" title="Permanent link">¶</a></h3>
|
|
6495
6744
|
<ul>
|
|
6496
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>
|
|
6497
6746
|
</ul>
|
|
@@ -6500,40 +6749,40 @@
|
|
|
6500
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>
|
|
6501
6750
|
</ul>
|
|
6502
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>
|
|
6503
|
-
<h3 id="
|
|
6752
|
+
<h3 id="security_6">Security<a class="headerlink" href="#security_6" title="Permanent link">¶</a></h3>
|
|
6504
6753
|
<ul>
|
|
6505
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>
|
|
6506
6755
|
</ul>
|
|
6507
|
-
<h3 id="
|
|
6756
|
+
<h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">¶</a></h3>
|
|
6508
6757
|
<ul>
|
|
6509
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>
|
|
6510
6759
|
</ul>
|
|
6511
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>
|
|
6512
|
-
<h3 id="
|
|
6761
|
+
<h3 id="security_7">Security<a class="headerlink" href="#security_7" title="Permanent link">¶</a></h3>
|
|
6513
6762
|
<ul>
|
|
6514
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>
|
|
6515
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>
|
|
6516
6765
|
</ul>
|
|
6517
|
-
<h3 id="
|
|
6766
|
+
<h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">¶</a></h3>
|
|
6518
6767
|
<ul>
|
|
6519
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>
|
|
6520
6769
|
</ul>
|
|
6521
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>
|
|
6522
|
-
<h3 id="
|
|
6771
|
+
<h3 id="security_8">Security<a class="headerlink" href="#security_8" title="Permanent link">¶</a></h3>
|
|
6523
6772
|
<ul>
|
|
6524
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>
|
|
6525
6774
|
</ul>
|
|
6526
|
-
<h3 id="
|
|
6775
|
+
<h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">¶</a></h3>
|
|
6527
6776
|
<ul>
|
|
6528
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>
|
|
6529
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>
|
|
6530
6779
|
</ul>
|
|
6531
|
-
<h3 id="
|
|
6780
|
+
<h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">¶</a></h3>
|
|
6532
6781
|
<ul>
|
|
6533
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>
|
|
6534
6783
|
</ul>
|
|
6535
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>
|
|
6536
|
-
<h3 id="
|
|
6785
|
+
<h3 id="security_9">Security<a class="headerlink" href="#security_9" title="Permanent link">¶</a></h3>
|
|
6537
6786
|
<ul>
|
|
6538
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>
|
|
6539
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>
|
|
@@ -6541,25 +6790,25 @@
|
|
|
6541
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>
|
|
6542
6791
|
</ul>
|
|
6543
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>
|
|
6544
|
-
<h3 id="
|
|
6793
|
+
<h3 id="security_10">Security<a class="headerlink" href="#security_10" title="Permanent link">¶</a></h3>
|
|
6545
6794
|
<ul>
|
|
6546
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>
|
|
6547
6796
|
</ul>
|
|
6548
|
-
<h3 id="
|
|
6797
|
+
<h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">¶</a></h3>
|
|
6549
6798
|
<ul>
|
|
6550
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>
|
|
6551
6800
|
</ul>
|
|
6552
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>
|
|
6553
|
-
<h3 id="
|
|
6802
|
+
<h3 id="security_11">Security<a class="headerlink" href="#security_11" title="Permanent link">¶</a></h3>
|
|
6554
6803
|
<ul>
|
|
6555
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>
|
|
6556
6805
|
</ul>
|
|
6557
|
-
<h3 id="
|
|
6806
|
+
<h3 id="fixed_8">Fixed<a class="headerlink" href="#fixed_8" title="Permanent link">¶</a></h3>
|
|
6558
6807
|
<ul>
|
|
6559
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>
|
|
6560
6809
|
</ul>
|
|
6561
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>
|
|
6562
|
-
<h3 id="
|
|
6811
|
+
<h3 id="security_12">Security<a class="headerlink" href="#security_12" title="Permanent link">¶</a></h3>
|
|
6563
6812
|
<ul>
|
|
6564
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>
|
|
6565
6814
|
</ul>
|
|
@@ -6574,7 +6823,7 @@
|
|
|
6574
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>
|
|
6575
6824
|
</ul>
|
|
6576
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>
|
|
6577
|
-
<h3 id="
|
|
6826
|
+
<h3 id="security_13">Security<a class="headerlink" href="#security_13" title="Permanent link">¶</a></h3>
|
|
6578
6827
|
<ul>
|
|
6579
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>
|
|
6580
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>
|
|
@@ -6586,7 +6835,7 @@
|
|
|
6586
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>
|
|
6587
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>
|
|
6588
6837
|
</ul>
|
|
6589
|
-
<h3 id="
|
|
6838
|
+
<h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">¶</a></h3>
|
|
6590
6839
|
<ul>
|
|
6591
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>
|
|
6592
6841
|
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added <code>nautobot.apps.views.GenericView</code> base class.</li>
|
|
@@ -6597,61 +6846,61 @@
|
|
|
6597
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>
|
|
6598
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>
|
|
6599
6848
|
</ul>
|
|
6600
|
-
<h3 id="
|
|
6849
|
+
<h3 id="fixed_9">Fixed<a class="headerlink" href="#fixed_9" title="Permanent link">¶</a></h3>
|
|
6601
6850
|
<ul>
|
|
6602
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>
|
|
6603
6852
|
</ul>
|
|
6604
|
-
<h3 id="
|
|
6853
|
+
<h3 id="documentation_1">Documentation<a class="headerlink" href="#documentation_1" title="Permanent link">¶</a></h3>
|
|
6605
6854
|
<ul>
|
|
6606
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>
|
|
6607
6856
|
</ul>
|
|
6608
|
-
<h3 id="
|
|
6857
|
+
<h3 id="housekeeping_5">Housekeeping<a class="headerlink" href="#housekeeping_5" title="Permanent link">¶</a></h3>
|
|
6609
6858
|
<ul>
|
|
6610
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>
|
|
6611
6860
|
</ul>
|
|
6612
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>
|
|
6613
|
-
<h3 id="
|
|
6862
|
+
<h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">¶</a></h3>
|
|
6614
6863
|
<ul>
|
|
6615
6864
|
<li><a href="https://github.com/nautobot/nautobot/issues/1102">#1102</a> - Added <code>CELERY_BEAT_HEARTBEAT_FILE</code> settings variable.</li>
|
|
6616
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>
|
|
6617
6866
|
</ul>
|
|
6618
|
-
<h3 id="
|
|
6867
|
+
<h3 id="fixed_10">Fixed<a class="headerlink" href="#fixed_10" title="Permanent link">¶</a></h3>
|
|
6619
6868
|
<ul>
|
|
6620
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>
|
|
6621
6870
|
<li><a href="https://github.com/nautobot/nautobot/issues/5354">#5354</a> - Fixed Configuration Context not applied based on nested Tenant Groups.</li>
|
|
6622
6871
|
</ul>
|
|
6623
|
-
<h3 id="
|
|
6872
|
+
<h3 id="housekeeping_6">Housekeeping<a class="headerlink" href="#housekeeping_6" title="Permanent link">¶</a></h3>
|
|
6624
6873
|
<ul>
|
|
6625
6874
|
<li><a href="https://github.com/nautobot/nautobot/issues/1102">#1102</a> - Added health check for Celery Beat based on it touching a file (by default <code>/tmp/nautobot_celery_beat_heartbeat</code>) each time its scheduler wakes up.</li>
|
|
6626
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>
|
|
6627
6876
|
</ul>
|
|
6628
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>
|
|
6629
|
-
<h3 id="
|
|
6878
|
+
<h3 id="fixed_11">Fixed<a class="headerlink" href="#fixed_11" title="Permanent link">¶</a></h3>
|
|
6630
6879
|
<ul>
|
|
6631
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>
|
|
6632
6881
|
</ul>
|
|
6633
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>
|
|
6634
|
-
<h3 id="
|
|
6883
|
+
<h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">¶</a></h3>
|
|
6635
6884
|
<ul>
|
|
6636
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>
|
|
6637
6886
|
</ul>
|
|
6638
|
-
<h3 id="
|
|
6887
|
+
<h3 id="fixed_12">Fixed<a class="headerlink" href="#fixed_12" title="Permanent link">¶</a></h3>
|
|
6639
6888
|
<ul>
|
|
6640
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>
|
|
6641
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>
|
|
6642
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>
|
|
6643
6892
|
</ul>
|
|
6644
|
-
<h3 id="
|
|
6893
|
+
<h3 id="documentation_2">Documentation<a class="headerlink" href="#documentation_2" title="Permanent link">¶</a></h3>
|
|
6645
6894
|
<ul>
|
|
6646
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>
|
|
6647
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>
|
|
6648
6897
|
</ul>
|
|
6649
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>
|
|
6650
|
-
<h3 id="
|
|
6899
|
+
<h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">¶</a></h3>
|
|
6651
6900
|
<ul>
|
|
6652
6901
|
<li><a href="https://github.com/nautobot/nautobot/issues/5104">#5104</a> - Added User Token as permission constraints.</li>
|
|
6653
6902
|
</ul>
|
|
6654
|
-
<h3 id="
|
|
6903
|
+
<h3 id="security_14">Security<a class="headerlink" href="#security_14" title="Permanent link">¶</a></h3>
|
|
6655
6904
|
<ul>
|
|
6656
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>
|
|
6657
6906
|
</ul>
|
|
@@ -6660,32 +6909,32 @@
|
|
|
6660
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>
|
|
6661
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>
|
|
6662
6911
|
</ul>
|
|
6663
|
-
<h3 id="
|
|
6912
|
+
<h3 id="fixed_13">Fixed<a class="headerlink" href="#fixed_13" title="Permanent link">¶</a></h3>
|
|
6664
6913
|
<ul>
|
|
6665
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>
|
|
6666
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>
|
|
6667
6916
|
</ul>
|
|
6668
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>
|
|
6669
|
-
<h3 id="
|
|
6918
|
+
<h3 id="security_15">Security<a class="headerlink" href="#security_15" title="Permanent link">¶</a></h3>
|
|
6670
6919
|
<ul>
|
|
6671
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>
|
|
6672
6921
|
</ul>
|
|
6673
|
-
<h3 id="
|
|
6922
|
+
<h3 id="added_7">Added<a class="headerlink" href="#added_7" title="Permanent link">¶</a></h3>
|
|
6674
6923
|
<ul>
|
|
6675
6924
|
<li><a href="https://github.com/nautobot/nautobot/issues/5169">#5169</a> - Added support for user session profiling via django-silk.</li>
|
|
6676
6925
|
</ul>
|
|
6677
|
-
<h3 id="
|
|
6926
|
+
<h3 id="fixed_14">Fixed<a class="headerlink" href="#fixed_14" title="Permanent link">¶</a></h3>
|
|
6678
6927
|
<ul>
|
|
6679
6928
|
<li><a href="https://github.com/nautobot/nautobot/issues/3664">#3664</a> - Fixed AssertionError when querying Date type custom fields in GraphQL.</li>
|
|
6680
6929
|
<li><a href="https://github.com/nautobot/nautobot/issues/5162">#5162</a> - Fixed incorrect rack group variable in device template.</li>
|
|
6681
6930
|
</ul>
|
|
6682
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>
|
|
6683
|
-
<h3 id="
|
|
6932
|
+
<h3 id="security_16">Security<a class="headerlink" href="#security_16" title="Permanent link">¶</a></h3>
|
|
6684
6933
|
<ul>
|
|
6685
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>
|
|
6686
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>
|
|
6687
6936
|
</ul>
|
|
6688
|
-
<h3 id="
|
|
6937
|
+
<h3 id="added_8">Added<a class="headerlink" href="#added_8" title="Permanent link">¶</a></h3>
|
|
6689
6938
|
<ul>
|
|
6690
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>
|
|
6691
6940
|
</ul>
|
|
@@ -6700,19 +6949,19 @@
|
|
|
6700
6949
|
<li><a href="https://github.com/nautobot/nautobot/issues/5134">#5134</a> - Added <code>nh3</code> HTML sanitization library as a dependency.</li>
|
|
6701
6950
|
</ul>
|
|
6702
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>
|
|
6703
|
-
<h3 id="
|
|
6952
|
+
<h3 id="fixed_15">Fixed<a class="headerlink" href="#fixed_15" title="Permanent link">¶</a></h3>
|
|
6704
6953
|
<ul>
|
|
6705
6954
|
<li><a href="https://github.com/nautobot/nautobot/issues/5042">#5042</a> - Fixed early return conditional in <code>ensure_git_repository</code>.</li>
|
|
6706
6955
|
</ul>
|
|
6707
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>
|
|
6708
|
-
<h3 id="
|
|
6957
|
+
<h3 id="security_17">Security<a class="headerlink" href="#security_17" title="Permanent link">¶</a></h3>
|
|
6709
6958
|
<ul>
|
|
6710
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>
|
|
6711
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>
|
|
6712
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>
|
|
6713
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>
|
|
6714
6963
|
</ul>
|
|
6715
|
-
<h3 id="
|
|
6964
|
+
<h3 id="added_9">Added<a class="headerlink" href="#added_9" title="Permanent link">¶</a></h3>
|
|
6716
6965
|
<ul>
|
|
6717
6966
|
<li><a href="https://github.com/nautobot/nautobot/issues/4965">#4965</a> - Added MMF OM5 cable type to cable type choices.</li>
|
|
6718
6967
|
</ul>
|
|
@@ -6720,20 +6969,20 @@
|
|
|
6720
6969
|
<ul>
|
|
6721
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>
|
|
6722
6971
|
</ul>
|
|
6723
|
-
<h3 id="
|
|
6972
|
+
<h3 id="fixed_16">Fixed<a class="headerlink" href="#fixed_16" title="Permanent link">¶</a></h3>
|
|
6724
6973
|
<ul>
|
|
6725
6974
|
<li><a href="https://github.com/nautobot/nautobot/issues/4977">#4977</a> - Fixed early return conditional in <code>ensure_git_repository</code>.</li>
|
|
6726
6975
|
</ul>
|
|
6727
|
-
<h3 id="
|
|
6976
|
+
<h3 id="housekeeping_7">Housekeeping<a class="headerlink" href="#housekeeping_7" title="Permanent link">¶</a></h3>
|
|
6728
6977
|
<ul>
|
|
6729
6978
|
<li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Fixed some bugs in <code>example_plugin.jobs.ExampleComplexJobButtonReceiver</code>.</li>
|
|
6730
6979
|
</ul>
|
|
6731
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>
|
|
6732
|
-
<h3 id="
|
|
6981
|
+
<h3 id="security_18">Security<a class="headerlink" href="#security_18" title="Permanent link">¶</a></h3>
|
|
6733
6982
|
<ul>
|
|
6734
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>
|
|
6735
6984
|
</ul>
|
|
6736
|
-
<h3 id="
|
|
6985
|
+
<h3 id="added_10">Added<a class="headerlink" href="#added_10" title="Permanent link">¶</a></h3>
|
|
6737
6986
|
<ul>
|
|
6738
6987
|
<li><a href="https://github.com/nautobot/nautobot/issues/4873">#4873</a> - Added QSFP112 interface type to interface type choices.</li>
|
|
6739
6988
|
</ul>
|
|
@@ -6742,14 +6991,14 @@
|
|
|
6742
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>
|
|
6743
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>
|
|
6744
6993
|
</ul>
|
|
6745
|
-
<h3 id="
|
|
6994
|
+
<h3 id="fixed_17">Fixed<a class="headerlink" href="#fixed_17" title="Permanent link">¶</a></h3>
|
|
6746
6995
|
<ul>
|
|
6747
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>
|
|
6748
6997
|
<li><a href="https://github.com/nautobot/nautobot/issues/4917">#4917</a> - Fixed slow performance on location hierarchy html template.</li>
|
|
6749
6998
|
<li><a href="https://github.com/nautobot/nautobot/issues/4921">#4921</a> - Fixed inefficient queries in <code>Location.base_site</code>.</li>
|
|
6750
6999
|
</ul>
|
|
6751
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>
|
|
6752
|
-
<h3 id="
|
|
7001
|
+
<h3 id="security_19">Security<a class="headerlink" href="#security_19" title="Permanent link">¶</a></h3>
|
|
6753
7002
|
<ul>
|
|
6754
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>
|
|
6755
7004
|
</ul>
|
|
@@ -6757,7 +7006,7 @@
|
|
|
6757
7006
|
<ul>
|
|
6758
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>
|
|
6759
7008
|
</ul>
|
|
6760
|
-
<h3 id="
|
|
7009
|
+
<h3 id="fixed_18">Fixed<a class="headerlink" href="#fixed_18" title="Permanent link">¶</a></h3>
|
|
6761
7010
|
<ul>
|
|
6762
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>
|
|
6763
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>
|
|
@@ -6766,13 +7015,13 @@
|
|
|
6766
7015
|
<ul>
|
|
6767
7016
|
<li><a href="https://github.com/nautobot/nautobot/issues/4799">#4799</a> - Updated <code>mkdocs</code> development dependency to <code>1.5.3</code>.</li>
|
|
6768
7017
|
</ul>
|
|
6769
|
-
<h3 id="
|
|
7018
|
+
<h3 id="housekeeping_8">Housekeeping<a class="headerlink" href="#housekeeping_8" title="Permanent link">¶</a></h3>
|
|
6770
7019
|
<ul>
|
|
6771
7020
|
<li><a href="https://github.com/nautobot/nautobot/issues/4799">#4799</a> - Updated docs configuration for <code>examples/example_plugin</code>.</li>
|
|
6772
7021
|
<li><a href="https://github.com/nautobot/nautobot/issues/4833">#4833</a> - Added <code>ruff</code> to invoke tasks and CI.</li>
|
|
6773
7022
|
</ul>
|
|
6774
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>
|
|
6775
|
-
<h3 id="
|
|
7024
|
+
<h3 id="added_11">Added<a class="headerlink" href="#added_11" title="Permanent link">¶</a></h3>
|
|
6776
7025
|
<ul>
|
|
6777
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>
|
|
6778
7027
|
</ul>
|
|
@@ -6780,7 +7029,7 @@
|
|
|
6780
7029
|
<ul>
|
|
6781
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>
|
|
6782
7031
|
</ul>
|
|
6783
|
-
<h3 id="
|
|
7032
|
+
<h3 id="fixed_19">Fixed<a class="headerlink" href="#fixed_19" title="Permanent link">¶</a></h3>
|
|
6784
7033
|
<ul>
|
|
6785
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>
|
|
6786
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>
|
|
@@ -6788,17 +7037,17 @@
|
|
|
6788
7037
|
<li><a href="https://github.com/nautobot/nautobot/issues/4728">#4728</a> - Fixed bug with JobResultFilterSet and ScheduledJobFilterSet using <code>django_filters.DateTimeFilter</code> for only exact date matches.</li>
|
|
6789
7038
|
<li><a href="https://github.com/nautobot/nautobot/issues/4733">#4733</a> - Fixed the bug that prevents retrieval of IPAddress using its address args if it was created using <code>host</code> and <code>prefix_length</code>.</li>
|
|
6790
7039
|
</ul>
|
|
6791
|
-
<h3 id="
|
|
7040
|
+
<h3 id="housekeeping_9">Housekeeping<a class="headerlink" href="#housekeeping_9" title="Permanent link">¶</a></h3>
|
|
6792
7041
|
<ul>
|
|
6793
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>
|
|
6794
7043
|
</ul>
|
|
6795
|
-
<h3 id="
|
|
7044
|
+
<h3 id="security_20">Security<a class="headerlink" href="#security_20" title="Permanent link">¶</a></h3>
|
|
6796
7045
|
<ul>
|
|
6797
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>
|
|
6798
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>
|
|
6799
7048
|
</ul>
|
|
6800
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>
|
|
6801
|
-
<h3 id="
|
|
7050
|
+
<h3 id="added_12">Added<a class="headerlink" href="#added_12" title="Permanent link">¶</a></h3>
|
|
6802
7051
|
<ul>
|
|
6803
7052
|
<li><a href="https://github.com/nautobot/nautobot/issues/4361">#4361</a> - Added <code>SUPPORT_MESSAGE</code> configuration setting.</li>
|
|
6804
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>
|
|
@@ -6807,7 +7056,7 @@
|
|
|
6807
7056
|
<ul>
|
|
6808
7057
|
<li><a href="https://github.com/nautobot/nautobot/issues/4313">#4313</a> - Updated device search to include manufacturer name.</li>
|
|
6809
7058
|
</ul>
|
|
6810
|
-
<h3 id="
|
|
7059
|
+
<h3 id="housekeeping_10">Housekeeping<a class="headerlink" href="#housekeeping_10" title="Permanent link">¶</a></h3>
|
|
6811
7060
|
<ul>
|
|
6812
7061
|
<li><a href="https://github.com/nautobot/nautobot/issues/4619">#4619</a> - Fixed broken links in Nautobot README.md.</li>
|
|
6813
7062
|
</ul>
|
|
@@ -6816,25 +7065,25 @@
|
|
|
6816
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>
|
|
6817
7066
|
</ul>
|
|
6818
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>
|
|
6819
|
-
<h3 id="
|
|
7068
|
+
<h3 id="added_13">Added<a class="headerlink" href="#added_13" title="Permanent link">¶</a></h3>
|
|
6820
7069
|
<ul>
|
|
6821
7070
|
<li><a href="https://github.com/nautobot/nautobot/issues/3372">#3372</a> - Added ObjectPermission constraints check to pre_migrate management command.</li>
|
|
6822
7071
|
</ul>
|
|
6823
|
-
<h3 id="
|
|
7072
|
+
<h3 id="fixed_20">Fixed<a class="headerlink" href="#fixed_20" title="Permanent link">¶</a></h3>
|
|
6824
7073
|
<ul>
|
|
6825
7074
|
<li><a href="https://github.com/nautobot/nautobot/issues/4396">#4396</a> - Fixed rack form silently dropping custom field values.</li>
|
|
6826
7075
|
</ul>
|
|
6827
|
-
<h3 id="
|
|
7076
|
+
<h3 id="housekeeping_11">Housekeeping<a class="headerlink" href="#housekeeping_11" title="Permanent link">¶</a></h3>
|
|
6828
7077
|
<ul>
|
|
6829
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>
|
|
6830
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>
|
|
6831
7080
|
</ul>
|
|
6832
|
-
<h3 id="
|
|
7081
|
+
<h3 id="security_21">Security<a class="headerlink" href="#security_21" title="Permanent link">¶</a></h3>
|
|
6833
7082
|
<ul>
|
|
6834
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>
|
|
6835
7084
|
</ul>
|
|
6836
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>
|
|
6837
|
-
<h3 id="
|
|
7086
|
+
<h3 id="added_14">Added<a class="headerlink" href="#added_14" title="Permanent link">¶</a></h3>
|
|
6838
7087
|
<ul>
|
|
6839
7088
|
<li><a href="https://github.com/nautobot/nautobot/issues/3289">#3289</a> - Added documentation on factory data caching.</li>
|
|
6840
7089
|
<li><a href="https://github.com/nautobot/nautobot/issues/3913">#3913</a> - Added <code>url</code> field to GraphQL objects.</li>
|
|
@@ -6849,13 +7098,13 @@
|
|
|
6849
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>
|
|
6850
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>
|
|
6851
7100
|
</ul>
|
|
6852
|
-
<h3 id="
|
|
7101
|
+
<h3 id="fixed_21">Fixed<a class="headerlink" href="#fixed_21" title="Permanent link">¶</a></h3>
|
|
6853
7102
|
<ul>
|
|
6854
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>
|
|
6855
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>
|
|
6856
7105
|
<li><a href="https://github.com/nautobot/nautobot/issues/4262">#4262</a> - Fixed warning message when trying to use bulk edit with no items selected.</li>
|
|
6857
7106
|
</ul>
|
|
6858
|
-
<h3 id="
|
|
7107
|
+
<h3 id="housekeeping_12">Housekeeping<a class="headerlink" href="#housekeeping_12" title="Permanent link">¶</a></h3>
|
|
6859
7108
|
<ul>
|
|
6860
7109
|
<li><a href="https://github.com/nautobot/nautobot/issues/4331">#4331</a> - Added a "housekeeping" subsection to the release-notes via <code>towncrier</code>.</li>
|
|
6861
7110
|
</ul>
|
|
@@ -6865,7 +7114,7 @@
|
|
|
6865
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>
|
|
6866
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>
|
|
6867
7116
|
</ul>
|
|
6868
|
-
<h3 id="
|
|
7117
|
+
<h3 id="fixed_22">Fixed<a class="headerlink" href="#fixed_22" title="Permanent link">¶</a></h3>
|
|
6869
7118
|
<ul>
|
|
6870
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>
|
|
6871
7120
|
<li><a href="https://github.com/nautobot/nautobot/issues/4028">#4028</a> - Fixed CI integration workflow <code>set-output</code> warnings.</li>
|
|
@@ -6877,7 +7126,7 @@
|
|
|
6877
7126
|
<li><a href="https://github.com/nautobot/nautobot/issues/4258">#4258</a> - Re-enabled copy-to-clipboard button in mkdocs theme.</li>
|
|
6878
7127
|
</ul>
|
|
6879
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>
|
|
6880
|
-
<h3 id="
|
|
7129
|
+
<h3 id="added_15">Added<a class="headerlink" href="#added_15" title="Permanent link">¶</a></h3>
|
|
6881
7130
|
<ul>
|
|
6882
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>
|
|
6883
7132
|
<li><a href="https://github.com/nautobot/nautobot/issues/4184">#4184</a> - Added documentation detailing rack power utilization calculation.</li>
|
|
@@ -6890,7 +7139,7 @@
|
|
|
6890
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>
|
|
6891
7140
|
<li><a href="https://github.com/nautobot/nautobot/issues/4215">#4215</a> - Broadened the range of acceptable <code>packaging</code> dependency versions.</li>
|
|
6892
7141
|
</ul>
|
|
6893
|
-
<h3 id="
|
|
7142
|
+
<h3 id="fixed_23">Fixed<a class="headerlink" href="#fixed_23" title="Permanent link">¶</a></h3>
|
|
6894
7143
|
<ul>
|
|
6895
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>
|
|
6896
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>
|
|
@@ -6900,7 +7149,7 @@
|
|
|
6900
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>
|
|
6901
7150
|
</ul>
|
|
6902
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>
|
|
6903
|
-
<h3 id="
|
|
7152
|
+
<h3 id="added_16">Added<a class="headerlink" href="#added_16" title="Permanent link">¶</a></h3>
|
|
6904
7153
|
<ul>
|
|
6905
7154
|
<li><a href="https://github.com/nautobot/nautobot/issues/2825">#2825</a> - Added InterfaceRedundancyGroup and related views, forms, filtersets and table.</li>
|
|
6906
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>
|
|
@@ -6956,7 +7205,7 @@
|
|
|
6956
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>
|
|
6957
7206
|
<li><a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a> - Updated various development-only dependencies to the latest available versions.</li>
|
|
6958
7207
|
</ul>
|
|
6959
|
-
<h3 id="
|
|
7208
|
+
<h3 id="fixed_24">Fixed<a class="headerlink" href="#fixed_24" title="Permanent link">¶</a></h3>
|
|
6960
7209
|
<ul>
|
|
6961
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>
|
|
6962
7211
|
</ul>
|