nautobot 2.3.0__py3-none-any.whl → 2.3.0b1__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/cloud/factory.py +0 -2
- nautobot/cloud/filters.py +0 -3
- nautobot/cloud/forms.py +1 -7
- nautobot/cloud/migrations/0001_initial.py +1 -1
- nautobot/cloud/models.py +2 -1
- nautobot/cloud/tables.py +17 -1
- nautobot/cloud/templates/cloud/cloudnetwork_retrieve.html +7 -1
- nautobot/cloud/templates/cloud/cloudresourcetype_retrieve.html +0 -11
- nautobot/cloud/templates/cloud/cloudservice_retrieve.html +0 -4
- nautobot/cloud/tests/test_filters.py +0 -12
- nautobot/core/filters.py +1 -15
- nautobot/core/forms/forms.py +2 -10
- nautobot/core/graphql/generators.py +2 -2
- nautobot/core/graphql/schema.py +14 -6
- nautobot/core/jobs/__init__.py +1 -4
- nautobot/core/management/commands/generate_test_data.py +2 -2
- nautobot/core/models/__init__.py +2 -2
- nautobot/core/settings.py +2 -13
- nautobot/core/settings.yaml +2 -16
- nautobot/core/tables.py +0 -3
- nautobot/core/templates/generic/object_retrieve.html +5 -5
- nautobot/core/templates/nautobot_config.py.j2 +0 -15
- nautobot/core/testing/filters.py +1 -12
- nautobot/core/tests/integration/test_general_functionality.py +1 -1
- nautobot/core/tests/test_jobs.py +1 -74
- nautobot/core/views/generic.py +1 -1
- nautobot/core/views/mixins.py +1 -1
- nautobot/core/views/utils.py +6 -8
- nautobot/dcim/factory.py +1 -4
- nautobot/dcim/filters/__init__.py +0 -4
- nautobot/dcim/forms.py +0 -5
- nautobot/dcim/migrations/0061_module_models.py +0 -1
- nautobot/dcim/models/device_components.py +0 -7
- nautobot/dcim/models/devices.py +4 -6
- nautobot/dcim/models/racks.py +1 -0
- nautobot/dcim/tables/devices.py +3 -17
- nautobot/dcim/tables/devicetypes.py +1 -1
- nautobot/dcim/templates/dcim/device/base.html +1 -1
- nautobot/dcim/templates/dcim/device.html +2 -2
- nautobot/dcim/templates/dcim/deviceredundancygroup_retrieve.html +0 -6
- nautobot/dcim/templates/dcim/moduletype_retrieve.html +0 -17
- nautobot/dcim/templates/dcim/softwareimagefile_retrieve.html +2 -2
- nautobot/dcim/tests/test_api.py +0 -2
- nautobot/dcim/tests/test_filters.py +7 -14
- nautobot/dcim/tests/test_models.py +0 -31
- nautobot/dcim/tests/test_views.py +0 -39
- nautobot/dcim/views.py +1 -4
- nautobot/extras/api/views.py +59 -7
- nautobot/extras/factory.py +12 -50
- nautobot/extras/forms/base.py +4 -10
- nautobot/extras/homepage.py +2 -12
- nautobot/extras/jobs.py +2 -2
- nautobot/extras/migrations/0111_metadata.py +4 -4
- nautobot/extras/models/jobs.py +0 -83
- nautobot/extras/models/metadata.py +18 -18
- nautobot/extras/models/models.py +0 -2
- nautobot/extras/signals.py +1 -14
- nautobot/extras/tables.py +14 -43
- nautobot/extras/templates/extras/job_detail.html +0 -11
- nautobot/extras/tests/test_api.py +9 -16
- nautobot/extras/tests/test_jobs.py +2 -2
- nautobot/extras/tests/test_models.py +18 -20
- nautobot/extras/tests/test_views.py +3 -23
- nautobot/extras/utils.py +6 -35
- nautobot/extras/views.py +50 -27
- nautobot/ipam/filters.py +1 -1
- nautobot/ipam/forms.py +1 -1
- nautobot/ipam/models.py +20 -9
- nautobot/ipam/tables.py +0 -4
- nautobot/ipam/tests/test_models.py +2 -3
- nautobot/ipam/views.py +11 -6
- nautobot/project-static/css/base.css +0 -1
- nautobot/project-static/docs/404.html +18 -18
- nautobot/project-static/docs/apps/index.html +18 -18
- nautobot/project-static/docs/apps/nautobot-apps.html +18 -18
- nautobot/project-static/docs/assets/stylesheets/main.76a95c52.min.css +1 -0
- nautobot/project-static/docs/assets/stylesheets/main.76a95c52.min.css.map +1 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +18 -18
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +18 -18
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +18 -66
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +18 -18
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +18 -18
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +18 -18
- nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +18 -18
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +18 -18
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +18 -66
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +18 -34
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +18 -82
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +21 -75
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +18 -18
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +18 -34
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +18 -34
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +18 -18
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +18 -18
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +18 -18
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +18 -18
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +18 -18
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +18 -18
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +19 -21
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +18 -34
- nautobot/project-static/docs/development/apps/api/configuration-view.html +18 -18
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +18 -18
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +18 -18
- nautobot/project-static/docs/development/apps/api/models/global-search.html +18 -18
- nautobot/project-static/docs/development/apps/api/models/graphql.html +18 -18
- nautobot/project-static/docs/development/apps/api/models/index.html +22 -33
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +18 -18
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +18 -18
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +18 -18
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +18 -18
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +18 -18
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +18 -18
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +18 -18
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +18 -18
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +18 -18
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +18 -18
- nautobot/project-static/docs/development/apps/api/prometheus.html +18 -18
- nautobot/project-static/docs/development/apps/api/setup.html +18 -18
- nautobot/project-static/docs/development/apps/api/testing.html +18 -18
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +18 -18
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +18 -18
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +18 -18
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +18 -18
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +18 -18
- nautobot/project-static/docs/development/apps/api/views/base-template.html +18 -18
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +18 -18
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +18 -18
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +18 -18
- nautobot/project-static/docs/development/apps/api/views/index.html +18 -18
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +18 -18
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +18 -18
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +18 -18
- nautobot/project-static/docs/development/apps/api/views/notes.html +18 -18
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +18 -18
- nautobot/project-static/docs/development/apps/api/views/urls.html +18 -18
- nautobot/project-static/docs/development/apps/index.html +18 -18
- nautobot/project-static/docs/development/apps/migration/code-updates.html +18 -18
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +18 -18
- nautobot/project-static/docs/development/apps/migration/from-v1.html +18 -18
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +18 -18
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +18 -18
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +18 -18
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +18 -18
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +18 -18
- nautobot/project-static/docs/development/core/application-registry.html +18 -18
- nautobot/project-static/docs/development/core/best-practices.html +18 -18
- nautobot/project-static/docs/development/core/bootstrap-ui.html +18 -18
- nautobot/project-static/docs/development/core/caching.html +18 -18
- nautobot/project-static/docs/development/core/controllers.html +18 -18
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +18 -18
- nautobot/project-static/docs/development/core/generic-views.html +18 -18
- nautobot/project-static/docs/development/core/getting-started.html +18 -18
- nautobot/project-static/docs/development/core/homepage.html +18 -18
- nautobot/project-static/docs/development/core/index.html +18 -29
- nautobot/project-static/docs/development/core/model-checklist.html +20 -26
- nautobot/project-static/docs/development/core/model-features.html +18 -18
- nautobot/project-static/docs/development/core/natural-keys.html +18 -18
- nautobot/project-static/docs/development/core/navigation-menu.html +18 -18
- nautobot/project-static/docs/development/core/release-checklist.html +18 -18
- nautobot/project-static/docs/development/core/role-internals.html +18 -18
- nautobot/project-static/docs/development/core/settings.html +18 -18
- nautobot/project-static/docs/development/core/style-guide.html +19 -19
- nautobot/project-static/docs/development/core/templates.html +18 -18
- nautobot/project-static/docs/development/core/testing.html +18 -18
- nautobot/project-static/docs/development/core/user-preferences.html +18 -18
- nautobot/project-static/docs/development/index.html +18 -18
- nautobot/project-static/docs/development/jobs/index.html +379 -393
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +18 -18
- nautobot/project-static/docs/index.html +13 -9032
- nautobot/project-static/docs/models/extras/metadatachoice.html +3 -3
- nautobot/project-static/docs/models/extras/metadatatype.html +3 -3
- nautobot/project-static/docs/models/extras/objectmetadata.html +3 -3
- nautobot/project-static/docs/objects.inv +0 -0
- nautobot/project-static/docs/overview/application_stack.html +18 -18
- nautobot/project-static/docs/overview/design_philosophy.html +20 -20
- nautobot/project-static/docs/overview/index.html +9032 -13
- nautobot/project-static/docs/release-notes/index.html +19 -252
- nautobot/project-static/docs/release-notes/version-1.0.html +18 -18
- nautobot/project-static/docs/release-notes/version-1.1.html +18 -18
- nautobot/project-static/docs/release-notes/version-1.2.html +18 -18
- nautobot/project-static/docs/release-notes/version-1.3.html +18 -18
- nautobot/project-static/docs/release-notes/version-1.4.html +18 -18
- nautobot/project-static/docs/release-notes/version-1.5.html +18 -18
- nautobot/project-static/docs/release-notes/version-1.6.html +18 -18
- nautobot/project-static/docs/release-notes/version-2.0.html +18 -18
- nautobot/project-static/docs/release-notes/version-2.1.html +18 -18
- nautobot/project-static/docs/release-notes/version-2.2.html +111 -248
- nautobot/project-static/docs/release-notes/version-2.3.html +90 -520
- nautobot/project-static/docs/requirements.txt +3 -3
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +278 -278
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +18 -18
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +18 -18
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +18 -18
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +18 -18
- nautobot/project-static/docs/user-guide/administration/configuration/optional-settings.html +20 -52
- nautobot/project-static/docs/user-guide/administration/configuration/required-settings.html +18 -18
- nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +18 -18
- nautobot/project-static/docs/user-guide/administration/guides/caching.html +18 -18
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +18 -22
- nautobot/project-static/docs/user-guide/administration/guides/healthcheck.html +18 -18
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +18 -18
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +18 -18
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +18 -18
- nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +18 -18
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +18 -18
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +18 -18
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +18 -18
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +82 -69
- nautobot/project-static/docs/user-guide/administration/installation/index.html +24 -24
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +52 -60
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +87 -80
- nautobot/project-static/docs/user-guide/administration/installation/services.html +44 -37
- nautobot/project-static/docs/user-guide/administration/installation-extras/docker.html +18 -18
- nautobot/project-static/docs/user-guide/administration/installation-extras/health-checks.html +18 -18
- nautobot/project-static/docs/user-guide/administration/installation-extras/selinux-troubleshooting.html +18 -18
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +18 -18
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +18 -18
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +24 -76
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +18 -18
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +18 -18
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +18 -18
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +18 -18
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +18 -18
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +18 -18
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +18 -18
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +18 -18
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +18 -18
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloud.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudaccount.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetwork.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetworkprefixassignment.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudresourcetype.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservice.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservicenetworkassignment.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +19 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +19 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/module.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebay.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebaytemplate.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/dcim/moduletype.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +18 -62
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +18 -18
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +18 -18
- nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +18 -18
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +18 -18
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +18 -18
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +18 -18
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +18 -18
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +18 -18
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +18 -18
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +18 -18
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +18 -18
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +18 -18
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +18 -18
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +18 -18
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +18 -18
- nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +18 -18
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +18 -18
- nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +18 -18
- nautobot/project-static/docs/user-guide/index.html +18 -18
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +18 -18
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +18 -18
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +18 -18
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +18 -18
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +18 -18
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +18 -18
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +18 -18
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +18 -18
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +18 -18
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +18 -18
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +18 -18
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +18 -18
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +21 -21
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +18 -18
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +18 -18
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +18 -18
- nautobot/project-static/docs/user-guide/platform-functionality/{objectmetadata.html → metadata.html} +84 -197
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +36 -36
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +33 -33
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +21 -21
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +18 -18
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +18 -18
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +18 -18
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +18 -18
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +18 -18
- nautobot/project-static/docs/user-guide/platform-functionality/savedview.html +18 -18
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +18 -18
- nautobot/project-static/docs/user-guide/platform-functionality/staticgroupassociation.html +18 -18
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +18 -18
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +18 -18
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +18 -18
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +18 -18
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +18 -18
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +18 -18
- nautobot/tenancy/templates/tenancy/tenant.html +4 -4
- nautobot/virtualization/models.py +2 -0
- nautobot/virtualization/tables.py +5 -2
- {nautobot-2.3.0.dist-info → nautobot-2.3.0b1.dist-info}/METADATA +3 -3
- {nautobot-2.3.0.dist-info → nautobot-2.3.0b1.dist-info}/RECORD +364 -364
- 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-2.3.0.dist-info → nautobot-2.3.0b1.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.3.0.dist-info → nautobot-2.3.0b1.dist-info}/NOTICE +0 -0
- {nautobot-2.3.0.dist-info → nautobot-2.3.0b1.dist-info}/WHEEL +0 -0
- {nautobot-2.3.0.dist-info → nautobot-2.3.0b1.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.0, mkdocs-material-9.5.
|
|
21
|
+
<meta name="generator" content="mkdocs-1.6.0, mkdocs-material-9.5.29">
|
|
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.76a95c52.min.css">
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
<link rel="stylesheet" href="../assets/stylesheets/palette.06af60db.min.css">
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
|
|
39
39
|
|
|
40
40
|
|
|
41
|
-
<style>:root{--md-admonition-icon--example:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.
|
|
41
|
+
<style>:root{--md-admonition-icon--example:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M288 0H128c-17.7 0-32 14.3-32 32s14.3 32 32 32v132.8c0 11.8-3.3 23.5-9.5 33.5L10.3 406.2C3.6 417.2 0 429.7 0 442.6 0 480.9 31.1 512 69.4 512h309.2c38.3 0 69.4-31.1 69.4-69.4 0-12.8-3.6-25.4-10.3-36.4L329.5 230.4c-6.2-10.1-9.5-21.7-9.5-33.5V64c17.7 0 32-14.3 32-32S337.7 0 320 0h-32zm-96 196.8V64h64v132.8c0 23.7 6.6 46.9 19 67.1l34.5 56.1h-171l34.5-56.1c12.4-20.2 19-43.4 19-67.1z"/></svg>');}</style>
|
|
42
42
|
|
|
43
43
|
|
|
44
44
|
|
|
@@ -217,7 +217,7 @@
|
|
|
217
217
|
<a href="https://github.com/nautobot/nautobot" title="Go to repository" class="md-source" data-md-component="source">
|
|
218
218
|
<div class="md-source__icon md-icon">
|
|
219
219
|
|
|
220
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.
|
|
220
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81z"/></svg>
|
|
221
221
|
</div>
|
|
222
222
|
<div class="md-source__repository">
|
|
223
223
|
GitHub
|
|
@@ -238,7 +238,7 @@
|
|
|
238
238
|
|
|
239
239
|
|
|
240
240
|
<li class="md-tabs__item">
|
|
241
|
-
<a href="../index.html" class="md-tabs__link">
|
|
241
|
+
<a href="../overview/index.html" class="md-tabs__link">
|
|
242
242
|
|
|
243
243
|
|
|
244
244
|
|
|
@@ -377,7 +377,7 @@
|
|
|
377
377
|
<a href="https://github.com/nautobot/nautobot" title="Go to repository" class="md-source" data-md-component="source">
|
|
378
378
|
<div class="md-source__icon md-icon">
|
|
379
379
|
|
|
380
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.
|
|
380
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81z"/></svg>
|
|
381
381
|
</div>
|
|
382
382
|
<div class="md-source__repository">
|
|
383
383
|
GitHub
|
|
@@ -409,7 +409,7 @@
|
|
|
409
409
|
|
|
410
410
|
|
|
411
411
|
<div class="md-nav__link md-nav__container">
|
|
412
|
-
<a href="../index.html" class="md-nav__link ">
|
|
412
|
+
<a href="../overview/index.html" class="md-nav__link ">
|
|
413
413
|
|
|
414
414
|
|
|
415
415
|
<span class="md-ellipsis">
|
|
@@ -5153,11 +5153,11 @@
|
|
|
5153
5153
|
|
|
5154
5154
|
|
|
5155
5155
|
<li class="md-nav__item">
|
|
5156
|
-
<a href="../user-guide/platform-functionality/
|
|
5156
|
+
<a href="../user-guide/platform-functionality/metadata.html" class="md-nav__link">
|
|
5157
5157
|
|
|
5158
5158
|
|
|
5159
5159
|
<span class="md-ellipsis">
|
|
5160
|
-
|
|
5160
|
+
Metadata
|
|
5161
5161
|
</span>
|
|
5162
5162
|
|
|
5163
5163
|
|
|
@@ -5174,11 +5174,11 @@
|
|
|
5174
5174
|
|
|
5175
5175
|
|
|
5176
5176
|
<li class="md-nav__item">
|
|
5177
|
-
<a href="../user-guide/platform-functionality/
|
|
5177
|
+
<a href="../user-guide/platform-functionality/napalm.html" class="md-nav__link">
|
|
5178
5178
|
|
|
5179
5179
|
|
|
5180
5180
|
<span class="md-ellipsis">
|
|
5181
|
-
|
|
5181
|
+
NAPALM
|
|
5182
5182
|
</span>
|
|
5183
5183
|
|
|
5184
5184
|
|
|
@@ -5195,11 +5195,11 @@
|
|
|
5195
5195
|
|
|
5196
5196
|
|
|
5197
5197
|
<li class="md-nav__item">
|
|
5198
|
-
<a href="../user-guide/platform-functionality/
|
|
5198
|
+
<a href="../user-guide/platform-functionality/note.html" class="md-nav__link">
|
|
5199
5199
|
|
|
5200
5200
|
|
|
5201
5201
|
<span class="md-ellipsis">
|
|
5202
|
-
|
|
5202
|
+
Notes
|
|
5203
5203
|
</span>
|
|
5204
5204
|
|
|
5205
5205
|
|
|
@@ -8258,57 +8258,6 @@
|
|
|
8258
8258
|
</ul>
|
|
8259
8259
|
</nav>
|
|
8260
8260
|
|
|
8261
|
-
</li>
|
|
8262
|
-
|
|
8263
|
-
<li class="md-nav__item">
|
|
8264
|
-
<a href="#v229-2024-08-05" class="md-nav__link">
|
|
8265
|
-
<span class="md-ellipsis">
|
|
8266
|
-
v2.2.9 (2024-08-05)
|
|
8267
|
-
</span>
|
|
8268
|
-
</a>
|
|
8269
|
-
|
|
8270
|
-
<nav class="md-nav" aria-label="v2.2.9 (2024-08-05)">
|
|
8271
|
-
<ul class="md-nav__list">
|
|
8272
|
-
|
|
8273
|
-
<li class="md-nav__item">
|
|
8274
|
-
<a href="#added_1" class="md-nav__link">
|
|
8275
|
-
<span class="md-ellipsis">
|
|
8276
|
-
Added
|
|
8277
|
-
</span>
|
|
8278
|
-
</a>
|
|
8279
|
-
|
|
8280
|
-
</li>
|
|
8281
|
-
|
|
8282
|
-
<li class="md-nav__item">
|
|
8283
|
-
<a href="#fixed" class="md-nav__link">
|
|
8284
|
-
<span class="md-ellipsis">
|
|
8285
|
-
Fixed
|
|
8286
|
-
</span>
|
|
8287
|
-
</a>
|
|
8288
|
-
|
|
8289
|
-
</li>
|
|
8290
|
-
|
|
8291
|
-
<li class="md-nav__item">
|
|
8292
|
-
<a href="#dependencies" class="md-nav__link">
|
|
8293
|
-
<span class="md-ellipsis">
|
|
8294
|
-
Dependencies
|
|
8295
|
-
</span>
|
|
8296
|
-
</a>
|
|
8297
|
-
|
|
8298
|
-
</li>
|
|
8299
|
-
|
|
8300
|
-
<li class="md-nav__item">
|
|
8301
|
-
<a href="#documentation" class="md-nav__link">
|
|
8302
|
-
<span class="md-ellipsis">
|
|
8303
|
-
Documentation
|
|
8304
|
-
</span>
|
|
8305
|
-
</a>
|
|
8306
|
-
|
|
8307
|
-
</li>
|
|
8308
|
-
|
|
8309
|
-
</ul>
|
|
8310
|
-
</nav>
|
|
8311
|
-
|
|
8312
8261
|
</li>
|
|
8313
8262
|
|
|
8314
8263
|
<li class="md-nav__item">
|
|
@@ -8331,7 +8280,7 @@
|
|
|
8331
8280
|
</li>
|
|
8332
8281
|
|
|
8333
8282
|
<li class="md-nav__item">
|
|
8334
|
-
<a href="#
|
|
8283
|
+
<a href="#fixed" class="md-nav__link">
|
|
8335
8284
|
<span class="md-ellipsis">
|
|
8336
8285
|
Fixed
|
|
8337
8286
|
</span>
|
|
@@ -8340,7 +8289,7 @@
|
|
|
8340
8289
|
</li>
|
|
8341
8290
|
|
|
8342
8291
|
<li class="md-nav__item">
|
|
8343
|
-
<a href="#
|
|
8292
|
+
<a href="#dependencies" class="md-nav__link">
|
|
8344
8293
|
<span class="md-ellipsis">
|
|
8345
8294
|
Dependencies
|
|
8346
8295
|
</span>
|
|
@@ -8349,7 +8298,7 @@
|
|
|
8349
8298
|
</li>
|
|
8350
8299
|
|
|
8351
8300
|
<li class="md-nav__item">
|
|
8352
|
-
<a href="#
|
|
8301
|
+
<a href="#documentation" class="md-nav__link">
|
|
8353
8302
|
<span class="md-ellipsis">
|
|
8354
8303
|
Documentation
|
|
8355
8304
|
</span>
|
|
@@ -8391,7 +8340,7 @@
|
|
|
8391
8340
|
</li>
|
|
8392
8341
|
|
|
8393
8342
|
<li class="md-nav__item">
|
|
8394
|
-
<a href="#
|
|
8343
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
8395
8344
|
<span class="md-ellipsis">
|
|
8396
8345
|
Fixed
|
|
8397
8346
|
</span>
|
|
@@ -8400,7 +8349,7 @@
|
|
|
8400
8349
|
</li>
|
|
8401
8350
|
|
|
8402
8351
|
<li class="md-nav__item">
|
|
8403
|
-
<a href="#
|
|
8352
|
+
<a href="#dependencies_1" class="md-nav__link">
|
|
8404
8353
|
<span class="md-ellipsis">
|
|
8405
8354
|
Dependencies
|
|
8406
8355
|
</span>
|
|
@@ -8442,7 +8391,7 @@
|
|
|
8442
8391
|
</li>
|
|
8443
8392
|
|
|
8444
8393
|
<li class="md-nav__item">
|
|
8445
|
-
<a href="#
|
|
8394
|
+
<a href="#added_1" class="md-nav__link">
|
|
8446
8395
|
<span class="md-ellipsis">
|
|
8447
8396
|
Added
|
|
8448
8397
|
</span>
|
|
@@ -8460,7 +8409,7 @@
|
|
|
8460
8409
|
</li>
|
|
8461
8410
|
|
|
8462
8411
|
<li class="md-nav__item">
|
|
8463
|
-
<a href="#
|
|
8412
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
8464
8413
|
<span class="md-ellipsis">
|
|
8465
8414
|
Fixed
|
|
8466
8415
|
</span>
|
|
@@ -8469,7 +8418,7 @@
|
|
|
8469
8418
|
</li>
|
|
8470
8419
|
|
|
8471
8420
|
<li class="md-nav__item">
|
|
8472
|
-
<a href="#
|
|
8421
|
+
<a href="#documentation_1" class="md-nav__link">
|
|
8473
8422
|
<span class="md-ellipsis">
|
|
8474
8423
|
Documentation
|
|
8475
8424
|
</span>
|
|
@@ -8511,7 +8460,7 @@
|
|
|
8511
8460
|
</li>
|
|
8512
8461
|
|
|
8513
8462
|
<li class="md-nav__item">
|
|
8514
|
-
<a href="#
|
|
8463
|
+
<a href="#added_2" class="md-nav__link">
|
|
8515
8464
|
<span class="md-ellipsis">
|
|
8516
8465
|
Added
|
|
8517
8466
|
</span>
|
|
@@ -8529,7 +8478,7 @@
|
|
|
8529
8478
|
</li>
|
|
8530
8479
|
|
|
8531
8480
|
<li class="md-nav__item">
|
|
8532
|
-
<a href="#
|
|
8481
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
8533
8482
|
<span class="md-ellipsis">
|
|
8534
8483
|
Fixed
|
|
8535
8484
|
</span>
|
|
@@ -8538,7 +8487,7 @@
|
|
|
8538
8487
|
</li>
|
|
8539
8488
|
|
|
8540
8489
|
<li class="md-nav__item">
|
|
8541
|
-
<a href="#
|
|
8490
|
+
<a href="#documentation_2" class="md-nav__link">
|
|
8542
8491
|
<span class="md-ellipsis">
|
|
8543
8492
|
Documentation
|
|
8544
8493
|
</span>
|
|
@@ -8580,7 +8529,7 @@
|
|
|
8580
8529
|
</li>
|
|
8581
8530
|
|
|
8582
8531
|
<li class="md-nav__item">
|
|
8583
|
-
<a href="#
|
|
8532
|
+
<a href="#added_3" class="md-nav__link">
|
|
8584
8533
|
<span class="md-ellipsis">
|
|
8585
8534
|
Added
|
|
8586
8535
|
</span>
|
|
@@ -8589,7 +8538,7 @@
|
|
|
8589
8538
|
</li>
|
|
8590
8539
|
|
|
8591
8540
|
<li class="md-nav__item">
|
|
8592
|
-
<a href="#
|
|
8541
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
8593
8542
|
<span class="md-ellipsis">
|
|
8594
8543
|
Fixed
|
|
8595
8544
|
</span>
|
|
@@ -8598,7 +8547,7 @@
|
|
|
8598
8547
|
</li>
|
|
8599
8548
|
|
|
8600
8549
|
<li class="md-nav__item">
|
|
8601
|
-
<a href="#
|
|
8550
|
+
<a href="#documentation_3" class="md-nav__link">
|
|
8602
8551
|
<span class="md-ellipsis">
|
|
8603
8552
|
Documentation
|
|
8604
8553
|
</span>
|
|
@@ -8640,7 +8589,7 @@
|
|
|
8640
8589
|
</li>
|
|
8641
8590
|
|
|
8642
8591
|
<li class="md-nav__item">
|
|
8643
|
-
<a href="#
|
|
8592
|
+
<a href="#added_4" class="md-nav__link">
|
|
8644
8593
|
<span class="md-ellipsis">
|
|
8645
8594
|
Added
|
|
8646
8595
|
</span>
|
|
@@ -8658,7 +8607,7 @@
|
|
|
8658
8607
|
</li>
|
|
8659
8608
|
|
|
8660
8609
|
<li class="md-nav__item">
|
|
8661
|
-
<a href="#
|
|
8610
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
8662
8611
|
<span class="md-ellipsis">
|
|
8663
8612
|
Fixed
|
|
8664
8613
|
</span>
|
|
@@ -8667,7 +8616,7 @@
|
|
|
8667
8616
|
</li>
|
|
8668
8617
|
|
|
8669
8618
|
<li class="md-nav__item">
|
|
8670
|
-
<a href="#
|
|
8619
|
+
<a href="#documentation_4" class="md-nav__link">
|
|
8671
8620
|
<span class="md-ellipsis">
|
|
8672
8621
|
Documentation
|
|
8673
8622
|
</span>
|
|
@@ -8709,7 +8658,7 @@
|
|
|
8709
8658
|
</li>
|
|
8710
8659
|
|
|
8711
8660
|
<li class="md-nav__item">
|
|
8712
|
-
<a href="#
|
|
8661
|
+
<a href="#added_5" class="md-nav__link">
|
|
8713
8662
|
<span class="md-ellipsis">
|
|
8714
8663
|
Added
|
|
8715
8664
|
</span>
|
|
@@ -8727,7 +8676,7 @@
|
|
|
8727
8676
|
</li>
|
|
8728
8677
|
|
|
8729
8678
|
<li class="md-nav__item">
|
|
8730
|
-
<a href="#
|
|
8679
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
8731
8680
|
<span class="md-ellipsis">
|
|
8732
8681
|
Fixed
|
|
8733
8682
|
</span>
|
|
@@ -8736,7 +8685,7 @@
|
|
|
8736
8685
|
</li>
|
|
8737
8686
|
|
|
8738
8687
|
<li class="md-nav__item">
|
|
8739
|
-
<a href="#
|
|
8688
|
+
<a href="#documentation_5" class="md-nav__link">
|
|
8740
8689
|
<span class="md-ellipsis">
|
|
8741
8690
|
Documentation
|
|
8742
8691
|
</span>
|
|
@@ -8778,7 +8727,7 @@
|
|
|
8778
8727
|
</li>
|
|
8779
8728
|
|
|
8780
8729
|
<li class="md-nav__item">
|
|
8781
|
-
<a href="#
|
|
8730
|
+
<a href="#added_6" class="md-nav__link">
|
|
8782
8731
|
<span class="md-ellipsis">
|
|
8783
8732
|
Added
|
|
8784
8733
|
</span>
|
|
@@ -8796,7 +8745,7 @@
|
|
|
8796
8745
|
</li>
|
|
8797
8746
|
|
|
8798
8747
|
<li class="md-nav__item">
|
|
8799
|
-
<a href="#
|
|
8748
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
8800
8749
|
<span class="md-ellipsis">
|
|
8801
8750
|
Fixed
|
|
8802
8751
|
</span>
|
|
@@ -8805,7 +8754,7 @@
|
|
|
8805
8754
|
</li>
|
|
8806
8755
|
|
|
8807
8756
|
<li class="md-nav__item">
|
|
8808
|
-
<a href="#
|
|
8757
|
+
<a href="#dependencies_2" class="md-nav__link">
|
|
8809
8758
|
<span class="md-ellipsis">
|
|
8810
8759
|
Dependencies
|
|
8811
8760
|
</span>
|
|
@@ -8814,7 +8763,7 @@
|
|
|
8814
8763
|
</li>
|
|
8815
8764
|
|
|
8816
8765
|
<li class="md-nav__item">
|
|
8817
|
-
<a href="#
|
|
8766
|
+
<a href="#documentation_6" class="md-nav__link">
|
|
8818
8767
|
<span class="md-ellipsis">
|
|
8819
8768
|
Documentation
|
|
8820
8769
|
</span>
|
|
@@ -8847,7 +8796,7 @@
|
|
|
8847
8796
|
<ul class="md-nav__list">
|
|
8848
8797
|
|
|
8849
8798
|
<li class="md-nav__item">
|
|
8850
|
-
<a href="#
|
|
8799
|
+
<a href="#added_7" class="md-nav__link">
|
|
8851
8800
|
<span class="md-ellipsis">
|
|
8852
8801
|
Added
|
|
8853
8802
|
</span>
|
|
@@ -8865,7 +8814,7 @@
|
|
|
8865
8814
|
</li>
|
|
8866
8815
|
|
|
8867
8816
|
<li class="md-nav__item">
|
|
8868
|
-
<a href="#
|
|
8817
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
8869
8818
|
<span class="md-ellipsis">
|
|
8870
8819
|
Fixed
|
|
8871
8820
|
</span>
|
|
@@ -8874,7 +8823,7 @@
|
|
|
8874
8823
|
</li>
|
|
8875
8824
|
|
|
8876
8825
|
<li class="md-nav__item">
|
|
8877
|
-
<a href="#
|
|
8826
|
+
<a href="#dependencies_3" class="md-nav__link">
|
|
8878
8827
|
<span class="md-ellipsis">
|
|
8879
8828
|
Dependencies
|
|
8880
8829
|
</span>
|
|
@@ -8907,7 +8856,7 @@
|
|
|
8907
8856
|
<ul class="md-nav__list">
|
|
8908
8857
|
|
|
8909
8858
|
<li class="md-nav__item">
|
|
8910
|
-
<a href="#
|
|
8859
|
+
<a href="#added_8" class="md-nav__link">
|
|
8911
8860
|
<span class="md-ellipsis">
|
|
8912
8861
|
Added
|
|
8913
8862
|
</span>
|
|
@@ -8943,7 +8892,7 @@
|
|
|
8943
8892
|
</li>
|
|
8944
8893
|
|
|
8945
8894
|
<li class="md-nav__item">
|
|
8946
|
-
<a href="#
|
|
8895
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
8947
8896
|
<span class="md-ellipsis">
|
|
8948
8897
|
Fixed
|
|
8949
8898
|
</span>
|
|
@@ -8952,7 +8901,7 @@
|
|
|
8952
8901
|
</li>
|
|
8953
8902
|
|
|
8954
8903
|
<li class="md-nav__item">
|
|
8955
|
-
<a href="#
|
|
8904
|
+
<a href="#dependencies_4" class="md-nav__link">
|
|
8956
8905
|
<span class="md-ellipsis">
|
|
8957
8906
|
Dependencies
|
|
8958
8907
|
</span>
|
|
@@ -8961,7 +8910,7 @@
|
|
|
8961
8910
|
</li>
|
|
8962
8911
|
|
|
8963
8912
|
<li class="md-nav__item">
|
|
8964
|
-
<a href="#
|
|
8913
|
+
<a href="#documentation_7" class="md-nav__link">
|
|
8965
8914
|
<span class="md-ellipsis">
|
|
8966
8915
|
Documentation
|
|
8967
8916
|
</span>
|
|
@@ -9676,57 +9625,6 @@
|
|
|
9676
9625
|
</ul>
|
|
9677
9626
|
</nav>
|
|
9678
9627
|
|
|
9679
|
-
</li>
|
|
9680
|
-
|
|
9681
|
-
<li class="md-nav__item">
|
|
9682
|
-
<a href="#v229-2024-08-05" class="md-nav__link">
|
|
9683
|
-
<span class="md-ellipsis">
|
|
9684
|
-
v2.2.9 (2024-08-05)
|
|
9685
|
-
</span>
|
|
9686
|
-
</a>
|
|
9687
|
-
|
|
9688
|
-
<nav class="md-nav" aria-label="v2.2.9 (2024-08-05)">
|
|
9689
|
-
<ul class="md-nav__list">
|
|
9690
|
-
|
|
9691
|
-
<li class="md-nav__item">
|
|
9692
|
-
<a href="#added_1" class="md-nav__link">
|
|
9693
|
-
<span class="md-ellipsis">
|
|
9694
|
-
Added
|
|
9695
|
-
</span>
|
|
9696
|
-
</a>
|
|
9697
|
-
|
|
9698
|
-
</li>
|
|
9699
|
-
|
|
9700
|
-
<li class="md-nav__item">
|
|
9701
|
-
<a href="#fixed" class="md-nav__link">
|
|
9702
|
-
<span class="md-ellipsis">
|
|
9703
|
-
Fixed
|
|
9704
|
-
</span>
|
|
9705
|
-
</a>
|
|
9706
|
-
|
|
9707
|
-
</li>
|
|
9708
|
-
|
|
9709
|
-
<li class="md-nav__item">
|
|
9710
|
-
<a href="#dependencies" class="md-nav__link">
|
|
9711
|
-
<span class="md-ellipsis">
|
|
9712
|
-
Dependencies
|
|
9713
|
-
</span>
|
|
9714
|
-
</a>
|
|
9715
|
-
|
|
9716
|
-
</li>
|
|
9717
|
-
|
|
9718
|
-
<li class="md-nav__item">
|
|
9719
|
-
<a href="#documentation" class="md-nav__link">
|
|
9720
|
-
<span class="md-ellipsis">
|
|
9721
|
-
Documentation
|
|
9722
|
-
</span>
|
|
9723
|
-
</a>
|
|
9724
|
-
|
|
9725
|
-
</li>
|
|
9726
|
-
|
|
9727
|
-
</ul>
|
|
9728
|
-
</nav>
|
|
9729
|
-
|
|
9730
9628
|
</li>
|
|
9731
9629
|
|
|
9732
9630
|
<li class="md-nav__item">
|
|
@@ -9749,7 +9647,7 @@
|
|
|
9749
9647
|
</li>
|
|
9750
9648
|
|
|
9751
9649
|
<li class="md-nav__item">
|
|
9752
|
-
<a href="#
|
|
9650
|
+
<a href="#fixed" class="md-nav__link">
|
|
9753
9651
|
<span class="md-ellipsis">
|
|
9754
9652
|
Fixed
|
|
9755
9653
|
</span>
|
|
@@ -9758,7 +9656,7 @@
|
|
|
9758
9656
|
</li>
|
|
9759
9657
|
|
|
9760
9658
|
<li class="md-nav__item">
|
|
9761
|
-
<a href="#
|
|
9659
|
+
<a href="#dependencies" class="md-nav__link">
|
|
9762
9660
|
<span class="md-ellipsis">
|
|
9763
9661
|
Dependencies
|
|
9764
9662
|
</span>
|
|
@@ -9767,7 +9665,7 @@
|
|
|
9767
9665
|
</li>
|
|
9768
9666
|
|
|
9769
9667
|
<li class="md-nav__item">
|
|
9770
|
-
<a href="#
|
|
9668
|
+
<a href="#documentation" class="md-nav__link">
|
|
9771
9669
|
<span class="md-ellipsis">
|
|
9772
9670
|
Documentation
|
|
9773
9671
|
</span>
|
|
@@ -9809,7 +9707,7 @@
|
|
|
9809
9707
|
</li>
|
|
9810
9708
|
|
|
9811
9709
|
<li class="md-nav__item">
|
|
9812
|
-
<a href="#
|
|
9710
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
9813
9711
|
<span class="md-ellipsis">
|
|
9814
9712
|
Fixed
|
|
9815
9713
|
</span>
|
|
@@ -9818,7 +9716,7 @@
|
|
|
9818
9716
|
</li>
|
|
9819
9717
|
|
|
9820
9718
|
<li class="md-nav__item">
|
|
9821
|
-
<a href="#
|
|
9719
|
+
<a href="#dependencies_1" class="md-nav__link">
|
|
9822
9720
|
<span class="md-ellipsis">
|
|
9823
9721
|
Dependencies
|
|
9824
9722
|
</span>
|
|
@@ -9860,7 +9758,7 @@
|
|
|
9860
9758
|
</li>
|
|
9861
9759
|
|
|
9862
9760
|
<li class="md-nav__item">
|
|
9863
|
-
<a href="#
|
|
9761
|
+
<a href="#added_1" class="md-nav__link">
|
|
9864
9762
|
<span class="md-ellipsis">
|
|
9865
9763
|
Added
|
|
9866
9764
|
</span>
|
|
@@ -9878,7 +9776,7 @@
|
|
|
9878
9776
|
</li>
|
|
9879
9777
|
|
|
9880
9778
|
<li class="md-nav__item">
|
|
9881
|
-
<a href="#
|
|
9779
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
9882
9780
|
<span class="md-ellipsis">
|
|
9883
9781
|
Fixed
|
|
9884
9782
|
</span>
|
|
@@ -9887,7 +9785,7 @@
|
|
|
9887
9785
|
</li>
|
|
9888
9786
|
|
|
9889
9787
|
<li class="md-nav__item">
|
|
9890
|
-
<a href="#
|
|
9788
|
+
<a href="#documentation_1" class="md-nav__link">
|
|
9891
9789
|
<span class="md-ellipsis">
|
|
9892
9790
|
Documentation
|
|
9893
9791
|
</span>
|
|
@@ -9929,7 +9827,7 @@
|
|
|
9929
9827
|
</li>
|
|
9930
9828
|
|
|
9931
9829
|
<li class="md-nav__item">
|
|
9932
|
-
<a href="#
|
|
9830
|
+
<a href="#added_2" class="md-nav__link">
|
|
9933
9831
|
<span class="md-ellipsis">
|
|
9934
9832
|
Added
|
|
9935
9833
|
</span>
|
|
@@ -9947,7 +9845,7 @@
|
|
|
9947
9845
|
</li>
|
|
9948
9846
|
|
|
9949
9847
|
<li class="md-nav__item">
|
|
9950
|
-
<a href="#
|
|
9848
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
9951
9849
|
<span class="md-ellipsis">
|
|
9952
9850
|
Fixed
|
|
9953
9851
|
</span>
|
|
@@ -9956,7 +9854,7 @@
|
|
|
9956
9854
|
</li>
|
|
9957
9855
|
|
|
9958
9856
|
<li class="md-nav__item">
|
|
9959
|
-
<a href="#
|
|
9857
|
+
<a href="#documentation_2" class="md-nav__link">
|
|
9960
9858
|
<span class="md-ellipsis">
|
|
9961
9859
|
Documentation
|
|
9962
9860
|
</span>
|
|
@@ -9998,7 +9896,7 @@
|
|
|
9998
9896
|
</li>
|
|
9999
9897
|
|
|
10000
9898
|
<li class="md-nav__item">
|
|
10001
|
-
<a href="#
|
|
9899
|
+
<a href="#added_3" class="md-nav__link">
|
|
10002
9900
|
<span class="md-ellipsis">
|
|
10003
9901
|
Added
|
|
10004
9902
|
</span>
|
|
@@ -10007,7 +9905,7 @@
|
|
|
10007
9905
|
</li>
|
|
10008
9906
|
|
|
10009
9907
|
<li class="md-nav__item">
|
|
10010
|
-
<a href="#
|
|
9908
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
10011
9909
|
<span class="md-ellipsis">
|
|
10012
9910
|
Fixed
|
|
10013
9911
|
</span>
|
|
@@ -10016,7 +9914,7 @@
|
|
|
10016
9914
|
</li>
|
|
10017
9915
|
|
|
10018
9916
|
<li class="md-nav__item">
|
|
10019
|
-
<a href="#
|
|
9917
|
+
<a href="#documentation_3" class="md-nav__link">
|
|
10020
9918
|
<span class="md-ellipsis">
|
|
10021
9919
|
Documentation
|
|
10022
9920
|
</span>
|
|
@@ -10058,7 +9956,7 @@
|
|
|
10058
9956
|
</li>
|
|
10059
9957
|
|
|
10060
9958
|
<li class="md-nav__item">
|
|
10061
|
-
<a href="#
|
|
9959
|
+
<a href="#added_4" class="md-nav__link">
|
|
10062
9960
|
<span class="md-ellipsis">
|
|
10063
9961
|
Added
|
|
10064
9962
|
</span>
|
|
@@ -10076,7 +9974,7 @@
|
|
|
10076
9974
|
</li>
|
|
10077
9975
|
|
|
10078
9976
|
<li class="md-nav__item">
|
|
10079
|
-
<a href="#
|
|
9977
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
10080
9978
|
<span class="md-ellipsis">
|
|
10081
9979
|
Fixed
|
|
10082
9980
|
</span>
|
|
@@ -10085,7 +9983,7 @@
|
|
|
10085
9983
|
</li>
|
|
10086
9984
|
|
|
10087
9985
|
<li class="md-nav__item">
|
|
10088
|
-
<a href="#
|
|
9986
|
+
<a href="#documentation_4" class="md-nav__link">
|
|
10089
9987
|
<span class="md-ellipsis">
|
|
10090
9988
|
Documentation
|
|
10091
9989
|
</span>
|
|
@@ -10127,7 +10025,7 @@
|
|
|
10127
10025
|
</li>
|
|
10128
10026
|
|
|
10129
10027
|
<li class="md-nav__item">
|
|
10130
|
-
<a href="#
|
|
10028
|
+
<a href="#added_5" class="md-nav__link">
|
|
10131
10029
|
<span class="md-ellipsis">
|
|
10132
10030
|
Added
|
|
10133
10031
|
</span>
|
|
@@ -10145,7 +10043,7 @@
|
|
|
10145
10043
|
</li>
|
|
10146
10044
|
|
|
10147
10045
|
<li class="md-nav__item">
|
|
10148
|
-
<a href="#
|
|
10046
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
10149
10047
|
<span class="md-ellipsis">
|
|
10150
10048
|
Fixed
|
|
10151
10049
|
</span>
|
|
@@ -10154,7 +10052,7 @@
|
|
|
10154
10052
|
</li>
|
|
10155
10053
|
|
|
10156
10054
|
<li class="md-nav__item">
|
|
10157
|
-
<a href="#
|
|
10055
|
+
<a href="#documentation_5" class="md-nav__link">
|
|
10158
10056
|
<span class="md-ellipsis">
|
|
10159
10057
|
Documentation
|
|
10160
10058
|
</span>
|
|
@@ -10196,7 +10094,7 @@
|
|
|
10196
10094
|
</li>
|
|
10197
10095
|
|
|
10198
10096
|
<li class="md-nav__item">
|
|
10199
|
-
<a href="#
|
|
10097
|
+
<a href="#added_6" class="md-nav__link">
|
|
10200
10098
|
<span class="md-ellipsis">
|
|
10201
10099
|
Added
|
|
10202
10100
|
</span>
|
|
@@ -10214,7 +10112,7 @@
|
|
|
10214
10112
|
</li>
|
|
10215
10113
|
|
|
10216
10114
|
<li class="md-nav__item">
|
|
10217
|
-
<a href="#
|
|
10115
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
10218
10116
|
<span class="md-ellipsis">
|
|
10219
10117
|
Fixed
|
|
10220
10118
|
</span>
|
|
@@ -10223,7 +10121,7 @@
|
|
|
10223
10121
|
</li>
|
|
10224
10122
|
|
|
10225
10123
|
<li class="md-nav__item">
|
|
10226
|
-
<a href="#
|
|
10124
|
+
<a href="#dependencies_2" class="md-nav__link">
|
|
10227
10125
|
<span class="md-ellipsis">
|
|
10228
10126
|
Dependencies
|
|
10229
10127
|
</span>
|
|
@@ -10232,7 +10130,7 @@
|
|
|
10232
10130
|
</li>
|
|
10233
10131
|
|
|
10234
10132
|
<li class="md-nav__item">
|
|
10235
|
-
<a href="#
|
|
10133
|
+
<a href="#documentation_6" class="md-nav__link">
|
|
10236
10134
|
<span class="md-ellipsis">
|
|
10237
10135
|
Documentation
|
|
10238
10136
|
</span>
|
|
@@ -10265,7 +10163,7 @@
|
|
|
10265
10163
|
<ul class="md-nav__list">
|
|
10266
10164
|
|
|
10267
10165
|
<li class="md-nav__item">
|
|
10268
|
-
<a href="#
|
|
10166
|
+
<a href="#added_7" class="md-nav__link">
|
|
10269
10167
|
<span class="md-ellipsis">
|
|
10270
10168
|
Added
|
|
10271
10169
|
</span>
|
|
@@ -10283,7 +10181,7 @@
|
|
|
10283
10181
|
</li>
|
|
10284
10182
|
|
|
10285
10183
|
<li class="md-nav__item">
|
|
10286
|
-
<a href="#
|
|
10184
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
10287
10185
|
<span class="md-ellipsis">
|
|
10288
10186
|
Fixed
|
|
10289
10187
|
</span>
|
|
@@ -10292,7 +10190,7 @@
|
|
|
10292
10190
|
</li>
|
|
10293
10191
|
|
|
10294
10192
|
<li class="md-nav__item">
|
|
10295
|
-
<a href="#
|
|
10193
|
+
<a href="#dependencies_3" class="md-nav__link">
|
|
10296
10194
|
<span class="md-ellipsis">
|
|
10297
10195
|
Dependencies
|
|
10298
10196
|
</span>
|
|
@@ -10325,7 +10223,7 @@
|
|
|
10325
10223
|
<ul class="md-nav__list">
|
|
10326
10224
|
|
|
10327
10225
|
<li class="md-nav__item">
|
|
10328
|
-
<a href="#
|
|
10226
|
+
<a href="#added_8" class="md-nav__link">
|
|
10329
10227
|
<span class="md-ellipsis">
|
|
10330
10228
|
Added
|
|
10331
10229
|
</span>
|
|
@@ -10361,7 +10259,7 @@
|
|
|
10361
10259
|
</li>
|
|
10362
10260
|
|
|
10363
10261
|
<li class="md-nav__item">
|
|
10364
|
-
<a href="#
|
|
10262
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
10365
10263
|
<span class="md-ellipsis">
|
|
10366
10264
|
Fixed
|
|
10367
10265
|
</span>
|
|
@@ -10370,7 +10268,7 @@
|
|
|
10370
10268
|
</li>
|
|
10371
10269
|
|
|
10372
10270
|
<li class="md-nav__item">
|
|
10373
|
-
<a href="#
|
|
10271
|
+
<a href="#dependencies_4" class="md-nav__link">
|
|
10374
10272
|
<span class="md-ellipsis">
|
|
10375
10273
|
Dependencies
|
|
10376
10274
|
</span>
|
|
@@ -10379,7 +10277,7 @@
|
|
|
10379
10277
|
</li>
|
|
10380
10278
|
|
|
10381
10279
|
<li class="md-nav__item">
|
|
10382
|
-
<a href="#
|
|
10280
|
+
<a href="#documentation_7" class="md-nav__link">
|
|
10383
10281
|
<span class="md-ellipsis">
|
|
10384
10282
|
Documentation
|
|
10385
10283
|
</span>
|
|
@@ -10457,59 +10355,24 @@
|
|
|
10457
10355
|
<h4 id="standardization-of-max_length-on-all-charfields-2906">Standardization of <code>max_length</code> on all Charfields (<a href="https://github.com/nautobot/nautobot/issues/2906">#2906</a>)<a class="headerlink" href="#standardization-of-max_length-on-all-charfields-2906" title="Permanent link">¶</a></h4>
|
|
10458
10356
|
<p>Model CharFields' <code>max_length</code> attributes have been standardized globally to have at least 255 characters except where a shorter <code>max_length</code> is explicitly justified.</p>
|
|
10459
10357
|
<!-- towncrier release notes start -->
|
|
10460
|
-
<h2 id="v229-2024-08-05">v2.2.9 (2024-08-05)<a class="headerlink" href="#v229-2024-08-05" title="Permanent link">¶</a></h2>
|
|
10461
|
-
<h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">¶</a></h3>
|
|
10462
|
-
<ul>
|
|
10463
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5965">#5965</a> - Added missing controller references for DeviceRedundancyGroup in the UI.</li>
|
|
10464
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5980">#5980</a> - Added caching to <code>FeatureQuery().get_choices()</code> and <code>FeatureQuery().list_subclasses()</code>.</li>
|
|
10465
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6029">#6029</a> - Added environment variable support for setting <code>CELERY_WORKER_PREFETCH_MULTIPLIER</code>.</li>
|
|
10466
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6030">#6030</a> - Added links from the Job list and detail views to quickly filter the list of Job Results to the corresponding Job.</li>
|
|
10467
|
-
</ul>
|
|
10468
|
-
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
10469
|
-
<ul>
|
|
10470
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5775">#5775</a> - Reintroduced <code>Add IP Address</code> button to VirtualMachine Interface table.</li>
|
|
10471
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5785">#5785</a> - Fixed Scheduled Jobs not respecting Job Soft / Hard Time Limit.</li>
|
|
10472
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5796">#5796</a> - Added missing validation to ensure that a DeviceBay can only contain Devices with a <code>subdevice_role</code> of <code>child</code>.</li>
|
|
10473
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5811">#5811</a> - Fixed broken UI and added error message when submitting IPAddressAssignForm without selecting any IPAddress.</li>
|
|
10474
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5812">#5812</a> - Fixed CSV file upload handling of "UTF-8 with BOM" encoding.</li>
|
|
10475
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5904">#5904</a> - Fixed performance of JobResults UI when thousands of JobLogEntries are present.</li>
|
|
10476
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5904">#5904</a> - Fixed performance when Bulk Importing large csv files.</li>
|
|
10477
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5912">#5912</a> - Fixed incorrect <code>clean()</code> behavior on <code>IPAddress</code> that caused certain uniqueness violations to not be caught until <code>save()</code>.</li>
|
|
10478
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5948">#5948</a> - Fixed table overflow.</li>
|
|
10479
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5980">#5980</a> - Improved performance of GraphQL queries by no longer unnecessarily creating <code>FilterSet</code> instances when no filter is present.</li>
|
|
10480
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5992">#5992</a> - Added signal to clear relevant content-type caches after running migrations.</li>
|
|
10481
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6022">#6022</a> - Fixed incorrect labels for derived filters (<code>tenant__n</code>, <code>tenant__isw</code>, etc.) when the base filter (<code>tenant</code>, etc.) has a custom label.</li>
|
|
10482
|
-
</ul>
|
|
10483
|
-
<h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">¶</a></h3>
|
|
10484
|
-
<ul>
|
|
10485
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6010">#6010</a> - Pinned <code>django-storages</code> temporarily to 1.14.3 due to an <a href="https://github.com/revsys/django-health-check/issues/434">incompatibility</a> between <code>django-health-check</code> and version 1.14.4 of <code>django-storages</code>.</li>
|
|
10486
|
-
</ul>
|
|
10487
|
-
<h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">¶</a></h3>
|
|
10488
|
-
<ul>
|
|
10489
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5949">#5949</a> - Fixed NewBranch job code in documentation.</li>
|
|
10490
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5958">#5958</a> - Added an example job that uses a custom template to render the job form.</li>
|
|
10491
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5959">#5959</a> - Fixed documentation structure and added documentation on contributing documentation updates.</li>
|
|
10492
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5971">#5971</a> - Added documentation for registering jobs from Git Repositories.</li>
|
|
10493
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6024">#6024</a> - Added documentation for the <code>nautobot-server validate_models</code> command.</li>
|
|
10494
|
-
</ul>
|
|
10495
10358
|
<h2 id="v228-2024-07-22">v2.2.8 (2024-07-22)<a class="headerlink" href="#v228-2024-07-22" title="Permanent link">¶</a></h2>
|
|
10496
10359
|
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
10497
10360
|
<ul>
|
|
10498
10361
|
<li><a href="https://github.com/nautobot/nautobot/issues/5911">#5911</a> - Updated <code>zipp</code> to <code>3.19.1</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>
|
|
10499
10362
|
</ul>
|
|
10500
|
-
<h3 id="
|
|
10363
|
+
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
10501
10364
|
<ul>
|
|
10502
10365
|
<li><a href="https://github.com/nautobot/nautobot/issues/5569">#5569</a> - Fixed relationship required to ignore objects that do not match the related filter.</li>
|
|
10503
10366
|
<li><a href="https://github.com/nautobot/nautobot/issues/5613">#5613</a> - Fixed intermittent failure in integration test for dynamic groups.</li>
|
|
10504
10367
|
<li><a href="https://github.com/nautobot/nautobot/issues/5906">#5906</a> - Added support for filtering in GraphQL of objects identified by a many-to-many relation (<code>Location.prefixes</code>, <code>Prefix.locations</code>, etc.)</li>
|
|
10505
10368
|
<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>
|
|
10506
10369
|
</ul>
|
|
10507
|
-
<h3 id="
|
|
10370
|
+
<h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">¶</a></h3>
|
|
10508
10371
|
<ul>
|
|
10509
10372
|
<li><a href="https://github.com/nautobot/nautobot/issues/5833">#5833</a> - Updated dependency <code>social-auth-app-django</code> to <code>~5.4.2</code>.</li>
|
|
10510
10373
|
<li><a href="https://github.com/nautobot/nautobot/issues/5833">#5833</a> - Updated optional dependency <code>django-storages</code> to <code>~1.14.4</code>.</li>
|
|
10511
10374
|
</ul>
|
|
10512
|
-
<h3 id="
|
|
10375
|
+
<h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">¶</a></h3>
|
|
10513
10376
|
<ul>
|
|
10514
10377
|
<li><a href="https://github.com/nautobot/nautobot/issues/5833">#5833</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.29</code>.</li>
|
|
10515
10378
|
<li><a href="https://github.com/nautobot/nautobot/issues/5874">#5874</a> - Updated documentation regarding Nautobot on Ubuntu 24.04.</li>
|
|
@@ -10523,7 +10386,7 @@
|
|
|
10523
10386
|
<ul>
|
|
10524
10387
|
<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>
|
|
10525
10388
|
</ul>
|
|
10526
|
-
<h3 id="
|
|
10389
|
+
<h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">¶</a></h3>
|
|
10527
10390
|
<ul>
|
|
10528
10391
|
<li><a href="https://github.com/nautobot/nautobot/issues/4237">#4237</a> - Fixed display issue with multiple tags filter on dynamic groups. Multiple Tags are now correctly displayed with an AND.</li>
|
|
10529
10392
|
<li><a href="https://github.com/nautobot/nautobot/issues/5093">#5093</a> - Fixed blank page redirect when syncing or running a dry run on a GIT Repo with no workers available; now redirects to the GIT Repo Detail page with an error message.</li>
|
|
@@ -10531,7 +10394,7 @@
|
|
|
10531
10394
|
<li><a href="https://github.com/nautobot/nautobot/issues/5832">#5832</a> - Fixed lack of API versioning of responses to a POST to <code>/api/ipam/prefixes/<id>/available-prefixes/</code> to allocate child prefixes of a prefix.</li>
|
|
10532
10395
|
<li><a href="https://github.com/nautobot/nautobot/issues/5832">#5832</a> - Fixed incorrect OpenAPI schema for <code>/api/ipam/prefixes/<id>/available-prefixes/</code> and <code>/api/ipam/prefixes/<id>/available-ips/</code>.</li>
|
|
10533
10396
|
</ul>
|
|
10534
|
-
<h3 id="
|
|
10397
|
+
<h3 id="dependencies_1">Dependencies<a class="headerlink" href="#dependencies_1" title="Permanent link">¶</a></h3>
|
|
10535
10398
|
<ul>
|
|
10536
10399
|
<li><a href="https://github.com/nautobot/nautobot/issues/5518">#5518</a> - Updated <code>drf-spectacular</code> to version <code>0.27.2</code>.</li>
|
|
10537
10400
|
<li><a href="https://github.com/nautobot/nautobot/pull/5896">#5896</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>
|
|
@@ -10546,7 +10409,7 @@
|
|
|
10546
10409
|
<ul>
|
|
10547
10410
|
<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>
|
|
10548
10411
|
</ul>
|
|
10549
|
-
<h3 id="
|
|
10412
|
+
<h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">¶</a></h3>
|
|
10550
10413
|
<ul>
|
|
10551
10414
|
<li><a href="https://github.com/nautobot/nautobot/issues/5550">#5550</a> - Added support for specifying a tag or a commit hash as the GitRepository <code>branch</code> value.</li>
|
|
10552
10415
|
<li><a href="https://github.com/nautobot/nautobot/issues/5550">#5550</a> - Added an <code>enabled</code> flag to the JobButton class; disabled JobButtons will not appear in the UI.</li>
|
|
@@ -10557,7 +10420,7 @@
|
|
|
10557
10420
|
<ul>
|
|
10558
10421
|
<li><a href="https://github.com/nautobot/nautobot/issues/5550">#5550</a> - Changed the behavior on removal of a previously-installed Job class to additionally auto-disable any JobButtons, JobHooks, and ScheduledJobs referencing this class.</li>
|
|
10559
10422
|
</ul>
|
|
10560
|
-
<h3 id="
|
|
10423
|
+
<h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">¶</a></h3>
|
|
10561
10424
|
<ul>
|
|
10562
10425
|
<li><a href="https://github.com/nautobot/nautobot/issues/5550">#5550</a> - Fixed an issue where config-contexts and export-templates sourced from a Git repository might not be automatically deleted from Nautobot after removing them from the repository and resyncing it.</li>
|
|
10563
10426
|
<li><a href="https://github.com/nautobot/nautobot/issues/5550">#5550</a> - Fixed an exception that might be raised when performing a Git repository "dry-run" sync if certain types of diffs are present.</li>
|
|
@@ -10565,7 +10428,7 @@
|
|
|
10565
10428
|
<li><a href="https://github.com/nautobot/nautobot/issues/5809">#5809</a> - Fixed missing support for the GitRepository model in GraphQL.</li>
|
|
10566
10429
|
<li><a href="https://github.com/nautobot/nautobot/issues/5819">#5819</a> - Fixed inability to use bare (local-DNS) hostnames when specifying a GitRepository remote URL.</li>
|
|
10567
10430
|
</ul>
|
|
10568
|
-
<h3 id="
|
|
10431
|
+
<h3 id="documentation_1">Documentation<a class="headerlink" href="#documentation_1" title="Permanent link">¶</a></h3>
|
|
10569
10432
|
<ul>
|
|
10570
10433
|
<li><a href="https://github.com/nautobot/nautobot/issues/5726">#5726</a> - Updated, cleaned up, and separated out the main landing page for Nautobot docs.</li>
|
|
10571
10434
|
<li><a href="https://github.com/nautobot/nautobot/issues/5752">#5752</a> - Corrected incorrect entry for <code>nautobot.utilities.ordering</code> in <code>v2-code-location-changes</code> table.</li>
|
|
@@ -10583,7 +10446,7 @@
|
|
|
10583
10446
|
<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>
|
|
10584
10447
|
<li><a href="https://github.com/nautobot/nautobot/issues/5757">#5757</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>
|
|
10585
10448
|
</ul>
|
|
10586
|
-
<h3 id="
|
|
10449
|
+
<h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">¶</a></h3>
|
|
10587
10450
|
<ul>
|
|
10588
10451
|
<li><a href="https://github.com/nautobot/nautobot/issues/5588">#5588</a> - Added "Add VRFs" and "Remove VRFs" fields to <code>PrefixBulkEditForm</code>.</li>
|
|
10589
10452
|
<li><a href="https://github.com/nautobot/nautobot/issues/5588">#5588</a> - Added "Add Prefixes" and "Remove Prefixes" fields to <code>VRFBulkEditForm</code>.</li>
|
|
@@ -10595,7 +10458,7 @@
|
|
|
10595
10458
|
<ul>
|
|
10596
10459
|
<li><a href="https://github.com/nautobot/nautobot/issues/5690">#5690</a> - Removed deprecated <code>CustomFieldFilterForm</code> alias of <code>CustomFieldModelFilterFormMixin</code> as this would have caused confusion with the newly added <code>CustomFieldFilterForm</code> class providing filtering support for the Custom Fields list view.</li>
|
|
10597
10460
|
</ul>
|
|
10598
|
-
<h3 id="
|
|
10461
|
+
<h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">¶</a></h3>
|
|
10599
10462
|
<ul>
|
|
10600
10463
|
<li><a href="https://github.com/nautobot/nautobot/issues/5564">#5564</a> - Fixed <code>ContactAssociationFilterSet.associated_object_type</code> not using the right filter field.</li>
|
|
10601
10464
|
<li><a href="https://github.com/nautobot/nautobot/issues/5669">#5669</a> - Fixed <code>AttributeError</code> thrown when deleting software versions or images from list views.</li>
|
|
@@ -10608,7 +10471,7 @@
|
|
|
10608
10471
|
<li><a href="https://github.com/nautobot/nautobot/issues/5738">#5738</a> - Fixed incorrect API query parameters when selecting VLANs to apply to a VM Interface.</li>
|
|
10609
10472
|
<li><a href="https://github.com/nautobot/nautobot/issues/5738">#5738</a> - Fixed incorrect query parameters when accessing or creating Clusters from a Cluster Type detail view.</li>
|
|
10610
10473
|
</ul>
|
|
10611
|
-
<h3 id="
|
|
10474
|
+
<h3 id="documentation_2">Documentation<a class="headerlink" href="#documentation_2" title="Permanent link">¶</a></h3>
|
|
10612
10475
|
<ul>
|
|
10613
10476
|
<li><a href="https://github.com/nautobot/nautobot/issues/5699">#5699</a> - Updated to <code>mkdocs~1.6.0</code> and <code>mkdocs-material~9.5.23</code>.</li>
|
|
10614
10477
|
<li><a href="https://github.com/nautobot/nautobot/issues/5699">#5699</a> - Fixed a number of broken links within the documentation.</li>
|
|
@@ -10624,19 +10487,19 @@
|
|
|
10624
10487
|
<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>
|
|
10625
10488
|
<li><a href="https://github.com/nautobot/nautobot/issues/5672">#5672</a> - Updated <code>Jinja2</code> dependency to <code>3.1.4</code> to address <code>CVE-2024-34064</code>.</li>
|
|
10626
10489
|
</ul>
|
|
10627
|
-
<h3 id="
|
|
10490
|
+
<h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">¶</a></h3>
|
|
10628
10491
|
<ul>
|
|
10629
10492
|
<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>
|
|
10630
10493
|
<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>
|
|
10631
10494
|
</ul>
|
|
10632
|
-
<h3 id="
|
|
10495
|
+
<h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">¶</a></h3>
|
|
10633
10496
|
<ul>
|
|
10634
10497
|
<li><a href="https://github.com/nautobot/nautobot/issues/4986">#4986</a> - Fixed inconsistent use of super causing <code>active_tab</code> context to be missing from several views.</li>
|
|
10635
10498
|
<li><a href="https://github.com/nautobot/nautobot/issues/5644">#5644</a> - Made the uniqueness constraints between the ContactAssociation model and the related API serializer consistent.</li>
|
|
10636
10499
|
<li><a href="https://github.com/nautobot/nautobot/issues/5684">#5684</a> - Fixed standard CSV export when using export templates.</li>
|
|
10637
10500
|
<li><a href="https://github.com/nautobot/nautobot/issues/5689">#5689</a> - Fixed change logging for bulk delete operations so that user is included in the log.</li>
|
|
10638
10501
|
</ul>
|
|
10639
|
-
<h3 id="
|
|
10502
|
+
<h3 id="documentation_3">Documentation<a class="headerlink" href="#documentation_3" title="Permanent link">¶</a></h3>
|
|
10640
10503
|
<ul>
|
|
10641
10504
|
<li><a href="https://github.com/nautobot/nautobot/issues/5661">#5661</a> - Updated documentation to organize installation instructions and provide easier to use functions from mkdocs.</li>
|
|
10642
10505
|
</ul>
|
|
@@ -10652,7 +10515,7 @@
|
|
|
10652
10515
|
<li><a href="https://github.com/nautobot/nautobot/issues/5624">#5624</a> - Updated <code>social-auth-app-django</code> dependency to <code>~5.4.1</code> to address <code>CVE-2024-32879</code>.</li>
|
|
10653
10516
|
<li><a href="https://github.com/nautobot/nautobot/issues/5646">#5646</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>
|
|
10654
10517
|
</ul>
|
|
10655
|
-
<h3 id="
|
|
10518
|
+
<h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">¶</a></h3>
|
|
10656
10519
|
<ul>
|
|
10657
10520
|
<li><a href="https://github.com/nautobot/nautobot/issues/2946">#2946</a> - Added custom link support for interfaces, console ports, console server ports, power ports, power outlets, front ports, rear ports, device bays, and inventory items.</li>
|
|
10658
10521
|
<li><a href="https://github.com/nautobot/nautobot/issues/5034">#5034</a> - Added a view to convert location contact information to contacts or teams.</li>
|
|
@@ -10664,7 +10527,7 @@
|
|
|
10664
10527
|
<ul>
|
|
10665
10528
|
<li><a href="https://github.com/nautobot/nautobot/issues/5498">#5498</a> - Changed the <code>nautobot.extras.jobs.Job</code> class to no longer be a subclass of <code>celery.tasks.Task</code>.</li>
|
|
10666
10529
|
</ul>
|
|
10667
|
-
<h3 id="
|
|
10530
|
+
<h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">¶</a></h3>
|
|
10668
10531
|
<ul>
|
|
10669
10532
|
<li><a href="https://github.com/nautobot/nautobot/issues/5513">#5513</a> - Fixed missing <code>location</code> field in <code>Prefix</code> and <code>VLAN</code> GraphQL schema.</li>
|
|
10670
10533
|
<li><a href="https://github.com/nautobot/nautobot/issues/5513">#5513</a> - Restored ability to filter Prefix and VLAN objects at the ORM level by <code>location</code>.</li>
|
|
@@ -10677,7 +10540,7 @@
|
|
|
10677
10540
|
<li><a href="https://github.com/nautobot/nautobot/issues/5642">#5642</a> - Fixed some cases where stale Job code might be present when Jobs are sourced from <code>JOBS_ROOT</code> or a Git repository.</li>
|
|
10678
10541
|
<li><a href="https://github.com/nautobot/nautobot/issues/5642">#5642</a> - Fixed incorrect handling of Job <code>kwargs</code> when dry-running a job approval request via the REST API.</li>
|
|
10679
10542
|
</ul>
|
|
10680
|
-
<h3 id="
|
|
10543
|
+
<h3 id="documentation_4">Documentation<a class="headerlink" href="#documentation_4" title="Permanent link">¶</a></h3>
|
|
10681
10544
|
<ul>
|
|
10682
10545
|
<li><a href="https://github.com/nautobot/nautobot/issues/5094">#5094</a> - Added "Reserved Attribute Names" section to the Jobs developer documentation.</li>
|
|
10683
10546
|
<li><a href="https://github.com/nautobot/nautobot/issues/5608">#5608</a> - Updated VLAN documentation with a recommendation for modeling of VLANs with respect to Locations.</li>
|
|
@@ -10695,7 +10558,7 @@
|
|
|
10695
10558
|
<ul>
|
|
10696
10559
|
<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>
|
|
10697
10560
|
</ul>
|
|
10698
|
-
<h3 id="
|
|
10561
|
+
<h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">¶</a></h3>
|
|
10699
10562
|
<ul>
|
|
10700
10563
|
<li><a href="https://github.com/nautobot/nautobot/issues/2459">#2459</a> - Added <code>nautobot.extras.utils.bulk_delete_with_bulk_change_logging</code> helper function for improving performance on bulk delete.</li>
|
|
10701
10564
|
<li><a href="https://github.com/nautobot/nautobot/issues/2459">#2459</a> - Added <code>nautobot.extras.context_managers.deferred_change_logging_for_bulk_operation</code> context manager for improving performance on bulk update.</li>
|
|
@@ -10706,12 +10569,12 @@
|
|
|
10706
10569
|
<li><a href="https://github.com/nautobot/nautobot/issues/5568">#5568</a> - Added hyperlink to the total device count number under device family.</li>
|
|
10707
10570
|
<li><a href="https://github.com/nautobot/nautobot/issues/5589">#5589</a> - Fixed an invalid Javascript operator in the LLDP neighbor view.</li>
|
|
10708
10571
|
</ul>
|
|
10709
|
-
<h3 id="
|
|
10572
|
+
<h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">¶</a></h3>
|
|
10710
10573
|
<ul>
|
|
10711
10574
|
<li><a href="https://github.com/nautobot/nautobot/issues/5580">#5580</a> - Fixed bugs when assigning a VLAN to an Interface related to the recently introduced many-to-many relationship between VLANs and Locations.</li>
|
|
10712
10575
|
<li><a href="https://github.com/nautobot/nautobot/issues/5592">#5592</a> - Fixed plugins not loading when using Gunicorn.</li>
|
|
10713
10576
|
</ul>
|
|
10714
|
-
<h3 id="
|
|
10577
|
+
<h3 id="documentation_5">Documentation<a class="headerlink" href="#documentation_5" title="Permanent link">¶</a></h3>
|
|
10715
10578
|
<ul>
|
|
10716
10579
|
<li><a href="https://github.com/nautobot/nautobot/issues/5583">#5583</a> - Re-added release note content for v1.6.16 through v1.6.18.</li>
|
|
10717
10580
|
</ul>
|
|
@@ -10726,7 +10589,7 @@
|
|
|
10726
10589
|
<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>
|
|
10727
10590
|
<li><a href="https://github.com/nautobot/nautobot/issues/5561">#5561</a> - Updated <code>idna</code> to 3.7 due to CVE-2024-3651. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
10728
10591
|
</ul>
|
|
10729
|
-
<h3 id="
|
|
10592
|
+
<h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">¶</a></h3>
|
|
10730
10593
|
<ul>
|
|
10731
10594
|
<li><a href="https://github.com/nautobot/nautobot/issues/1631">#1631</a> - Added change logging for custom field background tasks.</li>
|
|
10732
10595
|
<li><a href="https://github.com/nautobot/nautobot/issues/5009">#5009</a> - Added the option to filter objects with select/multi-select custom fields based on the UUID of the defined custom field choice(s), for example <code>/api/dcim/locations/?cf_multiselect=1ea9237c-3ba7-4985-ba7e-6fd9e9bff813</code> as an alternative to <code>/api/dcim/locations/?cf_multiselect=some-choice-value</code>.</li>
|
|
@@ -10737,7 +10600,7 @@
|
|
|
10737
10600
|
<ul>
|
|
10738
10601
|
<li><a href="https://github.com/nautobot/nautobot/issues/5274">#5274</a> - Added a setting that changes all rack unit numbers to display a minimum of two digits in rack elevations.</li>
|
|
10739
10602
|
</ul>
|
|
10740
|
-
<h3 id="
|
|
10603
|
+
<h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">¶</a></h3>
|
|
10741
10604
|
<ul>
|
|
10742
10605
|
<li><a href="https://github.com/nautobot/nautobot/issues/5469">#5469</a> - Fixed contacts and teams not being included in the global search.</li>
|
|
10743
10606
|
<li><a href="https://github.com/nautobot/nautobot/issues/5489">#5489</a> - Fixed REST API for Contact and Team incorrectly marking the <code>phone</code> and <code>email</code> fields as mandatory.</li>
|
|
@@ -10747,14 +10610,14 @@
|
|
|
10747
10610
|
<li><a href="https://github.com/nautobot/nautobot/issues/5527">#5527</a> - Fixed incorrect "members" links in Virtual Chassis list view.</li>
|
|
10748
10611
|
<li><a href="https://github.com/nautobot/nautobot/issues/5531">#5531</a> - Re-added <code>nautobot.setup()</code> function mistakenly removed in 2.2.0.</li>
|
|
10749
10612
|
</ul>
|
|
10750
|
-
<h3 id="
|
|
10613
|
+
<h3 id="dependencies_2">Dependencies<a class="headerlink" href="#dependencies_2" title="Permanent link">¶</a></h3>
|
|
10751
10614
|
<ul>
|
|
10752
10615
|
<li><a href="https://github.com/nautobot/nautobot/issues/5495">#5495</a> - Changed jsonschema version constraint from <code>>=4.7.0,<4.19.0</code> to <code>^4.7.0</code>.</li>
|
|
10753
10616
|
<li><a href="https://github.com/nautobot/nautobot/issues/5517">#5517</a> - Updated <code>djangorestframework</code> to <code>~3.15.1</code>.</li>
|
|
10754
10617
|
<li><a href="https://github.com/nautobot/nautobot/issues/5521">#5521</a> - Updated most dependencies to the latest versions available as of 2024-04-01.</li>
|
|
10755
10618
|
<li><a href="https://github.com/nautobot/nautobot/issues/5543">#5543</a> - Updated <code>jquery</code> to version <code>3.7.1</code>.</li>
|
|
10756
10619
|
</ul>
|
|
10757
|
-
<h3 id="
|
|
10620
|
+
<h3 id="documentation_6">Documentation<a class="headerlink" href="#documentation_6" title="Permanent link">¶</a></h3>
|
|
10758
10621
|
<ul>
|
|
10759
10622
|
<li><a href="https://github.com/nautobot/nautobot/issues/5189">#5189</a> - Added "Model Development Checklist" to the core developer documentation.</li>
|
|
10760
10623
|
<li><a href="https://github.com/nautobot/nautobot/issues/5189">#5189</a> - Merged "Extending Models" documentation into the "Model Development Checklist" documentation.</li>
|
|
@@ -10770,7 +10633,7 @@
|
|
|
10770
10633
|
<p class="admonition-title">Warning</p>
|
|
10771
10634
|
<p>Upgrading from beta releases to final releases is never recommended for Nautobot; in the case of 2.2.0b1 to 2.2.0 several data models and database migrations have been modified (see <a href="https://github.com/nautobot/nautobot/issues/5454">#5454</a>) between the two releases, and so upgrading in place from 2.2.0b1 to 2.2.0 <strong>will not work</strong>.</p>
|
|
10772
10635
|
</div>
|
|
10773
|
-
<h3 id="
|
|
10636
|
+
<h3 id="added_7">Added<a class="headerlink" href="#added_7" title="Permanent link">¶</a></h3>
|
|
10774
10637
|
<ul>
|
|
10775
10638
|
<li><a href="https://github.com/nautobot/nautobot/issues/4811">#4811</a> - Added a new generic test case (<code>test_table_with_indentation_is_removed_on_filter_or_sort</code>) to <code>ListObjectsViewTestCase</code> to test that the tree hierarchy is correctly removed on TreeModel list views when sorting or filtering is applied. This test will also run in these subclasses of the <code>ListObjectsViewTestCase</code>: <code>PrimaryObjectViewTestCase</code>, <code>OrganizationalObjectViewTestCase</code>, and <code>DeviceComponentViewTestCase</code>.</li>
|
|
10776
10639
|
<li><a href="https://github.com/nautobot/nautobot/issues/5034">#5034</a> - Added a management command (<code>nautobot-server migrate_location_contacts</code>) to help migrate the Location <code>contact_name</code>, <code>contact_email</code> and <code>contact_phone</code> fields to Contact and Teams models.</li>
|
|
@@ -10788,14 +10651,14 @@
|
|
|
10788
10651
|
<li><a href="https://github.com/nautobot/nautobot/issues/5475">#5475</a> - Changed the behavior of Prefix table and other Tree Model tables: now after filtering is applied, all hierarchy indentations are removed.</li>
|
|
10789
10652
|
<li><a href="https://github.com/nautobot/nautobot/issues/5487">#5487</a> - Moved some nav menu items around to make better logical sense and to allow quicker access to more commonly accessed features.</li>
|
|
10790
10653
|
</ul>
|
|
10791
|
-
<h3 id="
|
|
10654
|
+
<h3 id="fixed_8">Fixed<a class="headerlink" href="#fixed_8" title="Permanent link">¶</a></h3>
|
|
10792
10655
|
<ul>
|
|
10793
10656
|
<li><a href="https://github.com/nautobot/nautobot/issues/5415">#5415</a> - Fixed Team(s) field not pre-populating when editing a Contact.</li>
|
|
10794
10657
|
<li><a href="https://github.com/nautobot/nautobot/issues/5431">#5431</a> - Fixed Roles API response containing duplicate entries when filtering on more than one <code>content_types</code> value.</li>
|
|
10795
10658
|
<li><a href="https://github.com/nautobot/nautobot/issues/5431">#5431</a> - Fixed Providers API response containing duplicate entries when filtering on more than one <code>location</code> value.</li>
|
|
10796
10659
|
<li><a href="https://github.com/nautobot/nautobot/issues/5440">#5440</a> - Fixed <code>Cannot resolve keyword 'task_id' into field</code> error when calling <code>nautobot-server celery result <task_id></code>.</li>
|
|
10797
10660
|
</ul>
|
|
10798
|
-
<h3 id="
|
|
10661
|
+
<h3 id="dependencies_3">Dependencies<a class="headerlink" href="#dependencies_3" title="Permanent link">¶</a></h3>
|
|
10799
10662
|
<ul>
|
|
10800
10663
|
<li><a href="https://github.com/nautobot/nautobot/issues/4583">#4583</a> - Updated pinned version of <code>social-auth-core</code> to remove dependency on <code>python-jose</code> & it's dependency on <code>ecdsa</code>.</li>
|
|
10801
10664
|
</ul>
|
|
@@ -10805,7 +10668,7 @@
|
|
|
10805
10668
|
<li><a href="https://github.com/nautobot/nautobot/issues/5435">#5435</a> - Added <code>--parallel-workers</code> argument to <code>invoke unittest</code>.</li>
|
|
10806
10669
|
</ul>
|
|
10807
10670
|
<h2 id="v220-beta1-2024-03-19">v2.2.0-beta.1 (2024-03-19)<a class="headerlink" href="#v220-beta1-2024-03-19" title="Permanent link">¶</a></h2>
|
|
10808
|
-
<h3 id="
|
|
10671
|
+
<h3 id="added_8">Added<a class="headerlink" href="#added_8" title="Permanent link">¶</a></h3>
|
|
10809
10672
|
<ul>
|
|
10810
10673
|
<li><a href="https://github.com/nautobot/nautobot/issues/1">#1</a> - Added new models for software versions and software image files.</li>
|
|
10811
10674
|
<li><a href="https://github.com/nautobot/nautobot/issues/1">#1</a> - Added a many-to-many relationship from <code>Device</code> to <code>SoftwareImageFile</code>.</li>
|
|
@@ -10874,7 +10737,7 @@
|
|
|
10874
10737
|
<li><a href="https://github.com/nautobot/nautobot/issues/5064">#5064</a> - Removed the requirement for <code>ViewTestCases</code> subclasses to define <code>csv_data</code> for testing bulk-import views, as this functionality is now covered by a generic system Job.</li>
|
|
10875
10738
|
<li><a href="https://github.com/nautobot/nautobot/issues/5116">#5116</a> - Removed <code>logan</code>-derived application startup logic, simplifying the Nautobot startup code flow.</li>
|
|
10876
10739
|
</ul>
|
|
10877
|
-
<h3 id="
|
|
10740
|
+
<h3 id="fixed_9">Fixed<a class="headerlink" href="#fixed_9" title="Permanent link">¶</a></h3>
|
|
10878
10741
|
<ul>
|
|
10879
10742
|
<li><a href="https://github.com/nautobot/nautobot/issues/4334">#4334</a> - Fixed ordering of VLANs in the UI list view.</li>
|
|
10880
10743
|
<li><a href="https://github.com/nautobot/nautobot/issues/5064">#5064</a> - Fixed an exception in <code>Job.after_return()</code> if a Job with an optional <code>FileVar</code> was executed without supplying a value for that variable.</li>
|
|
@@ -10887,11 +10750,11 @@
|
|
|
10887
10750
|
<li><a href="https://github.com/nautobot/nautobot/issues/5298">#5298</a> - Fixed a <code>ValidationError</code> that was being thrown when a user logged out.</li>
|
|
10888
10751
|
<li><a href="https://github.com/nautobot/nautobot/issues/5298">#5298</a> - Fixed a case where viewing a completed JobResult that was missing a <code>date_done</code> value would cause the JobResult view to repeatedly refresh.</li>
|
|
10889
10752
|
</ul>
|
|
10890
|
-
<h3 id="
|
|
10753
|
+
<h3 id="dependencies_4">Dependencies<a class="headerlink" href="#dependencies_4" title="Permanent link">¶</a></h3>
|
|
10891
10754
|
<ul>
|
|
10892
10755
|
<li><a href="https://github.com/nautobot/nautobot/issues/5248">#5248</a> - Broadened <code>Markdown</code> dependency to permit versions up to 3.5.x.</li>
|
|
10893
10756
|
</ul>
|
|
10894
|
-
<h3 id="
|
|
10757
|
+
<h3 id="documentation_7">Documentation<a class="headerlink" href="#documentation_7" title="Permanent link">¶</a></h3>
|
|
10895
10758
|
<ul>
|
|
10896
10759
|
<li><a href="https://github.com/nautobot/nautobot/issues/5179">#5179</a> - Updated all documentation referencing the <code>example_plugin</code> to refer to the (renamed) <code>example_app</code>.</li>
|
|
10897
10760
|
<li><a href="https://github.com/nautobot/nautobot/issues/5179">#5179</a> - Replaced some "plugin" references in the documentation with "App" or "Nautobot App" as appropriate.</li>
|
|
@@ -11017,7 +10880,7 @@
|
|
|
11017
10880
|
|
|
11018
10881
|
|
|
11019
10882
|
<a href="https://blog.networktocode.com/blog/tags/nautobot" target="_blank" rel="noopener" title="Network to Code Blog" class="md-social__link">
|
|
11020
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.
|
|
10883
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 64c0-17.7 14.3-32 32-32 229.8 0 416 186.2 416 416 0 17.7-14.3 32-32 32s-32-14.3-32-32C384 253.6 226.4 96 32 96 14.3 96 0 81.7 0 64zm0 352a64 64 0 1 1 128 0 64 64 0 1 1-128 0zm32-256c159.1 0 288 128.9 288 288 0 17.7-14.3 32-32 32s-32-14.3-32-32c0-123.7-100.3-224-224-224-17.7 0-32-14.3-32-32s14.3-32 32-32z"/></svg>
|
|
11021
10884
|
</a>
|
|
11022
10885
|
|
|
11023
10886
|
|
|
@@ -11025,7 +10888,7 @@
|
|
|
11025
10888
|
|
|
11026
10889
|
|
|
11027
10890
|
<a href="https://www.youtube.com/playlist?list=PLjA0bhxgryJ2Ts4GJMDA-tPzVWEncv4pb" target="_blank" rel="noopener" title="Nautobot Videos" class="md-social__link">
|
|
11028
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.
|
|
10891
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z"/></svg>
|
|
11029
10892
|
</a>
|
|
11030
10893
|
|
|
11031
10894
|
|
|
@@ -11033,7 +10896,7 @@
|
|
|
11033
10896
|
|
|
11034
10897
|
|
|
11035
10898
|
<a href="https://www.networktocode.com/community/" target="_blank" rel="noopener" title="Network to Code Community" class="md-social__link">
|
|
11036
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.
|
|
10899
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M94.12 315.1c0 25.9-21.16 47.06-47.06 47.06S0 341 0 315.1c0-25.9 21.16-47.06 47.06-47.06h47.06v47.06zm23.72 0c0-25.9 21.16-47.06 47.06-47.06s47.06 21.16 47.06 47.06v117.84c0 25.9-21.16 47.06-47.06 47.06s-47.06-21.16-47.06-47.06V315.1zm47.06-188.98c-25.9 0-47.06-21.16-47.06-47.06S139 32 164.9 32s47.06 21.16 47.06 47.06v47.06H164.9zm0 23.72c25.9 0 47.06 21.16 47.06 47.06s-21.16 47.06-47.06 47.06H47.06C21.16 243.96 0 222.8 0 196.9s21.16-47.06 47.06-47.06H164.9zm188.98 47.06c0-25.9 21.16-47.06 47.06-47.06 25.9 0 47.06 21.16 47.06 47.06s-21.16 47.06-47.06 47.06h-47.06V196.9zm-23.72 0c0 25.9-21.16 47.06-47.06 47.06-25.9 0-47.06-21.16-47.06-47.06V79.06c0-25.9 21.16-47.06 47.06-47.06 25.9 0 47.06 21.16 47.06 47.06V196.9zM283.1 385.88c25.9 0 47.06 21.16 47.06 47.06 0 25.9-21.16 47.06-47.06 47.06-25.9 0-47.06-21.16-47.06-47.06v-47.06h47.06zm0-23.72c-25.9 0-47.06-21.16-47.06-47.06 0-25.9 21.16-47.06 47.06-47.06h117.84c25.9 0 47.06 21.16 47.06 47.06 0 25.9-21.16 47.06-47.06 47.06H283.1z"/></svg>
|
|
11037
10900
|
</a>
|
|
11038
10901
|
|
|
11039
10902
|
|
|
@@ -11041,7 +10904,7 @@
|
|
|
11041
10904
|
|
|
11042
10905
|
|
|
11043
10906
|
<a href="https://github.com/nautobot/nautobot" target="_blank" rel="noopener" title="GitHub Repo" class="md-social__link">
|
|
11044
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.
|
|
10907
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"/></svg>
|
|
11045
10908
|
</a>
|
|
11046
10909
|
|
|
11047
10910
|
|
|
@@ -11049,7 +10912,7 @@
|
|
|
11049
10912
|
|
|
11050
10913
|
|
|
11051
10914
|
<a href="https://twitter.com/networktocode" target="_blank" rel="noopener" title="Network to Code Twitter" class="md-social__link">
|
|
11052
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.
|
|
10915
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z"/></svg>
|
|
11053
10916
|
</a>
|
|
11054
10917
|
|
|
11055
10918
|
</div>
|