nautobot 2.3.0b1__py3-none-any.whl → 2.3.1__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 +2 -0
- nautobot/cloud/filters.py +3 -0
- nautobot/cloud/forms.py +8 -2
- nautobot/cloud/migrations/0001_initial.py +1 -1
- nautobot/cloud/models.py +1 -2
- nautobot/cloud/tables.py +1 -17
- nautobot/cloud/templates/cloud/cloudnetwork_retrieve.html +1 -7
- nautobot/cloud/templates/cloud/cloudresourcetype_retrieve.html +11 -0
- nautobot/cloud/templates/cloud/cloudservice_retrieve.html +4 -0
- nautobot/cloud/tests/test_filters.py +12 -0
- nautobot/cloud/tests/test_views.py +17 -0
- nautobot/cloud/views.py +1 -1
- nautobot/core/celery/__init__.py +5 -2
- nautobot/core/filters.py +15 -1
- nautobot/core/forms/forms.py +10 -2
- nautobot/core/graphql/generators.py +2 -2
- nautobot/core/graphql/schema.py +6 -14
- nautobot/core/jobs/__init__.py +4 -1
- nautobot/core/management/commands/generate_test_data.py +2 -2
- nautobot/core/models/__init__.py +2 -2
- nautobot/core/settings.py +13 -2
- nautobot/core/settings.yaml +16 -2
- nautobot/core/tables.py +3 -0
- nautobot/core/templates/generic/object_retrieve.html +6 -6
- nautobot/core/templates/inc/computed_fields/panel_data.html +36 -24
- nautobot/core/templates/inc/object_details_advanced_panel.html +1 -1
- nautobot/core/templates/nautobot_config.py.j2 +15 -0
- nautobot/core/testing/filters.py +12 -1
- nautobot/core/tests/integration/test_general_functionality.py +1 -1
- nautobot/core/tests/test_jobs.py +74 -1
- nautobot/core/views/__init__.py +1 -1
- nautobot/core/views/generic.py +1 -1
- nautobot/core/views/mixins.py +1 -1
- nautobot/core/views/utils.py +8 -6
- nautobot/dcim/factory.py +4 -1
- nautobot/dcim/filters/__init__.py +4 -0
- nautobot/dcim/forms.py +24 -0
- nautobot/dcim/migrations/0061_module_models.py +1 -0
- nautobot/dcim/models/device_components.py +7 -0
- nautobot/dcim/models/devices.py +18 -19
- nautobot/dcim/models/racks.py +0 -1
- nautobot/dcim/tables/devices.py +17 -3
- nautobot/dcim/tables/devicetypes.py +1 -1
- nautobot/dcim/templates/dcim/device/base.html +1 -1
- nautobot/dcim/templates/dcim/device.html +3 -3
- nautobot/dcim/templates/dcim/deviceredundancygroup_retrieve.html +6 -0
- nautobot/dcim/templates/dcim/moduletype_retrieve.html +17 -0
- nautobot/dcim/templates/dcim/softwareimagefile_retrieve.html +3 -3
- nautobot/dcim/tests/test_api.py +2 -0
- nautobot/dcim/tests/test_filters.py +14 -7
- nautobot/dcim/tests/test_forms.py +54 -0
- nautobot/dcim/tests/test_models.py +40 -1
- nautobot/dcim/tests/test_views.py +45 -2
- nautobot/dcim/views.py +4 -1
- nautobot/extras/api/serializers.py +0 -1
- nautobot/extras/api/views.py +7 -59
- nautobot/extras/factory.py +50 -12
- nautobot/extras/filters/__init__.py +4 -1
- nautobot/extras/forms/base.py +10 -4
- nautobot/extras/forms/forms.py +1 -0
- nautobot/extras/homepage.py +12 -2
- nautobot/extras/jobs.py +2 -2
- nautobot/extras/migrations/0111_metadata.py +4 -4
- nautobot/extras/migrations/0114_computedfield_grouping.py +17 -0
- nautobot/extras/models/customfields.py +54 -0
- nautobot/extras/models/jobs.py +83 -0
- nautobot/extras/models/metadata.py +18 -18
- nautobot/extras/models/models.py +2 -0
- nautobot/extras/signals.py +14 -1
- nautobot/extras/tables.py +43 -14
- nautobot/extras/templates/extras/computedfield.html +4 -0
- nautobot/extras/templates/extras/job_detail.html +11 -0
- nautobot/extras/tests/test_api.py +16 -9
- nautobot/extras/tests/test_jobs.py +2 -2
- nautobot/extras/tests/test_models.py +20 -18
- nautobot/extras/tests/test_views.py +23 -3
- nautobot/extras/utils.py +35 -6
- nautobot/extras/views.py +28 -51
- nautobot/ipam/filters.py +1 -1
- nautobot/ipam/forms.py +1 -1
- nautobot/ipam/models.py +9 -20
- nautobot/ipam/querysets.py +26 -0
- nautobot/ipam/tables.py +4 -0
- nautobot/ipam/tests/test_models.py +89 -2
- nautobot/ipam/views.py +10 -15
- nautobot/project-static/css/base.css +1 -0
- 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.3cba04c6.min.css +1 -0
- nautobot/project-static/docs/assets/stylesheets/main.3cba04c6.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 +66 -18
- 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 +66 -18
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +34 -18
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +82 -63
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +75 -111
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +18 -18
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +34 -18
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +161 -18
- 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 +21 -19
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +34 -18
- 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 +33 -22
- 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 +29 -18
- nautobot/project-static/docs/development/core/model-checklist.html +26 -20
- 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 +393 -379
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +18 -18
- nautobot/project-static/docs/index.html +9032 -13
- 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 +13 -9032
- nautobot/project-static/docs/release-notes/index.html +252 -19
- 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 +248 -111
- nautobot/project-static/docs/release-notes/version-2.3.html +644 -90
- 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 +52 -20
- 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 +22 -18
- 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 +69 -82
- nautobot/project-static/docs/user-guide/administration/installation/index.html +24 -24
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +60 -52
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +80 -87
- nautobot/project-static/docs/user-guide/administration/installation/services.html +37 -44
- 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 +76 -24
- 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 +62 -18
- 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/napalm.html +36 -36
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +33 -33
- nautobot/project-static/docs/user-guide/platform-functionality/{metadata.html → objectmetadata.html} +197 -84
- 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 +0 -2
- nautobot/virtualization/tables.py +2 -5
- {nautobot-2.3.0b1.dist-info → nautobot-2.3.1.dist-info}/METADATA +3 -3
- {nautobot-2.3.0b1.dist-info → nautobot-2.3.1.dist-info}/RECORD +378 -377
- nautobot/project-static/docs/assets/stylesheets/main.76a95c52.min.css +0 -1
- nautobot/project-static/docs/assets/stylesheets/main.76a95c52.min.css.map +0 -1
- {nautobot-2.3.0b1.dist-info → nautobot-2.3.1.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.3.0b1.dist-info → nautobot-2.3.1.dist-info}/NOTICE +0 -0
- {nautobot-2.3.0b1.dist-info → nautobot-2.3.1.dist-info}/WHEEL +0 -0
- {nautobot-2.3.0b1.dist-info → nautobot-2.3.1.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.31">
|
|
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.3cba04c6.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.6.0 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.6.0 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="../
|
|
241
|
+
<a href="../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.6.0 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="../
|
|
412
|
+
<a href="../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/napalm.html" class="md-nav__link">
|
|
5157
5157
|
|
|
5158
5158
|
|
|
5159
5159
|
<span class="md-ellipsis">
|
|
5160
|
-
|
|
5160
|
+
NAPALM
|
|
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/note.html" class="md-nav__link">
|
|
5178
5178
|
|
|
5179
5179
|
|
|
5180
5180
|
<span class="md-ellipsis">
|
|
5181
|
-
|
|
5181
|
+
Notes
|
|
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/objectmetadata.html" class="md-nav__link">
|
|
5199
5199
|
|
|
5200
5200
|
|
|
5201
5201
|
<span class="md-ellipsis">
|
|
5202
|
-
|
|
5202
|
+
Object Metadata
|
|
5203
5203
|
</span>
|
|
5204
5204
|
|
|
5205
5205
|
|
|
@@ -8258,6 +8258,57 @@
|
|
|
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
|
+
|
|
8261
8312
|
</li>
|
|
8262
8313
|
|
|
8263
8314
|
<li class="md-nav__item">
|
|
@@ -8280,7 +8331,7 @@
|
|
|
8280
8331
|
</li>
|
|
8281
8332
|
|
|
8282
8333
|
<li class="md-nav__item">
|
|
8283
|
-
<a href="#
|
|
8334
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
8284
8335
|
<span class="md-ellipsis">
|
|
8285
8336
|
Fixed
|
|
8286
8337
|
</span>
|
|
@@ -8289,7 +8340,7 @@
|
|
|
8289
8340
|
</li>
|
|
8290
8341
|
|
|
8291
8342
|
<li class="md-nav__item">
|
|
8292
|
-
<a href="#
|
|
8343
|
+
<a href="#dependencies_1" class="md-nav__link">
|
|
8293
8344
|
<span class="md-ellipsis">
|
|
8294
8345
|
Dependencies
|
|
8295
8346
|
</span>
|
|
@@ -8298,7 +8349,7 @@
|
|
|
8298
8349
|
</li>
|
|
8299
8350
|
|
|
8300
8351
|
<li class="md-nav__item">
|
|
8301
|
-
<a href="#
|
|
8352
|
+
<a href="#documentation_1" class="md-nav__link">
|
|
8302
8353
|
<span class="md-ellipsis">
|
|
8303
8354
|
Documentation
|
|
8304
8355
|
</span>
|
|
@@ -8340,7 +8391,7 @@
|
|
|
8340
8391
|
</li>
|
|
8341
8392
|
|
|
8342
8393
|
<li class="md-nav__item">
|
|
8343
|
-
<a href="#
|
|
8394
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
8344
8395
|
<span class="md-ellipsis">
|
|
8345
8396
|
Fixed
|
|
8346
8397
|
</span>
|
|
@@ -8349,7 +8400,7 @@
|
|
|
8349
8400
|
</li>
|
|
8350
8401
|
|
|
8351
8402
|
<li class="md-nav__item">
|
|
8352
|
-
<a href="#
|
|
8403
|
+
<a href="#dependencies_2" class="md-nav__link">
|
|
8353
8404
|
<span class="md-ellipsis">
|
|
8354
8405
|
Dependencies
|
|
8355
8406
|
</span>
|
|
@@ -8391,7 +8442,7 @@
|
|
|
8391
8442
|
</li>
|
|
8392
8443
|
|
|
8393
8444
|
<li class="md-nav__item">
|
|
8394
|
-
<a href="#
|
|
8445
|
+
<a href="#added_2" class="md-nav__link">
|
|
8395
8446
|
<span class="md-ellipsis">
|
|
8396
8447
|
Added
|
|
8397
8448
|
</span>
|
|
@@ -8409,7 +8460,7 @@
|
|
|
8409
8460
|
</li>
|
|
8410
8461
|
|
|
8411
8462
|
<li class="md-nav__item">
|
|
8412
|
-
<a href="#
|
|
8463
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
8413
8464
|
<span class="md-ellipsis">
|
|
8414
8465
|
Fixed
|
|
8415
8466
|
</span>
|
|
@@ -8418,7 +8469,7 @@
|
|
|
8418
8469
|
</li>
|
|
8419
8470
|
|
|
8420
8471
|
<li class="md-nav__item">
|
|
8421
|
-
<a href="#
|
|
8472
|
+
<a href="#documentation_2" class="md-nav__link">
|
|
8422
8473
|
<span class="md-ellipsis">
|
|
8423
8474
|
Documentation
|
|
8424
8475
|
</span>
|
|
@@ -8460,7 +8511,7 @@
|
|
|
8460
8511
|
</li>
|
|
8461
8512
|
|
|
8462
8513
|
<li class="md-nav__item">
|
|
8463
|
-
<a href="#
|
|
8514
|
+
<a href="#added_3" class="md-nav__link">
|
|
8464
8515
|
<span class="md-ellipsis">
|
|
8465
8516
|
Added
|
|
8466
8517
|
</span>
|
|
@@ -8478,7 +8529,7 @@
|
|
|
8478
8529
|
</li>
|
|
8479
8530
|
|
|
8480
8531
|
<li class="md-nav__item">
|
|
8481
|
-
<a href="#
|
|
8532
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
8482
8533
|
<span class="md-ellipsis">
|
|
8483
8534
|
Fixed
|
|
8484
8535
|
</span>
|
|
@@ -8487,7 +8538,7 @@
|
|
|
8487
8538
|
</li>
|
|
8488
8539
|
|
|
8489
8540
|
<li class="md-nav__item">
|
|
8490
|
-
<a href="#
|
|
8541
|
+
<a href="#documentation_3" class="md-nav__link">
|
|
8491
8542
|
<span class="md-ellipsis">
|
|
8492
8543
|
Documentation
|
|
8493
8544
|
</span>
|
|
@@ -8529,7 +8580,7 @@
|
|
|
8529
8580
|
</li>
|
|
8530
8581
|
|
|
8531
8582
|
<li class="md-nav__item">
|
|
8532
|
-
<a href="#
|
|
8583
|
+
<a href="#added_4" class="md-nav__link">
|
|
8533
8584
|
<span class="md-ellipsis">
|
|
8534
8585
|
Added
|
|
8535
8586
|
</span>
|
|
@@ -8538,7 +8589,7 @@
|
|
|
8538
8589
|
</li>
|
|
8539
8590
|
|
|
8540
8591
|
<li class="md-nav__item">
|
|
8541
|
-
<a href="#
|
|
8592
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
8542
8593
|
<span class="md-ellipsis">
|
|
8543
8594
|
Fixed
|
|
8544
8595
|
</span>
|
|
@@ -8547,7 +8598,7 @@
|
|
|
8547
8598
|
</li>
|
|
8548
8599
|
|
|
8549
8600
|
<li class="md-nav__item">
|
|
8550
|
-
<a href="#
|
|
8601
|
+
<a href="#documentation_4" class="md-nav__link">
|
|
8551
8602
|
<span class="md-ellipsis">
|
|
8552
8603
|
Documentation
|
|
8553
8604
|
</span>
|
|
@@ -8589,7 +8640,7 @@
|
|
|
8589
8640
|
</li>
|
|
8590
8641
|
|
|
8591
8642
|
<li class="md-nav__item">
|
|
8592
|
-
<a href="#
|
|
8643
|
+
<a href="#added_5" class="md-nav__link">
|
|
8593
8644
|
<span class="md-ellipsis">
|
|
8594
8645
|
Added
|
|
8595
8646
|
</span>
|
|
@@ -8607,7 +8658,7 @@
|
|
|
8607
8658
|
</li>
|
|
8608
8659
|
|
|
8609
8660
|
<li class="md-nav__item">
|
|
8610
|
-
<a href="#
|
|
8661
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
8611
8662
|
<span class="md-ellipsis">
|
|
8612
8663
|
Fixed
|
|
8613
8664
|
</span>
|
|
@@ -8616,7 +8667,7 @@
|
|
|
8616
8667
|
</li>
|
|
8617
8668
|
|
|
8618
8669
|
<li class="md-nav__item">
|
|
8619
|
-
<a href="#
|
|
8670
|
+
<a href="#documentation_5" class="md-nav__link">
|
|
8620
8671
|
<span class="md-ellipsis">
|
|
8621
8672
|
Documentation
|
|
8622
8673
|
</span>
|
|
@@ -8658,7 +8709,7 @@
|
|
|
8658
8709
|
</li>
|
|
8659
8710
|
|
|
8660
8711
|
<li class="md-nav__item">
|
|
8661
|
-
<a href="#
|
|
8712
|
+
<a href="#added_6" class="md-nav__link">
|
|
8662
8713
|
<span class="md-ellipsis">
|
|
8663
8714
|
Added
|
|
8664
8715
|
</span>
|
|
@@ -8676,7 +8727,7 @@
|
|
|
8676
8727
|
</li>
|
|
8677
8728
|
|
|
8678
8729
|
<li class="md-nav__item">
|
|
8679
|
-
<a href="#
|
|
8730
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
8680
8731
|
<span class="md-ellipsis">
|
|
8681
8732
|
Fixed
|
|
8682
8733
|
</span>
|
|
@@ -8685,7 +8736,7 @@
|
|
|
8685
8736
|
</li>
|
|
8686
8737
|
|
|
8687
8738
|
<li class="md-nav__item">
|
|
8688
|
-
<a href="#
|
|
8739
|
+
<a href="#documentation_6" class="md-nav__link">
|
|
8689
8740
|
<span class="md-ellipsis">
|
|
8690
8741
|
Documentation
|
|
8691
8742
|
</span>
|
|
@@ -8727,7 +8778,7 @@
|
|
|
8727
8778
|
</li>
|
|
8728
8779
|
|
|
8729
8780
|
<li class="md-nav__item">
|
|
8730
|
-
<a href="#
|
|
8781
|
+
<a href="#added_7" class="md-nav__link">
|
|
8731
8782
|
<span class="md-ellipsis">
|
|
8732
8783
|
Added
|
|
8733
8784
|
</span>
|
|
@@ -8745,7 +8796,7 @@
|
|
|
8745
8796
|
</li>
|
|
8746
8797
|
|
|
8747
8798
|
<li class="md-nav__item">
|
|
8748
|
-
<a href="#
|
|
8799
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
8749
8800
|
<span class="md-ellipsis">
|
|
8750
8801
|
Fixed
|
|
8751
8802
|
</span>
|
|
@@ -8754,7 +8805,7 @@
|
|
|
8754
8805
|
</li>
|
|
8755
8806
|
|
|
8756
8807
|
<li class="md-nav__item">
|
|
8757
|
-
<a href="#
|
|
8808
|
+
<a href="#dependencies_3" class="md-nav__link">
|
|
8758
8809
|
<span class="md-ellipsis">
|
|
8759
8810
|
Dependencies
|
|
8760
8811
|
</span>
|
|
@@ -8763,7 +8814,7 @@
|
|
|
8763
8814
|
</li>
|
|
8764
8815
|
|
|
8765
8816
|
<li class="md-nav__item">
|
|
8766
|
-
<a href="#
|
|
8817
|
+
<a href="#documentation_7" class="md-nav__link">
|
|
8767
8818
|
<span class="md-ellipsis">
|
|
8768
8819
|
Documentation
|
|
8769
8820
|
</span>
|
|
@@ -8796,7 +8847,7 @@
|
|
|
8796
8847
|
<ul class="md-nav__list">
|
|
8797
8848
|
|
|
8798
8849
|
<li class="md-nav__item">
|
|
8799
|
-
<a href="#
|
|
8850
|
+
<a href="#added_8" class="md-nav__link">
|
|
8800
8851
|
<span class="md-ellipsis">
|
|
8801
8852
|
Added
|
|
8802
8853
|
</span>
|
|
@@ -8814,7 +8865,7 @@
|
|
|
8814
8865
|
</li>
|
|
8815
8866
|
|
|
8816
8867
|
<li class="md-nav__item">
|
|
8817
|
-
<a href="#
|
|
8868
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
8818
8869
|
<span class="md-ellipsis">
|
|
8819
8870
|
Fixed
|
|
8820
8871
|
</span>
|
|
@@ -8823,7 +8874,7 @@
|
|
|
8823
8874
|
</li>
|
|
8824
8875
|
|
|
8825
8876
|
<li class="md-nav__item">
|
|
8826
|
-
<a href="#
|
|
8877
|
+
<a href="#dependencies_4" class="md-nav__link">
|
|
8827
8878
|
<span class="md-ellipsis">
|
|
8828
8879
|
Dependencies
|
|
8829
8880
|
</span>
|
|
@@ -8856,7 +8907,7 @@
|
|
|
8856
8907
|
<ul class="md-nav__list">
|
|
8857
8908
|
|
|
8858
8909
|
<li class="md-nav__item">
|
|
8859
|
-
<a href="#
|
|
8910
|
+
<a href="#added_9" class="md-nav__link">
|
|
8860
8911
|
<span class="md-ellipsis">
|
|
8861
8912
|
Added
|
|
8862
8913
|
</span>
|
|
@@ -8892,7 +8943,7 @@
|
|
|
8892
8943
|
</li>
|
|
8893
8944
|
|
|
8894
8945
|
<li class="md-nav__item">
|
|
8895
|
-
<a href="#
|
|
8946
|
+
<a href="#fixed_10" class="md-nav__link">
|
|
8896
8947
|
<span class="md-ellipsis">
|
|
8897
8948
|
Fixed
|
|
8898
8949
|
</span>
|
|
@@ -8901,7 +8952,7 @@
|
|
|
8901
8952
|
</li>
|
|
8902
8953
|
|
|
8903
8954
|
<li class="md-nav__item">
|
|
8904
|
-
<a href="#
|
|
8955
|
+
<a href="#dependencies_5" class="md-nav__link">
|
|
8905
8956
|
<span class="md-ellipsis">
|
|
8906
8957
|
Dependencies
|
|
8907
8958
|
</span>
|
|
@@ -8910,7 +8961,7 @@
|
|
|
8910
8961
|
</li>
|
|
8911
8962
|
|
|
8912
8963
|
<li class="md-nav__item">
|
|
8913
|
-
<a href="#
|
|
8964
|
+
<a href="#documentation_8" class="md-nav__link">
|
|
8914
8965
|
<span class="md-ellipsis">
|
|
8915
8966
|
Documentation
|
|
8916
8967
|
</span>
|
|
@@ -9625,6 +9676,57 @@
|
|
|
9625
9676
|
</ul>
|
|
9626
9677
|
</nav>
|
|
9627
9678
|
|
|
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
|
+
|
|
9628
9730
|
</li>
|
|
9629
9731
|
|
|
9630
9732
|
<li class="md-nav__item">
|
|
@@ -9647,7 +9749,7 @@
|
|
|
9647
9749
|
</li>
|
|
9648
9750
|
|
|
9649
9751
|
<li class="md-nav__item">
|
|
9650
|
-
<a href="#
|
|
9752
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
9651
9753
|
<span class="md-ellipsis">
|
|
9652
9754
|
Fixed
|
|
9653
9755
|
</span>
|
|
@@ -9656,7 +9758,7 @@
|
|
|
9656
9758
|
</li>
|
|
9657
9759
|
|
|
9658
9760
|
<li class="md-nav__item">
|
|
9659
|
-
<a href="#
|
|
9761
|
+
<a href="#dependencies_1" class="md-nav__link">
|
|
9660
9762
|
<span class="md-ellipsis">
|
|
9661
9763
|
Dependencies
|
|
9662
9764
|
</span>
|
|
@@ -9665,7 +9767,7 @@
|
|
|
9665
9767
|
</li>
|
|
9666
9768
|
|
|
9667
9769
|
<li class="md-nav__item">
|
|
9668
|
-
<a href="#
|
|
9770
|
+
<a href="#documentation_1" class="md-nav__link">
|
|
9669
9771
|
<span class="md-ellipsis">
|
|
9670
9772
|
Documentation
|
|
9671
9773
|
</span>
|
|
@@ -9707,7 +9809,7 @@
|
|
|
9707
9809
|
</li>
|
|
9708
9810
|
|
|
9709
9811
|
<li class="md-nav__item">
|
|
9710
|
-
<a href="#
|
|
9812
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
9711
9813
|
<span class="md-ellipsis">
|
|
9712
9814
|
Fixed
|
|
9713
9815
|
</span>
|
|
@@ -9716,7 +9818,7 @@
|
|
|
9716
9818
|
</li>
|
|
9717
9819
|
|
|
9718
9820
|
<li class="md-nav__item">
|
|
9719
|
-
<a href="#
|
|
9821
|
+
<a href="#dependencies_2" class="md-nav__link">
|
|
9720
9822
|
<span class="md-ellipsis">
|
|
9721
9823
|
Dependencies
|
|
9722
9824
|
</span>
|
|
@@ -9758,7 +9860,7 @@
|
|
|
9758
9860
|
</li>
|
|
9759
9861
|
|
|
9760
9862
|
<li class="md-nav__item">
|
|
9761
|
-
<a href="#
|
|
9863
|
+
<a href="#added_2" class="md-nav__link">
|
|
9762
9864
|
<span class="md-ellipsis">
|
|
9763
9865
|
Added
|
|
9764
9866
|
</span>
|
|
@@ -9776,7 +9878,7 @@
|
|
|
9776
9878
|
</li>
|
|
9777
9879
|
|
|
9778
9880
|
<li class="md-nav__item">
|
|
9779
|
-
<a href="#
|
|
9881
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
9780
9882
|
<span class="md-ellipsis">
|
|
9781
9883
|
Fixed
|
|
9782
9884
|
</span>
|
|
@@ -9785,7 +9887,7 @@
|
|
|
9785
9887
|
</li>
|
|
9786
9888
|
|
|
9787
9889
|
<li class="md-nav__item">
|
|
9788
|
-
<a href="#
|
|
9890
|
+
<a href="#documentation_2" class="md-nav__link">
|
|
9789
9891
|
<span class="md-ellipsis">
|
|
9790
9892
|
Documentation
|
|
9791
9893
|
</span>
|
|
@@ -9827,7 +9929,7 @@
|
|
|
9827
9929
|
</li>
|
|
9828
9930
|
|
|
9829
9931
|
<li class="md-nav__item">
|
|
9830
|
-
<a href="#
|
|
9932
|
+
<a href="#added_3" class="md-nav__link">
|
|
9831
9933
|
<span class="md-ellipsis">
|
|
9832
9934
|
Added
|
|
9833
9935
|
</span>
|
|
@@ -9845,7 +9947,7 @@
|
|
|
9845
9947
|
</li>
|
|
9846
9948
|
|
|
9847
9949
|
<li class="md-nav__item">
|
|
9848
|
-
<a href="#
|
|
9950
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
9849
9951
|
<span class="md-ellipsis">
|
|
9850
9952
|
Fixed
|
|
9851
9953
|
</span>
|
|
@@ -9854,7 +9956,7 @@
|
|
|
9854
9956
|
</li>
|
|
9855
9957
|
|
|
9856
9958
|
<li class="md-nav__item">
|
|
9857
|
-
<a href="#
|
|
9959
|
+
<a href="#documentation_3" class="md-nav__link">
|
|
9858
9960
|
<span class="md-ellipsis">
|
|
9859
9961
|
Documentation
|
|
9860
9962
|
</span>
|
|
@@ -9896,7 +9998,7 @@
|
|
|
9896
9998
|
</li>
|
|
9897
9999
|
|
|
9898
10000
|
<li class="md-nav__item">
|
|
9899
|
-
<a href="#
|
|
10001
|
+
<a href="#added_4" class="md-nav__link">
|
|
9900
10002
|
<span class="md-ellipsis">
|
|
9901
10003
|
Added
|
|
9902
10004
|
</span>
|
|
@@ -9905,7 +10007,7 @@
|
|
|
9905
10007
|
</li>
|
|
9906
10008
|
|
|
9907
10009
|
<li class="md-nav__item">
|
|
9908
|
-
<a href="#
|
|
10010
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
9909
10011
|
<span class="md-ellipsis">
|
|
9910
10012
|
Fixed
|
|
9911
10013
|
</span>
|
|
@@ -9914,7 +10016,7 @@
|
|
|
9914
10016
|
</li>
|
|
9915
10017
|
|
|
9916
10018
|
<li class="md-nav__item">
|
|
9917
|
-
<a href="#
|
|
10019
|
+
<a href="#documentation_4" class="md-nav__link">
|
|
9918
10020
|
<span class="md-ellipsis">
|
|
9919
10021
|
Documentation
|
|
9920
10022
|
</span>
|
|
@@ -9956,7 +10058,7 @@
|
|
|
9956
10058
|
</li>
|
|
9957
10059
|
|
|
9958
10060
|
<li class="md-nav__item">
|
|
9959
|
-
<a href="#
|
|
10061
|
+
<a href="#added_5" class="md-nav__link">
|
|
9960
10062
|
<span class="md-ellipsis">
|
|
9961
10063
|
Added
|
|
9962
10064
|
</span>
|
|
@@ -9974,7 +10076,7 @@
|
|
|
9974
10076
|
</li>
|
|
9975
10077
|
|
|
9976
10078
|
<li class="md-nav__item">
|
|
9977
|
-
<a href="#
|
|
10079
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
9978
10080
|
<span class="md-ellipsis">
|
|
9979
10081
|
Fixed
|
|
9980
10082
|
</span>
|
|
@@ -9983,7 +10085,7 @@
|
|
|
9983
10085
|
</li>
|
|
9984
10086
|
|
|
9985
10087
|
<li class="md-nav__item">
|
|
9986
|
-
<a href="#
|
|
10088
|
+
<a href="#documentation_5" class="md-nav__link">
|
|
9987
10089
|
<span class="md-ellipsis">
|
|
9988
10090
|
Documentation
|
|
9989
10091
|
</span>
|
|
@@ -10025,7 +10127,7 @@
|
|
|
10025
10127
|
</li>
|
|
10026
10128
|
|
|
10027
10129
|
<li class="md-nav__item">
|
|
10028
|
-
<a href="#
|
|
10130
|
+
<a href="#added_6" class="md-nav__link">
|
|
10029
10131
|
<span class="md-ellipsis">
|
|
10030
10132
|
Added
|
|
10031
10133
|
</span>
|
|
@@ -10043,7 +10145,7 @@
|
|
|
10043
10145
|
</li>
|
|
10044
10146
|
|
|
10045
10147
|
<li class="md-nav__item">
|
|
10046
|
-
<a href="#
|
|
10148
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
10047
10149
|
<span class="md-ellipsis">
|
|
10048
10150
|
Fixed
|
|
10049
10151
|
</span>
|
|
@@ -10052,7 +10154,7 @@
|
|
|
10052
10154
|
</li>
|
|
10053
10155
|
|
|
10054
10156
|
<li class="md-nav__item">
|
|
10055
|
-
<a href="#
|
|
10157
|
+
<a href="#documentation_6" class="md-nav__link">
|
|
10056
10158
|
<span class="md-ellipsis">
|
|
10057
10159
|
Documentation
|
|
10058
10160
|
</span>
|
|
@@ -10094,7 +10196,7 @@
|
|
|
10094
10196
|
</li>
|
|
10095
10197
|
|
|
10096
10198
|
<li class="md-nav__item">
|
|
10097
|
-
<a href="#
|
|
10199
|
+
<a href="#added_7" class="md-nav__link">
|
|
10098
10200
|
<span class="md-ellipsis">
|
|
10099
10201
|
Added
|
|
10100
10202
|
</span>
|
|
@@ -10112,7 +10214,7 @@
|
|
|
10112
10214
|
</li>
|
|
10113
10215
|
|
|
10114
10216
|
<li class="md-nav__item">
|
|
10115
|
-
<a href="#
|
|
10217
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
10116
10218
|
<span class="md-ellipsis">
|
|
10117
10219
|
Fixed
|
|
10118
10220
|
</span>
|
|
@@ -10121,7 +10223,7 @@
|
|
|
10121
10223
|
</li>
|
|
10122
10224
|
|
|
10123
10225
|
<li class="md-nav__item">
|
|
10124
|
-
<a href="#
|
|
10226
|
+
<a href="#dependencies_3" class="md-nav__link">
|
|
10125
10227
|
<span class="md-ellipsis">
|
|
10126
10228
|
Dependencies
|
|
10127
10229
|
</span>
|
|
@@ -10130,7 +10232,7 @@
|
|
|
10130
10232
|
</li>
|
|
10131
10233
|
|
|
10132
10234
|
<li class="md-nav__item">
|
|
10133
|
-
<a href="#
|
|
10235
|
+
<a href="#documentation_7" class="md-nav__link">
|
|
10134
10236
|
<span class="md-ellipsis">
|
|
10135
10237
|
Documentation
|
|
10136
10238
|
</span>
|
|
@@ -10163,7 +10265,7 @@
|
|
|
10163
10265
|
<ul class="md-nav__list">
|
|
10164
10266
|
|
|
10165
10267
|
<li class="md-nav__item">
|
|
10166
|
-
<a href="#
|
|
10268
|
+
<a href="#added_8" class="md-nav__link">
|
|
10167
10269
|
<span class="md-ellipsis">
|
|
10168
10270
|
Added
|
|
10169
10271
|
</span>
|
|
@@ -10181,7 +10283,7 @@
|
|
|
10181
10283
|
</li>
|
|
10182
10284
|
|
|
10183
10285
|
<li class="md-nav__item">
|
|
10184
|
-
<a href="#
|
|
10286
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
10185
10287
|
<span class="md-ellipsis">
|
|
10186
10288
|
Fixed
|
|
10187
10289
|
</span>
|
|
@@ -10190,7 +10292,7 @@
|
|
|
10190
10292
|
</li>
|
|
10191
10293
|
|
|
10192
10294
|
<li class="md-nav__item">
|
|
10193
|
-
<a href="#
|
|
10295
|
+
<a href="#dependencies_4" class="md-nav__link">
|
|
10194
10296
|
<span class="md-ellipsis">
|
|
10195
10297
|
Dependencies
|
|
10196
10298
|
</span>
|
|
@@ -10223,7 +10325,7 @@
|
|
|
10223
10325
|
<ul class="md-nav__list">
|
|
10224
10326
|
|
|
10225
10327
|
<li class="md-nav__item">
|
|
10226
|
-
<a href="#
|
|
10328
|
+
<a href="#added_9" class="md-nav__link">
|
|
10227
10329
|
<span class="md-ellipsis">
|
|
10228
10330
|
Added
|
|
10229
10331
|
</span>
|
|
@@ -10259,7 +10361,7 @@
|
|
|
10259
10361
|
</li>
|
|
10260
10362
|
|
|
10261
10363
|
<li class="md-nav__item">
|
|
10262
|
-
<a href="#
|
|
10364
|
+
<a href="#fixed_10" class="md-nav__link">
|
|
10263
10365
|
<span class="md-ellipsis">
|
|
10264
10366
|
Fixed
|
|
10265
10367
|
</span>
|
|
@@ -10268,7 +10370,7 @@
|
|
|
10268
10370
|
</li>
|
|
10269
10371
|
|
|
10270
10372
|
<li class="md-nav__item">
|
|
10271
|
-
<a href="#
|
|
10373
|
+
<a href="#dependencies_5" class="md-nav__link">
|
|
10272
10374
|
<span class="md-ellipsis">
|
|
10273
10375
|
Dependencies
|
|
10274
10376
|
</span>
|
|
@@ -10277,7 +10379,7 @@
|
|
|
10277
10379
|
</li>
|
|
10278
10380
|
|
|
10279
10381
|
<li class="md-nav__item">
|
|
10280
|
-
<a href="#
|
|
10382
|
+
<a href="#documentation_8" class="md-nav__link">
|
|
10281
10383
|
<span class="md-ellipsis">
|
|
10282
10384
|
Documentation
|
|
10283
10385
|
</span>
|
|
@@ -10355,24 +10457,59 @@
|
|
|
10355
10457
|
<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>
|
|
10356
10458
|
<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>
|
|
10357
10459
|
<!-- 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>
|
|
10358
10495
|
<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>
|
|
10359
10496
|
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
10360
10497
|
<ul>
|
|
10361
10498
|
<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>
|
|
10362
10499
|
</ul>
|
|
10363
|
-
<h3 id="
|
|
10500
|
+
<h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">¶</a></h3>
|
|
10364
10501
|
<ul>
|
|
10365
10502
|
<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>
|
|
10366
10503
|
<li><a href="https://github.com/nautobot/nautobot/issues/5613">#5613</a> - Fixed intermittent failure in integration test for dynamic groups.</li>
|
|
10367
10504
|
<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>
|
|
10368
10505
|
<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>
|
|
10369
10506
|
</ul>
|
|
10370
|
-
<h3 id="
|
|
10507
|
+
<h3 id="dependencies_1">Dependencies<a class="headerlink" href="#dependencies_1" title="Permanent link">¶</a></h3>
|
|
10371
10508
|
<ul>
|
|
10372
10509
|
<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>
|
|
10373
10510
|
<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>
|
|
10374
10511
|
</ul>
|
|
10375
|
-
<h3 id="
|
|
10512
|
+
<h3 id="documentation_1">Documentation<a class="headerlink" href="#documentation_1" title="Permanent link">¶</a></h3>
|
|
10376
10513
|
<ul>
|
|
10377
10514
|
<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>
|
|
10378
10515
|
<li><a href="https://github.com/nautobot/nautobot/issues/5874">#5874</a> - Updated documentation regarding Nautobot on Ubuntu 24.04.</li>
|
|
@@ -10386,7 +10523,7 @@
|
|
|
10386
10523
|
<ul>
|
|
10387
10524
|
<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>
|
|
10388
10525
|
</ul>
|
|
10389
|
-
<h3 id="
|
|
10526
|
+
<h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">¶</a></h3>
|
|
10390
10527
|
<ul>
|
|
10391
10528
|
<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>
|
|
10392
10529
|
<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>
|
|
@@ -10394,7 +10531,7 @@
|
|
|
10394
10531
|
<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>
|
|
10395
10532
|
<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>
|
|
10396
10533
|
</ul>
|
|
10397
|
-
<h3 id="
|
|
10534
|
+
<h3 id="dependencies_2">Dependencies<a class="headerlink" href="#dependencies_2" title="Permanent link">¶</a></h3>
|
|
10398
10535
|
<ul>
|
|
10399
10536
|
<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>
|
|
10400
10537
|
<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>
|
|
@@ -10409,7 +10546,7 @@
|
|
|
10409
10546
|
<ul>
|
|
10410
10547
|
<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>
|
|
10411
10548
|
</ul>
|
|
10412
|
-
<h3 id="
|
|
10549
|
+
<h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">¶</a></h3>
|
|
10413
10550
|
<ul>
|
|
10414
10551
|
<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>
|
|
10415
10552
|
<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>
|
|
@@ -10420,7 +10557,7 @@
|
|
|
10420
10557
|
<ul>
|
|
10421
10558
|
<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>
|
|
10422
10559
|
</ul>
|
|
10423
|
-
<h3 id="
|
|
10560
|
+
<h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">¶</a></h3>
|
|
10424
10561
|
<ul>
|
|
10425
10562
|
<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>
|
|
10426
10563
|
<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>
|
|
@@ -10428,7 +10565,7 @@
|
|
|
10428
10565
|
<li><a href="https://github.com/nautobot/nautobot/issues/5809">#5809</a> - Fixed missing support for the GitRepository model in GraphQL.</li>
|
|
10429
10566
|
<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>
|
|
10430
10567
|
</ul>
|
|
10431
|
-
<h3 id="
|
|
10568
|
+
<h3 id="documentation_2">Documentation<a class="headerlink" href="#documentation_2" title="Permanent link">¶</a></h3>
|
|
10432
10569
|
<ul>
|
|
10433
10570
|
<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>
|
|
10434
10571
|
<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>
|
|
@@ -10446,7 +10583,7 @@
|
|
|
10446
10583
|
<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>
|
|
10447
10584
|
<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>
|
|
10448
10585
|
</ul>
|
|
10449
|
-
<h3 id="
|
|
10586
|
+
<h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">¶</a></h3>
|
|
10450
10587
|
<ul>
|
|
10451
10588
|
<li><a href="https://github.com/nautobot/nautobot/issues/5588">#5588</a> - Added "Add VRFs" and "Remove VRFs" fields to <code>PrefixBulkEditForm</code>.</li>
|
|
10452
10589
|
<li><a href="https://github.com/nautobot/nautobot/issues/5588">#5588</a> - Added "Add Prefixes" and "Remove Prefixes" fields to <code>VRFBulkEditForm</code>.</li>
|
|
@@ -10458,7 +10595,7 @@
|
|
|
10458
10595
|
<ul>
|
|
10459
10596
|
<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>
|
|
10460
10597
|
</ul>
|
|
10461
|
-
<h3 id="
|
|
10598
|
+
<h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">¶</a></h3>
|
|
10462
10599
|
<ul>
|
|
10463
10600
|
<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>
|
|
10464
10601
|
<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>
|
|
@@ -10471,7 +10608,7 @@
|
|
|
10471
10608
|
<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>
|
|
10472
10609
|
<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>
|
|
10473
10610
|
</ul>
|
|
10474
|
-
<h3 id="
|
|
10611
|
+
<h3 id="documentation_3">Documentation<a class="headerlink" href="#documentation_3" title="Permanent link">¶</a></h3>
|
|
10475
10612
|
<ul>
|
|
10476
10613
|
<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>
|
|
10477
10614
|
<li><a href="https://github.com/nautobot/nautobot/issues/5699">#5699</a> - Fixed a number of broken links within the documentation.</li>
|
|
@@ -10487,19 +10624,19 @@
|
|
|
10487
10624
|
<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>
|
|
10488
10625
|
<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>
|
|
10489
10626
|
</ul>
|
|
10490
|
-
<h3 id="
|
|
10627
|
+
<h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">¶</a></h3>
|
|
10491
10628
|
<ul>
|
|
10492
10629
|
<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>
|
|
10493
10630
|
<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>
|
|
10494
10631
|
</ul>
|
|
10495
|
-
<h3 id="
|
|
10632
|
+
<h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">¶</a></h3>
|
|
10496
10633
|
<ul>
|
|
10497
10634
|
<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>
|
|
10498
10635
|
<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>
|
|
10499
10636
|
<li><a href="https://github.com/nautobot/nautobot/issues/5684">#5684</a> - Fixed standard CSV export when using export templates.</li>
|
|
10500
10637
|
<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>
|
|
10501
10638
|
</ul>
|
|
10502
|
-
<h3 id="
|
|
10639
|
+
<h3 id="documentation_4">Documentation<a class="headerlink" href="#documentation_4" title="Permanent link">¶</a></h3>
|
|
10503
10640
|
<ul>
|
|
10504
10641
|
<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>
|
|
10505
10642
|
</ul>
|
|
@@ -10515,7 +10652,7 @@
|
|
|
10515
10652
|
<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>
|
|
10516
10653
|
<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>
|
|
10517
10654
|
</ul>
|
|
10518
|
-
<h3 id="
|
|
10655
|
+
<h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">¶</a></h3>
|
|
10519
10656
|
<ul>
|
|
10520
10657
|
<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>
|
|
10521
10658
|
<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>
|
|
@@ -10527,7 +10664,7 @@
|
|
|
10527
10664
|
<ul>
|
|
10528
10665
|
<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>
|
|
10529
10666
|
</ul>
|
|
10530
|
-
<h3 id="
|
|
10667
|
+
<h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">¶</a></h3>
|
|
10531
10668
|
<ul>
|
|
10532
10669
|
<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>
|
|
10533
10670
|
<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>
|
|
@@ -10540,7 +10677,7 @@
|
|
|
10540
10677
|
<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>
|
|
10541
10678
|
<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>
|
|
10542
10679
|
</ul>
|
|
10543
|
-
<h3 id="
|
|
10680
|
+
<h3 id="documentation_5">Documentation<a class="headerlink" href="#documentation_5" title="Permanent link">¶</a></h3>
|
|
10544
10681
|
<ul>
|
|
10545
10682
|
<li><a href="https://github.com/nautobot/nautobot/issues/5094">#5094</a> - Added "Reserved Attribute Names" section to the Jobs developer documentation.</li>
|
|
10546
10683
|
<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>
|
|
@@ -10558,7 +10695,7 @@
|
|
|
10558
10695
|
<ul>
|
|
10559
10696
|
<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>
|
|
10560
10697
|
</ul>
|
|
10561
|
-
<h3 id="
|
|
10698
|
+
<h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">¶</a></h3>
|
|
10562
10699
|
<ul>
|
|
10563
10700
|
<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>
|
|
10564
10701
|
<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>
|
|
@@ -10569,12 +10706,12 @@
|
|
|
10569
10706
|
<li><a href="https://github.com/nautobot/nautobot/issues/5568">#5568</a> - Added hyperlink to the total device count number under device family.</li>
|
|
10570
10707
|
<li><a href="https://github.com/nautobot/nautobot/issues/5589">#5589</a> - Fixed an invalid Javascript operator in the LLDP neighbor view.</li>
|
|
10571
10708
|
</ul>
|
|
10572
|
-
<h3 id="
|
|
10709
|
+
<h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">¶</a></h3>
|
|
10573
10710
|
<ul>
|
|
10574
10711
|
<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>
|
|
10575
10712
|
<li><a href="https://github.com/nautobot/nautobot/issues/5592">#5592</a> - Fixed plugins not loading when using Gunicorn.</li>
|
|
10576
10713
|
</ul>
|
|
10577
|
-
<h3 id="
|
|
10714
|
+
<h3 id="documentation_6">Documentation<a class="headerlink" href="#documentation_6" title="Permanent link">¶</a></h3>
|
|
10578
10715
|
<ul>
|
|
10579
10716
|
<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>
|
|
10580
10717
|
</ul>
|
|
@@ -10589,7 +10726,7 @@
|
|
|
10589
10726
|
<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>
|
|
10590
10727
|
<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>
|
|
10591
10728
|
</ul>
|
|
10592
|
-
<h3 id="
|
|
10729
|
+
<h3 id="added_7">Added<a class="headerlink" href="#added_7" title="Permanent link">¶</a></h3>
|
|
10593
10730
|
<ul>
|
|
10594
10731
|
<li><a href="https://github.com/nautobot/nautobot/issues/1631">#1631</a> - Added change logging for custom field background tasks.</li>
|
|
10595
10732
|
<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>
|
|
@@ -10600,7 +10737,7 @@
|
|
|
10600
10737
|
<ul>
|
|
10601
10738
|
<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>
|
|
10602
10739
|
</ul>
|
|
10603
|
-
<h3 id="
|
|
10740
|
+
<h3 id="fixed_8">Fixed<a class="headerlink" href="#fixed_8" title="Permanent link">¶</a></h3>
|
|
10604
10741
|
<ul>
|
|
10605
10742
|
<li><a href="https://github.com/nautobot/nautobot/issues/5469">#5469</a> - Fixed contacts and teams not being included in the global search.</li>
|
|
10606
10743
|
<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>
|
|
@@ -10610,14 +10747,14 @@
|
|
|
10610
10747
|
<li><a href="https://github.com/nautobot/nautobot/issues/5527">#5527</a> - Fixed incorrect "members" links in Virtual Chassis list view.</li>
|
|
10611
10748
|
<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>
|
|
10612
10749
|
</ul>
|
|
10613
|
-
<h3 id="
|
|
10750
|
+
<h3 id="dependencies_3">Dependencies<a class="headerlink" href="#dependencies_3" title="Permanent link">¶</a></h3>
|
|
10614
10751
|
<ul>
|
|
10615
10752
|
<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>
|
|
10616
10753
|
<li><a href="https://github.com/nautobot/nautobot/issues/5517">#5517</a> - Updated <code>djangorestframework</code> to <code>~3.15.1</code>.</li>
|
|
10617
10754
|
<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>
|
|
10618
10755
|
<li><a href="https://github.com/nautobot/nautobot/issues/5543">#5543</a> - Updated <code>jquery</code> to version <code>3.7.1</code>.</li>
|
|
10619
10756
|
</ul>
|
|
10620
|
-
<h3 id="
|
|
10757
|
+
<h3 id="documentation_7">Documentation<a class="headerlink" href="#documentation_7" title="Permanent link">¶</a></h3>
|
|
10621
10758
|
<ul>
|
|
10622
10759
|
<li><a href="https://github.com/nautobot/nautobot/issues/5189">#5189</a> - Added "Model Development Checklist" to the core developer documentation.</li>
|
|
10623
10760
|
<li><a href="https://github.com/nautobot/nautobot/issues/5189">#5189</a> - Merged "Extending Models" documentation into the "Model Development Checklist" documentation.</li>
|
|
@@ -10633,7 +10770,7 @@
|
|
|
10633
10770
|
<p class="admonition-title">Warning</p>
|
|
10634
10771
|
<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>
|
|
10635
10772
|
</div>
|
|
10636
|
-
<h3 id="
|
|
10773
|
+
<h3 id="added_8">Added<a class="headerlink" href="#added_8" title="Permanent link">¶</a></h3>
|
|
10637
10774
|
<ul>
|
|
10638
10775
|
<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>
|
|
10639
10776
|
<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>
|
|
@@ -10651,14 +10788,14 @@
|
|
|
10651
10788
|
<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>
|
|
10652
10789
|
<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>
|
|
10653
10790
|
</ul>
|
|
10654
|
-
<h3 id="
|
|
10791
|
+
<h3 id="fixed_9">Fixed<a class="headerlink" href="#fixed_9" title="Permanent link">¶</a></h3>
|
|
10655
10792
|
<ul>
|
|
10656
10793
|
<li><a href="https://github.com/nautobot/nautobot/issues/5415">#5415</a> - Fixed Team(s) field not pre-populating when editing a Contact.</li>
|
|
10657
10794
|
<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>
|
|
10658
10795
|
<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>
|
|
10659
10796
|
<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>
|
|
10660
10797
|
</ul>
|
|
10661
|
-
<h3 id="
|
|
10798
|
+
<h3 id="dependencies_4">Dependencies<a class="headerlink" href="#dependencies_4" title="Permanent link">¶</a></h3>
|
|
10662
10799
|
<ul>
|
|
10663
10800
|
<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>
|
|
10664
10801
|
</ul>
|
|
@@ -10668,7 +10805,7 @@
|
|
|
10668
10805
|
<li><a href="https://github.com/nautobot/nautobot/issues/5435">#5435</a> - Added <code>--parallel-workers</code> argument to <code>invoke unittest</code>.</li>
|
|
10669
10806
|
</ul>
|
|
10670
10807
|
<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>
|
|
10671
|
-
<h3 id="
|
|
10808
|
+
<h3 id="added_9">Added<a class="headerlink" href="#added_9" title="Permanent link">¶</a></h3>
|
|
10672
10809
|
<ul>
|
|
10673
10810
|
<li><a href="https://github.com/nautobot/nautobot/issues/1">#1</a> - Added new models for software versions and software image files.</li>
|
|
10674
10811
|
<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>
|
|
@@ -10737,7 +10874,7 @@
|
|
|
10737
10874
|
<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>
|
|
10738
10875
|
<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>
|
|
10739
10876
|
</ul>
|
|
10740
|
-
<h3 id="
|
|
10877
|
+
<h3 id="fixed_10">Fixed<a class="headerlink" href="#fixed_10" title="Permanent link">¶</a></h3>
|
|
10741
10878
|
<ul>
|
|
10742
10879
|
<li><a href="https://github.com/nautobot/nautobot/issues/4334">#4334</a> - Fixed ordering of VLANs in the UI list view.</li>
|
|
10743
10880
|
<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>
|
|
@@ -10750,11 +10887,11 @@
|
|
|
10750
10887
|
<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>
|
|
10751
10888
|
<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>
|
|
10752
10889
|
</ul>
|
|
10753
|
-
<h3 id="
|
|
10890
|
+
<h3 id="dependencies_5">Dependencies<a class="headerlink" href="#dependencies_5" title="Permanent link">¶</a></h3>
|
|
10754
10891
|
<ul>
|
|
10755
10892
|
<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>
|
|
10756
10893
|
</ul>
|
|
10757
|
-
<h3 id="
|
|
10894
|
+
<h3 id="documentation_8">Documentation<a class="headerlink" href="#documentation_8" title="Permanent link">¶</a></h3>
|
|
10758
10895
|
<ul>
|
|
10759
10896
|
<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>
|
|
10760
10897
|
<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>
|
|
@@ -10880,7 +11017,7 @@
|
|
|
10880
11017
|
|
|
10881
11018
|
|
|
10882
11019
|
<a href="https://blog.networktocode.com/blog/tags/nautobot" target="_blank" rel="noopener" title="Network to Code Blog" class="md-social__link">
|
|
10883
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.
|
|
11020
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.6.0 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>
|
|
10884
11021
|
</a>
|
|
10885
11022
|
|
|
10886
11023
|
|
|
@@ -10888,7 +11025,7 @@
|
|
|
10888
11025
|
|
|
10889
11026
|
|
|
10890
11027
|
<a href="https://www.youtube.com/playlist?list=PLjA0bhxgryJ2Ts4GJMDA-tPzVWEncv4pb" target="_blank" rel="noopener" title="Nautobot Videos" class="md-social__link">
|
|
10891
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.
|
|
11028
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.6.0 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>
|
|
10892
11029
|
</a>
|
|
10893
11030
|
|
|
10894
11031
|
|
|
@@ -10896,7 +11033,7 @@
|
|
|
10896
11033
|
|
|
10897
11034
|
|
|
10898
11035
|
<a href="https://www.networktocode.com/community/" target="_blank" rel="noopener" title="Network to Code Community" class="md-social__link">
|
|
10899
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.
|
|
11036
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.6.0 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>
|
|
10900
11037
|
</a>
|
|
10901
11038
|
|
|
10902
11039
|
|
|
@@ -10904,7 +11041,7 @@
|
|
|
10904
11041
|
|
|
10905
11042
|
|
|
10906
11043
|
<a href="https://github.com/nautobot/nautobot" target="_blank" rel="noopener" title="GitHub Repo" class="md-social__link">
|
|
10907
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.
|
|
11044
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.6.0 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>
|
|
10908
11045
|
</a>
|
|
10909
11046
|
|
|
10910
11047
|
|
|
@@ -10912,7 +11049,7 @@
|
|
|
10912
11049
|
|
|
10913
11050
|
|
|
10914
11051
|
<a href="https://twitter.com/networktocode" target="_blank" rel="noopener" title="Network to Code Twitter" class="md-social__link">
|
|
10915
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.
|
|
11052
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.6.0 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>
|
|
10916
11053
|
</a>
|
|
10917
11054
|
|
|
10918
11055
|
</div>
|