nautobot 2.4.0b1__py3-none-any.whl → 2.4.2__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/apps/__init__.py +1 -1
- nautobot/apps/api.py +8 -8
- nautobot/apps/change_logging.py +2 -2
- nautobot/apps/choices.py +4 -4
- nautobot/apps/events.py +3 -3
- nautobot/apps/factory.py +2 -2
- nautobot/apps/filters.py +1 -1
- nautobot/apps/forms.py +20 -20
- nautobot/apps/graphql.py +2 -2
- nautobot/apps/jobs.py +8 -8
- nautobot/apps/models.py +19 -19
- nautobot/apps/tables.py +1 -1
- nautobot/apps/testing.py +10 -10
- nautobot/apps/ui.py +2 -2
- nautobot/apps/utils.py +7 -7
- nautobot/apps/views.py +7 -7
- nautobot/circuits/api/serializers.py +1 -0
- nautobot/circuits/api/views.py +4 -8
- nautobot/circuits/tables.py +2 -1
- nautobot/circuits/templates/circuits/circuit_create.html +1 -7
- nautobot/circuits/tests/integration/test_circuits_bulk_operations.py +43 -0
- nautobot/circuits/tests/integration/test_relationships.py +1 -1
- nautobot/circuits/views.py +3 -3
- nautobot/cloud/api/views.py +6 -10
- nautobot/cloud/models.py +1 -1
- nautobot/cloud/views.py +0 -16
- nautobot/core/api/constants.py +11 -0
- nautobot/core/api/fields.py +5 -5
- nautobot/core/api/filter_backends.py +3 -9
- nautobot/core/api/schema.py +13 -2
- nautobot/core/api/serializers.py +40 -34
- nautobot/core/api/views.py +56 -4
- nautobot/core/apps/__init__.py +0 -5
- nautobot/core/celery/log.py +4 -4
- nautobot/core/celery/schedulers.py +2 -2
- nautobot/core/choices.py +2 -2
- nautobot/core/events/__init__.py +3 -3
- nautobot/core/filters.py +67 -35
- nautobot/core/forms/__init__.py +19 -19
- nautobot/core/forms/fields.py +14 -11
- nautobot/core/forms/forms.py +33 -2
- nautobot/core/graphql/types.py +1 -1
- nautobot/core/jobs/__init__.py +28 -7
- nautobot/core/jobs/bulk_actions.py +285 -0
- nautobot/core/jobs/cleanup.py +48 -12
- nautobot/core/jobs/groups.py +1 -1
- nautobot/core/management/commands/validate_models.py +1 -1
- nautobot/core/models/__init__.py +3 -1
- nautobot/core/models/query_functions.py +2 -2
- nautobot/core/models/tree_queries.py +6 -3
- nautobot/core/settings.py +29 -2
- nautobot/core/settings.yaml +21 -0
- nautobot/core/tables.py +79 -61
- nautobot/core/templates/about.html +67 -0
- nautobot/core/templates/generic/object_bulk_destroy.html +1 -1
- nautobot/core/templates/inc/media.html +3 -0
- nautobot/core/templates/inc/nav_menu.html +1 -0
- nautobot/core/templates/inc/tenancy_form_panel.html +9 -0
- nautobot/core/templates/inc/tenant_table_row.html +11 -0
- nautobot/core/templates/nautobot_config.py.j2 +13 -0
- nautobot/core/templates/search.html +7 -0
- nautobot/core/templates/utilities/render_jinja2.html +1 -1
- nautobot/core/templates/utilities/templatetags/tag.html +1 -1
- nautobot/core/templates/utilities/theme_preview.html +7 -0
- nautobot/core/templatetags/helpers.py +11 -2
- nautobot/core/testing/__init__.py +8 -8
- nautobot/core/testing/api.py +170 -15
- nautobot/core/testing/filters.py +45 -10
- nautobot/core/testing/forms.py +2 -0
- nautobot/core/testing/integration.py +514 -5
- nautobot/core/testing/mixins.py +7 -2
- nautobot/core/testing/views.py +44 -29
- nautobot/core/tests/integration/test_app_home.py +0 -1
- nautobot/core/tests/integration/test_app_navbar.py +0 -1
- nautobot/core/tests/integration/test_filters.py +0 -2
- nautobot/core/tests/integration/test_home.py +0 -1
- nautobot/core/tests/integration/test_navbar.py +0 -1
- nautobot/core/tests/integration/test_view_authentication.py +1 -0
- nautobot/core/tests/runner.py +1 -1
- nautobot/core/tests/test_api.py +98 -1
- nautobot/core/tests/test_csv.py +25 -3
- nautobot/core/tests/test_filters.py +209 -246
- nautobot/core/tests/test_forms.py +1 -0
- nautobot/core/tests/test_jobs.py +492 -1
- nautobot/core/tests/test_models.py +9 -0
- nautobot/core/tests/test_settings_schema.py +7 -0
- nautobot/core/tests/test_tables.py +100 -0
- nautobot/core/tests/test_utils.py +63 -1
- nautobot/core/tests/test_views.py +30 -3
- nautobot/core/ui/nav.py +1 -0
- nautobot/core/ui/object_detail.py +15 -1
- nautobot/core/urls.py +11 -0
- nautobot/core/utils/git.py +7 -2
- nautobot/core/utils/lookup.py +11 -8
- nautobot/core/utils/querysets.py +64 -0
- nautobot/core/utils/requests.py +24 -9
- nautobot/core/views/__init__.py +42 -0
- nautobot/core/views/generic.py +131 -197
- nautobot/core/views/mixins.py +136 -41
- nautobot/core/views/renderers.py +6 -6
- nautobot/core/views/utils.py +2 -2
- nautobot/dcim/api/serializers.py +56 -64
- nautobot/dcim/api/views.py +47 -113
- nautobot/dcim/constants.py +6 -13
- nautobot/dcim/factory.py +6 -1
- nautobot/dcim/filters/__init__.py +31 -2
- nautobot/dcim/forms.py +48 -17
- nautobot/dcim/graphql/types.py +2 -2
- nautobot/dcim/migrations/0067_controllermanageddevicegroup_tenant.py +25 -0
- nautobot/dcim/models/__init__.py +1 -1
- nautobot/dcim/models/device_component_templates.py +2 -2
- nautobot/dcim/models/device_components.py +22 -20
- nautobot/dcim/models/devices.py +10 -1
- nautobot/dcim/models/locations.py +3 -3
- nautobot/dcim/models/power.py +6 -5
- nautobot/dcim/models/racks.py +4 -4
- nautobot/dcim/tables/__init__.py +3 -3
- nautobot/dcim/tables/devices.py +9 -6
- nautobot/dcim/tables/devicetypes.py +2 -2
- nautobot/dcim/tables/racks.py +1 -1
- nautobot/dcim/templates/dcim/cable.html +1 -1
- nautobot/dcim/templates/dcim/controller_create.html +1 -7
- nautobot/dcim/templates/dcim/controller_retrieve.html +1 -9
- nautobot/dcim/templates/dcim/controllermanageddevicegroup_create.html +2 -0
- nautobot/dcim/templates/dcim/controllermanageddevicegroup_retrieve.html +5 -0
- nautobot/dcim/templates/dcim/device/base.html +1 -1
- nautobot/dcim/templates/dcim/device.html +3 -11
- nautobot/dcim/templates/dcim/device_component.html +1 -1
- nautobot/dcim/templates/dcim/device_edit.html +36 -37
- nautobot/dcim/templates/dcim/devicetype.html +1 -1
- nautobot/dcim/templates/dcim/location.html +2 -10
- nautobot/dcim/templates/dcim/location_edit.html +1 -7
- nautobot/dcim/templates/dcim/locationtype.html +1 -1
- nautobot/dcim/templates/dcim/locationtype_retrieve.html +1 -1
- nautobot/dcim/templates/dcim/manufacturer.html +1 -1
- nautobot/dcim/templates/dcim/platform.html +1 -1
- nautobot/dcim/templates/dcim/powerfeed.html +1 -1
- nautobot/dcim/templates/dcim/powerpanel.html +1 -1
- nautobot/dcim/templates/dcim/rack.html +2 -10
- nautobot/dcim/templates/dcim/rack_edit.html +1 -7
- nautobot/dcim/templates/dcim/rackgroup.html +1 -1
- nautobot/dcim/templates/dcim/rackreservation.html +3 -11
- nautobot/dcim/templates/dcim/virtualchassis.html +1 -1
- nautobot/dcim/templates/dcim/virtualdevicecontext_retrieve.html +1 -9
- nautobot/dcim/templates/dcim/virtualdevicecontext_update.html +1 -7
- nautobot/dcim/tests/integration/test_controller.py +62 -0
- nautobot/dcim/tests/integration/test_controller_managed_device_group.py +71 -0
- nautobot/dcim/tests/integration/test_device_bulk_operations.py +30 -0
- nautobot/dcim/tests/integration/test_location_bulk_operations.py +43 -0
- nautobot/dcim/tests/test_api.py +16 -5
- nautobot/dcim/tests/test_filters.py +33 -0
- nautobot/dcim/tests/test_forms.py +51 -2
- nautobot/dcim/tests/test_graphql.py +52 -0
- nautobot/dcim/tests/test_jobs.py +118 -0
- nautobot/dcim/tests/test_models.py +52 -9
- nautobot/dcim/tests/test_views.py +30 -84
- nautobot/dcim/views.py +13 -28
- nautobot/extras/api/customfields.py +2 -2
- nautobot/extras/api/serializers.py +123 -85
- nautobot/extras/api/views.py +33 -30
- nautobot/extras/constants.py +3 -0
- nautobot/extras/datasources/git.py +125 -0
- nautobot/extras/filters/__init__.py +8 -6
- nautobot/extras/forms/base.py +2 -2
- nautobot/extras/forms/forms.py +139 -31
- nautobot/extras/forms/mixins.py +14 -6
- nautobot/extras/group_sync.py +3 -3
- nautobot/extras/health_checks.py +1 -2
- nautobot/extras/jobs.py +85 -18
- nautobot/extras/managers.py +3 -1
- nautobot/extras/migrations/0018_joblog_data_migration.py +7 -9
- nautobot/extras/migrations/0120_job_is_singleton_job_is_singleton_override.py +22 -0
- nautobot/extras/migrations/0121_alter_team_contacts.py +17 -0
- nautobot/extras/migrations/0122_add_graphqlquery_owner_content_type.py +34 -0
- nautobot/extras/models/__init__.py +1 -1
- nautobot/extras/models/contacts.py +1 -1
- nautobot/extras/models/customfields.py +41 -23
- nautobot/extras/models/datasources.py +85 -0
- nautobot/extras/models/groups.py +11 -9
- nautobot/extras/models/jobs.py +23 -4
- nautobot/extras/models/models.py +17 -2
- nautobot/extras/models/relationships.py +17 -5
- nautobot/extras/plugins/__init__.py +13 -2
- nautobot/extras/plugins/marketplace_manifest.yml +84 -79
- nautobot/extras/plugins/tables.py +16 -14
- nautobot/extras/plugins/views.py +65 -69
- nautobot/extras/registry.py +1 -1
- nautobot/extras/secrets/__init__.py +2 -2
- nautobot/extras/signals.py +15 -1
- nautobot/extras/tables.py +7 -5
- nautobot/extras/templates/extras/computedfield.html +1 -1
- nautobot/extras/templates/extras/configcontext.html +1 -1
- nautobot/extras/templates/extras/configcontextschema.html +1 -1
- nautobot/extras/templates/extras/customfield.html +1 -1
- nautobot/extras/templates/extras/customlink.html +1 -1
- nautobot/extras/templates/extras/dynamicgroup.html +2 -10
- nautobot/extras/templates/extras/exporttemplate.html +1 -1
- nautobot/extras/templates/extras/gitrepository.html +1 -1
- nautobot/extras/templates/extras/graphqlquery.html +1 -1
- nautobot/extras/templates/extras/job_detail.html +17 -1
- nautobot/extras/templates/extras/job_edit.html +1 -0
- nautobot/extras/templates/extras/jobbutton_retrieve.html +1 -1
- nautobot/extras/templates/extras/jobhook.html +1 -1
- nautobot/extras/templates/extras/jobqueue_retrieve.html +1 -9
- nautobot/extras/templates/extras/jobresult.html +1 -1
- nautobot/extras/templates/extras/marketplace.html +29 -11
- nautobot/extras/templates/extras/objectchange.html +1 -1
- nautobot/extras/templates/extras/plugin_detail.html +33 -16
- nautobot/extras/templates/extras/plugins_tiles.html +21 -10
- nautobot/extras/templates/extras/relationship.html +1 -63
- nautobot/extras/templates/extras/role_retrieve.html +1 -1
- nautobot/extras/templates/extras/scheduledjob.html +1 -1
- nautobot/extras/templates/extras/secret.html +1 -1
- nautobot/extras/templates/extras/secretsgroup.html +1 -1
- nautobot/extras/templates/extras/status.html +1 -1
- nautobot/extras/templates/extras/tag.html +1 -1
- nautobot/extras/templates/extras/webhook.html +1 -1
- nautobot/extras/templatetags/job_buttons.py +4 -4
- nautobot/extras/test_jobs/api_test_job.py +1 -1
- nautobot/extras/test_jobs/atomic_transaction.py +2 -2
- nautobot/extras/test_jobs/dry_run.py +1 -1
- nautobot/extras/test_jobs/fail.py +5 -5
- nautobot/extras/test_jobs/file_output.py +1 -1
- nautobot/extras/test_jobs/file_upload_fail.py +1 -1
- nautobot/extras/test_jobs/file_upload_pass.py +1 -1
- nautobot/extras/test_jobs/ipaddress_vars.py +3 -1
- nautobot/extras/test_jobs/jobs_module/jobs_submodule/jobs.py +1 -1
- nautobot/extras/test_jobs/location_with_custom_field.py +1 -1
- nautobot/extras/test_jobs/log_redaction.py +1 -1
- nautobot/extras/test_jobs/log_skip_db_logging.py +1 -1
- nautobot/extras/test_jobs/modify_db.py +1 -1
- nautobot/extras/test_jobs/object_var_optional.py +1 -1
- nautobot/extras/test_jobs/object_var_required.py +1 -1
- nautobot/extras/test_jobs/object_vars.py +1 -1
- nautobot/extras/test_jobs/pass.py +3 -3
- nautobot/extras/test_jobs/profiling.py +1 -1
- nautobot/extras/test_jobs/relative_import.py +3 -3
- nautobot/extras/test_jobs/singleton.py +16 -0
- nautobot/extras/test_jobs/soft_time_limit_greater_than_time_limit.py +1 -1
- nautobot/extras/test_jobs/task_queues.py +1 -1
- nautobot/extras/tests/git_data/01-valid-files/graphql_queries/device_interfaces.gql +8 -0
- nautobot/extras/tests/git_data/01-valid-files/graphql_queries/device_names.gql +5 -0
- nautobot/extras/tests/git_data/02-invalid-files/graphql_queries/bad_device_names.gql +5 -0
- nautobot/extras/tests/git_helper.py +9 -1
- nautobot/extras/tests/integration/__init__.py +29 -16
- nautobot/extras/tests/integration/test_plugin_banner.py +0 -2
- nautobot/extras/tests/test_api.py +19 -13
- nautobot/extras/tests/test_customfields.py +50 -52
- nautobot/extras/tests/test_datasources.py +29 -1
- nautobot/extras/tests/test_dynamicgroups.py +1 -1
- nautobot/extras/tests/test_filters.py +6 -6
- nautobot/extras/tests/test_forms.py +33 -1
- nautobot/extras/tests/test_jobs.py +178 -32
- nautobot/extras/tests/test_models.py +299 -10
- nautobot/extras/tests/test_plugins.py +62 -9
- nautobot/extras/tests/test_relationships.py +120 -9
- nautobot/extras/tests/test_utils.py +22 -1
- nautobot/extras/tests/test_views.py +56 -194
- nautobot/extras/utils.py +20 -10
- nautobot/extras/views.py +85 -110
- nautobot/ipam/api/fields.py +3 -3
- nautobot/ipam/api/serializers.py +41 -33
- nautobot/ipam/api/views.py +68 -117
- nautobot/ipam/factory.py +1 -1
- nautobot/ipam/filters.py +3 -2
- nautobot/ipam/lookups.py +101 -62
- nautobot/ipam/models.py +74 -18
- nautobot/ipam/querysets.py +2 -2
- nautobot/ipam/tables.py +25 -9
- nautobot/ipam/templates/ipam/ipaddress.html +2 -10
- nautobot/ipam/templates/ipam/ipaddress_bulk_add.html +1 -7
- nautobot/ipam/templates/ipam/ipaddress_edit.html +1 -7
- nautobot/ipam/templates/ipam/prefix.html +2 -10
- nautobot/ipam/templates/ipam/prefix_edit.html +1 -7
- nautobot/ipam/templates/ipam/rir.html +1 -1
- nautobot/ipam/templates/ipam/routetarget.html +1 -1
- nautobot/ipam/templates/ipam/service.html +1 -1
- nautobot/ipam/templates/ipam/vlan.html +2 -10
- nautobot/ipam/templates/ipam/vlan_edit.html +1 -7
- nautobot/ipam/templates/ipam/vlangroup.html +1 -1
- nautobot/ipam/templates/ipam/vrf.html +1 -1
- nautobot/ipam/templates/ipam/vrf_edit.html +1 -7
- nautobot/ipam/tests/test_api.py +436 -3
- nautobot/ipam/tests/test_forms.py +49 -47
- nautobot/ipam/tests/test_migrations.py +30 -30
- nautobot/ipam/tests/test_models.py +119 -34
- nautobot/ipam/tests/test_querysets.py +63 -1
- nautobot/ipam/tests/test_utils.py +41 -2
- nautobot/ipam/tests/test_views.py +3 -0
- nautobot/ipam/utils/__init__.py +54 -17
- nautobot/ipam/views.py +61 -87
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.css.map +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.min.css.map +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.css +40 -2
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.css.map +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.min.css +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.min.css.map +1 -1
- nautobot/project-static/docs/404.html +131 -14
- nautobot/project-static/docs/apps/index.html +131 -14
- nautobot/project-static/docs/apps/nautobot-apps.html +132 -16
- nautobot/project-static/docs/assets/_mkdocstrings.css +25 -1
- nautobot/project-static/docs/assets/javascripts/{bundle.83f73b43.min.js → bundle.60a45f97.min.js} +2 -2
- nautobot/project-static/docs/assets/javascripts/{bundle.83f73b43.min.js.map → bundle.60a45f97.min.js.map} +2 -2
- nautobot/project-static/docs/assets/javascripts/workers/{search.6ce7567c.min.js → search.f8cc74c7.min.js} +1 -1
- nautobot/project-static/docs/assets/javascripts/workers/{search.6ce7567c.min.js.map → search.f8cc74c7.min.js.map} +1 -1
- nautobot/project-static/docs/assets/stylesheets/{main.6f8fc17f.min.css → main.a40c8224.min.css} +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +147 -20
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +144 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +459 -132
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +175 -28
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +180 -31
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +138 -16
- nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +137 -15
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +164 -27
- nautobot/project-static/docs/code-reference/nautobot/apps/events.html +187 -38
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +193 -31
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +216 -48
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +324 -75
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +666 -175
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +194 -46
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +538 -177
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +578 -221
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +145 -18
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +156 -25
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +492 -65
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +705 -215
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +943 -422
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +144 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +619 -200
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +474 -159
- nautobot/project-static/docs/development/apps/api/configuration-view.html +131 -14
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +131 -14
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +131 -14
- nautobot/project-static/docs/development/apps/api/models/global-search.html +131 -14
- nautobot/project-static/docs/development/apps/api/models/graphql.html +131 -14
- nautobot/project-static/docs/development/apps/api/models/index.html +131 -14
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +131 -14
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +131 -14
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +131 -14
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +131 -14
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +131 -14
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +131 -14
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +131 -14
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +131 -14
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +131 -14
- nautobot/project-static/docs/development/apps/api/platform-features/table-extensions.html +153 -17
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +131 -14
- nautobot/project-static/docs/development/apps/api/prometheus.html +131 -14
- nautobot/project-static/docs/development/apps/api/setup.html +131 -14
- nautobot/project-static/docs/development/apps/api/testing.html +131 -14
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +131 -14
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +131 -14
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +131 -14
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +131 -14
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/base-template.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/index.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/notes.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +137 -16
- nautobot/project-static/docs/development/apps/api/views/urls.html +131 -14
- nautobot/project-static/docs/development/apps/index.html +131 -14
- nautobot/project-static/docs/development/apps/migration/code-updates.html +131 -14
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +131 -14
- nautobot/project-static/docs/development/apps/migration/from-v1.html +131 -14
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +131 -14
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +131 -14
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +131 -14
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +131 -14
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/best-practices.html +135 -18
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/custom-content.html +131 -14
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/index.html +297 -25
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/migration-steps.html +131 -14
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +131 -14
- nautobot/project-static/docs/development/core/application-registry.html +131 -14
- nautobot/project-static/docs/development/core/best-practices.html +131 -14
- nautobot/project-static/docs/development/core/bootstrap-ui.html +131 -14
- nautobot/project-static/docs/development/core/caching.html +131 -14
- nautobot/project-static/docs/development/core/controllers.html +131 -14
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +158 -84
- nautobot/project-static/docs/development/core/generic-views.html +131 -14
- nautobot/project-static/docs/development/core/getting-started.html +334 -234
- nautobot/project-static/docs/development/core/homepage.html +134 -17
- nautobot/project-static/docs/development/core/index.html +131 -14
- nautobot/project-static/docs/development/core/minikube-dev-environment-for-k8s-jobs.html +9829 -0
- nautobot/project-static/docs/development/core/model-checklist.html +141 -22
- nautobot/project-static/docs/development/core/model-features.html +131 -14
- nautobot/project-static/docs/development/core/natural-keys.html +131 -14
- nautobot/project-static/docs/development/core/navigation-menu.html +131 -14
- nautobot/project-static/docs/development/core/release-checklist.html +134 -17
- nautobot/project-static/docs/development/core/role-internals.html +131 -14
- nautobot/project-static/docs/development/core/settings.html +131 -14
- nautobot/project-static/docs/development/core/style-guide.html +134 -17
- nautobot/project-static/docs/development/core/templates.html +132 -15
- nautobot/project-static/docs/development/core/testing.html +131 -14
- nautobot/project-static/docs/development/core/ui-component-framework.html +454 -283
- nautobot/project-static/docs/development/core/user-preferences.html +131 -14
- nautobot/project-static/docs/development/index.html +131 -14
- nautobot/project-static/docs/development/jobs/index.html +301 -132
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +131 -14
- nautobot/project-static/docs/index.html +139 -33
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_edit.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_edit_button.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_list_nav.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_list_view.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_queue.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_queue_add.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_queue_config.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_result_completed.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_result_nav.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_result_pending.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_run_form.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_nautobot_login.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_run_job.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_run_scheduled_job_form.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_scheduled_job_result.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/buttons-example.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/cluster-type-before-after-example.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/object-fields-panel-example_2.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/stats-panel-example-code.png +0 -0
- nautobot/project-static/docs/objects.inv +0 -0
- nautobot/project-static/docs/overview/application_stack.html +132 -17
- nautobot/project-static/docs/overview/design_philosophy.html +131 -14
- nautobot/project-static/docs/release-notes/index.html +137 -22
- nautobot/project-static/docs/release-notes/version-1.0.html +319 -203
- nautobot/project-static/docs/release-notes/version-1.1.html +316 -200
- nautobot/project-static/docs/release-notes/version-1.2.html +391 -275
- nautobot/project-static/docs/release-notes/version-1.3.html +417 -301
- nautobot/project-static/docs/release-notes/version-1.4.html +502 -387
- nautobot/project-static/docs/release-notes/version-1.5.html +690 -576
- nautobot/project-static/docs/release-notes/version-1.6.html +989 -457
- nautobot/project-static/docs/release-notes/version-2.0.html +613 -499
- nautobot/project-static/docs/release-notes/version-2.1.html +448 -334
- nautobot/project-static/docs/release-notes/version-2.2.html +441 -327
- nautobot/project-static/docs/release-notes/version-2.3.html +1171 -451
- nautobot/project-static/docs/release-notes/version-2.4.html +800 -111
- nautobot/project-static/docs/requirements.txt +2 -2
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +303 -287
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +131 -14
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +131 -14
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +133 -16
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +131 -14
- nautobot/project-static/docs/user-guide/administration/configuration/redis.html +131 -14
- nautobot/project-static/docs/user-guide/administration/configuration/settings.html +195 -18
- nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +131 -14
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +134 -17
- nautobot/project-static/docs/user-guide/administration/guides/docker.html +131 -14
- nautobot/project-static/docs/user-guide/administration/guides/health-checks.html +131 -14
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +131 -14
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +131 -14
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +131 -14
- nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +131 -14
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +133 -16
- nautobot/project-static/docs/user-guide/administration/guides/selinux-troubleshooting.html +131 -14
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +131 -14
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +131 -14
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +151 -18
- nautobot/project-static/docs/user-guide/administration/installation/index.html +131 -14
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +132 -15
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +131 -14
- nautobot/project-static/docs/user-guide/administration/installation/services.html +131 -14
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +131 -14
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +131 -14
- nautobot/project-static/docs/user-guide/administration/security/index.html +9420 -0
- nautobot/project-static/docs/user-guide/administration/security/notices.html +9843 -0
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +131 -14
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +131 -14
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +131 -14
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +131 -14
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +131 -14
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +131 -14
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +131 -14
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +134 -18
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +131 -14
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +131 -14
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloud.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudaccount.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetwork.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetworkprefixassignment.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudresourcetype.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservice.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservicenetworkassignment.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/module.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebay.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebaytemplate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/moduletype.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualdevicecontext.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +135 -22
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +134 -17
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/wireless/index.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/wireless/radioprofile.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/wireless/supporteddatarate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/wireless/wirelessnetwork.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +134 -17
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +236 -34
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/central-mode.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/device-group-add.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/device-group-create-1.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/device-group-create-2.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/radio-profile-add.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/radio-profile-create.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/supported-data-rate-add.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/supported-data-rate-create.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-controller-add.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-controller-create-1.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-controller-create-2.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-network-add.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-network-create.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +134 -17
- nautobot/project-static/docs/{development/core/local-k8s.html → user-guide/feature-guides/wireless-networks-and-controllers.html} +632 -566
- nautobot/project-static/docs/user-guide/index.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +135 -18
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/events.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +451 -16
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +135 -17
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +134 -17
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobqueue.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/kubernetes-job-support.html +9797 -0
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/objectmetadata.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +132 -15
- nautobot/project-static/docs/user-guide/platform-functionality/rendering-jinja-templates.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +179 -35
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +159 -15
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/savedview.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/staticgroupassociation.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +131 -14
- nautobot/project-static/js/forms.js +1 -1
- nautobot/tenancy/api/views.py +9 -13
- nautobot/tenancy/templates/tenancy/tenant.html +1 -2
- nautobot/tenancy/templates/tenancy/tenantgroup.html +1 -1
- nautobot/tenancy/views.py +4 -2
- nautobot/users/admin.py +1 -1
- nautobot/users/api/serializers.py +5 -4
- nautobot/users/api/views.py +3 -3
- nautobot/virtualization/api/serializers.py +4 -4
- nautobot/virtualization/api/views.py +5 -24
- nautobot/virtualization/filters.py +20 -3
- nautobot/virtualization/models.py +1 -1
- nautobot/virtualization/tables.py +2 -2
- nautobot/virtualization/templates/virtualization/cluster.html +1 -1
- nautobot/virtualization/templates/virtualization/cluster_edit.html +1 -7
- nautobot/virtualization/templates/virtualization/clustergroup.html +1 -1
- nautobot/virtualization/templates/virtualization/clustertype.html +1 -1
- nautobot/virtualization/templates/virtualization/virtualmachine.html +2 -10
- nautobot/virtualization/templates/virtualization/virtualmachine_edit.html +2 -8
- nautobot/virtualization/templates/virtualization/vminterface.html +1 -1
- nautobot/virtualization/tests/test_filters.py +17 -0
- nautobot/wireless/filters.py +2 -2
- nautobot/wireless/forms.py +1 -1
- nautobot/wireless/templates/wireless/wirelessnetwork_retrieve.html +1 -9
- nautobot/wireless/tests/integration/__init__.py +0 -0
- nautobot/wireless/tests/integration/test_radio_profile.py +42 -0
- nautobot/wireless/tests/test_filters.py +29 -1
- nautobot/wireless/tests/test_views.py +22 -1
- nautobot/wireless/views.py +0 -10
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.2.dist-info}/METADATA +9 -9
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.2.dist-info}/RECORD +667 -610
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.2.dist-info}/WHEEL +1 -1
- nautobot/core/fixtures/user-data.json +0 -59
- /nautobot/project-static/docs/assets/stylesheets/{main.6f8fc17f.min.css.map → main.a40c8224.min.css.map} +0 -0
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.2.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.2.dist-info}/NOTICE +0 -0
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.2.dist-info}/entry_points.txt +0 -0
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
<link rel="icon" href="../assets/favicon.ico">
|
|
21
|
-
<meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.5.
|
|
21
|
+
<meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.5.50">
|
|
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.a40c8224.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.7.
|
|
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.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M288 0H128c-17.7 0-32 14.3-32 32s14.3 32 32 32v132.8c0 11.8-3.3 23.5-9.5 33.5L10.3 406.2C3.6 417.2 0 429.7 0 442.6 0 480.9 31.1 512 69.4 512h309.2c38.3 0 69.4-31.1 69.4-69.4 0-12.8-3.6-25.4-10.3-36.4L329.5 230.4c-6.2-10.1-9.5-21.7-9.5-33.5V64c17.7 0 32-14.3 32-32S337.7 0 320 0zm-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.1"/></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.7.
|
|
220
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81"/></svg>
|
|
221
221
|
</div>
|
|
222
222
|
<div class="md-source__repository">
|
|
223
223
|
GitHub
|
|
@@ -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.7.
|
|
380
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81"/></svg>
|
|
381
381
|
</div>
|
|
382
382
|
<div class="md-source__repository">
|
|
383
383
|
GitHub
|
|
@@ -1697,6 +1697,81 @@
|
|
|
1697
1697
|
|
|
1698
1698
|
|
|
1699
1699
|
|
|
1700
|
+
|
|
1701
|
+
|
|
1702
|
+
|
|
1703
|
+
|
|
1704
|
+
|
|
1705
|
+
|
|
1706
|
+
|
|
1707
|
+
|
|
1708
|
+
|
|
1709
|
+
|
|
1710
|
+
|
|
1711
|
+
|
|
1712
|
+
|
|
1713
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
1714
|
+
|
|
1715
|
+
|
|
1716
|
+
|
|
1717
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_7" >
|
|
1718
|
+
|
|
1719
|
+
|
|
1720
|
+
|
|
1721
|
+
<div class="md-nav__link md-nav__container">
|
|
1722
|
+
<a href="../user-guide/administration/security/index.html" class="md-nav__link ">
|
|
1723
|
+
|
|
1724
|
+
|
|
1725
|
+
<span class="md-ellipsis">
|
|
1726
|
+
Security
|
|
1727
|
+
</span>
|
|
1728
|
+
|
|
1729
|
+
|
|
1730
|
+
</a>
|
|
1731
|
+
|
|
1732
|
+
|
|
1733
|
+
<label class="md-nav__link " for="__nav_2_1_7" id="__nav_2_1_7_label" tabindex="0">
|
|
1734
|
+
<span class="md-nav__icon md-icon"></span>
|
|
1735
|
+
</label>
|
|
1736
|
+
|
|
1737
|
+
</div>
|
|
1738
|
+
|
|
1739
|
+
<nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_1_7_label" aria-expanded="false">
|
|
1740
|
+
<label class="md-nav__title" for="__nav_2_1_7">
|
|
1741
|
+
<span class="md-nav__icon md-icon"></span>
|
|
1742
|
+
Security
|
|
1743
|
+
</label>
|
|
1744
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
1745
|
+
|
|
1746
|
+
|
|
1747
|
+
|
|
1748
|
+
|
|
1749
|
+
|
|
1750
|
+
|
|
1751
|
+
|
|
1752
|
+
<li class="md-nav__item">
|
|
1753
|
+
<a href="../user-guide/administration/security/notices.html" class="md-nav__link">
|
|
1754
|
+
|
|
1755
|
+
|
|
1756
|
+
<span class="md-ellipsis">
|
|
1757
|
+
Notices
|
|
1758
|
+
</span>
|
|
1759
|
+
|
|
1760
|
+
|
|
1761
|
+
</a>
|
|
1762
|
+
</li>
|
|
1763
|
+
|
|
1764
|
+
|
|
1765
|
+
|
|
1766
|
+
|
|
1767
|
+
</ul>
|
|
1768
|
+
</nav>
|
|
1769
|
+
|
|
1770
|
+
</li>
|
|
1771
|
+
|
|
1772
|
+
|
|
1773
|
+
|
|
1774
|
+
|
|
1700
1775
|
</ul>
|
|
1701
1776
|
</nav>
|
|
1702
1777
|
|
|
@@ -2112,6 +2187,27 @@
|
|
|
2112
2187
|
|
|
2113
2188
|
|
|
2114
2189
|
|
|
2190
|
+
|
|
2191
|
+
|
|
2192
|
+
|
|
2193
|
+
|
|
2194
|
+
|
|
2195
|
+
|
|
2196
|
+
<li class="md-nav__item">
|
|
2197
|
+
<a href="../user-guide/feature-guides/wireless-networks-and-controllers.html" class="md-nav__link">
|
|
2198
|
+
|
|
2199
|
+
|
|
2200
|
+
<span class="md-ellipsis">
|
|
2201
|
+
Wireless Networks and Controllers
|
|
2202
|
+
</span>
|
|
2203
|
+
|
|
2204
|
+
|
|
2205
|
+
</a>
|
|
2206
|
+
</li>
|
|
2207
|
+
|
|
2208
|
+
|
|
2209
|
+
|
|
2210
|
+
|
|
2115
2211
|
</ul>
|
|
2116
2212
|
</nav>
|
|
2117
2213
|
|
|
@@ -5131,6 +5227,27 @@
|
|
|
5131
5227
|
|
|
5132
5228
|
|
|
5133
5229
|
|
|
5230
|
+
<li class="md-nav__item">
|
|
5231
|
+
<a href="../user-guide/platform-functionality/jobs/kubernetes-job-support.html" class="md-nav__link">
|
|
5232
|
+
|
|
5233
|
+
|
|
5234
|
+
<span class="md-ellipsis">
|
|
5235
|
+
Kubernetes Job Support
|
|
5236
|
+
</span>
|
|
5237
|
+
|
|
5238
|
+
|
|
5239
|
+
</a>
|
|
5240
|
+
</li>
|
|
5241
|
+
|
|
5242
|
+
|
|
5243
|
+
|
|
5244
|
+
|
|
5245
|
+
|
|
5246
|
+
|
|
5247
|
+
|
|
5248
|
+
|
|
5249
|
+
|
|
5250
|
+
|
|
5134
5251
|
<li class="md-nav__item">
|
|
5135
5252
|
<a href="../user-guide/platform-functionality/jobs/jobbutton.html" class="md-nav__link">
|
|
5136
5253
|
|
|
@@ -8055,11 +8172,11 @@
|
|
|
8055
8172
|
|
|
8056
8173
|
|
|
8057
8174
|
<li class="md-nav__item">
|
|
8058
|
-
<a href="../development/core/
|
|
8175
|
+
<a href="../development/core/minikube-dev-environment-for-k8s-jobs.html" class="md-nav__link">
|
|
8059
8176
|
|
|
8060
8177
|
|
|
8061
8178
|
<span class="md-ellipsis">
|
|
8062
|
-
|
|
8179
|
+
Minikube Dev Environment for K8s Jobs
|
|
8063
8180
|
</span>
|
|
8064
8181
|
|
|
8065
8182
|
|
|
@@ -8843,45 +8960,45 @@
|
|
|
8843
8960
|
<ul class="md-nav__list">
|
|
8844
8961
|
|
|
8845
8962
|
<li class="md-nav__item">
|
|
8846
|
-
<a href="#
|
|
8963
|
+
<a href="#added-in-v1211" class="md-nav__link">
|
|
8847
8964
|
<span class="md-ellipsis">
|
|
8848
|
-
Added
|
|
8965
|
+
Added in v1.2.11
|
|
8849
8966
|
</span>
|
|
8850
8967
|
</a>
|
|
8851
8968
|
|
|
8852
8969
|
</li>
|
|
8853
8970
|
|
|
8854
8971
|
<li class="md-nav__item">
|
|
8855
|
-
<a href="#
|
|
8972
|
+
<a href="#changed-in-v1211" class="md-nav__link">
|
|
8856
8973
|
<span class="md-ellipsis">
|
|
8857
|
-
Changed
|
|
8974
|
+
Changed in v1.2.11
|
|
8858
8975
|
</span>
|
|
8859
8976
|
</a>
|
|
8860
8977
|
|
|
8861
8978
|
</li>
|
|
8862
8979
|
|
|
8863
8980
|
<li class="md-nav__item">
|
|
8864
|
-
<a href="#fixed" class="md-nav__link">
|
|
8981
|
+
<a href="#fixed-in-v1211" class="md-nav__link">
|
|
8865
8982
|
<span class="md-ellipsis">
|
|
8866
|
-
Fixed
|
|
8983
|
+
Fixed in v1.2.11
|
|
8867
8984
|
</span>
|
|
8868
8985
|
</a>
|
|
8869
8986
|
|
|
8870
8987
|
</li>
|
|
8871
8988
|
|
|
8872
8989
|
<li class="md-nav__item">
|
|
8873
|
-
<a href="#documentation" class="md-nav__link">
|
|
8990
|
+
<a href="#documentation-in-v1211" class="md-nav__link">
|
|
8874
8991
|
<span class="md-ellipsis">
|
|
8875
|
-
Documentation
|
|
8992
|
+
Documentation in v1.2.11
|
|
8876
8993
|
</span>
|
|
8877
8994
|
</a>
|
|
8878
8995
|
|
|
8879
8996
|
</li>
|
|
8880
8997
|
|
|
8881
8998
|
<li class="md-nav__item">
|
|
8882
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
8999
|
+
<a href="#housekeeping-in-v1211" class="md-nav__link">
|
|
8883
9000
|
<span class="md-ellipsis">
|
|
8884
|
-
Housekeeping
|
|
9001
|
+
Housekeeping in v1.2.11
|
|
8885
9002
|
</span>
|
|
8886
9003
|
</a>
|
|
8887
9004
|
|
|
@@ -8903,18 +9020,18 @@
|
|
|
8903
9020
|
<ul class="md-nav__list">
|
|
8904
9021
|
|
|
8905
9022
|
<li class="md-nav__item">
|
|
8906
|
-
<a href="#
|
|
9023
|
+
<a href="#documentation-in-v1210" class="md-nav__link">
|
|
8907
9024
|
<span class="md-ellipsis">
|
|
8908
|
-
Documentation
|
|
9025
|
+
Documentation in v1.2.10
|
|
8909
9026
|
</span>
|
|
8910
9027
|
</a>
|
|
8911
9028
|
|
|
8912
9029
|
</li>
|
|
8913
9030
|
|
|
8914
9031
|
<li class="md-nav__item">
|
|
8915
|
-
<a href="#
|
|
9032
|
+
<a href="#housekeeping-in-v1210" class="md-nav__link">
|
|
8916
9033
|
<span class="md-ellipsis">
|
|
8917
|
-
Housekeeping
|
|
9034
|
+
Housekeeping in v1.2.10
|
|
8918
9035
|
</span>
|
|
8919
9036
|
</a>
|
|
8920
9037
|
|
|
@@ -8936,18 +9053,18 @@
|
|
|
8936
9053
|
<ul class="md-nav__list">
|
|
8937
9054
|
|
|
8938
9055
|
<li class="md-nav__item">
|
|
8939
|
-
<a href="#security" class="md-nav__link">
|
|
9056
|
+
<a href="#security-in-v129" class="md-nav__link">
|
|
8940
9057
|
<span class="md-ellipsis">
|
|
8941
|
-
Security
|
|
9058
|
+
Security in v1.2.9
|
|
8942
9059
|
</span>
|
|
8943
9060
|
</a>
|
|
8944
9061
|
|
|
8945
9062
|
</li>
|
|
8946
9063
|
|
|
8947
9064
|
<li class="md-nav__item">
|
|
8948
|
-
<a href="#
|
|
9065
|
+
<a href="#fixed-in-v129" class="md-nav__link">
|
|
8949
9066
|
<span class="md-ellipsis">
|
|
8950
|
-
Fixed
|
|
9067
|
+
Fixed in v1.2.9
|
|
8951
9068
|
</span>
|
|
8952
9069
|
</a>
|
|
8953
9070
|
|
|
@@ -8969,54 +9086,54 @@
|
|
|
8969
9086
|
<ul class="md-nav__list">
|
|
8970
9087
|
|
|
8971
9088
|
<li class="md-nav__item">
|
|
8972
|
-
<a href="#
|
|
9089
|
+
<a href="#added-in-v128" class="md-nav__link">
|
|
8973
9090
|
<span class="md-ellipsis">
|
|
8974
|
-
Added
|
|
9091
|
+
Added in v1.2.8
|
|
8975
9092
|
</span>
|
|
8976
9093
|
</a>
|
|
8977
9094
|
|
|
8978
9095
|
</li>
|
|
8979
9096
|
|
|
8980
9097
|
<li class="md-nav__item">
|
|
8981
|
-
<a href="#
|
|
9098
|
+
<a href="#changed-in-v128" class="md-nav__link">
|
|
8982
9099
|
<span class="md-ellipsis">
|
|
8983
|
-
Changed
|
|
9100
|
+
Changed in v1.2.8
|
|
8984
9101
|
</span>
|
|
8985
9102
|
</a>
|
|
8986
9103
|
|
|
8987
9104
|
</li>
|
|
8988
9105
|
|
|
8989
9106
|
<li class="md-nav__item">
|
|
8990
|
-
<a href="#
|
|
9107
|
+
<a href="#fixed-in-v128" class="md-nav__link">
|
|
8991
9108
|
<span class="md-ellipsis">
|
|
8992
|
-
Fixed
|
|
9109
|
+
Fixed in v1.2.8
|
|
8993
9110
|
</span>
|
|
8994
9111
|
</a>
|
|
8995
9112
|
|
|
8996
9113
|
</li>
|
|
8997
9114
|
|
|
8998
9115
|
<li class="md-nav__item">
|
|
8999
|
-
<a href="#dependencies" class="md-nav__link">
|
|
9116
|
+
<a href="#dependencies-in-v128" class="md-nav__link">
|
|
9000
9117
|
<span class="md-ellipsis">
|
|
9001
|
-
Dependencies
|
|
9118
|
+
Dependencies in v1.2.8
|
|
9002
9119
|
</span>
|
|
9003
9120
|
</a>
|
|
9004
9121
|
|
|
9005
9122
|
</li>
|
|
9006
9123
|
|
|
9007
9124
|
<li class="md-nav__item">
|
|
9008
|
-
<a href="#
|
|
9125
|
+
<a href="#documentation-in-v128" class="md-nav__link">
|
|
9009
9126
|
<span class="md-ellipsis">
|
|
9010
|
-
Documentation
|
|
9127
|
+
Documentation in v1.2.8
|
|
9011
9128
|
</span>
|
|
9012
9129
|
</a>
|
|
9013
9130
|
|
|
9014
9131
|
</li>
|
|
9015
9132
|
|
|
9016
9133
|
<li class="md-nav__item">
|
|
9017
|
-
<a href="#
|
|
9134
|
+
<a href="#housekeeping-in-v128" class="md-nav__link">
|
|
9018
9135
|
<span class="md-ellipsis">
|
|
9019
|
-
Housekeeping
|
|
9136
|
+
Housekeeping in v1.2.8
|
|
9020
9137
|
</span>
|
|
9021
9138
|
</a>
|
|
9022
9139
|
|
|
@@ -9038,9 +9155,9 @@
|
|
|
9038
9155
|
<ul class="md-nav__list">
|
|
9039
9156
|
|
|
9040
9157
|
<li class="md-nav__item">
|
|
9041
|
-
<a href="#
|
|
9158
|
+
<a href="#housekeeping-in-v127" class="md-nav__link">
|
|
9042
9159
|
<span class="md-ellipsis">
|
|
9043
|
-
Housekeeping
|
|
9160
|
+
Housekeeping in v1.2.7
|
|
9044
9161
|
</span>
|
|
9045
9162
|
</a>
|
|
9046
9163
|
|
|
@@ -9062,45 +9179,45 @@
|
|
|
9062
9179
|
<ul class="md-nav__list">
|
|
9063
9180
|
|
|
9064
9181
|
<li class="md-nav__item">
|
|
9065
|
-
<a href="#
|
|
9182
|
+
<a href="#added-in-v126" class="md-nav__link">
|
|
9066
9183
|
<span class="md-ellipsis">
|
|
9067
|
-
Added
|
|
9184
|
+
Added in v1.2.6
|
|
9068
9185
|
</span>
|
|
9069
9186
|
</a>
|
|
9070
9187
|
|
|
9071
9188
|
</li>
|
|
9072
9189
|
|
|
9073
9190
|
<li class="md-nav__item">
|
|
9074
|
-
<a href="#
|
|
9191
|
+
<a href="#fixed-in-v126" class="md-nav__link">
|
|
9075
9192
|
<span class="md-ellipsis">
|
|
9076
|
-
Fixed
|
|
9193
|
+
Fixed in v1.2.6
|
|
9077
9194
|
</span>
|
|
9078
9195
|
</a>
|
|
9079
9196
|
|
|
9080
9197
|
</li>
|
|
9081
9198
|
|
|
9082
9199
|
<li class="md-nav__item">
|
|
9083
|
-
<a href="#
|
|
9200
|
+
<a href="#dependencies-in-v126" class="md-nav__link">
|
|
9084
9201
|
<span class="md-ellipsis">
|
|
9085
|
-
Dependencies
|
|
9202
|
+
Dependencies in v1.2.6
|
|
9086
9203
|
</span>
|
|
9087
9204
|
</a>
|
|
9088
9205
|
|
|
9089
9206
|
</li>
|
|
9090
9207
|
|
|
9091
9208
|
<li class="md-nav__item">
|
|
9092
|
-
<a href="#
|
|
9209
|
+
<a href="#documentation-in-v126" class="md-nav__link">
|
|
9093
9210
|
<span class="md-ellipsis">
|
|
9094
|
-
Documentation
|
|
9211
|
+
Documentation in v1.2.6
|
|
9095
9212
|
</span>
|
|
9096
9213
|
</a>
|
|
9097
9214
|
|
|
9098
9215
|
</li>
|
|
9099
9216
|
|
|
9100
9217
|
<li class="md-nav__item">
|
|
9101
|
-
<a href="#
|
|
9218
|
+
<a href="#housekeeping-in-v126" class="md-nav__link">
|
|
9102
9219
|
<span class="md-ellipsis">
|
|
9103
|
-
Housekeeping
|
|
9220
|
+
Housekeeping in v1.2.6
|
|
9104
9221
|
</span>
|
|
9105
9222
|
</a>
|
|
9106
9223
|
|
|
@@ -9122,27 +9239,27 @@
|
|
|
9122
9239
|
<ul class="md-nav__list">
|
|
9123
9240
|
|
|
9124
9241
|
<li class="md-nav__item">
|
|
9125
|
-
<a href="#
|
|
9242
|
+
<a href="#fixed-in-v125" class="md-nav__link">
|
|
9126
9243
|
<span class="md-ellipsis">
|
|
9127
|
-
Fixed
|
|
9244
|
+
Fixed in v1.2.5
|
|
9128
9245
|
</span>
|
|
9129
9246
|
</a>
|
|
9130
9247
|
|
|
9131
9248
|
</li>
|
|
9132
9249
|
|
|
9133
9250
|
<li class="md-nav__item">
|
|
9134
|
-
<a href="#
|
|
9251
|
+
<a href="#documentation-in-v125" class="md-nav__link">
|
|
9135
9252
|
<span class="md-ellipsis">
|
|
9136
|
-
Documentation
|
|
9253
|
+
Documentation in v1.2.5
|
|
9137
9254
|
</span>
|
|
9138
9255
|
</a>
|
|
9139
9256
|
|
|
9140
9257
|
</li>
|
|
9141
9258
|
|
|
9142
9259
|
<li class="md-nav__item">
|
|
9143
|
-
<a href="#
|
|
9260
|
+
<a href="#housekeeping-in-v125" class="md-nav__link">
|
|
9144
9261
|
<span class="md-ellipsis">
|
|
9145
|
-
Housekeeping
|
|
9262
|
+
Housekeeping in v1.2.5
|
|
9146
9263
|
</span>
|
|
9147
9264
|
</a>
|
|
9148
9265
|
|
|
@@ -9164,45 +9281,45 @@
|
|
|
9164
9281
|
<ul class="md-nav__list">
|
|
9165
9282
|
|
|
9166
9283
|
<li class="md-nav__item">
|
|
9167
|
-
<a href="#
|
|
9284
|
+
<a href="#security-in-v124" class="md-nav__link">
|
|
9168
9285
|
<span class="md-ellipsis">
|
|
9169
|
-
Security
|
|
9286
|
+
Security in v1.2.4
|
|
9170
9287
|
</span>
|
|
9171
9288
|
</a>
|
|
9172
9289
|
|
|
9173
9290
|
</li>
|
|
9174
9291
|
|
|
9175
9292
|
<li class="md-nav__item">
|
|
9176
|
-
<a href="#
|
|
9293
|
+
<a href="#changed-in-v124" class="md-nav__link">
|
|
9177
9294
|
<span class="md-ellipsis">
|
|
9178
|
-
Changed
|
|
9295
|
+
Changed in v1.2.4
|
|
9179
9296
|
</span>
|
|
9180
9297
|
</a>
|
|
9181
9298
|
|
|
9182
9299
|
</li>
|
|
9183
9300
|
|
|
9184
9301
|
<li class="md-nav__item">
|
|
9185
|
-
<a href="#
|
|
9302
|
+
<a href="#fixed-in-v124" class="md-nav__link">
|
|
9186
9303
|
<span class="md-ellipsis">
|
|
9187
|
-
Fixed
|
|
9304
|
+
Fixed in v1.2.4
|
|
9188
9305
|
</span>
|
|
9189
9306
|
</a>
|
|
9190
9307
|
|
|
9191
9308
|
</li>
|
|
9192
9309
|
|
|
9193
9310
|
<li class="md-nav__item">
|
|
9194
|
-
<a href="#
|
|
9311
|
+
<a href="#documentation-in-v124" class="md-nav__link">
|
|
9195
9312
|
<span class="md-ellipsis">
|
|
9196
|
-
Documentation
|
|
9313
|
+
Documentation in v1.2.4
|
|
9197
9314
|
</span>
|
|
9198
9315
|
</a>
|
|
9199
9316
|
|
|
9200
9317
|
</li>
|
|
9201
9318
|
|
|
9202
9319
|
<li class="md-nav__item">
|
|
9203
|
-
<a href="#
|
|
9320
|
+
<a href="#housekeeping-in-v124" class="md-nav__link">
|
|
9204
9321
|
<span class="md-ellipsis">
|
|
9205
|
-
Housekeeping
|
|
9322
|
+
Housekeeping in v1.2.4
|
|
9206
9323
|
</span>
|
|
9207
9324
|
</a>
|
|
9208
9325
|
|
|
@@ -9224,27 +9341,27 @@
|
|
|
9224
9341
|
<ul class="md-nav__list">
|
|
9225
9342
|
|
|
9226
9343
|
<li class="md-nav__item">
|
|
9227
|
-
<a href="#
|
|
9344
|
+
<a href="#security-in-v123" class="md-nav__link">
|
|
9228
9345
|
<span class="md-ellipsis">
|
|
9229
|
-
Security
|
|
9346
|
+
Security in v1.2.3
|
|
9230
9347
|
</span>
|
|
9231
9348
|
</a>
|
|
9232
9349
|
|
|
9233
9350
|
</li>
|
|
9234
9351
|
|
|
9235
9352
|
<li class="md-nav__item">
|
|
9236
|
-
<a href="#
|
|
9353
|
+
<a href="#fixed-in-v123" class="md-nav__link">
|
|
9237
9354
|
<span class="md-ellipsis">
|
|
9238
|
-
Fixed
|
|
9355
|
+
Fixed in v1.2.3
|
|
9239
9356
|
</span>
|
|
9240
9357
|
</a>
|
|
9241
9358
|
|
|
9242
9359
|
</li>
|
|
9243
9360
|
|
|
9244
9361
|
<li class="md-nav__item">
|
|
9245
|
-
<a href="#
|
|
9362
|
+
<a href="#documentation-in-v123" class="md-nav__link">
|
|
9246
9363
|
<span class="md-ellipsis">
|
|
9247
|
-
Documentation
|
|
9364
|
+
Documentation in v1.2.3
|
|
9248
9365
|
</span>
|
|
9249
9366
|
</a>
|
|
9250
9367
|
|
|
@@ -9266,36 +9383,36 @@
|
|
|
9266
9383
|
<ul class="md-nav__list">
|
|
9267
9384
|
|
|
9268
9385
|
<li class="md-nav__item">
|
|
9269
|
-
<a href="#
|
|
9386
|
+
<a href="#added-in-v122" class="md-nav__link">
|
|
9270
9387
|
<span class="md-ellipsis">
|
|
9271
|
-
Added
|
|
9388
|
+
Added in v1.2.2
|
|
9272
9389
|
</span>
|
|
9273
9390
|
</a>
|
|
9274
9391
|
|
|
9275
9392
|
</li>
|
|
9276
9393
|
|
|
9277
9394
|
<li class="md-nav__item">
|
|
9278
|
-
<a href="#
|
|
9395
|
+
<a href="#changed-in-v122" class="md-nav__link">
|
|
9279
9396
|
<span class="md-ellipsis">
|
|
9280
|
-
Changed
|
|
9397
|
+
Changed in v1.2.2
|
|
9281
9398
|
</span>
|
|
9282
9399
|
</a>
|
|
9283
9400
|
|
|
9284
9401
|
</li>
|
|
9285
9402
|
|
|
9286
9403
|
<li class="md-nav__item">
|
|
9287
|
-
<a href="#
|
|
9404
|
+
<a href="#fixed-in-v122" class="md-nav__link">
|
|
9288
9405
|
<span class="md-ellipsis">
|
|
9289
|
-
Fixed
|
|
9406
|
+
Fixed in v1.2.2
|
|
9290
9407
|
</span>
|
|
9291
9408
|
</a>
|
|
9292
9409
|
|
|
9293
9410
|
</li>
|
|
9294
9411
|
|
|
9295
9412
|
<li class="md-nav__item">
|
|
9296
|
-
<a href="#
|
|
9413
|
+
<a href="#documentation-in-v122" class="md-nav__link">
|
|
9297
9414
|
<span class="md-ellipsis">
|
|
9298
|
-
Documentation
|
|
9415
|
+
Documentation in v1.2.2
|
|
9299
9416
|
</span>
|
|
9300
9417
|
</a>
|
|
9301
9418
|
|
|
@@ -9317,36 +9434,36 @@
|
|
|
9317
9434
|
<ul class="md-nav__list">
|
|
9318
9435
|
|
|
9319
9436
|
<li class="md-nav__item">
|
|
9320
|
-
<a href="#
|
|
9437
|
+
<a href="#security-in-v121" class="md-nav__link">
|
|
9321
9438
|
<span class="md-ellipsis">
|
|
9322
|
-
Security
|
|
9439
|
+
Security in v1.2.1
|
|
9323
9440
|
</span>
|
|
9324
9441
|
</a>
|
|
9325
9442
|
|
|
9326
9443
|
</li>
|
|
9327
9444
|
|
|
9328
9445
|
<li class="md-nav__item">
|
|
9329
|
-
<a href="#
|
|
9446
|
+
<a href="#added-in-v121" class="md-nav__link">
|
|
9330
9447
|
<span class="md-ellipsis">
|
|
9331
|
-
Added
|
|
9448
|
+
Added in v1.2.1
|
|
9332
9449
|
</span>
|
|
9333
9450
|
</a>
|
|
9334
9451
|
|
|
9335
9452
|
</li>
|
|
9336
9453
|
|
|
9337
9454
|
<li class="md-nav__item">
|
|
9338
|
-
<a href="#
|
|
9455
|
+
<a href="#changed-in-v121" class="md-nav__link">
|
|
9339
9456
|
<span class="md-ellipsis">
|
|
9340
|
-
Changed
|
|
9457
|
+
Changed in v1.2.1
|
|
9341
9458
|
</span>
|
|
9342
9459
|
</a>
|
|
9343
9460
|
|
|
9344
9461
|
</li>
|
|
9345
9462
|
|
|
9346
9463
|
<li class="md-nav__item">
|
|
9347
|
-
<a href="#
|
|
9464
|
+
<a href="#fixed-in-v121" class="md-nav__link">
|
|
9348
9465
|
<span class="md-ellipsis">
|
|
9349
|
-
Fixed
|
|
9466
|
+
Fixed in v1.2.1
|
|
9350
9467
|
</span>
|
|
9351
9468
|
</a>
|
|
9352
9469
|
|
|
@@ -9368,54 +9485,54 @@
|
|
|
9368
9485
|
<ul class="md-nav__list">
|
|
9369
9486
|
|
|
9370
9487
|
<li class="md-nav__item">
|
|
9371
|
-
<a href="#
|
|
9488
|
+
<a href="#added-in-v120" class="md-nav__link">
|
|
9372
9489
|
<span class="md-ellipsis">
|
|
9373
|
-
Added
|
|
9490
|
+
Added in v1.2.0
|
|
9374
9491
|
</span>
|
|
9375
9492
|
</a>
|
|
9376
9493
|
|
|
9377
9494
|
</li>
|
|
9378
9495
|
|
|
9379
9496
|
<li class="md-nav__item">
|
|
9380
|
-
<a href="#
|
|
9497
|
+
<a href="#changed-in-v120" class="md-nav__link">
|
|
9381
9498
|
<span class="md-ellipsis">
|
|
9382
|
-
Changed
|
|
9499
|
+
Changed in v1.2.0
|
|
9383
9500
|
</span>
|
|
9384
9501
|
</a>
|
|
9385
9502
|
|
|
9386
9503
|
</li>
|
|
9387
9504
|
|
|
9388
9505
|
<li class="md-nav__item">
|
|
9389
|
-
<a href="#removed" class="md-nav__link">
|
|
9506
|
+
<a href="#removed-in-v120" class="md-nav__link">
|
|
9390
9507
|
<span class="md-ellipsis">
|
|
9391
|
-
Removed
|
|
9508
|
+
Removed in v1.2.0
|
|
9392
9509
|
</span>
|
|
9393
9510
|
</a>
|
|
9394
9511
|
|
|
9395
9512
|
</li>
|
|
9396
9513
|
|
|
9397
9514
|
<li class="md-nav__item">
|
|
9398
|
-
<a href="#
|
|
9515
|
+
<a href="#fixed-in-v120" class="md-nav__link">
|
|
9399
9516
|
<span class="md-ellipsis">
|
|
9400
|
-
Fixed
|
|
9517
|
+
Fixed in v1.2.0
|
|
9401
9518
|
</span>
|
|
9402
9519
|
</a>
|
|
9403
9520
|
|
|
9404
9521
|
</li>
|
|
9405
9522
|
|
|
9406
9523
|
<li class="md-nav__item">
|
|
9407
|
-
<a href="#
|
|
9524
|
+
<a href="#dependencies-in-v120" class="md-nav__link">
|
|
9408
9525
|
<span class="md-ellipsis">
|
|
9409
|
-
Dependencies
|
|
9526
|
+
Dependencies in v1.2.0
|
|
9410
9527
|
</span>
|
|
9411
9528
|
</a>
|
|
9412
9529
|
|
|
9413
9530
|
</li>
|
|
9414
9531
|
|
|
9415
9532
|
<li class="md-nav__item">
|
|
9416
|
-
<a href="#
|
|
9533
|
+
<a href="#documentation-in-v120" class="md-nav__link">
|
|
9417
9534
|
<span class="md-ellipsis">
|
|
9418
|
-
Documentation
|
|
9535
|
+
Documentation in v1.2.0
|
|
9419
9536
|
</span>
|
|
9420
9537
|
</a>
|
|
9421
9538
|
|
|
@@ -9437,54 +9554,54 @@
|
|
|
9437
9554
|
<ul class="md-nav__list">
|
|
9438
9555
|
|
|
9439
9556
|
<li class="md-nav__item">
|
|
9440
|
-
<a href="#
|
|
9557
|
+
<a href="#security-in-v120b1" class="md-nav__link">
|
|
9441
9558
|
<span class="md-ellipsis">
|
|
9442
|
-
Security
|
|
9559
|
+
Security in v1.2.0b1
|
|
9443
9560
|
</span>
|
|
9444
9561
|
</a>
|
|
9445
9562
|
|
|
9446
9563
|
</li>
|
|
9447
9564
|
|
|
9448
9565
|
<li class="md-nav__item">
|
|
9449
|
-
<a href="#
|
|
9566
|
+
<a href="#added-in-v120b1" class="md-nav__link">
|
|
9450
9567
|
<span class="md-ellipsis">
|
|
9451
|
-
Added
|
|
9568
|
+
Added in v1.2.0b1
|
|
9452
9569
|
</span>
|
|
9453
9570
|
</a>
|
|
9454
9571
|
|
|
9455
9572
|
</li>
|
|
9456
9573
|
|
|
9457
9574
|
<li class="md-nav__item">
|
|
9458
|
-
<a href="#
|
|
9575
|
+
<a href="#changed-in-v120b1" class="md-nav__link">
|
|
9459
9576
|
<span class="md-ellipsis">
|
|
9460
|
-
Changed
|
|
9577
|
+
Changed in v1.2.0b1
|
|
9461
9578
|
</span>
|
|
9462
9579
|
</a>
|
|
9463
9580
|
|
|
9464
9581
|
</li>
|
|
9465
9582
|
|
|
9466
9583
|
<li class="md-nav__item">
|
|
9467
|
-
<a href="#
|
|
9584
|
+
<a href="#fixed-in-v120b1" class="md-nav__link">
|
|
9468
9585
|
<span class="md-ellipsis">
|
|
9469
|
-
Fixed
|
|
9586
|
+
Fixed in v1.2.0b1
|
|
9470
9587
|
</span>
|
|
9471
9588
|
</a>
|
|
9472
9589
|
|
|
9473
9590
|
</li>
|
|
9474
9591
|
|
|
9475
9592
|
<li class="md-nav__item">
|
|
9476
|
-
<a href="#
|
|
9593
|
+
<a href="#documentation-in-v120b1" class="md-nav__link">
|
|
9477
9594
|
<span class="md-ellipsis">
|
|
9478
|
-
Documentation
|
|
9595
|
+
Documentation in v1.2.0b1
|
|
9479
9596
|
</span>
|
|
9480
9597
|
</a>
|
|
9481
9598
|
|
|
9482
9599
|
</li>
|
|
9483
9600
|
|
|
9484
9601
|
<li class="md-nav__item">
|
|
9485
|
-
<a href="#
|
|
9602
|
+
<a href="#housekeeping-in-v120b1" class="md-nav__link">
|
|
9486
9603
|
<span class="md-ellipsis">
|
|
9487
|
-
Housekeeping
|
|
9604
|
+
Housekeeping in v1.2.0b1
|
|
9488
9605
|
</span>
|
|
9489
9606
|
</a>
|
|
9490
9607
|
|
|
@@ -10144,45 +10261,45 @@
|
|
|
10144
10261
|
<ul class="md-nav__list">
|
|
10145
10262
|
|
|
10146
10263
|
<li class="md-nav__item">
|
|
10147
|
-
<a href="#
|
|
10264
|
+
<a href="#added-in-v1211" class="md-nav__link">
|
|
10148
10265
|
<span class="md-ellipsis">
|
|
10149
|
-
Added
|
|
10266
|
+
Added in v1.2.11
|
|
10150
10267
|
</span>
|
|
10151
10268
|
</a>
|
|
10152
10269
|
|
|
10153
10270
|
</li>
|
|
10154
10271
|
|
|
10155
10272
|
<li class="md-nav__item">
|
|
10156
|
-
<a href="#
|
|
10273
|
+
<a href="#changed-in-v1211" class="md-nav__link">
|
|
10157
10274
|
<span class="md-ellipsis">
|
|
10158
|
-
Changed
|
|
10275
|
+
Changed in v1.2.11
|
|
10159
10276
|
</span>
|
|
10160
10277
|
</a>
|
|
10161
10278
|
|
|
10162
10279
|
</li>
|
|
10163
10280
|
|
|
10164
10281
|
<li class="md-nav__item">
|
|
10165
|
-
<a href="#fixed" class="md-nav__link">
|
|
10282
|
+
<a href="#fixed-in-v1211" class="md-nav__link">
|
|
10166
10283
|
<span class="md-ellipsis">
|
|
10167
|
-
Fixed
|
|
10284
|
+
Fixed in v1.2.11
|
|
10168
10285
|
</span>
|
|
10169
10286
|
</a>
|
|
10170
10287
|
|
|
10171
10288
|
</li>
|
|
10172
10289
|
|
|
10173
10290
|
<li class="md-nav__item">
|
|
10174
|
-
<a href="#documentation" class="md-nav__link">
|
|
10291
|
+
<a href="#documentation-in-v1211" class="md-nav__link">
|
|
10175
10292
|
<span class="md-ellipsis">
|
|
10176
|
-
Documentation
|
|
10293
|
+
Documentation in v1.2.11
|
|
10177
10294
|
</span>
|
|
10178
10295
|
</a>
|
|
10179
10296
|
|
|
10180
10297
|
</li>
|
|
10181
10298
|
|
|
10182
10299
|
<li class="md-nav__item">
|
|
10183
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
10300
|
+
<a href="#housekeeping-in-v1211" class="md-nav__link">
|
|
10184
10301
|
<span class="md-ellipsis">
|
|
10185
|
-
Housekeeping
|
|
10302
|
+
Housekeeping in v1.2.11
|
|
10186
10303
|
</span>
|
|
10187
10304
|
</a>
|
|
10188
10305
|
|
|
@@ -10204,18 +10321,18 @@
|
|
|
10204
10321
|
<ul class="md-nav__list">
|
|
10205
10322
|
|
|
10206
10323
|
<li class="md-nav__item">
|
|
10207
|
-
<a href="#
|
|
10324
|
+
<a href="#documentation-in-v1210" class="md-nav__link">
|
|
10208
10325
|
<span class="md-ellipsis">
|
|
10209
|
-
Documentation
|
|
10326
|
+
Documentation in v1.2.10
|
|
10210
10327
|
</span>
|
|
10211
10328
|
</a>
|
|
10212
10329
|
|
|
10213
10330
|
</li>
|
|
10214
10331
|
|
|
10215
10332
|
<li class="md-nav__item">
|
|
10216
|
-
<a href="#
|
|
10333
|
+
<a href="#housekeeping-in-v1210" class="md-nav__link">
|
|
10217
10334
|
<span class="md-ellipsis">
|
|
10218
|
-
Housekeeping
|
|
10335
|
+
Housekeeping in v1.2.10
|
|
10219
10336
|
</span>
|
|
10220
10337
|
</a>
|
|
10221
10338
|
|
|
@@ -10237,18 +10354,18 @@
|
|
|
10237
10354
|
<ul class="md-nav__list">
|
|
10238
10355
|
|
|
10239
10356
|
<li class="md-nav__item">
|
|
10240
|
-
<a href="#security" class="md-nav__link">
|
|
10357
|
+
<a href="#security-in-v129" class="md-nav__link">
|
|
10241
10358
|
<span class="md-ellipsis">
|
|
10242
|
-
Security
|
|
10359
|
+
Security in v1.2.9
|
|
10243
10360
|
</span>
|
|
10244
10361
|
</a>
|
|
10245
10362
|
|
|
10246
10363
|
</li>
|
|
10247
10364
|
|
|
10248
10365
|
<li class="md-nav__item">
|
|
10249
|
-
<a href="#
|
|
10366
|
+
<a href="#fixed-in-v129" class="md-nav__link">
|
|
10250
10367
|
<span class="md-ellipsis">
|
|
10251
|
-
Fixed
|
|
10368
|
+
Fixed in v1.2.9
|
|
10252
10369
|
</span>
|
|
10253
10370
|
</a>
|
|
10254
10371
|
|
|
@@ -10270,54 +10387,54 @@
|
|
|
10270
10387
|
<ul class="md-nav__list">
|
|
10271
10388
|
|
|
10272
10389
|
<li class="md-nav__item">
|
|
10273
|
-
<a href="#
|
|
10390
|
+
<a href="#added-in-v128" class="md-nav__link">
|
|
10274
10391
|
<span class="md-ellipsis">
|
|
10275
|
-
Added
|
|
10392
|
+
Added in v1.2.8
|
|
10276
10393
|
</span>
|
|
10277
10394
|
</a>
|
|
10278
10395
|
|
|
10279
10396
|
</li>
|
|
10280
10397
|
|
|
10281
10398
|
<li class="md-nav__item">
|
|
10282
|
-
<a href="#
|
|
10399
|
+
<a href="#changed-in-v128" class="md-nav__link">
|
|
10283
10400
|
<span class="md-ellipsis">
|
|
10284
|
-
Changed
|
|
10401
|
+
Changed in v1.2.8
|
|
10285
10402
|
</span>
|
|
10286
10403
|
</a>
|
|
10287
10404
|
|
|
10288
10405
|
</li>
|
|
10289
10406
|
|
|
10290
10407
|
<li class="md-nav__item">
|
|
10291
|
-
<a href="#
|
|
10408
|
+
<a href="#fixed-in-v128" class="md-nav__link">
|
|
10292
10409
|
<span class="md-ellipsis">
|
|
10293
|
-
Fixed
|
|
10410
|
+
Fixed in v1.2.8
|
|
10294
10411
|
</span>
|
|
10295
10412
|
</a>
|
|
10296
10413
|
|
|
10297
10414
|
</li>
|
|
10298
10415
|
|
|
10299
10416
|
<li class="md-nav__item">
|
|
10300
|
-
<a href="#dependencies" class="md-nav__link">
|
|
10417
|
+
<a href="#dependencies-in-v128" class="md-nav__link">
|
|
10301
10418
|
<span class="md-ellipsis">
|
|
10302
|
-
Dependencies
|
|
10419
|
+
Dependencies in v1.2.8
|
|
10303
10420
|
</span>
|
|
10304
10421
|
</a>
|
|
10305
10422
|
|
|
10306
10423
|
</li>
|
|
10307
10424
|
|
|
10308
10425
|
<li class="md-nav__item">
|
|
10309
|
-
<a href="#
|
|
10426
|
+
<a href="#documentation-in-v128" class="md-nav__link">
|
|
10310
10427
|
<span class="md-ellipsis">
|
|
10311
|
-
Documentation
|
|
10428
|
+
Documentation in v1.2.8
|
|
10312
10429
|
</span>
|
|
10313
10430
|
</a>
|
|
10314
10431
|
|
|
10315
10432
|
</li>
|
|
10316
10433
|
|
|
10317
10434
|
<li class="md-nav__item">
|
|
10318
|
-
<a href="#
|
|
10435
|
+
<a href="#housekeeping-in-v128" class="md-nav__link">
|
|
10319
10436
|
<span class="md-ellipsis">
|
|
10320
|
-
Housekeeping
|
|
10437
|
+
Housekeeping in v1.2.8
|
|
10321
10438
|
</span>
|
|
10322
10439
|
</a>
|
|
10323
10440
|
|
|
@@ -10339,9 +10456,9 @@
|
|
|
10339
10456
|
<ul class="md-nav__list">
|
|
10340
10457
|
|
|
10341
10458
|
<li class="md-nav__item">
|
|
10342
|
-
<a href="#
|
|
10459
|
+
<a href="#housekeeping-in-v127" class="md-nav__link">
|
|
10343
10460
|
<span class="md-ellipsis">
|
|
10344
|
-
Housekeeping
|
|
10461
|
+
Housekeeping in v1.2.7
|
|
10345
10462
|
</span>
|
|
10346
10463
|
</a>
|
|
10347
10464
|
|
|
@@ -10363,45 +10480,45 @@
|
|
|
10363
10480
|
<ul class="md-nav__list">
|
|
10364
10481
|
|
|
10365
10482
|
<li class="md-nav__item">
|
|
10366
|
-
<a href="#
|
|
10483
|
+
<a href="#added-in-v126" class="md-nav__link">
|
|
10367
10484
|
<span class="md-ellipsis">
|
|
10368
|
-
Added
|
|
10485
|
+
Added in v1.2.6
|
|
10369
10486
|
</span>
|
|
10370
10487
|
</a>
|
|
10371
10488
|
|
|
10372
10489
|
</li>
|
|
10373
10490
|
|
|
10374
10491
|
<li class="md-nav__item">
|
|
10375
|
-
<a href="#
|
|
10492
|
+
<a href="#fixed-in-v126" class="md-nav__link">
|
|
10376
10493
|
<span class="md-ellipsis">
|
|
10377
|
-
Fixed
|
|
10494
|
+
Fixed in v1.2.6
|
|
10378
10495
|
</span>
|
|
10379
10496
|
</a>
|
|
10380
10497
|
|
|
10381
10498
|
</li>
|
|
10382
10499
|
|
|
10383
10500
|
<li class="md-nav__item">
|
|
10384
|
-
<a href="#
|
|
10501
|
+
<a href="#dependencies-in-v126" class="md-nav__link">
|
|
10385
10502
|
<span class="md-ellipsis">
|
|
10386
|
-
Dependencies
|
|
10503
|
+
Dependencies in v1.2.6
|
|
10387
10504
|
</span>
|
|
10388
10505
|
</a>
|
|
10389
10506
|
|
|
10390
10507
|
</li>
|
|
10391
10508
|
|
|
10392
10509
|
<li class="md-nav__item">
|
|
10393
|
-
<a href="#
|
|
10510
|
+
<a href="#documentation-in-v126" class="md-nav__link">
|
|
10394
10511
|
<span class="md-ellipsis">
|
|
10395
|
-
Documentation
|
|
10512
|
+
Documentation in v1.2.6
|
|
10396
10513
|
</span>
|
|
10397
10514
|
</a>
|
|
10398
10515
|
|
|
10399
10516
|
</li>
|
|
10400
10517
|
|
|
10401
10518
|
<li class="md-nav__item">
|
|
10402
|
-
<a href="#
|
|
10519
|
+
<a href="#housekeeping-in-v126" class="md-nav__link">
|
|
10403
10520
|
<span class="md-ellipsis">
|
|
10404
|
-
Housekeeping
|
|
10521
|
+
Housekeeping in v1.2.6
|
|
10405
10522
|
</span>
|
|
10406
10523
|
</a>
|
|
10407
10524
|
|
|
@@ -10423,27 +10540,27 @@
|
|
|
10423
10540
|
<ul class="md-nav__list">
|
|
10424
10541
|
|
|
10425
10542
|
<li class="md-nav__item">
|
|
10426
|
-
<a href="#
|
|
10543
|
+
<a href="#fixed-in-v125" class="md-nav__link">
|
|
10427
10544
|
<span class="md-ellipsis">
|
|
10428
|
-
Fixed
|
|
10545
|
+
Fixed in v1.2.5
|
|
10429
10546
|
</span>
|
|
10430
10547
|
</a>
|
|
10431
10548
|
|
|
10432
10549
|
</li>
|
|
10433
10550
|
|
|
10434
10551
|
<li class="md-nav__item">
|
|
10435
|
-
<a href="#
|
|
10552
|
+
<a href="#documentation-in-v125" class="md-nav__link">
|
|
10436
10553
|
<span class="md-ellipsis">
|
|
10437
|
-
Documentation
|
|
10554
|
+
Documentation in v1.2.5
|
|
10438
10555
|
</span>
|
|
10439
10556
|
</a>
|
|
10440
10557
|
|
|
10441
10558
|
</li>
|
|
10442
10559
|
|
|
10443
10560
|
<li class="md-nav__item">
|
|
10444
|
-
<a href="#
|
|
10561
|
+
<a href="#housekeeping-in-v125" class="md-nav__link">
|
|
10445
10562
|
<span class="md-ellipsis">
|
|
10446
|
-
Housekeeping
|
|
10563
|
+
Housekeeping in v1.2.5
|
|
10447
10564
|
</span>
|
|
10448
10565
|
</a>
|
|
10449
10566
|
|
|
@@ -10465,45 +10582,45 @@
|
|
|
10465
10582
|
<ul class="md-nav__list">
|
|
10466
10583
|
|
|
10467
10584
|
<li class="md-nav__item">
|
|
10468
|
-
<a href="#
|
|
10585
|
+
<a href="#security-in-v124" class="md-nav__link">
|
|
10469
10586
|
<span class="md-ellipsis">
|
|
10470
|
-
Security
|
|
10587
|
+
Security in v1.2.4
|
|
10471
10588
|
</span>
|
|
10472
10589
|
</a>
|
|
10473
10590
|
|
|
10474
10591
|
</li>
|
|
10475
10592
|
|
|
10476
10593
|
<li class="md-nav__item">
|
|
10477
|
-
<a href="#
|
|
10594
|
+
<a href="#changed-in-v124" class="md-nav__link">
|
|
10478
10595
|
<span class="md-ellipsis">
|
|
10479
|
-
Changed
|
|
10596
|
+
Changed in v1.2.4
|
|
10480
10597
|
</span>
|
|
10481
10598
|
</a>
|
|
10482
10599
|
|
|
10483
10600
|
</li>
|
|
10484
10601
|
|
|
10485
10602
|
<li class="md-nav__item">
|
|
10486
|
-
<a href="#
|
|
10603
|
+
<a href="#fixed-in-v124" class="md-nav__link">
|
|
10487
10604
|
<span class="md-ellipsis">
|
|
10488
|
-
Fixed
|
|
10605
|
+
Fixed in v1.2.4
|
|
10489
10606
|
</span>
|
|
10490
10607
|
</a>
|
|
10491
10608
|
|
|
10492
10609
|
</li>
|
|
10493
10610
|
|
|
10494
10611
|
<li class="md-nav__item">
|
|
10495
|
-
<a href="#
|
|
10612
|
+
<a href="#documentation-in-v124" class="md-nav__link">
|
|
10496
10613
|
<span class="md-ellipsis">
|
|
10497
|
-
Documentation
|
|
10614
|
+
Documentation in v1.2.4
|
|
10498
10615
|
</span>
|
|
10499
10616
|
</a>
|
|
10500
10617
|
|
|
10501
10618
|
</li>
|
|
10502
10619
|
|
|
10503
10620
|
<li class="md-nav__item">
|
|
10504
|
-
<a href="#
|
|
10621
|
+
<a href="#housekeeping-in-v124" class="md-nav__link">
|
|
10505
10622
|
<span class="md-ellipsis">
|
|
10506
|
-
Housekeeping
|
|
10623
|
+
Housekeeping in v1.2.4
|
|
10507
10624
|
</span>
|
|
10508
10625
|
</a>
|
|
10509
10626
|
|
|
@@ -10525,27 +10642,27 @@
|
|
|
10525
10642
|
<ul class="md-nav__list">
|
|
10526
10643
|
|
|
10527
10644
|
<li class="md-nav__item">
|
|
10528
|
-
<a href="#
|
|
10645
|
+
<a href="#security-in-v123" class="md-nav__link">
|
|
10529
10646
|
<span class="md-ellipsis">
|
|
10530
|
-
Security
|
|
10647
|
+
Security in v1.2.3
|
|
10531
10648
|
</span>
|
|
10532
10649
|
</a>
|
|
10533
10650
|
|
|
10534
10651
|
</li>
|
|
10535
10652
|
|
|
10536
10653
|
<li class="md-nav__item">
|
|
10537
|
-
<a href="#
|
|
10654
|
+
<a href="#fixed-in-v123" class="md-nav__link">
|
|
10538
10655
|
<span class="md-ellipsis">
|
|
10539
|
-
Fixed
|
|
10656
|
+
Fixed in v1.2.3
|
|
10540
10657
|
</span>
|
|
10541
10658
|
</a>
|
|
10542
10659
|
|
|
10543
10660
|
</li>
|
|
10544
10661
|
|
|
10545
10662
|
<li class="md-nav__item">
|
|
10546
|
-
<a href="#
|
|
10663
|
+
<a href="#documentation-in-v123" class="md-nav__link">
|
|
10547
10664
|
<span class="md-ellipsis">
|
|
10548
|
-
Documentation
|
|
10665
|
+
Documentation in v1.2.3
|
|
10549
10666
|
</span>
|
|
10550
10667
|
</a>
|
|
10551
10668
|
|
|
@@ -10567,36 +10684,36 @@
|
|
|
10567
10684
|
<ul class="md-nav__list">
|
|
10568
10685
|
|
|
10569
10686
|
<li class="md-nav__item">
|
|
10570
|
-
<a href="#
|
|
10687
|
+
<a href="#added-in-v122" class="md-nav__link">
|
|
10571
10688
|
<span class="md-ellipsis">
|
|
10572
|
-
Added
|
|
10689
|
+
Added in v1.2.2
|
|
10573
10690
|
</span>
|
|
10574
10691
|
</a>
|
|
10575
10692
|
|
|
10576
10693
|
</li>
|
|
10577
10694
|
|
|
10578
10695
|
<li class="md-nav__item">
|
|
10579
|
-
<a href="#
|
|
10696
|
+
<a href="#changed-in-v122" class="md-nav__link">
|
|
10580
10697
|
<span class="md-ellipsis">
|
|
10581
|
-
Changed
|
|
10698
|
+
Changed in v1.2.2
|
|
10582
10699
|
</span>
|
|
10583
10700
|
</a>
|
|
10584
10701
|
|
|
10585
10702
|
</li>
|
|
10586
10703
|
|
|
10587
10704
|
<li class="md-nav__item">
|
|
10588
|
-
<a href="#
|
|
10705
|
+
<a href="#fixed-in-v122" class="md-nav__link">
|
|
10589
10706
|
<span class="md-ellipsis">
|
|
10590
|
-
Fixed
|
|
10707
|
+
Fixed in v1.2.2
|
|
10591
10708
|
</span>
|
|
10592
10709
|
</a>
|
|
10593
10710
|
|
|
10594
10711
|
</li>
|
|
10595
10712
|
|
|
10596
10713
|
<li class="md-nav__item">
|
|
10597
|
-
<a href="#
|
|
10714
|
+
<a href="#documentation-in-v122" class="md-nav__link">
|
|
10598
10715
|
<span class="md-ellipsis">
|
|
10599
|
-
Documentation
|
|
10716
|
+
Documentation in v1.2.2
|
|
10600
10717
|
</span>
|
|
10601
10718
|
</a>
|
|
10602
10719
|
|
|
@@ -10618,36 +10735,36 @@
|
|
|
10618
10735
|
<ul class="md-nav__list">
|
|
10619
10736
|
|
|
10620
10737
|
<li class="md-nav__item">
|
|
10621
|
-
<a href="#
|
|
10738
|
+
<a href="#security-in-v121" class="md-nav__link">
|
|
10622
10739
|
<span class="md-ellipsis">
|
|
10623
|
-
Security
|
|
10740
|
+
Security in v1.2.1
|
|
10624
10741
|
</span>
|
|
10625
10742
|
</a>
|
|
10626
10743
|
|
|
10627
10744
|
</li>
|
|
10628
10745
|
|
|
10629
10746
|
<li class="md-nav__item">
|
|
10630
|
-
<a href="#
|
|
10747
|
+
<a href="#added-in-v121" class="md-nav__link">
|
|
10631
10748
|
<span class="md-ellipsis">
|
|
10632
|
-
Added
|
|
10749
|
+
Added in v1.2.1
|
|
10633
10750
|
</span>
|
|
10634
10751
|
</a>
|
|
10635
10752
|
|
|
10636
10753
|
</li>
|
|
10637
10754
|
|
|
10638
10755
|
<li class="md-nav__item">
|
|
10639
|
-
<a href="#
|
|
10756
|
+
<a href="#changed-in-v121" class="md-nav__link">
|
|
10640
10757
|
<span class="md-ellipsis">
|
|
10641
|
-
Changed
|
|
10758
|
+
Changed in v1.2.1
|
|
10642
10759
|
</span>
|
|
10643
10760
|
</a>
|
|
10644
10761
|
|
|
10645
10762
|
</li>
|
|
10646
10763
|
|
|
10647
10764
|
<li class="md-nav__item">
|
|
10648
|
-
<a href="#
|
|
10765
|
+
<a href="#fixed-in-v121" class="md-nav__link">
|
|
10649
10766
|
<span class="md-ellipsis">
|
|
10650
|
-
Fixed
|
|
10767
|
+
Fixed in v1.2.1
|
|
10651
10768
|
</span>
|
|
10652
10769
|
</a>
|
|
10653
10770
|
|
|
@@ -10669,54 +10786,54 @@
|
|
|
10669
10786
|
<ul class="md-nav__list">
|
|
10670
10787
|
|
|
10671
10788
|
<li class="md-nav__item">
|
|
10672
|
-
<a href="#
|
|
10789
|
+
<a href="#added-in-v120" class="md-nav__link">
|
|
10673
10790
|
<span class="md-ellipsis">
|
|
10674
|
-
Added
|
|
10791
|
+
Added in v1.2.0
|
|
10675
10792
|
</span>
|
|
10676
10793
|
</a>
|
|
10677
10794
|
|
|
10678
10795
|
</li>
|
|
10679
10796
|
|
|
10680
10797
|
<li class="md-nav__item">
|
|
10681
|
-
<a href="#
|
|
10798
|
+
<a href="#changed-in-v120" class="md-nav__link">
|
|
10682
10799
|
<span class="md-ellipsis">
|
|
10683
|
-
Changed
|
|
10800
|
+
Changed in v1.2.0
|
|
10684
10801
|
</span>
|
|
10685
10802
|
</a>
|
|
10686
10803
|
|
|
10687
10804
|
</li>
|
|
10688
10805
|
|
|
10689
10806
|
<li class="md-nav__item">
|
|
10690
|
-
<a href="#removed" class="md-nav__link">
|
|
10807
|
+
<a href="#removed-in-v120" class="md-nav__link">
|
|
10691
10808
|
<span class="md-ellipsis">
|
|
10692
|
-
Removed
|
|
10809
|
+
Removed in v1.2.0
|
|
10693
10810
|
</span>
|
|
10694
10811
|
</a>
|
|
10695
10812
|
|
|
10696
10813
|
</li>
|
|
10697
10814
|
|
|
10698
10815
|
<li class="md-nav__item">
|
|
10699
|
-
<a href="#
|
|
10816
|
+
<a href="#fixed-in-v120" class="md-nav__link">
|
|
10700
10817
|
<span class="md-ellipsis">
|
|
10701
|
-
Fixed
|
|
10818
|
+
Fixed in v1.2.0
|
|
10702
10819
|
</span>
|
|
10703
10820
|
</a>
|
|
10704
10821
|
|
|
10705
10822
|
</li>
|
|
10706
10823
|
|
|
10707
10824
|
<li class="md-nav__item">
|
|
10708
|
-
<a href="#
|
|
10825
|
+
<a href="#dependencies-in-v120" class="md-nav__link">
|
|
10709
10826
|
<span class="md-ellipsis">
|
|
10710
|
-
Dependencies
|
|
10827
|
+
Dependencies in v1.2.0
|
|
10711
10828
|
</span>
|
|
10712
10829
|
</a>
|
|
10713
10830
|
|
|
10714
10831
|
</li>
|
|
10715
10832
|
|
|
10716
10833
|
<li class="md-nav__item">
|
|
10717
|
-
<a href="#
|
|
10834
|
+
<a href="#documentation-in-v120" class="md-nav__link">
|
|
10718
10835
|
<span class="md-ellipsis">
|
|
10719
|
-
Documentation
|
|
10836
|
+
Documentation in v1.2.0
|
|
10720
10837
|
</span>
|
|
10721
10838
|
</a>
|
|
10722
10839
|
|
|
@@ -10738,54 +10855,54 @@
|
|
|
10738
10855
|
<ul class="md-nav__list">
|
|
10739
10856
|
|
|
10740
10857
|
<li class="md-nav__item">
|
|
10741
|
-
<a href="#
|
|
10858
|
+
<a href="#security-in-v120b1" class="md-nav__link">
|
|
10742
10859
|
<span class="md-ellipsis">
|
|
10743
|
-
Security
|
|
10860
|
+
Security in v1.2.0b1
|
|
10744
10861
|
</span>
|
|
10745
10862
|
</a>
|
|
10746
10863
|
|
|
10747
10864
|
</li>
|
|
10748
10865
|
|
|
10749
10866
|
<li class="md-nav__item">
|
|
10750
|
-
<a href="#
|
|
10867
|
+
<a href="#added-in-v120b1" class="md-nav__link">
|
|
10751
10868
|
<span class="md-ellipsis">
|
|
10752
|
-
Added
|
|
10869
|
+
Added in v1.2.0b1
|
|
10753
10870
|
</span>
|
|
10754
10871
|
</a>
|
|
10755
10872
|
|
|
10756
10873
|
</li>
|
|
10757
10874
|
|
|
10758
10875
|
<li class="md-nav__item">
|
|
10759
|
-
<a href="#
|
|
10876
|
+
<a href="#changed-in-v120b1" class="md-nav__link">
|
|
10760
10877
|
<span class="md-ellipsis">
|
|
10761
|
-
Changed
|
|
10878
|
+
Changed in v1.2.0b1
|
|
10762
10879
|
</span>
|
|
10763
10880
|
</a>
|
|
10764
10881
|
|
|
10765
10882
|
</li>
|
|
10766
10883
|
|
|
10767
10884
|
<li class="md-nav__item">
|
|
10768
|
-
<a href="#
|
|
10885
|
+
<a href="#fixed-in-v120b1" class="md-nav__link">
|
|
10769
10886
|
<span class="md-ellipsis">
|
|
10770
|
-
Fixed
|
|
10887
|
+
Fixed in v1.2.0b1
|
|
10771
10888
|
</span>
|
|
10772
10889
|
</a>
|
|
10773
10890
|
|
|
10774
10891
|
</li>
|
|
10775
10892
|
|
|
10776
10893
|
<li class="md-nav__item">
|
|
10777
|
-
<a href="#
|
|
10894
|
+
<a href="#documentation-in-v120b1" class="md-nav__link">
|
|
10778
10895
|
<span class="md-ellipsis">
|
|
10779
|
-
Documentation
|
|
10896
|
+
Documentation in v1.2.0b1
|
|
10780
10897
|
</span>
|
|
10781
10898
|
</a>
|
|
10782
10899
|
|
|
10783
10900
|
</li>
|
|
10784
10901
|
|
|
10785
10902
|
<li class="md-nav__item">
|
|
10786
|
-
<a href="#
|
|
10903
|
+
<a href="#housekeeping-in-v120b1" class="md-nav__link">
|
|
10787
10904
|
<span class="md-ellipsis">
|
|
10788
|
-
Housekeeping
|
|
10905
|
+
Housekeeping in v1.2.0b1
|
|
10789
10906
|
</span>
|
|
10790
10907
|
</a>
|
|
10791
10908
|
|
|
@@ -10814,7 +10931,6 @@
|
|
|
10814
10931
|
|
|
10815
10932
|
|
|
10816
10933
|
|
|
10817
|
-
<!-- markdownlint-disable MD024 -->
|
|
10818
10934
|
<h1 id="nautobot-v12">Nautobot v1.2<a class="headerlink" href="#nautobot-v12" title="Permanent link">¶</a></h1>
|
|
10819
10935
|
<p>This document describes all new features and changes in Nautobot 1.2.</p>
|
|
10820
10936
|
<p>If you are a user migrating from NetBox to Nautobot, please refer to the <a href="../user-guide/administration/migration/migrating-from-netbox.html">"Migrating from NetBox"</a> documentation.</p>
|
|
@@ -10902,51 +11018,51 @@
|
|
|
10902
11018
|
<p>All models that have <code>slug</code> fields now use <code>AutoSlugField</code> from the <code>django-extensions</code> package. This means that when creating a record via the REST API, CSV import, or direct ORM Python calls, the <code>slug</code> field is now fully optional; if unspecified, it will be automatically assigned a unique value, just as how a <code>slug</code> is auto-populated in the UI when creating a new record.</p>
|
|
10903
11019
|
<p>Just as with the UI, the <code>slug</code> can still always be explicitly set if desired.</p>
|
|
10904
11020
|
<h2 id="v1211-2022-04-04">v1.2.11 (2022-04-04)<a class="headerlink" href="#v1211-2022-04-04" title="Permanent link">¶</a></h2>
|
|
10905
|
-
<h3 id="
|
|
11021
|
+
<h3 id="added-in-v1211">Added in v1.2.11<a class="headerlink" href="#added-in-v1211" title="Permanent link">¶</a></h3>
|
|
10906
11022
|
<ul>
|
|
10907
11023
|
<li><a href="https://github.com/nautobot/nautobot/issues/1123">#1123</a> - Add validation for IPAddress <code>assigned_object_type</code> and <code>assigned_object_id</code>.</li>
|
|
10908
11024
|
<li><a href="https://github.com/nautobot/nautobot/issues/1146">#1146</a> - Added change date filtering lookup expressions to GraphQL.</li>
|
|
10909
11025
|
<li><a href="https://github.com/nautobot/nautobot/issues/1495">#1495</a> - Added full coverage of cable termination types to Graphene.</li>
|
|
10910
11026
|
<li><a href="https://github.com/nautobot/nautobot/issues/1501">#1501</a> - Add IP field to CSV export of device.</li>
|
|
10911
11027
|
</ul>
|
|
10912
|
-
<h3 id="
|
|
11028
|
+
<h3 id="changed-in-v1211">Changed in v1.2.11<a class="headerlink" href="#changed-in-v1211" title="Permanent link">¶</a></h3>
|
|
10913
11029
|
<ul>
|
|
10914
11030
|
<li><a href="https://github.com/nautobot/nautobot/pull/1536">#1536</a> - Removed the ServiceUnavailable exception when no <code>primary_ip</code> is available for a device, but other connection options are available.</li>
|
|
10915
11031
|
<li><a href="https://github.com/nautobot/nautobot/issues/1581">#1581</a> - Changed MultipleChoiceJSONField to accept choices as a callable, fixing Datasource Contents provided by plugins are not accepted as valid choice by REST API.</li>
|
|
10916
11032
|
</ul>
|
|
10917
|
-
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
11033
|
+
<h3 id="fixed-in-v1211">Fixed in v1.2.11<a class="headerlink" href="#fixed-in-v1211" title="Permanent link">¶</a></h3>
|
|
10918
11034
|
<ul>
|
|
10919
11035
|
<li><a href="https://github.com/nautobot/nautobot/issues/1313">#1313</a> - Fixed GraphQL query error on OneToOneFields such as <code>IPAddress.primary_ip4_for</code></li>
|
|
10920
11036
|
<li><a href="https://github.com/nautobot/nautobot/issues/1408">#1408</a> - Fixed incorrect HTML in the Devices detail views.</li>
|
|
10921
11037
|
<li><a href="https://github.com/nautobot/nautobot/issues/1467">#1467</a> - Fixed an issue where at certain browser widths the nav bar would cover the top of the page content.</li>
|
|
10922
11038
|
<li><a href="https://github.com/nautobot/nautobot/issues/1523">#1523</a> - Fixed primary IP being unset after creating/updating different interface</li>
|
|
10923
11039
|
</ul>
|
|
10924
|
-
<h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">¶</a></h3>
|
|
11040
|
+
<h3 id="documentation-in-v1211">Documentation in v1.2.11<a class="headerlink" href="#documentation-in-v1211" title="Permanent link">¶</a></h3>
|
|
10925
11041
|
<ul>
|
|
10926
11042
|
<li><a href="https://github.com/nautobot/nautobot/pull/1529">#1529</a> - Added list of standard hex colors to the Tags documentation.</li>
|
|
10927
11043
|
<li><a href="https://github.com/nautobot/nautobot/issues/1583">#1583</a> - Fixed Nautobot service definition in PostgreSQL-backed development environment.</li>
|
|
10928
11044
|
<li><a href="https://github.com/nautobot/nautobot/issues/1584">#1584</a> - Replaced links in docs to celeryproject.org with celeryq.dev</li>
|
|
10929
11045
|
</ul>
|
|
10930
|
-
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
11046
|
+
<h3 id="housekeeping-in-v1211">Housekeeping in v1.2.11<a class="headerlink" href="#housekeeping-in-v1211" title="Permanent link">¶</a></h3>
|
|
10931
11047
|
<ul>
|
|
10932
11048
|
<li><a href="https://github.com/nautobot/nautobot/issues/1548">#1548</a> - Pin Jinja2 version for mkdocs requirements to fix RTD docs builds related to API deprecation in Jinja2 >= 3.1.0</li>
|
|
10933
11049
|
<li><a href="https://github.com/nautobot/nautobot/pull/1599">#1599</a> - Bump mkdocs version for Snyk report.</li>
|
|
10934
11050
|
</ul>
|
|
10935
11051
|
<h2 id="v1210-2022-03-21">v1.2.10 (2022-03-21)<a class="headerlink" href="#v1210-2022-03-21" title="Permanent link">¶</a></h2>
|
|
10936
|
-
<h3 id="
|
|
11052
|
+
<h3 id="documentation-in-v1210">Documentation in v1.2.10<a class="headerlink" href="#documentation-in-v1210" title="Permanent link">¶</a></h3>
|
|
10937
11053
|
<ul>
|
|
10938
11054
|
<li><a href="https://github.com/nautobot/nautobot/pull/1492">#1492</a> - Added note in the Jobs documentation about the use of <code>AbortTransaction</code> to end the job and force rollback.</li>
|
|
10939
11055
|
<li><a href="https://github.com/nautobot/nautobot/issues/1511">#1511</a> - Fixed left column of Read The Docs being cut off.</li>
|
|
10940
11056
|
<li><a href="https://github.com/nautobot/nautobot/pull/1517">#1517</a> - Added password filtering example to advanced logging section in docs.</li>
|
|
10941
11057
|
<li><a href="https://github.com/nautobot/nautobot/pull/1522">#1522</a> - Fixed link name attribute name in developer docs.</li>
|
|
10942
11058
|
</ul>
|
|
10943
|
-
<h3 id="
|
|
11059
|
+
<h3 id="housekeeping-in-v1210">Housekeeping in v1.2.10<a class="headerlink" href="#housekeeping-in-v1210" title="Permanent link">¶</a></h3>
|
|
10944
11060
|
<ul>
|
|
10945
11061
|
<li><a href="https://github.com/nautobot/nautobot/pull/1514">#1514</a> - Simplified switching between PostgreSQL and MySQL database backends in the developer environment.</li>
|
|
10946
11062
|
<li><a href="https://github.com/nautobot/nautobot/pull/1518">#1518</a> - Updated GitHub Pull Request template to include detail section, todo list.</li>
|
|
10947
11063
|
</ul>
|
|
10948
11064
|
<h2 id="v129-2022-03-14">v1.2.9 (2022-03-14)<a class="headerlink" href="#v129-2022-03-14" title="Permanent link">¶</a></h2>
|
|
10949
|
-
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
11065
|
+
<h3 id="security-in-v129">Security in v1.2.9<a class="headerlink" href="#security-in-v129" title="Permanent link">¶</a></h3>
|
|
10950
11066
|
<div class="admonition danger">
|
|
10951
11067
|
<p class="admonition-title">Danger</p>
|
|
10952
11068
|
<p>It is highly recommended that users of Python 3.6 prioritize upgrading to a newer version of Python. <strong>Nautobot will be removing support for Python 3.6 in a future update.</strong></p>
|
|
@@ -10958,23 +11074,23 @@
|
|
|
10958
11074
|
<ul>
|
|
10959
11075
|
<li><a href="https://github.com/nautobot/nautobot/issues/1487">#1487</a> - Implemented fixes for <a href="https://github.com/advisories/GHSA-8vj2-vxx3-667w">CVE-2022-22817</a>, <a href="https://github.com/advisories/GHSA-9j59-75qj-795w">CVE-2022-24303</a>, and <a href="https://github.com/advisories/GHSA-4fx9-vc88-q2xc">potential infinite loop</a> by requiring Pillow >=9.0.1 for Python version >=3.7. For Python version <3.7 (e.g. 3.6), it is recommended that you prioritize upgrading your environment to use Python 3.7 or higher. Support for Python 3.6 will be removed in a future update.</li>
|
|
10960
11076
|
</ul>
|
|
10961
|
-
<h3 id="
|
|
11077
|
+
<h3 id="fixed-in-v129">Fixed in v1.2.9<a class="headerlink" href="#fixed-in-v129" title="Permanent link">¶</a></h3>
|
|
10962
11078
|
<ul>
|
|
10963
11079
|
<li><a href="https://github.com/nautobot/nautobot/issues/1431">#1431</a> - Fixed potential failure of <code>extras.0017_joblog_data_migration</code> migration when the job logs contain messages mistakenly logged as object references.</li>
|
|
10964
11080
|
<li><a href="https://github.com/nautobot/nautobot/issues/1459">#1459</a> - Fixed incorrect display of related devices and VMs in the Cluster Type and Cluster Group detail views.</li>
|
|
10965
11081
|
<li><a href="https://github.com/nautobot/nautobot/issues/1469">#1469</a> - Fixed incorrect CSV export for devices</li>
|
|
10966
11082
|
</ul>
|
|
10967
11083
|
<h2 id="v128-2022-03-07">v1.2.8 (2022-03-07)<a class="headerlink" href="#v128-2022-03-07" title="Permanent link">¶</a></h2>
|
|
10968
|
-
<h3 id="
|
|
11084
|
+
<h3 id="added-in-v128">Added in v1.2.8<a class="headerlink" href="#added-in-v128" title="Permanent link">¶</a></h3>
|
|
10969
11085
|
<ul>
|
|
10970
11086
|
<li><a href="https://github.com/nautobot/nautobot/issues/1242">#1242</a> - Add MAJOR.MINOR tags to Docker images upon release.</li>
|
|
10971
11087
|
<li><a href="https://github.com/nautobot/nautobot/pull/1446">#1446</a> - Apply title labels to Docker images.</li>
|
|
10972
11088
|
</ul>
|
|
10973
|
-
<h3 id="
|
|
11089
|
+
<h3 id="changed-in-v128">Changed in v1.2.8<a class="headerlink" href="#changed-in-v128" title="Permanent link">¶</a></h3>
|
|
10974
11090
|
<ul>
|
|
10975
11091
|
<li><a href="https://github.com/nautobot/nautobot/pull/1452">#1452</a> - Changed GitHub release workflow to not run on prerelease releases.</li>
|
|
10976
11092
|
</ul>
|
|
10977
|
-
<h3 id="
|
|
11093
|
+
<h3 id="fixed-in-v128">Fixed in v1.2.8<a class="headerlink" href="#fixed-in-v128" title="Permanent link">¶</a></h3>
|
|
10978
11094
|
<ul>
|
|
10979
11095
|
<li><a href="https://github.com/nautobot/nautobot/issues/1301">#1301</a> - Fixed window history handling for views with tabs in Safari/Firefox.</li>
|
|
10980
11096
|
<li><a href="https://github.com/nautobot/nautobot/issues/1302">#1302</a> - Fixed missing Advanced tab on Virtual Machine detail view.</li>
|
|
@@ -10984,15 +11100,15 @@
|
|
|
10984
11100
|
<li><a href="https://github.com/nautobot/nautobot/issues/1412">#1412</a> - Fixed not being able to query for prefix family via GraphQL.</li>
|
|
10985
11101
|
<li><a href="https://github.com/nautobot/nautobot/issues/1442">#1442</a> - Fixed missing Advanced tab on Job Result, Git Repository, and Config Context Schema detail views.</li>
|
|
10986
11102
|
</ul>
|
|
10987
|
-
<h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">¶</a></h3>
|
|
11103
|
+
<h3 id="dependencies-in-v128">Dependencies in v1.2.8<a class="headerlink" href="#dependencies-in-v128" title="Permanent link">¶</a></h3>
|
|
10988
11104
|
<ul>
|
|
10989
11105
|
<li><a href="https://github.com/nautobot/nautobot/issues/1432">#1432</a> - Update django-redis to <code>5.2.x</code> to address <code>5.1.x</code> blocking redis <code>4.x</code> versions.</li>
|
|
10990
11106
|
</ul>
|
|
10991
|
-
<h3 id="
|
|
11107
|
+
<h3 id="documentation-in-v128">Documentation in v1.2.8<a class="headerlink" href="#documentation-in-v128" title="Permanent link">¶</a></h3>
|
|
10992
11108
|
<ul>
|
|
10993
11109
|
<li><a href="https://github.com/nautobot/nautobot/pull/1419">#1419</a> - Add documentation for specifying a CA cert file for LDAP authentication backend.</li>
|
|
10994
11110
|
</ul>
|
|
10995
|
-
<h3 id="
|
|
11111
|
+
<h3 id="housekeeping-in-v128">Housekeeping in v1.2.8<a class="headerlink" href="#housekeeping-in-v128" title="Permanent link">¶</a></h3>
|
|
10996
11112
|
<ul>
|
|
10997
11113
|
<li><a href="https://github.com/nautobot/nautobot/issues/839">#839</a> - Add CODE_OF_CONDUCT.md to repository.</li>
|
|
10998
11114
|
<li><a href="https://github.com/nautobot/nautobot/pull/1299">#1299</a> - Add SECURITY.md to repository.</li>
|
|
@@ -11002,17 +11118,17 @@
|
|
|
11002
11118
|
<li><a href="https://github.com/nautobot/nautobot/pull/1453">#1453</a> - Changed feature request to use GitHub Issue Form.</li>
|
|
11003
11119
|
</ul>
|
|
11004
11120
|
<h2 id="v127-2022-02-22">v1.2.7 (2022-02-22)<a class="headerlink" href="#v127-2022-02-22" title="Permanent link">¶</a></h2>
|
|
11005
|
-
<h3 id="
|
|
11121
|
+
<h3 id="housekeeping-in-v127">Housekeeping in v1.2.7<a class="headerlink" href="#housekeeping-in-v127" title="Permanent link">¶</a></h3>
|
|
11006
11122
|
<ul>
|
|
11007
11123
|
<li><a href="https://github.com/nautobot/nautobot/issues/1403">#1403</a> - Changes the GitHub Action on Release version template variable name.</li>
|
|
11008
11124
|
</ul>
|
|
11009
11125
|
<h2 id="v126-2022-02-22">v1.2.6 (2022-02-22)<a class="headerlink" href="#v126-2022-02-22" title="Permanent link">¶</a></h2>
|
|
11010
|
-
<h3 id="
|
|
11126
|
+
<h3 id="added-in-v126">Added in v1.2.6<a class="headerlink" href="#added-in-v126" title="Permanent link">¶</a></h3>
|
|
11011
11127
|
<ul>
|
|
11012
11128
|
<li><a href="https://github.com/nautobot/nautobot/issues/1279">#1279</a> - Circuit terminations now render custom relationships on the circuit detail page.</li>
|
|
11013
11129
|
<li><a href="https://github.com/nautobot/nautobot/issues/1353">#1353</a> - Added UI for deleting previously uploaded images when editing a DeviceType.</li>
|
|
11014
11130
|
</ul>
|
|
11015
|
-
<h3 id="
|
|
11131
|
+
<h3 id="fixed-in-v126">Fixed in v1.2.6<a class="headerlink" href="#fixed-in-v126" title="Permanent link">¶</a></h3>
|
|
11016
11132
|
<ul>
|
|
11017
11133
|
<li><a href="https://github.com/nautobot/nautobot/issues/1249">#1249</a> - Fixed a timing issue where after creating a custom field with a default value and immediately assigning values to this custom field on individual objects, the custom field values could be automatically reverted to the default value.</li>
|
|
11018
11134
|
<li><a href="https://github.com/nautobot/nautobot/pull/1280">#1280</a> - Added missing <code>get_absolute_url</code> method to the <code>CircuitTermination</code> model, fixing a UI error that could occur when relationships involve CircuitTerminations.</li>
|
|
@@ -11021,23 +11137,23 @@
|
|
|
11021
11137
|
<li><a href="https://github.com/nautobot/nautobot/issues/1335">#1335</a> - Fixed an issue with the Secret create/edit form that caused problems when defining AWS secrets using the <code>nautobot-secrets-providers</code> plugin.</li>
|
|
11022
11138
|
<li><a href="https://github.com/nautobot/nautobot/issues/1346">#1346</a> - Fixed an error in the periodic execution of Celery's built-in <code>celery.backend_cleanup</code> task.</li>
|
|
11023
11139
|
</ul>
|
|
11024
|
-
<h3 id="
|
|
11140
|
+
<h3 id="dependencies-in-v126">Dependencies in v1.2.6<a class="headerlink" href="#dependencies-in-v126" title="Permanent link">¶</a></h3>
|
|
11025
11141
|
<ul>
|
|
11026
11142
|
<li><a href="https://github.com/nautobot/nautobot/issues/1390">#1390</a> - Pinned transitive dependency <code>MarkupSafe</code> to version 2.0.1 as later versions are incompatible with Nautobot's current <code>Jinja2</code> dependency.</li>
|
|
11027
11143
|
</ul>
|
|
11028
|
-
<h3 id="
|
|
11144
|
+
<h3 id="documentation-in-v126">Documentation in v1.2.6<a class="headerlink" href="#documentation-in-v126" title="Permanent link">¶</a></h3>
|
|
11029
11145
|
<ul>
|
|
11030
11146
|
<li><a href="https://github.com/nautobot/nautobot/pull/1283">#1283</a> - Update Sentinel docs to have 3 hosts (minimum per Redis docs), and change <code>CELERY_BROKER_URL</code> to a multiline string instead of a Tuple (tuple is invalid, and raises an exception when job completes).</li>
|
|
11031
11147
|
<li><a href="https://github.com/nautobot/nautobot/pull/1328">#1328</a> - Fixed an error in the <a href="../user-guide/platform-functionality/jobs/index.html#jobs-and-class_path">Job class-path documentation</a>.</li>
|
|
11032
11148
|
<li><a href="https://github.com/nautobot/nautobot/issues/1386">#1386</a> - Updated release schedule in docs for patch releases, now every two weeks.</li>
|
|
11033
11149
|
</ul>
|
|
11034
|
-
<h3 id="
|
|
11150
|
+
<h3 id="housekeeping-in-v126">Housekeeping in v1.2.6<a class="headerlink" href="#housekeeping-in-v126" title="Permanent link">¶</a></h3>
|
|
11035
11151
|
<ul>
|
|
11036
11152
|
<li><a href="https://github.com/nautobot/nautobot/pull/1327">#1327</a> - Fixes the broken dependencies from the Release action.</li>
|
|
11037
11153
|
<li><a href="https://github.com/nautobot/nautobot/issues/1360">#1360</a> - Fixed an issue in the development environment that could cause Selenium integration tests to error out.</li>
|
|
11038
11154
|
</ul>
|
|
11039
11155
|
<h2 id="v125-2022-02-02">v1.2.5 (2022-02-02)<a class="headerlink" href="#v125-2022-02-02" title="Permanent link">¶</a></h2>
|
|
11040
|
-
<h3 id="
|
|
11156
|
+
<h3 id="fixed-in-v125">Fixed in v1.2.5<a class="headerlink" href="#fixed-in-v125" title="Permanent link">¶</a></h3>
|
|
11041
11157
|
<ul>
|
|
11042
11158
|
<li><a href="https://github.com/nautobot/nautobot/issues/371">#371</a> - Fixed a server error that could occur when importing cables via CSV.</li>
|
|
11043
11159
|
<li><a href="https://github.com/nautobot/nautobot/issues/1161">#1161</a> - The <code>description</code> field for device component templates is now correctly propagated to device components created from these templates.</li>
|
|
@@ -11045,16 +11161,16 @@
|
|
|
11045
11161
|
<li><a href="https://github.com/nautobot/nautobot/issues/1282">#1282</a> - Fixed a server error when editing User accounts.</li>
|
|
11046
11162
|
<li><a href="https://github.com/nautobot/nautobot/pull/1308">#1308</a> - Fixed another server error that could occur when importing cables via CSV.</li>
|
|
11047
11163
|
</ul>
|
|
11048
|
-
<h3 id="
|
|
11164
|
+
<h3 id="documentation-in-v125">Documentation in v1.2.5<a class="headerlink" href="#documentation-in-v125" title="Permanent link">¶</a></h3>
|
|
11049
11165
|
<ul>
|
|
11050
11166
|
<li><a href="https://github.com/nautobot/nautobot/pull/1293">#1293</a> - Reorganized the developer documents somewhat to reduce duplication of information, added diagrams for issue intake process.</li>
|
|
11051
11167
|
</ul>
|
|
11052
|
-
<h3 id="
|
|
11168
|
+
<h3 id="housekeeping-in-v125">Housekeeping in v1.2.5<a class="headerlink" href="#housekeeping-in-v125" title="Permanent link">¶</a></h3>
|
|
11053
11169
|
<ul>
|
|
11054
11170
|
<li><a href="https://github.com/nautobot/nautobot/pull/1272">#1272</a> - Fixed GitHub Actions syntax and Slack payload for <code>release</code> CI workflow</li>
|
|
11055
11171
|
</ul>
|
|
11056
11172
|
<h2 id="v124-2022-01-13">v1.2.4 (2022-01-13)<a class="headerlink" href="#v124-2022-01-13" title="Permanent link">¶</a></h2>
|
|
11057
|
-
<h3 id="
|
|
11173
|
+
<h3 id="security-in-v124">Security in v1.2.4<a class="headerlink" href="#security-in-v124" title="Permanent link">¶</a></h3>
|
|
11058
11174
|
<div class="admonition danger">
|
|
11059
11175
|
<p class="admonition-title">Danger</p>
|
|
11060
11176
|
<p>It is highly recommended that users of Python 3.6 prioritize upgrading to a newer version of Python. <strong>Nautobot will be removing support for Python 3.6 in a future update.</strong></p>
|
|
@@ -11066,27 +11182,27 @@
|
|
|
11066
11182
|
<ul>
|
|
11067
11183
|
<li><a href="https://github.com/nautobot/nautobot/issues/1267">#1267</a> - Implemented fixes for <a href="https://github.com/advisories/GHSA-xrcv-f9gm-v42c">CVE-2022-22815</a>, <a href="https://github.com/advisories/GHSA-xrcv-f9gm-v42c">CVE-2022-22816</a>, and <a href="https://github.com/advisories/GHSA-8vj2-vxx3-667w">CVE-2022-22817</a> to require Pillow >=9.0.0 for Python version >=3.7. For Python version <3.7 (e.g. 3.6), it is recommended that you prioritize upgrading your environment to use Python 3.7 or higher. Support for Python 3.6 will be removed in a future update.</li>
|
|
11068
11184
|
</ul>
|
|
11069
|
-
<h3 id="
|
|
11185
|
+
<h3 id="changed-in-v124">Changed in v1.2.4<a class="headerlink" href="#changed-in-v124" title="Permanent link">¶</a></h3>
|
|
11070
11186
|
<ul>
|
|
11071
11187
|
<li><a href="https://github.com/nautobot/nautobot/issues/616">#616</a> - The REST API now no longer permits setting non-string values for text-type custom fields.</li>
|
|
11072
11188
|
</ul>
|
|
11073
|
-
<h3 id="
|
|
11189
|
+
<h3 id="fixed-in-v124">Fixed in v1.2.4<a class="headerlink" href="#fixed-in-v124" title="Permanent link">¶</a></h3>
|
|
11074
11190
|
<ul>
|
|
11075
11191
|
<li><a href="https://github.com/nautobot/nautobot/issues/1053">#1053</a> - Fixed error when removing an IP address from an interface when it was previously the parent device's primary IP.</li>
|
|
11076
11192
|
<li><a href="https://github.com/nautobot/nautobot/issues/1140">#1140</a> - Fixed incorrect UI widgets in the updated Admin UI.</li>
|
|
11077
11193
|
<li><a href="https://github.com/nautobot/nautobot/issues/1253">#1253</a> - Fixed missing code that prevented switching between tabs in the device-type detail view.</li>
|
|
11078
11194
|
</ul>
|
|
11079
|
-
<h3 id="
|
|
11195
|
+
<h3 id="documentation-in-v124">Documentation in v1.2.4<a class="headerlink" href="#documentation-in-v124" title="Permanent link">¶</a></h3>
|
|
11080
11196
|
<ul>
|
|
11081
11197
|
<li><a href="https://github.com/nautobot/nautobot/issues/1113">#1113</a> - Added <a href="../user-guide/administration/configuration/redis.html#high-availability-using-redis-sentinel">documentation</a> about using Redis Sentinel with Nautobot.</li>
|
|
11082
11198
|
</ul>
|
|
11083
|
-
<h3 id="
|
|
11199
|
+
<h3 id="housekeeping-in-v124">Housekeeping in v1.2.4<a class="headerlink" href="#housekeeping-in-v124" title="Permanent link">¶</a></h3>
|
|
11084
11200
|
<ul>
|
|
11085
11201
|
<li><a href="https://github.com/nautobot/nautobot/pull/1251">#1251</a> - Added <code>workflow_call</code> to the GitHub Actions CI workflow so that it may be called by other GHA workflows.</li>
|
|
11086
11202
|
<li><a href="https://github.com/nautobot/nautobot/pull/1243">#1243</a> - Github CI action no longer runs for pull requests that don't impact Nautobot code, such as documentation, examples, etc.</li>
|
|
11087
11203
|
</ul>
|
|
11088
11204
|
<h2 id="v123-2022-01-07">v1.2.3 (2022-01-07)<a class="headerlink" href="#v123-2022-01-07" title="Permanent link">¶</a></h2>
|
|
11089
|
-
<h3 id="
|
|
11205
|
+
<h3 id="security-in-v123">Security in v1.2.3<a class="headerlink" href="#security-in-v123" title="Permanent link">¶</a></h3>
|
|
11090
11206
|
<div class="admonition danger">
|
|
11091
11207
|
<p class="admonition-title">Danger</p>
|
|
11092
11208
|
<p>It is highly recommended that users of Python 3.6 prioritize upgrading to a newer version of Python. <strong>Nautobot will be removing support for Python 3.6 in a future update.</strong></p>
|
|
@@ -11098,7 +11214,7 @@
|
|
|
11098
11214
|
<ul>
|
|
11099
11215
|
<li><a href="https://github.com/nautobot/nautobot/issues/1238">#1238</a> - Implemented fix for <a href="https://github.com/advisories/GHSA-q4xr-rc97-m4xx">CVE-2021-23727</a> to require Celery >=5.2.2 for Python version >=3.7. For Python version <3.7 (e.g. 3.6), it is recommended that you prioritize upgrading your environment to use Python 3.7 or higher. Support for Python 3.6 will be removed in a future update.</li>
|
|
11100
11216
|
</ul>
|
|
11101
|
-
<h3 id="
|
|
11217
|
+
<h3 id="fixed-in-v123">Fixed in v1.2.3<a class="headerlink" href="#fixed-in-v123" title="Permanent link">¶</a></h3>
|
|
11102
11218
|
<ul>
|
|
11103
11219
|
<li><a href="https://github.com/nautobot/nautobot/issues/313">#313</a> - REST API documentation now correctly shows that <code>status</code> is a required field.</li>
|
|
11104
11220
|
<li><a href="https://github.com/nautobot/nautobot/issues/477">#477</a> - Model <code>TextField</code>s are now correctly mapped to <code>MultiValueCharFilter</code> in filter classes.</li>
|
|
@@ -11110,50 +11226,50 @@
|
|
|
11110
11226
|
<li><a href="https://github.com/nautobot/nautobot/pull/1229">#1229</a> - Fixed a template rendering error in the login page.</li>
|
|
11111
11227
|
<li><a href="https://github.com/nautobot/nautobot/issues/1234">#1234</a> - Fixed missing changelog support for Custom Fields.</li>
|
|
11112
11228
|
</ul>
|
|
11113
|
-
<h3 id="
|
|
11229
|
+
<h3 id="documentation-in-v123">Documentation in v1.2.3<a class="headerlink" href="#documentation-in-v123" title="Permanent link">¶</a></h3>
|
|
11114
11230
|
<ul>
|
|
11115
11231
|
<li><a href="https://github.com/nautobot/nautobot/issues/1037">#1037</a> - Added documentation about how to successfully use the <code>nautobot-server dumpdata</code> and <code>nautobot-server loaddata</code> commands.</li>
|
|
11116
11232
|
</ul>
|
|
11117
11233
|
<h2 id="v122-2021-12-27">v1.2.2 (2021-12-27)<a class="headerlink" href="#v122-2021-12-27" title="Permanent link">¶</a></h2>
|
|
11118
|
-
<h3 id="
|
|
11234
|
+
<h3 id="added-in-v122">Added in v1.2.2<a class="headerlink" href="#added-in-v122" title="Permanent link">¶</a></h3>
|
|
11119
11235
|
<ul>
|
|
11120
11236
|
<li><a href="https://github.com/nautobot/nautobot/pull/1152">#1152</a> - Added REST API and GraphQL for <code>JobLogEntry</code> objects.</li>
|
|
11121
11237
|
</ul>
|
|
11122
|
-
<h3 id="
|
|
11238
|
+
<h3 id="changed-in-v122">Changed in v1.2.2<a class="headerlink" href="#changed-in-v122" title="Permanent link">¶</a></h3>
|
|
11123
11239
|
<ul>
|
|
11124
11240
|
<li><a href="https://github.com/nautobot/nautobot/issues/650">#650</a> - Job Results UI now render job log messages immediately</li>
|
|
11125
11241
|
</ul>
|
|
11126
|
-
<h3 id="
|
|
11242
|
+
<h3 id="fixed-in-v122">Fixed in v1.2.2<a class="headerlink" href="#fixed-in-v122" title="Permanent link">¶</a></h3>
|
|
11127
11243
|
<ul>
|
|
11128
11244
|
<li><a href="https://github.com/nautobot/nautobot/pull/1181">#1181</a> - Avoid throwing a 500 error in the case where users have deleted a required Status value. (Preventing the user from doing this will need to be a later fix.)</li>
|
|
11129
11245
|
<li><a href="https://github.com/nautobot/nautobot/issues/1193">#1193</a> - Fixed <code>JobResult</code> page may fail to list <code>JobLogEntries</code> in chronological order</li>
|
|
11130
11246
|
<li><a href="https://github.com/nautobot/nautobot/issues/1195">#1195</a> - Job log entries now again correctly render inline Markdown formatting.</li>
|
|
11131
11247
|
</ul>
|
|
11132
|
-
<h3 id="
|
|
11248
|
+
<h3 id="documentation-in-v122">Documentation in v1.2.2<a class="headerlink" href="#documentation-in-v122" title="Permanent link">¶</a></h3>
|
|
11133
11249
|
<ul>
|
|
11134
11250
|
<li><a href="https://github.com/nautobot/nautobot/pull/1186">#1186</a> - Corrected an error in the docs regarding developing secrets providers in plugins.</li>
|
|
11135
11251
|
<li><a href="https://github.com/nautobot/nautobot/pull/1188">#1188</a> - Corrected some errors in the developer documentation about our branch management approach.</li>
|
|
11136
11252
|
</ul>
|
|
11137
11253
|
<h2 id="v121-2021-12-16">v1.2.1 (2021-12-16)<a class="headerlink" href="#v121-2021-12-16" title="Permanent link">¶</a></h2>
|
|
11138
|
-
<h3 id="
|
|
11254
|
+
<h3 id="security-in-v121">Security in v1.2.1<a class="headerlink" href="#security-in-v121" title="Permanent link">¶</a></h3>
|
|
11139
11255
|
<ul>
|
|
11140
11256
|
<li><a href="https://github.com/nautobot/nautobot/issues/1077">#1077</a> - Updated <code>graphiql</code> to 1.5.16 as well as updating the associated Javascript libraries used in the GraphiQL UI to address a reported security flaw in older versions of GraphiQL. To the best of our understanding, the Nautobot implementation of GraphiQL was not vulnerable to said flaw.</li>
|
|
11141
11257
|
</ul>
|
|
11142
|
-
<h3 id="
|
|
11258
|
+
<h3 id="added-in-v121">Added in v1.2.1<a class="headerlink" href="#added-in-v121" title="Permanent link">¶</a></h3>
|
|
11143
11259
|
<ul>
|
|
11144
11260
|
<li><a href="https://github.com/nautobot/nautobot/issues/1110">#1110</a> - Added GraphQL support for the <code>ObjectChange</code> model.</li>
|
|
11145
11261
|
</ul>
|
|
11146
|
-
<h3 id="
|
|
11262
|
+
<h3 id="changed-in-v121">Changed in v1.2.1<a class="headerlink" href="#changed-in-v121" title="Permanent link">¶</a></h3>
|
|
11147
11263
|
<ul>
|
|
11148
11264
|
<li><a href="https://github.com/nautobot/nautobot/issues/1106">#1106</a> - Updating Docker health checks to be more robust and greatly reduce performance impact.</li>
|
|
11149
11265
|
</ul>
|
|
11150
|
-
<h3 id="
|
|
11266
|
+
<h3 id="fixed-in-v121">Fixed in v1.2.1<a class="headerlink" href="#fixed-in-v121" title="Permanent link">¶</a></h3>
|
|
11151
11267
|
<ul>
|
|
11152
11268
|
<li><a href="https://github.com/nautobot/nautobot/pull/1170">#1170</a> - Fixed bug in renamed column of <code>JobResultTable</code> where rename was not made to the <code>Meta</code>.</li>
|
|
11153
11269
|
<li><a href="https://github.com/nautobot/nautobot/issues/1173">#1173</a> - Fixed official Docker image: v1.2.0 tagged images fail to load with <code>ImportError: libxml2.so.2</code>.</li>
|
|
11154
11270
|
</ul>
|
|
11155
11271
|
<h2 id="v120-2021-12-15">v1.2.0 (2021-12-15)<a class="headerlink" href="#v120-2021-12-15" title="Permanent link">¶</a></h2>
|
|
11156
|
-
<h3 id="
|
|
11272
|
+
<h3 id="added-in-v120">Added in v1.2.0<a class="headerlink" href="#added-in-v120" title="Permanent link">¶</a></h3>
|
|
11157
11273
|
<ul>
|
|
11158
11274
|
<li><a href="https://github.com/nautobot/nautobot/issues/876">#876</a> - Added option to apply a validation regex when defining CustomFieldChoices.</li>
|
|
11159
11275
|
<li><a href="https://github.com/nautobot/nautobot/issues/982">#982</a> - Added IPAM custom lookup database functions.</li>
|
|
@@ -11162,16 +11278,16 @@
|
|
|
11162
11278
|
<li><a href="https://github.com/nautobot/nautobot/issues/1082">#1082</a> - Added <code>netutils</code> template filters for both Django and Jinja2 template rendering.</li>
|
|
11163
11279
|
<li><a href="https://github.com/nautobot/nautobot/pull/1159">#1159</a> - Add <code>family</code> field to <code>IPAddressType</code> for GraphQL API enable filtering of <code>IPAddress</code> objects by <code>family</code>.</li>
|
|
11164
11280
|
</ul>
|
|
11165
|
-
<h3 id="
|
|
11281
|
+
<h3 id="changed-in-v120">Changed in v1.2.0<a class="headerlink" href="#changed-in-v120" title="Permanent link">¶</a></h3>
|
|
11166
11282
|
<ul>
|
|
11167
11283
|
<li><a href="https://github.com/nautobot/nautobot/issues/1068">#1068</a> - Docker images now include optional Nautobot dependencies by default.</li>
|
|
11168
11284
|
<li><a href="https://github.com/nautobot/nautobot/issues/1095">#1095</a> - Refined Admin Configuration UI.</li>
|
|
11169
11285
|
</ul>
|
|
11170
|
-
<h3 id="removed">Removed<a class="headerlink" href="#removed" title="Permanent link">¶</a></h3>
|
|
11286
|
+
<h3 id="removed-in-v120">Removed in v1.2.0<a class="headerlink" href="#removed-in-v120" title="Permanent link">¶</a></h3>
|
|
11171
11287
|
<ul>
|
|
11172
11288
|
<li><a href="https://github.com/nautobot/nautobot/issues/1094">#1094</a> - Removed leftover custom field management views from Admin UI</li>
|
|
11173
11289
|
</ul>
|
|
11174
|
-
<h3 id="
|
|
11290
|
+
<h3 id="fixed-in-v120">Fixed in v1.2.0<a class="headerlink" href="#fixed-in-v120" title="Permanent link">¶</a></h3>
|
|
11175
11291
|
<ul>
|
|
11176
11292
|
<li><a href="https://github.com/nautobot/nautobot/issues/453">#453</a> - Fixed potential <code>ValueError</code> when rendering <code>JobResult</code> detail view with non-standard <code>JobResult.data</code> contents.</li>
|
|
11177
11293
|
<li><a href="https://github.com/nautobot/nautobot/issues/864">#864</a> - Fixed inconsistent <code>JobResult</code> detail view page templates.</li>
|
|
@@ -11189,11 +11305,11 @@
|
|
|
11189
11305
|
<li><a href="https://github.com/nautobot/nautobot/issues/1154">#1154</a> - Fixed inability to save changes in Admin Configuration UI.</li>
|
|
11190
11306
|
<li><a href="https://github.com/nautobot/nautobot/issues/1162">#1162</a> - Fixed error when creating a <code>NavMenuItem</code> without specifying the <code>buttons</code> argument.</li>
|
|
11191
11307
|
</ul>
|
|
11192
|
-
<h3 id="
|
|
11308
|
+
<h3 id="dependencies-in-v120">Dependencies in v1.2.0<a class="headerlink" href="#dependencies-in-v120" title="Permanent link">¶</a></h3>
|
|
11193
11309
|
<ul>
|
|
11194
11310
|
<li><a href="https://github.com/nautobot/nautobot/pull/1105">#1105</a> - Reverted minimum Python 3.6 version to 3.6.0 rather than 3.6.2.</li>
|
|
11195
11311
|
</ul>
|
|
11196
|
-
<h3 id="
|
|
11312
|
+
<h3 id="documentation-in-v120">Documentation in v1.2.0<a class="headerlink" href="#documentation-in-v120" title="Permanent link">¶</a></h3>
|
|
11197
11313
|
<ul>
|
|
11198
11314
|
<li><a href="https://github.com/nautobot/nautobot/issues/843">#843</a> - Added more information about Celery in the Upgrading Nautobot docs.</li>
|
|
11199
11315
|
<li><a href="https://github.com/nautobot/nautobot/issues/888">#888</a> - Addressed FIXME comment in LDAP documentation.</li>
|
|
@@ -11205,11 +11321,11 @@
|
|
|
11205
11321
|
<li><a href="https://github.com/nautobot/nautobot/pull/1143">#1143</a> - Added documentation on using LDAP with multiple LDAP servers.</li>
|
|
11206
11322
|
</ul>
|
|
11207
11323
|
<h2 id="v120b1-2021-11-19">v1.2.0b1 (2021-11-19)<a class="headerlink" href="#v120b1-2021-11-19" title="Permanent link">¶</a></h2>
|
|
11208
|
-
<h3 id="
|
|
11324
|
+
<h3 id="security-in-v120b1">Security in v1.2.0b1<a class="headerlink" href="#security-in-v120b1" title="Permanent link">¶</a></h3>
|
|
11209
11325
|
<ul>
|
|
11210
11326
|
<li><a href="https://github.com/nautobot/nautobot/issues/1017">#1017</a> - Custom field descriptions no longer potentially render as arbitrary HTML in object edit forms; Markdown format is now supported as a less dangerous option.</li>
|
|
11211
11327
|
</ul>
|
|
11212
|
-
<h3 id="
|
|
11328
|
+
<h3 id="added-in-v120b1">Added in v1.2.0b1<a class="headerlink" href="#added-in-v120b1" title="Permanent link">¶</a></h3>
|
|
11213
11329
|
<ul>
|
|
11214
11330
|
<li><a href="https://github.com/nautobot/nautobot/issues/13">#13</a> - Added <code>nautobot_database_ready</code> signal</li>
|
|
11215
11331
|
<li><a href="https://github.com/nautobot/nautobot/issues/125">#125</a> - Added support for <code>approval_required = True</code> on Jobs</li>
|
|
@@ -11235,7 +11351,7 @@
|
|
|
11235
11351
|
<li><a href="https://github.com/nautobot/nautobot/pull/947">#947</a> - Added <code>DISABLE_PREFIX_LIST_HIERARCHY</code> setting to render IPAM Prefix list view as a flat list</li>
|
|
11236
11352
|
<li><a href="https://github.com/nautobot/nautobot/pull/953">#953</a> - Added option to use MySQL in docker-compose development environment</li>
|
|
11237
11353
|
</ul>
|
|
11238
|
-
<h3 id="
|
|
11354
|
+
<h3 id="changed-in-v120b1">Changed in v1.2.0b1<a class="headerlink" href="#changed-in-v120b1" title="Permanent link">¶</a></h3>
|
|
11239
11355
|
<ul>
|
|
11240
11356
|
<li><a href="https://github.com/nautobot/nautobot/issues/222">#222</a> - Changed wildcard imports to explicitly enumerated imports and enabled associated Flake8 linter rules.</li>
|
|
11241
11357
|
<li><a href="https://github.com/nautobot/nautobot/issues/472">#472</a> - <code>JobResult</code> lists now show the associated Job's name (if available) instead of the Job's <code>class_path</code>.</li>
|
|
@@ -11243,20 +11359,20 @@
|
|
|
11243
11359
|
<li><a href="https://github.com/nautobot/nautobot/pull/877">#877</a> - Hid unused "Social Auth" section from Django admin page.</li>
|
|
11244
11360
|
<li><a href="https://github.com/nautobot/nautobot/pull/900">#900</a> - Admin site has been revised and re-skinned to more closely match the core Nautobot UI.</li>
|
|
11245
11361
|
</ul>
|
|
11246
|
-
<h3 id="
|
|
11362
|
+
<h3 id="fixed-in-v120b1">Fixed in v1.2.0b1<a class="headerlink" href="#fixed-in-v120b1" title="Permanent link">¶</a></h3>
|
|
11247
11363
|
<ul>
|
|
11248
11364
|
<li><a href="https://github.com/nautobot/nautobot/issues/852">#852</a> - Fixed missing "Change Log" tab on certain object detail views</li>
|
|
11249
11365
|
<li><a href="https://github.com/nautobot/nautobot/issues/853">#853</a> - Fixed <code>AttributeError</code> on certain object detail views</li>
|
|
11250
11366
|
<li><a href="https://github.com/nautobot/nautobot/issues/891">#891</a> - Fixed custom field select/multiselect not handled by new UI and added integration tests</li>
|
|
11251
11367
|
<li><a href="https://github.com/nautobot/nautobot/issues/966">#966</a> - Fixed missing "Advanced" tab on Device detail views</li>
|
|
11252
11368
|
</ul>
|
|
11253
|
-
<h3 id="
|
|
11369
|
+
<h3 id="documentation-in-v120b1">Documentation in v1.2.0b1<a class="headerlink" href="#documentation-in-v120b1" title="Permanent link">¶</a></h3>
|
|
11254
11370
|
<ul>
|
|
11255
11371
|
<li><a href="https://github.com/nautobot/nautobot/issues/642">#642</a> - Added documentation of the <code>GIT_SSL_NO_VERIFY</code> environment variable for using self-signed Git repositories</li>
|
|
11256
11372
|
<li><a href="https://github.com/nautobot/nautobot/pull/866">#866</a> - Added documentation for job scheduling and approvals</li>
|
|
11257
11373
|
<li><a href="https://github.com/nautobot/nautobot/issues/1060">#1060</a> - Fixed documentation incorrectly indicating that the Admin UI was the only way to manage custom field definitions.</li>
|
|
11258
11374
|
</ul>
|
|
11259
|
-
<h3 id="
|
|
11375
|
+
<h3 id="housekeeping-in-v120b1">Housekeeping in v1.2.0b1<a class="headerlink" href="#housekeeping-in-v120b1" title="Permanent link">¶</a></h3>
|
|
11260
11376
|
<ul>
|
|
11261
11377
|
<li><a href="https://github.com/nautobot/nautobot/pull/879">#879</a> - Added API testing for job scheduling and approvals</li>
|
|
11262
11378
|
<li><a href="https://github.com/nautobot/nautobot/pull/908">#908</a> - Added UI testing for job scheduling and approvals</li>
|
|
@@ -11357,7 +11473,7 @@
|
|
|
11357
11473
|
|
|
11358
11474
|
|
|
11359
11475
|
<a href="https://blog.networktocode.com/blog/tags/nautobot" target="_blank" rel="noopener" title="Network to Code Blog" class="md-social__link">
|
|
11360
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.
|
|
11476
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 64c0-17.7 14.3-32 32-32 229.8 0 416 186.2 416 416 0 17.7-14.3 32-32 32s-32-14.3-32-32C384 253.6 226.4 96 32 96 14.3 96 0 81.7 0 64m0 352a64 64 0 1 1 128 0 64 64 0 1 1-128 0m32-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-32"/></svg>
|
|
11361
11477
|
</a>
|
|
11362
11478
|
|
|
11363
11479
|
|
|
@@ -11365,7 +11481,7 @@
|
|
|
11365
11481
|
|
|
11366
11482
|
|
|
11367
11483
|
<a href="https://www.youtube.com/playlist?list=PLjA0bhxgryJ2Ts4GJMDA-tPzVWEncv4pb" target="_blank" rel="noopener" title="Nautobot Videos" class="md-social__link">
|
|
11368
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.
|
|
11484
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305m-317.51 213.508V175.185l142.739 81.205z"/></svg>
|
|
11369
11485
|
</a>
|
|
11370
11486
|
|
|
11371
11487
|
|
|
@@ -11373,7 +11489,7 @@
|
|
|
11373
11489
|
|
|
11374
11490
|
|
|
11375
11491
|
<a href="https://www.networktocode.com/community/" target="_blank" rel="noopener" title="Network to Code Community" class="md-social__link">
|
|
11376
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.
|
|
11492
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M94.12 315.1c0 25.9-21.16 47.06-47.06 47.06S0 341 0 315.1s21.16-47.06 47.06-47.06h47.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.06zm47.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.06zm0 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.06zm188.98 47.06c0-25.9 21.16-47.06 47.06-47.06S448 171 448 196.9s-21.16 47.06-47.06 47.06h-47.06zm-23.72 0c0 25.9-21.16 47.06-47.06 47.06s-47.06-21.16-47.06-47.06V79.06c0-25.9 21.16-47.06 47.06-47.06s47.06 21.16 47.06 47.06zM283.1 385.88c25.9 0 47.06 21.16 47.06 47.06S309 480 283.1 480s-47.06-21.16-47.06-47.06v-47.06zm0-23.72c-25.9 0-47.06-21.16-47.06-47.06s21.16-47.06 47.06-47.06h117.84c25.9 0 47.06 21.16 47.06 47.06s-21.16 47.06-47.06 47.06z"/></svg>
|
|
11377
11493
|
</a>
|
|
11378
11494
|
|
|
11379
11495
|
|
|
@@ -11381,7 +11497,7 @@
|
|
|
11381
11497
|
|
|
11382
11498
|
|
|
11383
11499
|
<a href="https://github.com/nautobot/nautobot" target="_blank" rel="noopener" title="GitHub Repo" class="md-social__link">
|
|
11384
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.
|
|
11500
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6m-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.3m44.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.9M244.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 8M97.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-1m-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.7m32.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-1m-11.4-14.7c-1.6 1-1.6 3.6 0 5.9s4.3 3.3 5.6 2.3c1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2"/></svg>
|
|
11385
11501
|
</a>
|
|
11386
11502
|
|
|
11387
11503
|
|
|
@@ -11389,7 +11505,7 @@
|
|
|
11389
11505
|
|
|
11390
11506
|
|
|
11391
11507
|
<a href="https://twitter.com/networktocode" target="_blank" rel="noopener" title="Network to Code Twitter" class="md-social__link">
|
|
11392
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.
|
|
11508
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253"/></svg>
|
|
11393
11509
|
</a>
|
|
11394
11510
|
|
|
11395
11511
|
</div>
|
|
@@ -11404,10 +11520,10 @@
|
|
|
11404
11520
|
</div>
|
|
11405
11521
|
|
|
11406
11522
|
|
|
11407
|
-
<script id="__config" type="application/json">{"base": "..", "features": ["content.code.annotate", "content.code.copy", "content.tabs.link", "navigation.footer", "navigation.tabs", "navigation.tabs.sticky", "navigation.tracking", "search.highlight", "search.share", "search.suggest"], "search": "../assets/javascripts/workers/search.
|
|
11523
|
+
<script id="__config" type="application/json">{"base": "..", "features": ["content.code.annotate", "content.code.copy", "content.tabs.link", "navigation.footer", "navigation.tabs", "navigation.tabs.sticky", "navigation.tracking", "search.highlight", "search.share", "search.suggest"], "search": "../assets/javascripts/workers/search.f8cc74c7.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}}</script>
|
|
11408
11524
|
|
|
11409
11525
|
|
|
11410
|
-
<script src="../assets/javascripts/bundle.
|
|
11526
|
+
<script src="../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
11411
11527
|
|
|
11412
11528
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
11413
11529
|
|