nautobot 2.3.2__py3-none-any.whl → 2.3.4__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/core/celery/schedulers.py +2 -2
- nautobot/core/settings.py +3 -1
- nautobot/core/settings.yaml +40 -23
- nautobot/core/tests/runner.py +27 -9
- nautobot/core/tests/test_settings_schema.py +7 -3
- nautobot/core/tests/test_utils.py +13 -0
- nautobot/core/utils/lookup.py +7 -1
- nautobot/dcim/tables/power.py +1 -1
- nautobot/dcim/tests/test_filters.py +1 -1
- nautobot/extras/context_managers.py +11 -4
- nautobot/extras/jobs.py +0 -1
- nautobot/extras/models/groups.py +4 -1
- nautobot/extras/tests/test_context_managers.py +33 -14
- nautobot/extras/tests/test_dynamicgroups.py +11 -0
- nautobot/extras/tests/test_models.py +5 -0
- nautobot/extras/tests/test_views.py +1 -0
- nautobot/ipam/models.py +4 -0
- nautobot/ipam/tests/test_api.py +11 -0
- nautobot/project-static/docs/404.html +81 -169
- nautobot/project-static/docs/additional-features/caching.html +3 -3
- nautobot/project-static/docs/additional-features/healthcheck.html +3 -3
- nautobot/project-static/docs/apps/index.html +83 -171
- nautobot/project-static/docs/apps/nautobot-apps.html +82 -170
- nautobot/project-static/docs/assets/javascripts/bundle.56dfad97.min.js +16 -0
- nautobot/project-static/docs/assets/javascripts/bundle.56dfad97.min.js.map +7 -0
- nautobot/project-static/docs/assets/javascripts/workers/{search.b8dbb3d2.min.js → search.07f07601.min.js} +1 -1
- nautobot/project-static/docs/assets/javascripts/workers/{search.b8dbb3d2.min.js.map → search.07f07601.min.js.map} +1 -1
- nautobot/project-static/docs/assets/stylesheets/main.35f28582.min.css +1 -0
- nautobot/project-static/docs/assets/stylesheets/main.35f28582.min.css.map +1 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +84 -172
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +84 -172
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +116 -204
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +90 -177
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +89 -177
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +83 -171
- nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +83 -171
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +88 -176
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +92 -180
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +99 -187
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +106 -194
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +150 -238
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +99 -187
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +143 -231
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +142 -230
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +84 -172
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +86 -174
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +98 -186
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +136 -224
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +135 -223
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +84 -172
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +138 -226
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +125 -213
- nautobot/project-static/docs/configuration/optional-settings.html +3 -3
- nautobot/project-static/docs/configuration/required-settings.html +3 -3
- nautobot/project-static/docs/development/apps/api/configuration-view.html +83 -171
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +83 -171
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +83 -171
- nautobot/project-static/docs/development/apps/api/models/global-search.html +83 -171
- nautobot/project-static/docs/development/apps/api/models/graphql.html +83 -171
- nautobot/project-static/docs/development/apps/api/models/index.html +83 -171
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +83 -171
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +83 -171
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +83 -171
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +83 -171
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +83 -171
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +83 -171
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +83 -171
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +83 -171
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +83 -171
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +85 -173
- nautobot/project-static/docs/development/apps/api/prometheus.html +83 -171
- nautobot/project-static/docs/development/apps/api/setup.html +83 -171
- nautobot/project-static/docs/development/apps/api/testing.html +84 -172
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +83 -171
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +83 -171
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +83 -171
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +83 -171
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +83 -171
- nautobot/project-static/docs/development/apps/api/views/base-template.html +83 -171
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +83 -171
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +83 -171
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +83 -171
- nautobot/project-static/docs/development/apps/api/views/index.html +83 -171
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +83 -171
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +83 -171
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +83 -171
- nautobot/project-static/docs/development/apps/api/views/notes.html +83 -171
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +83 -171
- nautobot/project-static/docs/development/apps/api/views/urls.html +83 -171
- nautobot/project-static/docs/development/apps/index.html +84 -172
- nautobot/project-static/docs/development/apps/migration/code-updates.html +83 -171
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +83 -171
- nautobot/project-static/docs/development/apps/migration/from-v1.html +83 -171
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +83 -171
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +83 -171
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +83 -171
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +83 -171
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +83 -171
- nautobot/project-static/docs/development/core/application-registry.html +83 -171
- nautobot/project-static/docs/development/core/best-practices.html +83 -171
- nautobot/project-static/docs/development/core/bootstrap-ui.html +83 -171
- nautobot/project-static/docs/development/core/caching.html +83 -171
- nautobot/project-static/docs/development/core/controllers.html +83 -171
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +83 -171
- nautobot/project-static/docs/development/core/generic-views.html +83 -171
- nautobot/project-static/docs/development/core/getting-started.html +106 -191
- nautobot/project-static/docs/development/core/homepage.html +83 -171
- nautobot/project-static/docs/development/core/index.html +83 -171
- nautobot/project-static/docs/development/core/model-checklist.html +83 -171
- nautobot/project-static/docs/development/core/model-features.html +83 -171
- nautobot/project-static/docs/development/core/natural-keys.html +83 -171
- nautobot/project-static/docs/development/core/navigation-menu.html +83 -171
- nautobot/project-static/docs/development/core/release-checklist.html +83 -171
- nautobot/project-static/docs/development/core/role-internals.html +83 -171
- nautobot/project-static/docs/development/core/settings.html +83 -171
- nautobot/project-static/docs/development/core/style-guide.html +83 -171
- nautobot/project-static/docs/development/core/templates.html +83 -171
- nautobot/project-static/docs/development/core/testing.html +85 -173
- nautobot/project-static/docs/development/core/user-preferences.html +83 -171
- nautobot/project-static/docs/development/index.html +83 -171
- nautobot/project-static/docs/development/jobs/index.html +91 -179
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +84 -172
- nautobot/project-static/docs/docker/index.html +3 -3
- nautobot/project-static/docs/index.html +88 -176
- nautobot/project-static/docs/installation/selinux-troubleshooting.html +3 -3
- nautobot/project-static/docs/overview/application_stack.html +89 -177
- nautobot/project-static/docs/overview/design_philosophy.html +83 -171
- nautobot/project-static/docs/release-notes/index.html +83 -171
- nautobot/project-static/docs/release-notes/version-1.0.html +83 -171
- nautobot/project-static/docs/release-notes/version-1.1.html +84 -172
- nautobot/project-static/docs/release-notes/version-1.2.html +86 -174
- nautobot/project-static/docs/release-notes/version-1.3.html +84 -172
- nautobot/project-static/docs/release-notes/version-1.4.html +85 -173
- nautobot/project-static/docs/release-notes/version-1.5.html +85 -173
- nautobot/project-static/docs/release-notes/version-1.6.html +87 -175
- nautobot/project-static/docs/release-notes/version-2.0.html +84 -172
- nautobot/project-static/docs/release-notes/version-2.1.html +85 -173
- nautobot/project-static/docs/release-notes/version-2.2.html +83 -171
- nautobot/project-static/docs/release-notes/version-2.3.html +425 -235
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +277 -556
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +85 -173
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +84 -172
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +85 -173
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +94 -192
- nautobot/project-static/docs/user-guide/administration/configuration/optional-settings.html +13 -12524
- nautobot/project-static/docs/user-guide/administration/configuration/redis.html +8966 -0
- nautobot/project-static/docs/user-guide/administration/configuration/required-settings.html +13 -9218
- nautobot/project-static/docs/user-guide/administration/configuration/settings.html +12734 -0
- nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +87 -175
- nautobot/project-static/docs/user-guide/administration/guides/caching.html +13 -9108
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +84 -172
- nautobot/project-static/docs/user-guide/administration/guides/docker.html +9491 -0
- nautobot/project-static/docs/user-guide/administration/guides/health-checks.html +9478 -0
- nautobot/project-static/docs/user-guide/administration/guides/healthcheck.html +13 -8833
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +87 -175
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +84 -172
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +84 -172
- nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +83 -171
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +83 -171
- nautobot/project-static/docs/user-guide/administration/guides/selinux-troubleshooting.html +8978 -0
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +83 -171
- nautobot/project-static/docs/user-guide/administration/installation/docker.html +3 -3
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +86 -174
- nautobot/project-static/docs/user-guide/administration/installation/health-checks.html +3 -3
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +84 -174
- nautobot/project-static/docs/user-guide/administration/installation/index.html +85 -173
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +83 -171
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +99 -184
- nautobot/project-static/docs/user-guide/administration/installation/selinux-troubleshooting.html +3 -3
- nautobot/project-static/docs/user-guide/administration/installation/services.html +85 -173
- nautobot/project-static/docs/user-guide/administration/installation-extras/docker.html +13 -9577
- nautobot/project-static/docs/user-guide/administration/installation-extras/health-checks.html +13 -9560
- nautobot/project-static/docs/user-guide/administration/installation-extras/selinux-troubleshooting.html +13 -9064
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +85 -173
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +83 -171
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +89 -177
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +86 -174
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +89 -177
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +86 -174
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +86 -174
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +86 -174
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +86 -174
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +86 -174
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +86 -174
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +88 -176
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +86 -174
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloud.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudaccount.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetwork.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetworkprefixassignment.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudresourcetype.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservice.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservicenetworkassignment.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/dcim/module.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebay.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebaytemplate.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/dcim/moduletype.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +84 -172
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +84 -172
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +83 -171
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +83 -171
- nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +83 -171
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +83 -171
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +83 -171
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +83 -171
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +83 -171
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +83 -171
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +83 -171
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +83 -171
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +83 -171
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +83 -171
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +83 -171
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +84 -172
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +83 -171
- nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +83 -171
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +83 -171
- nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +83 -171
- nautobot/project-static/docs/user-guide/index.html +83 -171
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +83 -171
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +83 -171
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +83 -171
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +83 -171
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +84 -172
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +83 -171
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +83 -171
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +84 -172
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +85 -173
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +83 -171
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +84 -172
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +83 -171
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +83 -171
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +83 -171
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +83 -171
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +83 -171
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +84 -172
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +83 -171
- nautobot/project-static/docs/user-guide/platform-functionality/objectmetadata.html +83 -171
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +83 -171
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +84 -172
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +84 -172
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +85 -173
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +83 -171
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +83 -171
- nautobot/project-static/docs/user-guide/platform-functionality/savedview.html +83 -171
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +83 -171
- nautobot/project-static/docs/user-guide/platform-functionality/staticgroupassociation.html +83 -171
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +83 -171
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +83 -171
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +83 -171
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +83 -171
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +83 -171
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +83 -171
- nautobot/virtualization/filters.py +6 -1
- nautobot/virtualization/tables.py +2 -2
- {nautobot-2.3.2.dist-info → nautobot-2.3.4.dist-info}/METADATA +4 -4
- {nautobot-2.3.2.dist-info → nautobot-2.3.4.dist-info}/RECORD +321 -317
- nautobot/project-static/docs/assets/javascripts/bundle.fe8b6f2b.min.js +0 -29
- nautobot/project-static/docs/assets/javascripts/bundle.fe8b6f2b.min.js.map +0 -7
- nautobot/project-static/docs/assets/stylesheets/main.3cba04c6.min.css +0 -1
- nautobot/project-static/docs/assets/stylesheets/main.3cba04c6.min.css.map +0 -1
- nautobot/project-static/docs/user-guide/administration/configuration/render-settings-fragment.j2 +0 -76
- {nautobot-2.3.2.dist-info → nautobot-2.3.4.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.3.2.dist-info → nautobot-2.3.4.dist-info}/NOTICE +0 -0
- {nautobot-2.3.2.dist-info → nautobot-2.3.4.dist-info}/WHEEL +0 -0
- {nautobot-2.3.2.dist-info → nautobot-2.3.4.dist-info}/entry_points.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: nautobot
|
|
3
|
-
Version: 2.3.
|
|
3
|
+
Version: 2.3.4
|
|
4
4
|
Summary: Source of truth and network automation platform.
|
|
5
5
|
Home-page: https://nautobot.com
|
|
6
6
|
License: Apache-2.0
|
|
@@ -23,13 +23,13 @@ Provides-Extra: mysql
|
|
|
23
23
|
Provides-Extra: napalm
|
|
24
24
|
Provides-Extra: remote-storage
|
|
25
25
|
Provides-Extra: sso
|
|
26
|
-
Requires-Dist: Django (>=4.2.
|
|
26
|
+
Requires-Dist: Django (>=4.2.16,<4.3.0)
|
|
27
27
|
Requires-Dist: GitPython (>=3.1.43,<3.2.0)
|
|
28
28
|
Requires-Dist: Jinja2 (>=3.1.4,<3.2.0)
|
|
29
29
|
Requires-Dist: Markdown (>=3.6,<3.7)
|
|
30
30
|
Requires-Dist: MarkupSafe (>=2.1.5,<2.2.0)
|
|
31
31
|
Requires-Dist: Pillow (>=10.3.0,<10.4.0)
|
|
32
|
-
Requires-Dist: PyYAML (>=6.0,<6.1)
|
|
32
|
+
Requires-Dist: PyYAML (>=6.0.2,<6.1.0)
|
|
33
33
|
Requires-Dist: celery (>=5.3.6,<5.4.0)
|
|
34
34
|
Requires-Dist: django-ajax-tables (>=1.1.1,<1.2.0)
|
|
35
35
|
Requires-Dist: django-auth-ldap (>=4.8.0,<4.9.0) ; extra == "all" or extra == "ldap"
|
|
@@ -68,7 +68,7 @@ Requires-Dist: packaging (>=23.1)
|
|
|
68
68
|
Requires-Dist: prometheus-client (>=0.20.0,<0.21.0)
|
|
69
69
|
Requires-Dist: psycopg2-binary (>=2.9.9,<2.10.0)
|
|
70
70
|
Requires-Dist: python-slugify (>=8.0.3,<8.1.0)
|
|
71
|
-
Requires-Dist: pyuwsgi (>=2.0.
|
|
71
|
+
Requires-Dist: pyuwsgi (>=2.0.26,<2.1.0)
|
|
72
72
|
Requires-Dist: social-auth-app-django (>=5.4.2,<5.5.0)
|
|
73
73
|
Requires-Dist: social-auth-core[saml] (>=4.5.3,<4.6.0) ; extra == "all" or extra == "sso"
|
|
74
74
|
Requires-Dist: svgwrite (>=1.4.2,<1.5.0)
|