nautobot 2.4.8__py3-none-any.whl → 2.4.9__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/templates/circuits/circuittype.html +1 -1
- nautobot/circuits/templates/circuits/circuittype_retrieve.html +1 -39
- nautobot/circuits/views.py +18 -23
- nautobot/cloud/templates/cloud/cloudresourcetype_retrieve.html +4 -111
- nautobot/cloud/views.py +56 -25
- nautobot/core/celery/schedulers.py +1 -0
- nautobot/core/filters.py +1 -1
- nautobot/core/graphql/schema.py +1 -0
- nautobot/core/jobs/__init__.py +14 -3
- nautobot/core/tables.py +13 -6
- nautobot/core/testing/views.py +27 -2
- nautobot/core/tests/test_jobs.py +113 -0
- nautobot/core/tests/test_ui.py +53 -1
- nautobot/core/tests/test_utils.py +11 -0
- nautobot/core/ui/object_detail.py +19 -12
- nautobot/core/utils/filtering.py +3 -0
- nautobot/core/views/renderers.py +1 -1
- nautobot/dcim/forms.py +10 -0
- nautobot/dcim/templates/dcim/devicefamily_retrieve.html +1 -43
- nautobot/dcim/templates/dcim/deviceredundancygroup_retrieve.html +1 -59
- nautobot/dcim/templates/dcim/devicetype.html +2 -217
- nautobot/dcim/templates/dcim/devicetype_edit.html +2 -32
- nautobot/dcim/templates/dcim/devicetype_retrieve.html +217 -0
- nautobot/dcim/templates/dcim/devicetype_update.html +32 -0
- nautobot/dcim/templates/dcim/inc/rack_elevation.html +1 -1
- nautobot/dcim/templates/dcim/modulebay_retrieve.html +1 -84
- nautobot/dcim/templates/dcim/rack_elevation.html +14 -0
- nautobot/dcim/templates/dcim/rackreservation_retrieve.html +0 -68
- nautobot/dcim/tests/integration/test_fileinputpicker.py +1 -1
- nautobot/dcim/urls.py +1 -36
- nautobot/dcim/views.py +133 -81
- nautobot/extras/api/views.py +4 -6
- nautobot/extras/migrations/0024_job_data_migration.py +1 -1
- nautobot/extras/models/jobs.py +78 -62
- nautobot/extras/tables.py +11 -1
- nautobot/extras/templates/extras/computedfield_retrieve.html +1 -55
- nautobot/extras/templates/extras/inc/job_tiles.html +1 -1
- nautobot/extras/templates/extras/jobresult.html +1 -1
- nautobot/extras/templates/extras/metadatatype_retrieve.html +1 -66
- nautobot/extras/templates/extras/scheduledjob.html +25 -9
- nautobot/extras/tests/test_api.py +1 -1
- nautobot/extras/tests/test_views.py +15 -2
- nautobot/extras/utils.py +18 -16
- nautobot/extras/views.py +65 -26
- nautobot/ipam/tables.py +3 -4
- nautobot/project-static/docs/404.html +4 -4
- nautobot/project-static/docs/apps/index.html +4 -4
- nautobot/project-static/docs/apps/nautobot-apps.html +4 -4
- nautobot/project-static/docs/assets/javascripts/{bundle.c8b220af.min.js → bundle.13a4f30d.min.js} +4 -4
- nautobot/project-static/docs/assets/javascripts/{bundle.c8b220af.min.js.map → bundle.13a4f30d.min.js.map} +2 -2
- nautobot/project-static/docs/assets/javascripts/workers/{search.f8cc74c7.min.js → search.d50fe291.min.js} +2 -2
- nautobot/project-static/docs/assets/javascripts/workers/{search.f8cc74c7.min.js.map → search.d50fe291.min.js.map} +1 -1
- nautobot/project-static/docs/assets/stylesheets/{main.2afb09e1.min.css → main.342714a4.min.css} +1 -1
- nautobot/project-static/docs/assets/stylesheets/{main.2afb09e1.min.css.map → main.342714a4.min.css.map} +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +4 -4
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +4 -4
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +4 -4
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +4 -4
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +4 -4
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +4 -4
- nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +4 -4
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +4 -4
- nautobot/project-static/docs/code-reference/nautobot/apps/events.html +4 -4
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +4 -4
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +4 -4
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +4 -4
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +4 -4
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +4 -4
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +4 -4
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +4 -4
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +4 -4
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +4 -4
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +4 -4
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +4 -4
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +6 -8
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +4 -4
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +36 -6
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +4 -4
- nautobot/project-static/docs/development/apps/api/configuration-view.html +4 -4
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +4 -4
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +4 -4
- nautobot/project-static/docs/development/apps/api/models/global-search.html +4 -4
- nautobot/project-static/docs/development/apps/api/models/graphql.html +4 -4
- nautobot/project-static/docs/development/apps/api/models/index.html +4 -4
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +4 -4
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +4 -4
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +4 -4
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +4 -4
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +4 -4
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +4 -4
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +4 -4
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +4 -4
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +4 -4
- nautobot/project-static/docs/development/apps/api/platform-features/table-extensions.html +4 -4
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +4 -4
- nautobot/project-static/docs/development/apps/api/prometheus.html +4 -4
- nautobot/project-static/docs/development/apps/api/setup.html +4 -4
- nautobot/project-static/docs/development/apps/api/testing.html +4 -4
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +4 -4
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +4 -4
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +4 -4
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +4 -4
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +4 -4
- nautobot/project-static/docs/development/apps/api/views/base-template.html +4 -4
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +4 -4
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +4 -4
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +4 -4
- nautobot/project-static/docs/development/apps/api/views/index.html +4 -4
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +4 -4
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +4 -4
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +4 -4
- nautobot/project-static/docs/development/apps/api/views/notes.html +4 -4
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +4 -4
- nautobot/project-static/docs/development/apps/api/views/urls.html +4 -4
- nautobot/project-static/docs/development/apps/index.html +4 -4
- nautobot/project-static/docs/development/apps/migration/code-updates.html +4 -4
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +4 -4
- nautobot/project-static/docs/development/apps/migration/from-v1.html +4 -4
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +4 -4
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +4 -4
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +4 -4
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +4 -4
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/best-practices.html +4 -4
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/custom-content.html +4 -4
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/index.html +4 -4
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/migration-steps.html +4 -4
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +4 -4
- nautobot/project-static/docs/development/core/application-registry.html +4 -4
- nautobot/project-static/docs/development/core/best-practices.html +4 -4
- nautobot/project-static/docs/development/core/bootstrap-ui.html +4 -4
- nautobot/project-static/docs/development/core/caching.html +4 -4
- nautobot/project-static/docs/development/core/controllers.html +4 -4
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +41 -55
- nautobot/project-static/docs/development/core/generic-views.html +4 -4
- nautobot/project-static/docs/development/core/getting-started.html +4 -4
- nautobot/project-static/docs/development/core/homepage.html +4 -4
- nautobot/project-static/docs/development/core/index.html +4 -4
- nautobot/project-static/docs/development/core/minikube-dev-environment-for-k8s-jobs.html +4 -4
- nautobot/project-static/docs/development/core/model-checklist.html +4 -4
- nautobot/project-static/docs/development/core/model-features.html +4 -4
- nautobot/project-static/docs/development/core/natural-keys.html +4 -4
- nautobot/project-static/docs/development/core/navigation-menu.html +4 -4
- nautobot/project-static/docs/development/core/release-checklist.html +4 -4
- nautobot/project-static/docs/development/core/role-internals.html +4 -4
- nautobot/project-static/docs/development/core/settings.html +4 -4
- nautobot/project-static/docs/development/core/style-guide.html +4 -4
- nautobot/project-static/docs/development/core/templates.html +4 -4
- nautobot/project-static/docs/development/core/testing.html +4 -4
- nautobot/project-static/docs/development/core/ui-component-framework.html +4 -4
- nautobot/project-static/docs/development/core/user-preferences.html +4 -4
- nautobot/project-static/docs/development/index.html +4 -4
- nautobot/project-static/docs/development/jobs/getting-started.html +4 -4
- nautobot/project-static/docs/development/jobs/index.html +4 -4
- nautobot/project-static/docs/development/jobs/installation.html +4 -4
- nautobot/project-static/docs/development/jobs/job-extensions.html +4 -4
- nautobot/project-static/docs/development/jobs/job-logging.html +4 -4
- nautobot/project-static/docs/development/jobs/job-patterns.html +4 -4
- nautobot/project-static/docs/development/jobs/job-structure.html +4 -4
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +4 -4
- nautobot/project-static/docs/development/jobs/testing.html +4 -4
- nautobot/project-static/docs/index.html +4 -4
- nautobot/project-static/docs/overview/application_stack.html +4 -4
- nautobot/project-static/docs/overview/design_philosophy.html +4 -4
- nautobot/project-static/docs/release-notes/index.html +4 -4
- nautobot/project-static/docs/release-notes/version-1.0.html +4 -4
- nautobot/project-static/docs/release-notes/version-1.1.html +4 -4
- nautobot/project-static/docs/release-notes/version-1.2.html +4 -4
- nautobot/project-static/docs/release-notes/version-1.3.html +4 -4
- nautobot/project-static/docs/release-notes/version-1.4.html +4 -4
- nautobot/project-static/docs/release-notes/version-1.5.html +4 -4
- nautobot/project-static/docs/release-notes/version-1.6.html +4 -4
- nautobot/project-static/docs/release-notes/version-2.0.html +4 -4
- nautobot/project-static/docs/release-notes/version-2.1.html +4 -4
- nautobot/project-static/docs/release-notes/version-2.2.html +4 -4
- nautobot/project-static/docs/release-notes/version-2.3.html +4 -4
- nautobot/project-static/docs/release-notes/version-2.4.html +190 -4
- nautobot/project-static/docs/requirements.txt +1 -1
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +298 -298
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +4 -4
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +4 -4
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +4 -4
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +4 -4
- nautobot/project-static/docs/user-guide/administration/configuration/redis.html +4 -4
- nautobot/project-static/docs/user-guide/administration/configuration/settings.html +4 -4
- nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +4 -4
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +4 -4
- nautobot/project-static/docs/user-guide/administration/guides/docker.html +4 -4
- nautobot/project-static/docs/user-guide/administration/guides/health-checks.html +4 -4
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +4 -4
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +4 -4
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +4 -4
- nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +4 -4
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +4 -4
- nautobot/project-static/docs/user-guide/administration/guides/selinux-troubleshooting.html +4 -4
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +4 -4
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +4 -4
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +4 -4
- nautobot/project-static/docs/user-guide/administration/installation/index.html +4 -4
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +4 -4
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +4 -4
- nautobot/project-static/docs/user-guide/administration/installation/services.html +4 -4
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +4 -4
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +4 -4
- nautobot/project-static/docs/user-guide/administration/security/index.html +4 -4
- nautobot/project-static/docs/user-guide/administration/security/notices.html +4 -4
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +4 -4
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +4 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +4 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +4 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +4 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +4 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +4 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +4 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +4 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +4 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloud.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudaccount.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetwork.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetworkprefixassignment.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudresourcetype.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservice.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservicenetworkassignment.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/module.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebay.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebaytemplate.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/moduletype.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualdevicecontext.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/wireless/index.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/wireless/radioprofile.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/wireless/supporteddatarate.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/wireless/wirelessnetwork.html +4 -4
- nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +4 -4
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +4 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +4 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +4 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +4 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +4 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +4 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +4 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +4 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +4 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +4 -4
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +4 -4
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +4 -4
- nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +4 -4
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +4 -4
- nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +4 -4
- nautobot/project-static/docs/user-guide/feature-guides/wireless-networks-and-controllers.html +4 -4
- nautobot/project-static/docs/user-guide/index.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/events.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobqueue.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/kubernetes-job-support.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/managing-jobs.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/objectmetadata.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/rendering-jinja-templates.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/savedview.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/staticgroupassociation.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +4 -4
- nautobot/project-static/js/forms.js +0 -14
- nautobot/wireless/tables.py +1 -0
- nautobot/wireless/templates/wireless/wirelessnetwork_retrieve.html +1 -55
- nautobot/wireless/views.py +33 -28
- {nautobot-2.4.8.dist-info → nautobot-2.4.9.dist-info}/METADATA +3 -3
- {nautobot-2.4.8.dist-info → nautobot-2.4.9.dist-info}/RECORD +364 -361
- {nautobot-2.4.8.dist-info → nautobot-2.4.9.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.4.8.dist-info → nautobot-2.4.9.dist-info}/NOTICE +0 -0
- {nautobot-2.4.8.dist-info → nautobot-2.4.9.dist-info}/WHEEL +0 -0
- {nautobot-2.4.8.dist-info → nautobot-2.4.9.dist-info}/entry_points.txt +0 -0
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
<link rel="icon" href="../assets/favicon.ico">
|
|
21
|
-
<meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.6.
|
|
21
|
+
<meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.6.14">
|
|
22
22
|
|
|
23
23
|
|
|
24
24
|
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
|
|
29
|
-
<link rel="stylesheet" href="../assets/stylesheets/main.
|
|
29
|
+
<link rel="stylesheet" href="../assets/stylesheets/main.342714a4.min.css">
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
<link rel="stylesheet" href="../assets/stylesheets/palette.06af60db.min.css">
|
|
@@ -9668,6 +9668,75 @@
|
|
|
9668
9668
|
</ul>
|
|
9669
9669
|
</nav>
|
|
9670
9670
|
|
|
9671
|
+
</li>
|
|
9672
|
+
|
|
9673
|
+
<li class="md-nav__item">
|
|
9674
|
+
<a href="#v249-2025-05-27" class="md-nav__link">
|
|
9675
|
+
<span class="md-ellipsis">
|
|
9676
|
+
v2.4.9 (2025-05-27)
|
|
9677
|
+
</span>
|
|
9678
|
+
</a>
|
|
9679
|
+
|
|
9680
|
+
<nav class="md-nav" aria-label="v2.4.9 (2025-05-27)">
|
|
9681
|
+
<ul class="md-nav__list">
|
|
9682
|
+
|
|
9683
|
+
<li class="md-nav__item">
|
|
9684
|
+
<a href="#security-in-v249" class="md-nav__link">
|
|
9685
|
+
<span class="md-ellipsis">
|
|
9686
|
+
Security in v2.4.9
|
|
9687
|
+
</span>
|
|
9688
|
+
</a>
|
|
9689
|
+
|
|
9690
|
+
</li>
|
|
9691
|
+
|
|
9692
|
+
<li class="md-nav__item">
|
|
9693
|
+
<a href="#added-in-v249" class="md-nav__link">
|
|
9694
|
+
<span class="md-ellipsis">
|
|
9695
|
+
Added in v2.4.9
|
|
9696
|
+
</span>
|
|
9697
|
+
</a>
|
|
9698
|
+
|
|
9699
|
+
</li>
|
|
9700
|
+
|
|
9701
|
+
<li class="md-nav__item">
|
|
9702
|
+
<a href="#changed-in-v249" class="md-nav__link">
|
|
9703
|
+
<span class="md-ellipsis">
|
|
9704
|
+
Changed in v2.4.9
|
|
9705
|
+
</span>
|
|
9706
|
+
</a>
|
|
9707
|
+
|
|
9708
|
+
</li>
|
|
9709
|
+
|
|
9710
|
+
<li class="md-nav__item">
|
|
9711
|
+
<a href="#fixed-in-v249" class="md-nav__link">
|
|
9712
|
+
<span class="md-ellipsis">
|
|
9713
|
+
Fixed in v2.4.9
|
|
9714
|
+
</span>
|
|
9715
|
+
</a>
|
|
9716
|
+
|
|
9717
|
+
</li>
|
|
9718
|
+
|
|
9719
|
+
<li class="md-nav__item">
|
|
9720
|
+
<a href="#dependencies-in-v249" class="md-nav__link">
|
|
9721
|
+
<span class="md-ellipsis">
|
|
9722
|
+
Dependencies in v2.4.9
|
|
9723
|
+
</span>
|
|
9724
|
+
</a>
|
|
9725
|
+
|
|
9726
|
+
</li>
|
|
9727
|
+
|
|
9728
|
+
<li class="md-nav__item">
|
|
9729
|
+
<a href="#housekeeping-in-v249" class="md-nav__link">
|
|
9730
|
+
<span class="md-ellipsis">
|
|
9731
|
+
Housekeeping in v2.4.9
|
|
9732
|
+
</span>
|
|
9733
|
+
</a>
|
|
9734
|
+
|
|
9735
|
+
</li>
|
|
9736
|
+
|
|
9737
|
+
</ul>
|
|
9738
|
+
</nav>
|
|
9739
|
+
|
|
9671
9740
|
</li>
|
|
9672
9741
|
|
|
9673
9742
|
<li class="md-nav__item">
|
|
@@ -11219,6 +11288,75 @@
|
|
|
11219
11288
|
</ul>
|
|
11220
11289
|
</nav>
|
|
11221
11290
|
|
|
11291
|
+
</li>
|
|
11292
|
+
|
|
11293
|
+
<li class="md-nav__item">
|
|
11294
|
+
<a href="#v249-2025-05-27" class="md-nav__link">
|
|
11295
|
+
<span class="md-ellipsis">
|
|
11296
|
+
v2.4.9 (2025-05-27)
|
|
11297
|
+
</span>
|
|
11298
|
+
</a>
|
|
11299
|
+
|
|
11300
|
+
<nav class="md-nav" aria-label="v2.4.9 (2025-05-27)">
|
|
11301
|
+
<ul class="md-nav__list">
|
|
11302
|
+
|
|
11303
|
+
<li class="md-nav__item">
|
|
11304
|
+
<a href="#security-in-v249" class="md-nav__link">
|
|
11305
|
+
<span class="md-ellipsis">
|
|
11306
|
+
Security in v2.4.9
|
|
11307
|
+
</span>
|
|
11308
|
+
</a>
|
|
11309
|
+
|
|
11310
|
+
</li>
|
|
11311
|
+
|
|
11312
|
+
<li class="md-nav__item">
|
|
11313
|
+
<a href="#added-in-v249" class="md-nav__link">
|
|
11314
|
+
<span class="md-ellipsis">
|
|
11315
|
+
Added in v2.4.9
|
|
11316
|
+
</span>
|
|
11317
|
+
</a>
|
|
11318
|
+
|
|
11319
|
+
</li>
|
|
11320
|
+
|
|
11321
|
+
<li class="md-nav__item">
|
|
11322
|
+
<a href="#changed-in-v249" class="md-nav__link">
|
|
11323
|
+
<span class="md-ellipsis">
|
|
11324
|
+
Changed in v2.4.9
|
|
11325
|
+
</span>
|
|
11326
|
+
</a>
|
|
11327
|
+
|
|
11328
|
+
</li>
|
|
11329
|
+
|
|
11330
|
+
<li class="md-nav__item">
|
|
11331
|
+
<a href="#fixed-in-v249" class="md-nav__link">
|
|
11332
|
+
<span class="md-ellipsis">
|
|
11333
|
+
Fixed in v2.4.9
|
|
11334
|
+
</span>
|
|
11335
|
+
</a>
|
|
11336
|
+
|
|
11337
|
+
</li>
|
|
11338
|
+
|
|
11339
|
+
<li class="md-nav__item">
|
|
11340
|
+
<a href="#dependencies-in-v249" class="md-nav__link">
|
|
11341
|
+
<span class="md-ellipsis">
|
|
11342
|
+
Dependencies in v2.4.9
|
|
11343
|
+
</span>
|
|
11344
|
+
</a>
|
|
11345
|
+
|
|
11346
|
+
</li>
|
|
11347
|
+
|
|
11348
|
+
<li class="md-nav__item">
|
|
11349
|
+
<a href="#housekeeping-in-v249" class="md-nav__link">
|
|
11350
|
+
<span class="md-ellipsis">
|
|
11351
|
+
Housekeeping in v2.4.9
|
|
11352
|
+
</span>
|
|
11353
|
+
</a>
|
|
11354
|
+
|
|
11355
|
+
</li>
|
|
11356
|
+
|
|
11357
|
+
</ul>
|
|
11358
|
+
</nav>
|
|
11359
|
+
|
|
11222
11360
|
</li>
|
|
11223
11361
|
|
|
11224
11362
|
<li class="md-nav__item">
|
|
@@ -12020,6 +12158,54 @@
|
|
|
12020
12158
|
|
|
12021
12159
|
<!-- towncrier release notes start -->
|
|
12022
12160
|
|
|
12161
|
+
<h2 id="v249-2025-05-27">v2.4.9 (2025-05-27)<a class="headerlink" href="#v249-2025-05-27" title="Permanent link">¶</a></h2>
|
|
12162
|
+
<h3 id="security-in-v249">Security in v2.4.9<a class="headerlink" href="#security-in-v249" title="Permanent link">¶</a></h3>
|
|
12163
|
+
<ul>
|
|
12164
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7317">#7317</a> - Updated <code>setuptools</code> to <code>78.1.1</code> to address <code>CVE-2025-47273</code>. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
12165
|
+
</ul>
|
|
12166
|
+
<h3 id="added-in-v249">Added in v2.4.9<a class="headerlink" href="#added-in-v249" title="Permanent link">¶</a></h3>
|
|
12167
|
+
<ul>
|
|
12168
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7043">#7043</a> - Added support for <code>job_queue</code> parameter to <code>JobResult.execute_job()</code>, <code>JobResult.enqueue_job()</code>, and <code>ScheduledJob.create_schedule()</code>.</li>
|
|
12169
|
+
</ul>
|
|
12170
|
+
<h3 id="changed-in-v249">Changed in v2.4.9<a class="headerlink" href="#changed-in-v249" title="Permanent link">¶</a></h3>
|
|
12171
|
+
<ul>
|
|
12172
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7043">#7043</a> - Changed "Run Job" form to display a warning when submitting a Job against a Celery queue that has no active workers, but allow the job to be submitted, instead of blocking the Job altogether.</li>
|
|
12173
|
+
</ul>
|
|
12174
|
+
<h3 id="fixed-in-v249">Fixed in v2.4.9<a class="headerlink" href="#fixed-in-v249" title="Permanent link">¶</a></h3>
|
|
12175
|
+
<ul>
|
|
12176
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7043">#7043</a> - Fixed regression introduced in 2.4.0 involving inability to specify a non-default job queue when scheduling a Job.</li>
|
|
12177
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7172">#7172</a> - Restored missing <code>rd</code> column in <code>VRFTable</code>.</li>
|
|
12178
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7245">#7245</a> - Fixed <code>ExportObjectList</code> job now initializes <code>filter_params</code> from the selected SavedView's config when <code>?saved_view</code> is present and filters haven't been cleared. If additional query parameters are included, they override matching filters from the saved view.</li>
|
|
12179
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7250">#7250</a> - Fixed MULTISELECT custom field representation in GraphQL to be a JSON array instead of a string.</li>
|
|
12180
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7308">#7308</a> - Fixed incorrect form buttons rendered in create/update views provided by NautobotUIViewSet.</li>
|
|
12181
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7309">#7309</a> - Fixed Content-Type filtering on ObjectMetaData.</li>
|
|
12182
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7311">#7311</a> - Added f-strings to 2 places where they were missing (<code>nautobot/core/utils/filtering.py</code> in <code>generate_query</code> method and in migration file <code>nautobot/extras/migrations/0024_job_data_migration.py</code>).</li>
|
|
12183
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7318">#7318</a> - Fixed an AttributeError exception when rendering a table column describing a Relationship association to an unknown content-type.</li>
|
|
12184
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7328">#7328</a> - Fixed an issue in the Golden Config App where clicking a Configuration Compliance Feature Navigation link or loading a page with a hash would not scroll to the correct section due to conflicting legacy scroll offset logic.</li>
|
|
12185
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7340">#7340</a> - Fixed incorrect rendering of "Last run" column in Job list view.</li>
|
|
12186
|
+
</ul>
|
|
12187
|
+
<h3 id="dependencies-in-v249">Dependencies in v2.4.9<a class="headerlink" href="#dependencies-in-v249" title="Permanent link">¶</a></h3>
|
|
12188
|
+
<ul>
|
|
12189
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7277">#7277</a> - Updated <code>cryptography</code> dependency to <code>~44.0.3</code>.</li>
|
|
12190
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7277">#7277</a> - Updated <code>pyuwsgi</code> dependency to <code>~2.0.29</code>.</li>
|
|
12191
|
+
</ul>
|
|
12192
|
+
<h3 id="housekeeping-in-v249">Housekeeping in v2.4.9<a class="headerlink" href="#housekeeping-in-v249" title="Permanent link">¶</a></h3>
|
|
12193
|
+
<ul>
|
|
12194
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7104">#7104</a> - Resolved bug in VS Code devcontainer workflow.</li>
|
|
12195
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7163">#7163</a> - Refactored CloudResourceType model related UI views to use <code>UI component framework</code>.</li>
|
|
12196
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7231">#7231</a> - Refactored DeviceFamily model related UI views to use <code>UI component framework</code>.</li>
|
|
12197
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7237">#7237</a> - Refactored DeviceRedundancyGroup model related UI views to use <code>UI component framework</code>.</li>
|
|
12198
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7243">#7243</a> - Refactored DeviceType model related UI views to use <code>NautobotUIViewSet</code>.</li>
|
|
12199
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7246">#7246</a> - Refactored WirelessNetwork model related UI views to use <code>UI component framework</code>.</li>
|
|
12200
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7248">#7248</a> - Refactored ModuleBayUIViewSet model related UI views to use <code>UI component framework</code>.</li>
|
|
12201
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7265">#7265</a> - Refactored MetadataType model related UI views to use <code>UI component framework</code>.</li>
|
|
12202
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7271">#7271</a> - Refactored ComputedField model related UI views to use <code>UI component framework</code>.</li>
|
|
12203
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7277">#7277</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.6.14</code>.</li>
|
|
12204
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7277">#7277</a> - Updated development dependency <code>pylint</code> to <code>~3.3.7</code>.</li>
|
|
12205
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7277">#7277</a> - Updated development dependency <code>pymarkdownlnt</code> to <code>~0.9.30</code>.</li>
|
|
12206
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7287">#7287</a> - Refactored CircuitTypeUIViewSet model related UI views to use <code>UI component framework</code>.</li>
|
|
12207
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7300">#7300</a> - Refactored RackReservation model related UI views to use <code>UI component framework</code>.</li>
|
|
12208
|
+
</ul>
|
|
12023
12209
|
<h2 id="v248-2025-05-12">v2.4.8 (2025-05-12)<a class="headerlink" href="#v248-2025-05-12" title="Permanent link">¶</a></h2>
|
|
12024
12210
|
<h3 id="security-in-v248">Security in v2.4.8<a class="headerlink" href="#security-in-v248" title="Permanent link">¶</a></h3>
|
|
12025
12211
|
<ul>
|
|
@@ -12775,10 +12961,10 @@
|
|
|
12775
12961
|
|
|
12776
12962
|
|
|
12777
12963
|
|
|
12778
|
-
<script id="__config" type="application/json">{"base": "..", "features": ["content.code.annotate", "content.code.copy", "content.tabs.link", "navigation.footer", "navigation.tabs", "navigation.tabs.sticky", "navigation.tracking", "search.highlight", "search.share", "search.suggest"], "search": "../assets/javascripts/workers/search.
|
|
12964
|
+
<script id="__config" type="application/json">{"base": "..", "features": ["content.code.annotate", "content.code.copy", "content.tabs.link", "navigation.footer", "navigation.tabs", "navigation.tabs.sticky", "navigation.tracking", "search.highlight", "search.share", "search.suggest"], "search": "../assets/javascripts/workers/search.d50fe291.min.js", "tags": null, "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}, "version": null}</script>
|
|
12779
12965
|
|
|
12780
12966
|
|
|
12781
|
-
<script src="../assets/javascripts/bundle.
|
|
12967
|
+
<script src="../assets/javascripts/bundle.13a4f30d.min.js"></script>
|
|
12782
12968
|
|
|
12783
12969
|
|
|
12784
12970
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|