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
|
|
|
@@ -8606,36 +8723,36 @@
|
|
|
8606
8723
|
<ul class="md-nav__list">
|
|
8607
8724
|
|
|
8608
8725
|
<li class="md-nav__item">
|
|
8609
|
-
<a href="#
|
|
8726
|
+
<a href="#added-in-v229" class="md-nav__link">
|
|
8610
8727
|
<span class="md-ellipsis">
|
|
8611
|
-
Added
|
|
8728
|
+
Added in v2.2.9
|
|
8612
8729
|
</span>
|
|
8613
8730
|
</a>
|
|
8614
8731
|
|
|
8615
8732
|
</li>
|
|
8616
8733
|
|
|
8617
8734
|
<li class="md-nav__item">
|
|
8618
|
-
<a href="#fixed" class="md-nav__link">
|
|
8735
|
+
<a href="#fixed-in-v229" class="md-nav__link">
|
|
8619
8736
|
<span class="md-ellipsis">
|
|
8620
|
-
Fixed
|
|
8737
|
+
Fixed in v2.2.9
|
|
8621
8738
|
</span>
|
|
8622
8739
|
</a>
|
|
8623
8740
|
|
|
8624
8741
|
</li>
|
|
8625
8742
|
|
|
8626
8743
|
<li class="md-nav__item">
|
|
8627
|
-
<a href="#dependencies" class="md-nav__link">
|
|
8744
|
+
<a href="#dependencies-in-v229" class="md-nav__link">
|
|
8628
8745
|
<span class="md-ellipsis">
|
|
8629
|
-
Dependencies
|
|
8746
|
+
Dependencies in v2.2.9
|
|
8630
8747
|
</span>
|
|
8631
8748
|
</a>
|
|
8632
8749
|
|
|
8633
8750
|
</li>
|
|
8634
8751
|
|
|
8635
8752
|
<li class="md-nav__item">
|
|
8636
|
-
<a href="#documentation" class="md-nav__link">
|
|
8753
|
+
<a href="#documentation-in-v229" class="md-nav__link">
|
|
8637
8754
|
<span class="md-ellipsis">
|
|
8638
|
-
Documentation
|
|
8755
|
+
Documentation in v2.2.9
|
|
8639
8756
|
</span>
|
|
8640
8757
|
</a>
|
|
8641
8758
|
|
|
@@ -8657,45 +8774,45 @@
|
|
|
8657
8774
|
<ul class="md-nav__list">
|
|
8658
8775
|
|
|
8659
8776
|
<li class="md-nav__item">
|
|
8660
|
-
<a href="#security" class="md-nav__link">
|
|
8777
|
+
<a href="#security-in-v228" class="md-nav__link">
|
|
8661
8778
|
<span class="md-ellipsis">
|
|
8662
|
-
Security
|
|
8779
|
+
Security in v2.2.8
|
|
8663
8780
|
</span>
|
|
8664
8781
|
</a>
|
|
8665
8782
|
|
|
8666
8783
|
</li>
|
|
8667
8784
|
|
|
8668
8785
|
<li class="md-nav__item">
|
|
8669
|
-
<a href="#
|
|
8786
|
+
<a href="#fixed-in-v228" class="md-nav__link">
|
|
8670
8787
|
<span class="md-ellipsis">
|
|
8671
|
-
Fixed
|
|
8788
|
+
Fixed in v2.2.8
|
|
8672
8789
|
</span>
|
|
8673
8790
|
</a>
|
|
8674
8791
|
|
|
8675
8792
|
</li>
|
|
8676
8793
|
|
|
8677
8794
|
<li class="md-nav__item">
|
|
8678
|
-
<a href="#
|
|
8795
|
+
<a href="#dependencies-in-v228" class="md-nav__link">
|
|
8679
8796
|
<span class="md-ellipsis">
|
|
8680
|
-
Dependencies
|
|
8797
|
+
Dependencies in v2.2.8
|
|
8681
8798
|
</span>
|
|
8682
8799
|
</a>
|
|
8683
8800
|
|
|
8684
8801
|
</li>
|
|
8685
8802
|
|
|
8686
8803
|
<li class="md-nav__item">
|
|
8687
|
-
<a href="#
|
|
8804
|
+
<a href="#documentation-in-v228" class="md-nav__link">
|
|
8688
8805
|
<span class="md-ellipsis">
|
|
8689
|
-
Documentation
|
|
8806
|
+
Documentation in v2.2.8
|
|
8690
8807
|
</span>
|
|
8691
8808
|
</a>
|
|
8692
8809
|
|
|
8693
8810
|
</li>
|
|
8694
8811
|
|
|
8695
8812
|
<li class="md-nav__item">
|
|
8696
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
8813
|
+
<a href="#housekeeping-in-v228" class="md-nav__link">
|
|
8697
8814
|
<span class="md-ellipsis">
|
|
8698
|
-
Housekeeping
|
|
8815
|
+
Housekeeping in v2.2.8
|
|
8699
8816
|
</span>
|
|
8700
8817
|
</a>
|
|
8701
8818
|
|
|
@@ -8717,36 +8834,36 @@
|
|
|
8717
8834
|
<ul class="md-nav__list">
|
|
8718
8835
|
|
|
8719
8836
|
<li class="md-nav__item">
|
|
8720
|
-
<a href="#
|
|
8837
|
+
<a href="#security-in-v227" class="md-nav__link">
|
|
8721
8838
|
<span class="md-ellipsis">
|
|
8722
|
-
Security
|
|
8839
|
+
Security in v2.2.7
|
|
8723
8840
|
</span>
|
|
8724
8841
|
</a>
|
|
8725
8842
|
|
|
8726
8843
|
</li>
|
|
8727
8844
|
|
|
8728
8845
|
<li class="md-nav__item">
|
|
8729
|
-
<a href="#
|
|
8846
|
+
<a href="#fixed-in-v227" class="md-nav__link">
|
|
8730
8847
|
<span class="md-ellipsis">
|
|
8731
|
-
Fixed
|
|
8848
|
+
Fixed in v2.2.7
|
|
8732
8849
|
</span>
|
|
8733
8850
|
</a>
|
|
8734
8851
|
|
|
8735
8852
|
</li>
|
|
8736
8853
|
|
|
8737
8854
|
<li class="md-nav__item">
|
|
8738
|
-
<a href="#
|
|
8855
|
+
<a href="#dependencies-in-v227" class="md-nav__link">
|
|
8739
8856
|
<span class="md-ellipsis">
|
|
8740
|
-
Dependencies
|
|
8857
|
+
Dependencies in v2.2.7
|
|
8741
8858
|
</span>
|
|
8742
8859
|
</a>
|
|
8743
8860
|
|
|
8744
8861
|
</li>
|
|
8745
8862
|
|
|
8746
8863
|
<li class="md-nav__item">
|
|
8747
|
-
<a href="#
|
|
8864
|
+
<a href="#housekeeping-in-v227" class="md-nav__link">
|
|
8748
8865
|
<span class="md-ellipsis">
|
|
8749
|
-
Housekeeping
|
|
8866
|
+
Housekeeping in v2.2.7
|
|
8750
8867
|
</span>
|
|
8751
8868
|
</a>
|
|
8752
8869
|
|
|
@@ -8768,54 +8885,54 @@
|
|
|
8768
8885
|
<ul class="md-nav__list">
|
|
8769
8886
|
|
|
8770
8887
|
<li class="md-nav__item">
|
|
8771
|
-
<a href="#
|
|
8888
|
+
<a href="#security-in-v226" class="md-nav__link">
|
|
8772
8889
|
<span class="md-ellipsis">
|
|
8773
|
-
Security
|
|
8890
|
+
Security in v2.2.6
|
|
8774
8891
|
</span>
|
|
8775
8892
|
</a>
|
|
8776
8893
|
|
|
8777
8894
|
</li>
|
|
8778
8895
|
|
|
8779
8896
|
<li class="md-nav__item">
|
|
8780
|
-
<a href="#
|
|
8897
|
+
<a href="#added-in-v226" class="md-nav__link">
|
|
8781
8898
|
<span class="md-ellipsis">
|
|
8782
|
-
Added
|
|
8899
|
+
Added in v2.2.6
|
|
8783
8900
|
</span>
|
|
8784
8901
|
</a>
|
|
8785
8902
|
|
|
8786
8903
|
</li>
|
|
8787
8904
|
|
|
8788
8905
|
<li class="md-nav__item">
|
|
8789
|
-
<a href="#
|
|
8906
|
+
<a href="#changed-in-v226" class="md-nav__link">
|
|
8790
8907
|
<span class="md-ellipsis">
|
|
8791
|
-
Changed
|
|
8908
|
+
Changed in v2.2.6
|
|
8792
8909
|
</span>
|
|
8793
8910
|
</a>
|
|
8794
8911
|
|
|
8795
8912
|
</li>
|
|
8796
8913
|
|
|
8797
8914
|
<li class="md-nav__item">
|
|
8798
|
-
<a href="#
|
|
8915
|
+
<a href="#fixed-in-v226" class="md-nav__link">
|
|
8799
8916
|
<span class="md-ellipsis">
|
|
8800
|
-
Fixed
|
|
8917
|
+
Fixed in v2.2.6
|
|
8801
8918
|
</span>
|
|
8802
8919
|
</a>
|
|
8803
8920
|
|
|
8804
8921
|
</li>
|
|
8805
8922
|
|
|
8806
8923
|
<li class="md-nav__item">
|
|
8807
|
-
<a href="#
|
|
8924
|
+
<a href="#documentation-in-v226" class="md-nav__link">
|
|
8808
8925
|
<span class="md-ellipsis">
|
|
8809
|
-
Documentation
|
|
8926
|
+
Documentation in v2.2.6
|
|
8810
8927
|
</span>
|
|
8811
8928
|
</a>
|
|
8812
8929
|
|
|
8813
8930
|
</li>
|
|
8814
8931
|
|
|
8815
8932
|
<li class="md-nav__item">
|
|
8816
|
-
<a href="#
|
|
8933
|
+
<a href="#housekeeping-in-v226" class="md-nav__link">
|
|
8817
8934
|
<span class="md-ellipsis">
|
|
8818
|
-
Housekeeping
|
|
8935
|
+
Housekeeping in v2.2.6
|
|
8819
8936
|
</span>
|
|
8820
8937
|
</a>
|
|
8821
8938
|
|
|
@@ -8837,54 +8954,54 @@
|
|
|
8837
8954
|
<ul class="md-nav__list">
|
|
8838
8955
|
|
|
8839
8956
|
<li class="md-nav__item">
|
|
8840
|
-
<a href="#
|
|
8957
|
+
<a href="#security-in-v225" class="md-nav__link">
|
|
8841
8958
|
<span class="md-ellipsis">
|
|
8842
|
-
Security
|
|
8959
|
+
Security in v2.2.5
|
|
8843
8960
|
</span>
|
|
8844
8961
|
</a>
|
|
8845
8962
|
|
|
8846
8963
|
</li>
|
|
8847
8964
|
|
|
8848
8965
|
<li class="md-nav__item">
|
|
8849
|
-
<a href="#
|
|
8966
|
+
<a href="#added-in-v225" class="md-nav__link">
|
|
8850
8967
|
<span class="md-ellipsis">
|
|
8851
|
-
Added
|
|
8968
|
+
Added in v2.2.5
|
|
8852
8969
|
</span>
|
|
8853
8970
|
</a>
|
|
8854
8971
|
|
|
8855
8972
|
</li>
|
|
8856
8973
|
|
|
8857
8974
|
<li class="md-nav__item">
|
|
8858
|
-
<a href="#removed" class="md-nav__link">
|
|
8975
|
+
<a href="#removed-in-v225" class="md-nav__link">
|
|
8859
8976
|
<span class="md-ellipsis">
|
|
8860
|
-
Removed
|
|
8977
|
+
Removed in v2.2.5
|
|
8861
8978
|
</span>
|
|
8862
8979
|
</a>
|
|
8863
8980
|
|
|
8864
8981
|
</li>
|
|
8865
8982
|
|
|
8866
8983
|
<li class="md-nav__item">
|
|
8867
|
-
<a href="#
|
|
8984
|
+
<a href="#fixed-in-v225" class="md-nav__link">
|
|
8868
8985
|
<span class="md-ellipsis">
|
|
8869
|
-
Fixed
|
|
8986
|
+
Fixed in v2.2.5
|
|
8870
8987
|
</span>
|
|
8871
8988
|
</a>
|
|
8872
8989
|
|
|
8873
8990
|
</li>
|
|
8874
8991
|
|
|
8875
8992
|
<li class="md-nav__item">
|
|
8876
|
-
<a href="#
|
|
8993
|
+
<a href="#documentation-in-v225" class="md-nav__link">
|
|
8877
8994
|
<span class="md-ellipsis">
|
|
8878
|
-
Documentation
|
|
8995
|
+
Documentation in v2.2.5
|
|
8879
8996
|
</span>
|
|
8880
8997
|
</a>
|
|
8881
8998
|
|
|
8882
8999
|
</li>
|
|
8883
9000
|
|
|
8884
9001
|
<li class="md-nav__item">
|
|
8885
|
-
<a href="#
|
|
9002
|
+
<a href="#housekeeping-in-v225" class="md-nav__link">
|
|
8886
9003
|
<span class="md-ellipsis">
|
|
8887
|
-
Housekeeping
|
|
9004
|
+
Housekeeping in v2.2.5
|
|
8888
9005
|
</span>
|
|
8889
9006
|
</a>
|
|
8890
9007
|
|
|
@@ -8906,45 +9023,45 @@
|
|
|
8906
9023
|
<ul class="md-nav__list">
|
|
8907
9024
|
|
|
8908
9025
|
<li class="md-nav__item">
|
|
8909
|
-
<a href="#
|
|
9026
|
+
<a href="#security-in-v224" class="md-nav__link">
|
|
8910
9027
|
<span class="md-ellipsis">
|
|
8911
|
-
Security
|
|
9028
|
+
Security in v2.2.4
|
|
8912
9029
|
</span>
|
|
8913
9030
|
</a>
|
|
8914
9031
|
|
|
8915
9032
|
</li>
|
|
8916
9033
|
|
|
8917
9034
|
<li class="md-nav__item">
|
|
8918
|
-
<a href="#
|
|
9035
|
+
<a href="#added-in-v224" class="md-nav__link">
|
|
8919
9036
|
<span class="md-ellipsis">
|
|
8920
|
-
Added
|
|
9037
|
+
Added in v2.2.4
|
|
8921
9038
|
</span>
|
|
8922
9039
|
</a>
|
|
8923
9040
|
|
|
8924
9041
|
</li>
|
|
8925
9042
|
|
|
8926
9043
|
<li class="md-nav__item">
|
|
8927
|
-
<a href="#
|
|
9044
|
+
<a href="#fixed-in-v224" class="md-nav__link">
|
|
8928
9045
|
<span class="md-ellipsis">
|
|
8929
|
-
Fixed
|
|
9046
|
+
Fixed in v2.2.4
|
|
8930
9047
|
</span>
|
|
8931
9048
|
</a>
|
|
8932
9049
|
|
|
8933
9050
|
</li>
|
|
8934
9051
|
|
|
8935
9052
|
<li class="md-nav__item">
|
|
8936
|
-
<a href="#
|
|
9053
|
+
<a href="#documentation-in-v224" class="md-nav__link">
|
|
8937
9054
|
<span class="md-ellipsis">
|
|
8938
|
-
Documentation
|
|
9055
|
+
Documentation in v2.2.4
|
|
8939
9056
|
</span>
|
|
8940
9057
|
</a>
|
|
8941
9058
|
|
|
8942
9059
|
</li>
|
|
8943
9060
|
|
|
8944
9061
|
<li class="md-nav__item">
|
|
8945
|
-
<a href="#
|
|
9062
|
+
<a href="#housekeeping-in-v224" class="md-nav__link">
|
|
8946
9063
|
<span class="md-ellipsis">
|
|
8947
|
-
Housekeeping
|
|
9064
|
+
Housekeeping in v2.2.4
|
|
8948
9065
|
</span>
|
|
8949
9066
|
</a>
|
|
8950
9067
|
|
|
@@ -8966,54 +9083,54 @@
|
|
|
8966
9083
|
<ul class="md-nav__list">
|
|
8967
9084
|
|
|
8968
9085
|
<li class="md-nav__item">
|
|
8969
|
-
<a href="#
|
|
9086
|
+
<a href="#security-in-v223" class="md-nav__link">
|
|
8970
9087
|
<span class="md-ellipsis">
|
|
8971
|
-
Security
|
|
9088
|
+
Security in v2.2.3
|
|
8972
9089
|
</span>
|
|
8973
9090
|
</a>
|
|
8974
9091
|
|
|
8975
9092
|
</li>
|
|
8976
9093
|
|
|
8977
9094
|
<li class="md-nav__item">
|
|
8978
|
-
<a href="#
|
|
9095
|
+
<a href="#added-in-v223" class="md-nav__link">
|
|
8979
9096
|
<span class="md-ellipsis">
|
|
8980
|
-
Added
|
|
9097
|
+
Added in v2.2.3
|
|
8981
9098
|
</span>
|
|
8982
9099
|
</a>
|
|
8983
9100
|
|
|
8984
9101
|
</li>
|
|
8985
9102
|
|
|
8986
9103
|
<li class="md-nav__item">
|
|
8987
|
-
<a href="#
|
|
9104
|
+
<a href="#changed-in-v223" class="md-nav__link">
|
|
8988
9105
|
<span class="md-ellipsis">
|
|
8989
|
-
Changed
|
|
9106
|
+
Changed in v2.2.3
|
|
8990
9107
|
</span>
|
|
8991
9108
|
</a>
|
|
8992
9109
|
|
|
8993
9110
|
</li>
|
|
8994
9111
|
|
|
8995
9112
|
<li class="md-nav__item">
|
|
8996
|
-
<a href="#
|
|
9113
|
+
<a href="#fixed-in-v223" class="md-nav__link">
|
|
8997
9114
|
<span class="md-ellipsis">
|
|
8998
|
-
Fixed
|
|
9115
|
+
Fixed in v2.2.3
|
|
8999
9116
|
</span>
|
|
9000
9117
|
</a>
|
|
9001
9118
|
|
|
9002
9119
|
</li>
|
|
9003
9120
|
|
|
9004
9121
|
<li class="md-nav__item">
|
|
9005
|
-
<a href="#
|
|
9122
|
+
<a href="#documentation-in-v223" class="md-nav__link">
|
|
9006
9123
|
<span class="md-ellipsis">
|
|
9007
|
-
Documentation
|
|
9124
|
+
Documentation in v2.2.3
|
|
9008
9125
|
</span>
|
|
9009
9126
|
</a>
|
|
9010
9127
|
|
|
9011
9128
|
</li>
|
|
9012
9129
|
|
|
9013
9130
|
<li class="md-nav__item">
|
|
9014
|
-
<a href="#
|
|
9131
|
+
<a href="#housekeeping-in-v223" class="md-nav__link">
|
|
9015
9132
|
<span class="md-ellipsis">
|
|
9016
|
-
Housekeeping
|
|
9133
|
+
Housekeeping in v2.2.3
|
|
9017
9134
|
</span>
|
|
9018
9135
|
</a>
|
|
9019
9136
|
|
|
@@ -9035,54 +9152,54 @@
|
|
|
9035
9152
|
<ul class="md-nav__list">
|
|
9036
9153
|
|
|
9037
9154
|
<li class="md-nav__item">
|
|
9038
|
-
<a href="#
|
|
9155
|
+
<a href="#security-in-v222" class="md-nav__link">
|
|
9039
9156
|
<span class="md-ellipsis">
|
|
9040
|
-
Security
|
|
9157
|
+
Security in v2.2.2
|
|
9041
9158
|
</span>
|
|
9042
9159
|
</a>
|
|
9043
9160
|
|
|
9044
9161
|
</li>
|
|
9045
9162
|
|
|
9046
9163
|
<li class="md-nav__item">
|
|
9047
|
-
<a href="#
|
|
9164
|
+
<a href="#added-in-v222" class="md-nav__link">
|
|
9048
9165
|
<span class="md-ellipsis">
|
|
9049
|
-
Added
|
|
9166
|
+
Added in v2.2.2
|
|
9050
9167
|
</span>
|
|
9051
9168
|
</a>
|
|
9052
9169
|
|
|
9053
9170
|
</li>
|
|
9054
9171
|
|
|
9055
9172
|
<li class="md-nav__item">
|
|
9056
|
-
<a href="#
|
|
9173
|
+
<a href="#changed-in-v222" class="md-nav__link">
|
|
9057
9174
|
<span class="md-ellipsis">
|
|
9058
|
-
Changed
|
|
9175
|
+
Changed in v2.2.2
|
|
9059
9176
|
</span>
|
|
9060
9177
|
</a>
|
|
9061
9178
|
|
|
9062
9179
|
</li>
|
|
9063
9180
|
|
|
9064
9181
|
<li class="md-nav__item">
|
|
9065
|
-
<a href="#
|
|
9182
|
+
<a href="#fixed-in-v222" class="md-nav__link">
|
|
9066
9183
|
<span class="md-ellipsis">
|
|
9067
|
-
Fixed
|
|
9184
|
+
Fixed in v2.2.2
|
|
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="#documentation-in-v222" class="md-nav__link">
|
|
9075
9192
|
<span class="md-ellipsis">
|
|
9076
|
-
Documentation
|
|
9193
|
+
Documentation in v2.2.2
|
|
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="#housekeeping-in-v222" class="md-nav__link">
|
|
9084
9201
|
<span class="md-ellipsis">
|
|
9085
|
-
Housekeeping
|
|
9202
|
+
Housekeeping in v2.2.2
|
|
9086
9203
|
</span>
|
|
9087
9204
|
</a>
|
|
9088
9205
|
|
|
@@ -9104,63 +9221,63 @@
|
|
|
9104
9221
|
<ul class="md-nav__list">
|
|
9105
9222
|
|
|
9106
9223
|
<li class="md-nav__item">
|
|
9107
|
-
<a href="#
|
|
9224
|
+
<a href="#security-in-v221" class="md-nav__link">
|
|
9108
9225
|
<span class="md-ellipsis">
|
|
9109
|
-
Security
|
|
9226
|
+
Security in v2.2.1
|
|
9110
9227
|
</span>
|
|
9111
9228
|
</a>
|
|
9112
9229
|
|
|
9113
9230
|
</li>
|
|
9114
9231
|
|
|
9115
9232
|
<li class="md-nav__item">
|
|
9116
|
-
<a href="#
|
|
9233
|
+
<a href="#added-in-v221" class="md-nav__link">
|
|
9117
9234
|
<span class="md-ellipsis">
|
|
9118
|
-
Added
|
|
9235
|
+
Added in v2.2.1
|
|
9119
9236
|
</span>
|
|
9120
9237
|
</a>
|
|
9121
9238
|
|
|
9122
9239
|
</li>
|
|
9123
9240
|
|
|
9124
9241
|
<li class="md-nav__item">
|
|
9125
|
-
<a href="#
|
|
9242
|
+
<a href="#changed-in-v221" class="md-nav__link">
|
|
9126
9243
|
<span class="md-ellipsis">
|
|
9127
|
-
Changed
|
|
9244
|
+
Changed in v2.2.1
|
|
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="#fixed-in-v221" class="md-nav__link">
|
|
9135
9252
|
<span class="md-ellipsis">
|
|
9136
|
-
Fixed
|
|
9253
|
+
Fixed in v2.2.1
|
|
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="#dependencies-in-v221" class="md-nav__link">
|
|
9144
9261
|
<span class="md-ellipsis">
|
|
9145
|
-
Dependencies
|
|
9262
|
+
Dependencies in v2.2.1
|
|
9146
9263
|
</span>
|
|
9147
9264
|
</a>
|
|
9148
9265
|
|
|
9149
9266
|
</li>
|
|
9150
9267
|
|
|
9151
9268
|
<li class="md-nav__item">
|
|
9152
|
-
<a href="#
|
|
9269
|
+
<a href="#documentation-in-v221" class="md-nav__link">
|
|
9153
9270
|
<span class="md-ellipsis">
|
|
9154
|
-
Documentation
|
|
9271
|
+
Documentation in v2.2.1
|
|
9155
9272
|
</span>
|
|
9156
9273
|
</a>
|
|
9157
9274
|
|
|
9158
9275
|
</li>
|
|
9159
9276
|
|
|
9160
9277
|
<li class="md-nav__item">
|
|
9161
|
-
<a href="#
|
|
9278
|
+
<a href="#housekeeping-in-v221" class="md-nav__link">
|
|
9162
9279
|
<span class="md-ellipsis">
|
|
9163
|
-
Housekeeping
|
|
9280
|
+
Housekeeping in v2.2.1
|
|
9164
9281
|
</span>
|
|
9165
9282
|
</a>
|
|
9166
9283
|
|
|
@@ -9182,45 +9299,45 @@
|
|
|
9182
9299
|
<ul class="md-nav__list">
|
|
9183
9300
|
|
|
9184
9301
|
<li class="md-nav__item">
|
|
9185
|
-
<a href="#
|
|
9302
|
+
<a href="#added-in-v220" class="md-nav__link">
|
|
9186
9303
|
<span class="md-ellipsis">
|
|
9187
|
-
Added
|
|
9304
|
+
Added in v2.2.0
|
|
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="#changed-in-v220" class="md-nav__link">
|
|
9195
9312
|
<span class="md-ellipsis">
|
|
9196
|
-
Changed
|
|
9313
|
+
Changed in v2.2.0
|
|
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="#fixed-in-v220" class="md-nav__link">
|
|
9204
9321
|
<span class="md-ellipsis">
|
|
9205
|
-
Fixed
|
|
9322
|
+
Fixed in v2.2.0
|
|
9206
9323
|
</span>
|
|
9207
9324
|
</a>
|
|
9208
9325
|
|
|
9209
9326
|
</li>
|
|
9210
9327
|
|
|
9211
9328
|
<li class="md-nav__item">
|
|
9212
|
-
<a href="#
|
|
9329
|
+
<a href="#dependencies-in-v220" class="md-nav__link">
|
|
9213
9330
|
<span class="md-ellipsis">
|
|
9214
|
-
Dependencies
|
|
9331
|
+
Dependencies in v2.2.0
|
|
9215
9332
|
</span>
|
|
9216
9333
|
</a>
|
|
9217
9334
|
|
|
9218
9335
|
</li>
|
|
9219
9336
|
|
|
9220
9337
|
<li class="md-nav__item">
|
|
9221
|
-
<a href="#
|
|
9338
|
+
<a href="#housekeeping-in-v220" class="md-nav__link">
|
|
9222
9339
|
<span class="md-ellipsis">
|
|
9223
|
-
Housekeeping
|
|
9340
|
+
Housekeeping in v2.2.0
|
|
9224
9341
|
</span>
|
|
9225
9342
|
</a>
|
|
9226
9343
|
|
|
@@ -9242,72 +9359,72 @@
|
|
|
9242
9359
|
<ul class="md-nav__list">
|
|
9243
9360
|
|
|
9244
9361
|
<li class="md-nav__item">
|
|
9245
|
-
<a href="#
|
|
9362
|
+
<a href="#added-in-v220-beta1" class="md-nav__link">
|
|
9246
9363
|
<span class="md-ellipsis">
|
|
9247
|
-
Added
|
|
9364
|
+
Added in v2.2.0-beta.1
|
|
9248
9365
|
</span>
|
|
9249
9366
|
</a>
|
|
9250
9367
|
|
|
9251
9368
|
</li>
|
|
9252
9369
|
|
|
9253
9370
|
<li class="md-nav__item">
|
|
9254
|
-
<a href="#
|
|
9371
|
+
<a href="#changed-in-v220-beta1" class="md-nav__link">
|
|
9255
9372
|
<span class="md-ellipsis">
|
|
9256
|
-
Changed
|
|
9373
|
+
Changed in v2.2.0-beta.1
|
|
9257
9374
|
</span>
|
|
9258
9375
|
</a>
|
|
9259
9376
|
|
|
9260
9377
|
</li>
|
|
9261
9378
|
|
|
9262
9379
|
<li class="md-nav__item">
|
|
9263
|
-
<a href="#deprecated" class="md-nav__link">
|
|
9380
|
+
<a href="#deprecated-in-v220-beta1" class="md-nav__link">
|
|
9264
9381
|
<span class="md-ellipsis">
|
|
9265
|
-
Deprecated
|
|
9382
|
+
Deprecated in v2.2.0-beta.1
|
|
9266
9383
|
</span>
|
|
9267
9384
|
</a>
|
|
9268
9385
|
|
|
9269
9386
|
</li>
|
|
9270
9387
|
|
|
9271
9388
|
<li class="md-nav__item">
|
|
9272
|
-
<a href="#
|
|
9389
|
+
<a href="#removed-in-v220-beta1" class="md-nav__link">
|
|
9273
9390
|
<span class="md-ellipsis">
|
|
9274
|
-
Removed
|
|
9391
|
+
Removed in v2.2.0-beta.1
|
|
9275
9392
|
</span>
|
|
9276
9393
|
</a>
|
|
9277
9394
|
|
|
9278
9395
|
</li>
|
|
9279
9396
|
|
|
9280
9397
|
<li class="md-nav__item">
|
|
9281
|
-
<a href="#
|
|
9398
|
+
<a href="#fixed-in-v220-beta1" class="md-nav__link">
|
|
9282
9399
|
<span class="md-ellipsis">
|
|
9283
|
-
Fixed
|
|
9400
|
+
Fixed in v2.2.0-beta.1
|
|
9284
9401
|
</span>
|
|
9285
9402
|
</a>
|
|
9286
9403
|
|
|
9287
9404
|
</li>
|
|
9288
9405
|
|
|
9289
9406
|
<li class="md-nav__item">
|
|
9290
|
-
<a href="#
|
|
9407
|
+
<a href="#dependencies-in-v220-beta1" class="md-nav__link">
|
|
9291
9408
|
<span class="md-ellipsis">
|
|
9292
|
-
Dependencies
|
|
9409
|
+
Dependencies in v2.2.0-beta.1
|
|
9293
9410
|
</span>
|
|
9294
9411
|
</a>
|
|
9295
9412
|
|
|
9296
9413
|
</li>
|
|
9297
9414
|
|
|
9298
9415
|
<li class="md-nav__item">
|
|
9299
|
-
<a href="#
|
|
9416
|
+
<a href="#documentation-in-v220-beta1" class="md-nav__link">
|
|
9300
9417
|
<span class="md-ellipsis">
|
|
9301
|
-
Documentation
|
|
9418
|
+
Documentation in v2.2.0-beta.1
|
|
9302
9419
|
</span>
|
|
9303
9420
|
</a>
|
|
9304
9421
|
|
|
9305
9422
|
</li>
|
|
9306
9423
|
|
|
9307
9424
|
<li class="md-nav__item">
|
|
9308
|
-
<a href="#
|
|
9425
|
+
<a href="#housekeeping-in-v220-beta1" class="md-nav__link">
|
|
9309
9426
|
<span class="md-ellipsis">
|
|
9310
|
-
Housekeeping
|
|
9427
|
+
Housekeeping in v2.2.0-beta.1
|
|
9311
9428
|
</span>
|
|
9312
9429
|
</a>
|
|
9313
9430
|
|
|
@@ -10024,36 +10141,36 @@
|
|
|
10024
10141
|
<ul class="md-nav__list">
|
|
10025
10142
|
|
|
10026
10143
|
<li class="md-nav__item">
|
|
10027
|
-
<a href="#
|
|
10144
|
+
<a href="#added-in-v229" class="md-nav__link">
|
|
10028
10145
|
<span class="md-ellipsis">
|
|
10029
|
-
Added
|
|
10146
|
+
Added in v2.2.9
|
|
10030
10147
|
</span>
|
|
10031
10148
|
</a>
|
|
10032
10149
|
|
|
10033
10150
|
</li>
|
|
10034
10151
|
|
|
10035
10152
|
<li class="md-nav__item">
|
|
10036
|
-
<a href="#fixed" class="md-nav__link">
|
|
10153
|
+
<a href="#fixed-in-v229" class="md-nav__link">
|
|
10037
10154
|
<span class="md-ellipsis">
|
|
10038
|
-
Fixed
|
|
10155
|
+
Fixed in v2.2.9
|
|
10039
10156
|
</span>
|
|
10040
10157
|
</a>
|
|
10041
10158
|
|
|
10042
10159
|
</li>
|
|
10043
10160
|
|
|
10044
10161
|
<li class="md-nav__item">
|
|
10045
|
-
<a href="#dependencies" class="md-nav__link">
|
|
10162
|
+
<a href="#dependencies-in-v229" class="md-nav__link">
|
|
10046
10163
|
<span class="md-ellipsis">
|
|
10047
|
-
Dependencies
|
|
10164
|
+
Dependencies in v2.2.9
|
|
10048
10165
|
</span>
|
|
10049
10166
|
</a>
|
|
10050
10167
|
|
|
10051
10168
|
</li>
|
|
10052
10169
|
|
|
10053
10170
|
<li class="md-nav__item">
|
|
10054
|
-
<a href="#documentation" class="md-nav__link">
|
|
10171
|
+
<a href="#documentation-in-v229" class="md-nav__link">
|
|
10055
10172
|
<span class="md-ellipsis">
|
|
10056
|
-
Documentation
|
|
10173
|
+
Documentation in v2.2.9
|
|
10057
10174
|
</span>
|
|
10058
10175
|
</a>
|
|
10059
10176
|
|
|
@@ -10075,45 +10192,45 @@
|
|
|
10075
10192
|
<ul class="md-nav__list">
|
|
10076
10193
|
|
|
10077
10194
|
<li class="md-nav__item">
|
|
10078
|
-
<a href="#security" class="md-nav__link">
|
|
10195
|
+
<a href="#security-in-v228" class="md-nav__link">
|
|
10079
10196
|
<span class="md-ellipsis">
|
|
10080
|
-
Security
|
|
10197
|
+
Security in v2.2.8
|
|
10081
10198
|
</span>
|
|
10082
10199
|
</a>
|
|
10083
10200
|
|
|
10084
10201
|
</li>
|
|
10085
10202
|
|
|
10086
10203
|
<li class="md-nav__item">
|
|
10087
|
-
<a href="#
|
|
10204
|
+
<a href="#fixed-in-v228" class="md-nav__link">
|
|
10088
10205
|
<span class="md-ellipsis">
|
|
10089
|
-
Fixed
|
|
10206
|
+
Fixed in v2.2.8
|
|
10090
10207
|
</span>
|
|
10091
10208
|
</a>
|
|
10092
10209
|
|
|
10093
10210
|
</li>
|
|
10094
10211
|
|
|
10095
10212
|
<li class="md-nav__item">
|
|
10096
|
-
<a href="#
|
|
10213
|
+
<a href="#dependencies-in-v228" class="md-nav__link">
|
|
10097
10214
|
<span class="md-ellipsis">
|
|
10098
|
-
Dependencies
|
|
10215
|
+
Dependencies in v2.2.8
|
|
10099
10216
|
</span>
|
|
10100
10217
|
</a>
|
|
10101
10218
|
|
|
10102
10219
|
</li>
|
|
10103
10220
|
|
|
10104
10221
|
<li class="md-nav__item">
|
|
10105
|
-
<a href="#
|
|
10222
|
+
<a href="#documentation-in-v228" class="md-nav__link">
|
|
10106
10223
|
<span class="md-ellipsis">
|
|
10107
|
-
Documentation
|
|
10224
|
+
Documentation in v2.2.8
|
|
10108
10225
|
</span>
|
|
10109
10226
|
</a>
|
|
10110
10227
|
|
|
10111
10228
|
</li>
|
|
10112
10229
|
|
|
10113
10230
|
<li class="md-nav__item">
|
|
10114
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
10231
|
+
<a href="#housekeeping-in-v228" class="md-nav__link">
|
|
10115
10232
|
<span class="md-ellipsis">
|
|
10116
|
-
Housekeeping
|
|
10233
|
+
Housekeeping in v2.2.8
|
|
10117
10234
|
</span>
|
|
10118
10235
|
</a>
|
|
10119
10236
|
|
|
@@ -10135,36 +10252,36 @@
|
|
|
10135
10252
|
<ul class="md-nav__list">
|
|
10136
10253
|
|
|
10137
10254
|
<li class="md-nav__item">
|
|
10138
|
-
<a href="#
|
|
10255
|
+
<a href="#security-in-v227" class="md-nav__link">
|
|
10139
10256
|
<span class="md-ellipsis">
|
|
10140
|
-
Security
|
|
10257
|
+
Security in v2.2.7
|
|
10141
10258
|
</span>
|
|
10142
10259
|
</a>
|
|
10143
10260
|
|
|
10144
10261
|
</li>
|
|
10145
10262
|
|
|
10146
10263
|
<li class="md-nav__item">
|
|
10147
|
-
<a href="#
|
|
10264
|
+
<a href="#fixed-in-v227" class="md-nav__link">
|
|
10148
10265
|
<span class="md-ellipsis">
|
|
10149
|
-
Fixed
|
|
10266
|
+
Fixed in v2.2.7
|
|
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="#dependencies-in-v227" class="md-nav__link">
|
|
10157
10274
|
<span class="md-ellipsis">
|
|
10158
|
-
Dependencies
|
|
10275
|
+
Dependencies in v2.2.7
|
|
10159
10276
|
</span>
|
|
10160
10277
|
</a>
|
|
10161
10278
|
|
|
10162
10279
|
</li>
|
|
10163
10280
|
|
|
10164
10281
|
<li class="md-nav__item">
|
|
10165
|
-
<a href="#
|
|
10282
|
+
<a href="#housekeeping-in-v227" class="md-nav__link">
|
|
10166
10283
|
<span class="md-ellipsis">
|
|
10167
|
-
Housekeeping
|
|
10284
|
+
Housekeeping in v2.2.7
|
|
10168
10285
|
</span>
|
|
10169
10286
|
</a>
|
|
10170
10287
|
|
|
@@ -10186,54 +10303,54 @@
|
|
|
10186
10303
|
<ul class="md-nav__list">
|
|
10187
10304
|
|
|
10188
10305
|
<li class="md-nav__item">
|
|
10189
|
-
<a href="#
|
|
10306
|
+
<a href="#security-in-v226" class="md-nav__link">
|
|
10190
10307
|
<span class="md-ellipsis">
|
|
10191
|
-
Security
|
|
10308
|
+
Security in v2.2.6
|
|
10192
10309
|
</span>
|
|
10193
10310
|
</a>
|
|
10194
10311
|
|
|
10195
10312
|
</li>
|
|
10196
10313
|
|
|
10197
10314
|
<li class="md-nav__item">
|
|
10198
|
-
<a href="#
|
|
10315
|
+
<a href="#added-in-v226" class="md-nav__link">
|
|
10199
10316
|
<span class="md-ellipsis">
|
|
10200
|
-
Added
|
|
10317
|
+
Added in v2.2.6
|
|
10201
10318
|
</span>
|
|
10202
10319
|
</a>
|
|
10203
10320
|
|
|
10204
10321
|
</li>
|
|
10205
10322
|
|
|
10206
10323
|
<li class="md-nav__item">
|
|
10207
|
-
<a href="#
|
|
10324
|
+
<a href="#changed-in-v226" class="md-nav__link">
|
|
10208
10325
|
<span class="md-ellipsis">
|
|
10209
|
-
Changed
|
|
10326
|
+
Changed in v2.2.6
|
|
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="#fixed-in-v226" class="md-nav__link">
|
|
10217
10334
|
<span class="md-ellipsis">
|
|
10218
|
-
Fixed
|
|
10335
|
+
Fixed in v2.2.6
|
|
10219
10336
|
</span>
|
|
10220
10337
|
</a>
|
|
10221
10338
|
|
|
10222
10339
|
</li>
|
|
10223
10340
|
|
|
10224
10341
|
<li class="md-nav__item">
|
|
10225
|
-
<a href="#
|
|
10342
|
+
<a href="#documentation-in-v226" class="md-nav__link">
|
|
10226
10343
|
<span class="md-ellipsis">
|
|
10227
|
-
Documentation
|
|
10344
|
+
Documentation in v2.2.6
|
|
10228
10345
|
</span>
|
|
10229
10346
|
</a>
|
|
10230
10347
|
|
|
10231
10348
|
</li>
|
|
10232
10349
|
|
|
10233
10350
|
<li class="md-nav__item">
|
|
10234
|
-
<a href="#
|
|
10351
|
+
<a href="#housekeeping-in-v226" class="md-nav__link">
|
|
10235
10352
|
<span class="md-ellipsis">
|
|
10236
|
-
Housekeeping
|
|
10353
|
+
Housekeeping in v2.2.6
|
|
10237
10354
|
</span>
|
|
10238
10355
|
</a>
|
|
10239
10356
|
|
|
@@ -10255,54 +10372,54 @@
|
|
|
10255
10372
|
<ul class="md-nav__list">
|
|
10256
10373
|
|
|
10257
10374
|
<li class="md-nav__item">
|
|
10258
|
-
<a href="#
|
|
10375
|
+
<a href="#security-in-v225" class="md-nav__link">
|
|
10259
10376
|
<span class="md-ellipsis">
|
|
10260
|
-
Security
|
|
10377
|
+
Security in v2.2.5
|
|
10261
10378
|
</span>
|
|
10262
10379
|
</a>
|
|
10263
10380
|
|
|
10264
10381
|
</li>
|
|
10265
10382
|
|
|
10266
10383
|
<li class="md-nav__item">
|
|
10267
|
-
<a href="#
|
|
10384
|
+
<a href="#added-in-v225" class="md-nav__link">
|
|
10268
10385
|
<span class="md-ellipsis">
|
|
10269
|
-
Added
|
|
10386
|
+
Added in v2.2.5
|
|
10270
10387
|
</span>
|
|
10271
10388
|
</a>
|
|
10272
10389
|
|
|
10273
10390
|
</li>
|
|
10274
10391
|
|
|
10275
10392
|
<li class="md-nav__item">
|
|
10276
|
-
<a href="#removed" class="md-nav__link">
|
|
10393
|
+
<a href="#removed-in-v225" class="md-nav__link">
|
|
10277
10394
|
<span class="md-ellipsis">
|
|
10278
|
-
Removed
|
|
10395
|
+
Removed in v2.2.5
|
|
10279
10396
|
</span>
|
|
10280
10397
|
</a>
|
|
10281
10398
|
|
|
10282
10399
|
</li>
|
|
10283
10400
|
|
|
10284
10401
|
<li class="md-nav__item">
|
|
10285
|
-
<a href="#
|
|
10402
|
+
<a href="#fixed-in-v225" class="md-nav__link">
|
|
10286
10403
|
<span class="md-ellipsis">
|
|
10287
|
-
Fixed
|
|
10404
|
+
Fixed in v2.2.5
|
|
10288
10405
|
</span>
|
|
10289
10406
|
</a>
|
|
10290
10407
|
|
|
10291
10408
|
</li>
|
|
10292
10409
|
|
|
10293
10410
|
<li class="md-nav__item">
|
|
10294
|
-
<a href="#
|
|
10411
|
+
<a href="#documentation-in-v225" class="md-nav__link">
|
|
10295
10412
|
<span class="md-ellipsis">
|
|
10296
|
-
Documentation
|
|
10413
|
+
Documentation in v2.2.5
|
|
10297
10414
|
</span>
|
|
10298
10415
|
</a>
|
|
10299
10416
|
|
|
10300
10417
|
</li>
|
|
10301
10418
|
|
|
10302
10419
|
<li class="md-nav__item">
|
|
10303
|
-
<a href="#
|
|
10420
|
+
<a href="#housekeeping-in-v225" class="md-nav__link">
|
|
10304
10421
|
<span class="md-ellipsis">
|
|
10305
|
-
Housekeeping
|
|
10422
|
+
Housekeeping in v2.2.5
|
|
10306
10423
|
</span>
|
|
10307
10424
|
</a>
|
|
10308
10425
|
|
|
@@ -10324,45 +10441,45 @@
|
|
|
10324
10441
|
<ul class="md-nav__list">
|
|
10325
10442
|
|
|
10326
10443
|
<li class="md-nav__item">
|
|
10327
|
-
<a href="#
|
|
10444
|
+
<a href="#security-in-v224" class="md-nav__link">
|
|
10328
10445
|
<span class="md-ellipsis">
|
|
10329
|
-
Security
|
|
10446
|
+
Security in v2.2.4
|
|
10330
10447
|
</span>
|
|
10331
10448
|
</a>
|
|
10332
10449
|
|
|
10333
10450
|
</li>
|
|
10334
10451
|
|
|
10335
10452
|
<li class="md-nav__item">
|
|
10336
|
-
<a href="#
|
|
10453
|
+
<a href="#added-in-v224" class="md-nav__link">
|
|
10337
10454
|
<span class="md-ellipsis">
|
|
10338
|
-
Added
|
|
10455
|
+
Added in v2.2.4
|
|
10339
10456
|
</span>
|
|
10340
10457
|
</a>
|
|
10341
10458
|
|
|
10342
10459
|
</li>
|
|
10343
10460
|
|
|
10344
10461
|
<li class="md-nav__item">
|
|
10345
|
-
<a href="#
|
|
10462
|
+
<a href="#fixed-in-v224" class="md-nav__link">
|
|
10346
10463
|
<span class="md-ellipsis">
|
|
10347
|
-
Fixed
|
|
10464
|
+
Fixed in v2.2.4
|
|
10348
10465
|
</span>
|
|
10349
10466
|
</a>
|
|
10350
10467
|
|
|
10351
10468
|
</li>
|
|
10352
10469
|
|
|
10353
10470
|
<li class="md-nav__item">
|
|
10354
|
-
<a href="#
|
|
10471
|
+
<a href="#documentation-in-v224" class="md-nav__link">
|
|
10355
10472
|
<span class="md-ellipsis">
|
|
10356
|
-
Documentation
|
|
10473
|
+
Documentation in v2.2.4
|
|
10357
10474
|
</span>
|
|
10358
10475
|
</a>
|
|
10359
10476
|
|
|
10360
10477
|
</li>
|
|
10361
10478
|
|
|
10362
10479
|
<li class="md-nav__item">
|
|
10363
|
-
<a href="#
|
|
10480
|
+
<a href="#housekeeping-in-v224" class="md-nav__link">
|
|
10364
10481
|
<span class="md-ellipsis">
|
|
10365
|
-
Housekeeping
|
|
10482
|
+
Housekeeping in v2.2.4
|
|
10366
10483
|
</span>
|
|
10367
10484
|
</a>
|
|
10368
10485
|
|
|
@@ -10384,54 +10501,54 @@
|
|
|
10384
10501
|
<ul class="md-nav__list">
|
|
10385
10502
|
|
|
10386
10503
|
<li class="md-nav__item">
|
|
10387
|
-
<a href="#
|
|
10504
|
+
<a href="#security-in-v223" class="md-nav__link">
|
|
10388
10505
|
<span class="md-ellipsis">
|
|
10389
|
-
Security
|
|
10506
|
+
Security in v2.2.3
|
|
10390
10507
|
</span>
|
|
10391
10508
|
</a>
|
|
10392
10509
|
|
|
10393
10510
|
</li>
|
|
10394
10511
|
|
|
10395
10512
|
<li class="md-nav__item">
|
|
10396
|
-
<a href="#
|
|
10513
|
+
<a href="#added-in-v223" class="md-nav__link">
|
|
10397
10514
|
<span class="md-ellipsis">
|
|
10398
|
-
Added
|
|
10515
|
+
Added in v2.2.3
|
|
10399
10516
|
</span>
|
|
10400
10517
|
</a>
|
|
10401
10518
|
|
|
10402
10519
|
</li>
|
|
10403
10520
|
|
|
10404
10521
|
<li class="md-nav__item">
|
|
10405
|
-
<a href="#
|
|
10522
|
+
<a href="#changed-in-v223" class="md-nav__link">
|
|
10406
10523
|
<span class="md-ellipsis">
|
|
10407
|
-
Changed
|
|
10524
|
+
Changed in v2.2.3
|
|
10408
10525
|
</span>
|
|
10409
10526
|
</a>
|
|
10410
10527
|
|
|
10411
10528
|
</li>
|
|
10412
10529
|
|
|
10413
10530
|
<li class="md-nav__item">
|
|
10414
|
-
<a href="#
|
|
10531
|
+
<a href="#fixed-in-v223" class="md-nav__link">
|
|
10415
10532
|
<span class="md-ellipsis">
|
|
10416
|
-
Fixed
|
|
10533
|
+
Fixed in v2.2.3
|
|
10417
10534
|
</span>
|
|
10418
10535
|
</a>
|
|
10419
10536
|
|
|
10420
10537
|
</li>
|
|
10421
10538
|
|
|
10422
10539
|
<li class="md-nav__item">
|
|
10423
|
-
<a href="#
|
|
10540
|
+
<a href="#documentation-in-v223" class="md-nav__link">
|
|
10424
10541
|
<span class="md-ellipsis">
|
|
10425
|
-
Documentation
|
|
10542
|
+
Documentation in v2.2.3
|
|
10426
10543
|
</span>
|
|
10427
10544
|
</a>
|
|
10428
10545
|
|
|
10429
10546
|
</li>
|
|
10430
10547
|
|
|
10431
10548
|
<li class="md-nav__item">
|
|
10432
|
-
<a href="#
|
|
10549
|
+
<a href="#housekeeping-in-v223" class="md-nav__link">
|
|
10433
10550
|
<span class="md-ellipsis">
|
|
10434
|
-
Housekeeping
|
|
10551
|
+
Housekeeping in v2.2.3
|
|
10435
10552
|
</span>
|
|
10436
10553
|
</a>
|
|
10437
10554
|
|
|
@@ -10453,54 +10570,54 @@
|
|
|
10453
10570
|
<ul class="md-nav__list">
|
|
10454
10571
|
|
|
10455
10572
|
<li class="md-nav__item">
|
|
10456
|
-
<a href="#
|
|
10573
|
+
<a href="#security-in-v222" class="md-nav__link">
|
|
10457
10574
|
<span class="md-ellipsis">
|
|
10458
|
-
Security
|
|
10575
|
+
Security in v2.2.2
|
|
10459
10576
|
</span>
|
|
10460
10577
|
</a>
|
|
10461
10578
|
|
|
10462
10579
|
</li>
|
|
10463
10580
|
|
|
10464
10581
|
<li class="md-nav__item">
|
|
10465
|
-
<a href="#
|
|
10582
|
+
<a href="#added-in-v222" class="md-nav__link">
|
|
10466
10583
|
<span class="md-ellipsis">
|
|
10467
|
-
Added
|
|
10584
|
+
Added in v2.2.2
|
|
10468
10585
|
</span>
|
|
10469
10586
|
</a>
|
|
10470
10587
|
|
|
10471
10588
|
</li>
|
|
10472
10589
|
|
|
10473
10590
|
<li class="md-nav__item">
|
|
10474
|
-
<a href="#
|
|
10591
|
+
<a href="#changed-in-v222" class="md-nav__link">
|
|
10475
10592
|
<span class="md-ellipsis">
|
|
10476
|
-
Changed
|
|
10593
|
+
Changed in v2.2.2
|
|
10477
10594
|
</span>
|
|
10478
10595
|
</a>
|
|
10479
10596
|
|
|
10480
10597
|
</li>
|
|
10481
10598
|
|
|
10482
10599
|
<li class="md-nav__item">
|
|
10483
|
-
<a href="#
|
|
10600
|
+
<a href="#fixed-in-v222" class="md-nav__link">
|
|
10484
10601
|
<span class="md-ellipsis">
|
|
10485
|
-
Fixed
|
|
10602
|
+
Fixed in v2.2.2
|
|
10486
10603
|
</span>
|
|
10487
10604
|
</a>
|
|
10488
10605
|
|
|
10489
10606
|
</li>
|
|
10490
10607
|
|
|
10491
10608
|
<li class="md-nav__item">
|
|
10492
|
-
<a href="#
|
|
10609
|
+
<a href="#documentation-in-v222" class="md-nav__link">
|
|
10493
10610
|
<span class="md-ellipsis">
|
|
10494
|
-
Documentation
|
|
10611
|
+
Documentation in v2.2.2
|
|
10495
10612
|
</span>
|
|
10496
10613
|
</a>
|
|
10497
10614
|
|
|
10498
10615
|
</li>
|
|
10499
10616
|
|
|
10500
10617
|
<li class="md-nav__item">
|
|
10501
|
-
<a href="#
|
|
10618
|
+
<a href="#housekeeping-in-v222" class="md-nav__link">
|
|
10502
10619
|
<span class="md-ellipsis">
|
|
10503
|
-
Housekeeping
|
|
10620
|
+
Housekeeping in v2.2.2
|
|
10504
10621
|
</span>
|
|
10505
10622
|
</a>
|
|
10506
10623
|
|
|
@@ -10522,63 +10639,63 @@
|
|
|
10522
10639
|
<ul class="md-nav__list">
|
|
10523
10640
|
|
|
10524
10641
|
<li class="md-nav__item">
|
|
10525
|
-
<a href="#
|
|
10642
|
+
<a href="#security-in-v221" class="md-nav__link">
|
|
10526
10643
|
<span class="md-ellipsis">
|
|
10527
|
-
Security
|
|
10644
|
+
Security in v2.2.1
|
|
10528
10645
|
</span>
|
|
10529
10646
|
</a>
|
|
10530
10647
|
|
|
10531
10648
|
</li>
|
|
10532
10649
|
|
|
10533
10650
|
<li class="md-nav__item">
|
|
10534
|
-
<a href="#
|
|
10651
|
+
<a href="#added-in-v221" class="md-nav__link">
|
|
10535
10652
|
<span class="md-ellipsis">
|
|
10536
|
-
Added
|
|
10653
|
+
Added in v2.2.1
|
|
10537
10654
|
</span>
|
|
10538
10655
|
</a>
|
|
10539
10656
|
|
|
10540
10657
|
</li>
|
|
10541
10658
|
|
|
10542
10659
|
<li class="md-nav__item">
|
|
10543
|
-
<a href="#
|
|
10660
|
+
<a href="#changed-in-v221" class="md-nav__link">
|
|
10544
10661
|
<span class="md-ellipsis">
|
|
10545
|
-
Changed
|
|
10662
|
+
Changed in v2.2.1
|
|
10546
10663
|
</span>
|
|
10547
10664
|
</a>
|
|
10548
10665
|
|
|
10549
10666
|
</li>
|
|
10550
10667
|
|
|
10551
10668
|
<li class="md-nav__item">
|
|
10552
|
-
<a href="#
|
|
10669
|
+
<a href="#fixed-in-v221" class="md-nav__link">
|
|
10553
10670
|
<span class="md-ellipsis">
|
|
10554
|
-
Fixed
|
|
10671
|
+
Fixed in v2.2.1
|
|
10555
10672
|
</span>
|
|
10556
10673
|
</a>
|
|
10557
10674
|
|
|
10558
10675
|
</li>
|
|
10559
10676
|
|
|
10560
10677
|
<li class="md-nav__item">
|
|
10561
|
-
<a href="#
|
|
10678
|
+
<a href="#dependencies-in-v221" class="md-nav__link">
|
|
10562
10679
|
<span class="md-ellipsis">
|
|
10563
|
-
Dependencies
|
|
10680
|
+
Dependencies in v2.2.1
|
|
10564
10681
|
</span>
|
|
10565
10682
|
</a>
|
|
10566
10683
|
|
|
10567
10684
|
</li>
|
|
10568
10685
|
|
|
10569
10686
|
<li class="md-nav__item">
|
|
10570
|
-
<a href="#
|
|
10687
|
+
<a href="#documentation-in-v221" class="md-nav__link">
|
|
10571
10688
|
<span class="md-ellipsis">
|
|
10572
|
-
Documentation
|
|
10689
|
+
Documentation in v2.2.1
|
|
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="#housekeeping-in-v221" class="md-nav__link">
|
|
10580
10697
|
<span class="md-ellipsis">
|
|
10581
|
-
Housekeeping
|
|
10698
|
+
Housekeeping in v2.2.1
|
|
10582
10699
|
</span>
|
|
10583
10700
|
</a>
|
|
10584
10701
|
|
|
@@ -10600,45 +10717,45 @@
|
|
|
10600
10717
|
<ul class="md-nav__list">
|
|
10601
10718
|
|
|
10602
10719
|
<li class="md-nav__item">
|
|
10603
|
-
<a href="#
|
|
10720
|
+
<a href="#added-in-v220" class="md-nav__link">
|
|
10604
10721
|
<span class="md-ellipsis">
|
|
10605
|
-
Added
|
|
10722
|
+
Added in v2.2.0
|
|
10606
10723
|
</span>
|
|
10607
10724
|
</a>
|
|
10608
10725
|
|
|
10609
10726
|
</li>
|
|
10610
10727
|
|
|
10611
10728
|
<li class="md-nav__item">
|
|
10612
|
-
<a href="#
|
|
10729
|
+
<a href="#changed-in-v220" class="md-nav__link">
|
|
10613
10730
|
<span class="md-ellipsis">
|
|
10614
|
-
Changed
|
|
10731
|
+
Changed in v2.2.0
|
|
10615
10732
|
</span>
|
|
10616
10733
|
</a>
|
|
10617
10734
|
|
|
10618
10735
|
</li>
|
|
10619
10736
|
|
|
10620
10737
|
<li class="md-nav__item">
|
|
10621
|
-
<a href="#
|
|
10738
|
+
<a href="#fixed-in-v220" class="md-nav__link">
|
|
10622
10739
|
<span class="md-ellipsis">
|
|
10623
|
-
Fixed
|
|
10740
|
+
Fixed in v2.2.0
|
|
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="#dependencies-in-v220" class="md-nav__link">
|
|
10631
10748
|
<span class="md-ellipsis">
|
|
10632
|
-
Dependencies
|
|
10749
|
+
Dependencies in v2.2.0
|
|
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="#housekeeping-in-v220" class="md-nav__link">
|
|
10640
10757
|
<span class="md-ellipsis">
|
|
10641
|
-
Housekeeping
|
|
10758
|
+
Housekeeping in v2.2.0
|
|
10642
10759
|
</span>
|
|
10643
10760
|
</a>
|
|
10644
10761
|
|
|
@@ -10660,72 +10777,72 @@
|
|
|
10660
10777
|
<ul class="md-nav__list">
|
|
10661
10778
|
|
|
10662
10779
|
<li class="md-nav__item">
|
|
10663
|
-
<a href="#
|
|
10780
|
+
<a href="#added-in-v220-beta1" class="md-nav__link">
|
|
10664
10781
|
<span class="md-ellipsis">
|
|
10665
|
-
Added
|
|
10782
|
+
Added in v2.2.0-beta.1
|
|
10666
10783
|
</span>
|
|
10667
10784
|
</a>
|
|
10668
10785
|
|
|
10669
10786
|
</li>
|
|
10670
10787
|
|
|
10671
10788
|
<li class="md-nav__item">
|
|
10672
|
-
<a href="#
|
|
10789
|
+
<a href="#changed-in-v220-beta1" class="md-nav__link">
|
|
10673
10790
|
<span class="md-ellipsis">
|
|
10674
|
-
Changed
|
|
10791
|
+
Changed in v2.2.0-beta.1
|
|
10675
10792
|
</span>
|
|
10676
10793
|
</a>
|
|
10677
10794
|
|
|
10678
10795
|
</li>
|
|
10679
10796
|
|
|
10680
10797
|
<li class="md-nav__item">
|
|
10681
|
-
<a href="#deprecated" class="md-nav__link">
|
|
10798
|
+
<a href="#deprecated-in-v220-beta1" class="md-nav__link">
|
|
10682
10799
|
<span class="md-ellipsis">
|
|
10683
|
-
Deprecated
|
|
10800
|
+
Deprecated in v2.2.0-beta.1
|
|
10684
10801
|
</span>
|
|
10685
10802
|
</a>
|
|
10686
10803
|
|
|
10687
10804
|
</li>
|
|
10688
10805
|
|
|
10689
10806
|
<li class="md-nav__item">
|
|
10690
|
-
<a href="#
|
|
10807
|
+
<a href="#removed-in-v220-beta1" class="md-nav__link">
|
|
10691
10808
|
<span class="md-ellipsis">
|
|
10692
|
-
Removed
|
|
10809
|
+
Removed in v2.2.0-beta.1
|
|
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-v220-beta1" class="md-nav__link">
|
|
10700
10817
|
<span class="md-ellipsis">
|
|
10701
|
-
Fixed
|
|
10818
|
+
Fixed in v2.2.0-beta.1
|
|
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-v220-beta1" class="md-nav__link">
|
|
10709
10826
|
<span class="md-ellipsis">
|
|
10710
|
-
Dependencies
|
|
10827
|
+
Dependencies in v2.2.0-beta.1
|
|
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-v220-beta1" class="md-nav__link">
|
|
10718
10835
|
<span class="md-ellipsis">
|
|
10719
|
-
Documentation
|
|
10836
|
+
Documentation in v2.2.0-beta.1
|
|
10720
10837
|
</span>
|
|
10721
10838
|
</a>
|
|
10722
10839
|
|
|
10723
10840
|
</li>
|
|
10724
10841
|
|
|
10725
10842
|
<li class="md-nav__item">
|
|
10726
|
-
<a href="#
|
|
10843
|
+
<a href="#housekeeping-in-v220-beta1" class="md-nav__link">
|
|
10727
10844
|
<span class="md-ellipsis">
|
|
10728
|
-
Housekeeping
|
|
10845
|
+
Housekeeping in v2.2.0-beta.1
|
|
10729
10846
|
</span>
|
|
10730
10847
|
</a>
|
|
10731
10848
|
|
|
@@ -10754,8 +10871,6 @@
|
|
|
10754
10871
|
|
|
10755
10872
|
|
|
10756
10873
|
|
|
10757
|
-
<!-- markdownlint-disable MD024 -->
|
|
10758
|
-
|
|
10759
10874
|
<h1 id="nautobot-v22">Nautobot v2.2<a class="headerlink" href="#nautobot-v22" title="Permanent link">¶</a></h1>
|
|
10760
10875
|
<p>This document describes all new features and changes in Nautobot 2.2.</p>
|
|
10761
10876
|
<h2 id="release-overview">Release Overview<a class="headerlink" href="#release-overview" title="Permanent link">¶</a></h2>
|
|
@@ -10791,16 +10906,15 @@
|
|
|
10791
10906
|
<p><code>Installed Plugins</code> view has been renamed to <code>Installed Apps</code>. <code>Plugin</code> terminologies in <code>Installed Plugins</code> (now <code>Installed Apps</code>) view and dependent views have been changed to <code>App</code> throughout. <code>Plugin</code> references in documentation (excluding old release-notes) have been replaced by <code>App</code>. <code>Plugins</code> navigation menu has been renamed to <code>Apps</code>.</p>
|
|
10792
10907
|
<h4 id="standardization-of-max_length-on-all-charfields-2906">Standardization of <code>max_length</code> on all Charfields (<a href="https://github.com/nautobot/nautobot/issues/2906">#2906</a>)<a class="headerlink" href="#standardization-of-max_length-on-all-charfields-2906" title="Permanent link">¶</a></h4>
|
|
10793
10908
|
<p>Model CharFields' <code>max_length</code> attributes have been standardized globally to have at least 255 characters except where a shorter <code>max_length</code> is explicitly justified.</p>
|
|
10794
|
-
<!-- towncrier release notes start -->
|
|
10795
10909
|
<h2 id="v229-2024-08-05">v2.2.9 (2024-08-05)<a class="headerlink" href="#v229-2024-08-05" title="Permanent link">¶</a></h2>
|
|
10796
|
-
<h3 id="
|
|
10910
|
+
<h3 id="added-in-v229">Added in v2.2.9<a class="headerlink" href="#added-in-v229" title="Permanent link">¶</a></h3>
|
|
10797
10911
|
<ul>
|
|
10798
10912
|
<li><a href="https://github.com/nautobot/nautobot/issues/5965">#5965</a> - Added missing controller references for DeviceRedundancyGroup in the UI.</li>
|
|
10799
10913
|
<li><a href="https://github.com/nautobot/nautobot/issues/5980">#5980</a> - Added caching to <code>FeatureQuery().get_choices()</code> and <code>FeatureQuery().list_subclasses()</code>.</li>
|
|
10800
10914
|
<li><a href="https://github.com/nautobot/nautobot/issues/6029">#6029</a> - Added environment variable support for setting <code>CELERY_WORKER_PREFETCH_MULTIPLIER</code>.</li>
|
|
10801
10915
|
<li><a href="https://github.com/nautobot/nautobot/issues/6030">#6030</a> - Added links from the Job list and detail views to quickly filter the list of Job Results to the corresponding Job.</li>
|
|
10802
10916
|
</ul>
|
|
10803
|
-
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
10917
|
+
<h3 id="fixed-in-v229">Fixed in v2.2.9<a class="headerlink" href="#fixed-in-v229" title="Permanent link">¶</a></h3>
|
|
10804
10918
|
<ul>
|
|
10805
10919
|
<li><a href="https://github.com/nautobot/nautobot/issues/5775">#5775</a> - Reintroduced <code>Add IP Address</code> button to VirtualMachine Interface table.</li>
|
|
10806
10920
|
<li><a href="https://github.com/nautobot/nautobot/issues/5785">#5785</a> - Fixed Scheduled Jobs not respecting Job Soft / Hard Time Limit.</li>
|
|
@@ -10815,11 +10929,11 @@
|
|
|
10815
10929
|
<li><a href="https://github.com/nautobot/nautobot/issues/5992">#5992</a> - Added signal to clear relevant content-type caches after running migrations.</li>
|
|
10816
10930
|
<li><a href="https://github.com/nautobot/nautobot/issues/6022">#6022</a> - Fixed incorrect labels for derived filters (<code>tenant__n</code>, <code>tenant__isw</code>, etc.) when the base filter (<code>tenant</code>, etc.) has a custom label.</li>
|
|
10817
10931
|
</ul>
|
|
10818
|
-
<h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">¶</a></h3>
|
|
10932
|
+
<h3 id="dependencies-in-v229">Dependencies in v2.2.9<a class="headerlink" href="#dependencies-in-v229" title="Permanent link">¶</a></h3>
|
|
10819
10933
|
<ul>
|
|
10820
10934
|
<li><a href="https://github.com/nautobot/nautobot/issues/6010">#6010</a> - Pinned <code>django-storages</code> temporarily to 1.14.3 due to an <a href="https://github.com/revsys/django-health-check/issues/434">incompatibility</a> between <code>django-health-check</code> and version 1.14.4 of <code>django-storages</code>.</li>
|
|
10821
10935
|
</ul>
|
|
10822
|
-
<h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">¶</a></h3>
|
|
10936
|
+
<h3 id="documentation-in-v229">Documentation in v2.2.9<a class="headerlink" href="#documentation-in-v229" title="Permanent link">¶</a></h3>
|
|
10823
10937
|
<ul>
|
|
10824
10938
|
<li><a href="https://github.com/nautobot/nautobot/issues/5949">#5949</a> - Fixed NewBranch job code in documentation.</li>
|
|
10825
10939
|
<li><a href="https://github.com/nautobot/nautobot/issues/5958">#5958</a> - Added an example job that uses a custom template to render the job form.</li>
|
|
@@ -10828,37 +10942,37 @@
|
|
|
10828
10942
|
<li><a href="https://github.com/nautobot/nautobot/issues/6024">#6024</a> - Added documentation for the <code>nautobot-server validate_models</code> command.</li>
|
|
10829
10943
|
</ul>
|
|
10830
10944
|
<h2 id="v228-2024-07-22">v2.2.8 (2024-07-22)<a class="headerlink" href="#v228-2024-07-22" title="Permanent link">¶</a></h2>
|
|
10831
|
-
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
10945
|
+
<h3 id="security-in-v228">Security in v2.2.8<a class="headerlink" href="#security-in-v228" title="Permanent link">¶</a></h3>
|
|
10832
10946
|
<ul>
|
|
10833
10947
|
<li><a href="https://github.com/nautobot/nautobot/issues/5911">#5911</a> - Updated <code>zipp</code> to <code>3.19.1</code> to address <code>CVE-2024-5569</code>. This is not a direct dependency so it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
10834
10948
|
</ul>
|
|
10835
|
-
<h3 id="
|
|
10949
|
+
<h3 id="fixed-in-v228">Fixed in v2.2.8<a class="headerlink" href="#fixed-in-v228" title="Permanent link">¶</a></h3>
|
|
10836
10950
|
<ul>
|
|
10837
10951
|
<li><a href="https://github.com/nautobot/nautobot/issues/5569">#5569</a> - Fixed relationship required to ignore objects that do not match the related filter.</li>
|
|
10838
10952
|
<li><a href="https://github.com/nautobot/nautobot/issues/5613">#5613</a> - Fixed intermittent failure in integration test for dynamic groups.</li>
|
|
10839
10953
|
<li><a href="https://github.com/nautobot/nautobot/issues/5906">#5906</a> - Added support for filtering in GraphQL of objects identified by a many-to-many relation (<code>Location.prefixes</code>, <code>Prefix.locations</code>, etc.)</li>
|
|
10840
10954
|
<li><a href="https://github.com/nautobot/nautobot/issues/5935">#5935</a> - Fixed issue in which a save() could be called unnecessarily on child devices.</li>
|
|
10841
10955
|
</ul>
|
|
10842
|
-
<h3 id="
|
|
10956
|
+
<h3 id="dependencies-in-v228">Dependencies in v2.2.8<a class="headerlink" href="#dependencies-in-v228" title="Permanent link">¶</a></h3>
|
|
10843
10957
|
<ul>
|
|
10844
10958
|
<li><a href="https://github.com/nautobot/nautobot/issues/5833">#5833</a> - Updated dependency <code>social-auth-app-django</code> to <code>~5.4.2</code>.</li>
|
|
10845
10959
|
<li><a href="https://github.com/nautobot/nautobot/issues/5833">#5833</a> - Updated optional dependency <code>django-storages</code> to <code>~1.14.4</code>.</li>
|
|
10846
10960
|
</ul>
|
|
10847
|
-
<h3 id="
|
|
10961
|
+
<h3 id="documentation-in-v228">Documentation in v2.2.8<a class="headerlink" href="#documentation-in-v228" title="Permanent link">¶</a></h3>
|
|
10848
10962
|
<ul>
|
|
10849
10963
|
<li><a href="https://github.com/nautobot/nautobot/issues/5833">#5833</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.29</code>.</li>
|
|
10850
10964
|
<li><a href="https://github.com/nautobot/nautobot/issues/5874">#5874</a> - Updated documentation regarding Nautobot on Ubuntu 24.04.</li>
|
|
10851
10965
|
</ul>
|
|
10852
|
-
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
10966
|
+
<h3 id="housekeeping-in-v228">Housekeeping in v2.2.8<a class="headerlink" href="#housekeeping-in-v228" title="Permanent link">¶</a></h3>
|
|
10853
10967
|
<ul>
|
|
10854
10968
|
<li><a href="https://github.com/nautobot/nautobot/issues/5610">#5610</a> - Added integration test to do basic checking for static media failures caused by typos in template files.</li>
|
|
10855
10969
|
</ul>
|
|
10856
10970
|
<h2 id="v227-2024-07-08">v2.2.7 (2024-07-08)<a class="headerlink" href="#v227-2024-07-08" title="Permanent link">¶</a></h2>
|
|
10857
|
-
<h3 id="
|
|
10971
|
+
<h3 id="security-in-v227">Security in v2.2.7<a class="headerlink" href="#security-in-v227" title="Permanent link">¶</a></h3>
|
|
10858
10972
|
<ul>
|
|
10859
10973
|
<li><a href="https://github.com/nautobot/nautobot/issues/5891">#5891</a> - Updated <code>certifi</code> to <code>2024.7.4</code> to address <code>CVE-2024-39689</code>. This is not a direct dependency so it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
10860
10974
|
</ul>
|
|
10861
|
-
<h3 id="
|
|
10975
|
+
<h3 id="fixed-in-v227">Fixed in v2.2.7<a class="headerlink" href="#fixed-in-v227" title="Permanent link">¶</a></h3>
|
|
10862
10976
|
<ul>
|
|
10863
10977
|
<li><a href="https://github.com/nautobot/nautobot/issues/4237">#4237</a> - Fixed display issue with multiple tags filter on dynamic groups. Multiple Tags are now correctly displayed with an AND.</li>
|
|
10864
10978
|
<li><a href="https://github.com/nautobot/nautobot/issues/5093">#5093</a> - Fixed blank page redirect when syncing or running a dry run on a GIT Repo with no workers available; now redirects to the GIT Repo Detail page with an error message.</li>
|
|
@@ -10866,33 +10980,33 @@
|
|
|
10866
10980
|
<li><a href="https://github.com/nautobot/nautobot/issues/5832">#5832</a> - Fixed lack of API versioning of responses to a POST to <code>/api/ipam/prefixes/<id>/available-prefixes/</code> to allocate child prefixes of a prefix.</li>
|
|
10867
10981
|
<li><a href="https://github.com/nautobot/nautobot/issues/5832">#5832</a> - Fixed incorrect OpenAPI schema for <code>/api/ipam/prefixes/<id>/available-prefixes/</code> and <code>/api/ipam/prefixes/<id>/available-ips/</code>.</li>
|
|
10868
10982
|
</ul>
|
|
10869
|
-
<h3 id="
|
|
10983
|
+
<h3 id="dependencies-in-v227">Dependencies in v2.2.7<a class="headerlink" href="#dependencies-in-v227" title="Permanent link">¶</a></h3>
|
|
10870
10984
|
<ul>
|
|
10871
10985
|
<li><a href="https://github.com/nautobot/nautobot/issues/5518">#5518</a> - Updated <code>drf-spectacular</code> to version <code>0.27.2</code>.</li>
|
|
10872
10986
|
<li><a href="https://github.com/nautobot/nautobot/pull/5896">#5896</a> - Pinned dev dependency <code>faker</code> to <code>>=0.7.0,<26.0.0</code> to work around breaking change in v26.0.0 (<a href="https://github.com/joke2k/faker/issues/2070">faker/#2070</a>).</li>
|
|
10873
10987
|
</ul>
|
|
10874
|
-
<h3 id="
|
|
10988
|
+
<h3 id="housekeeping-in-v227">Housekeeping in v2.2.7<a class="headerlink" href="#housekeeping-in-v227" title="Permanent link">¶</a></h3>
|
|
10875
10989
|
<ul>
|
|
10876
10990
|
<li><a href="https://github.com/nautobot/nautobot/issues/5847">#5847</a> - Updated the term plugin to app within the GitHub templates.</li>
|
|
10877
10991
|
<li><a href="https://github.com/nautobot/nautobot/issues/5858">#5858</a> - Enhanced the test runner to include a hash of applied database migrations as part of the factory dump filename, reducing the likelihood of using the wrong cached data for a given branch.</li>
|
|
10878
10992
|
</ul>
|
|
10879
10993
|
<h2 id="v226-2024-06-24">v2.2.6 (2024-06-24)<a class="headerlink" href="#v226-2024-06-24" title="Permanent link">¶</a></h2>
|
|
10880
|
-
<h3 id="
|
|
10994
|
+
<h3 id="security-in-v226">Security in v2.2.6<a class="headerlink" href="#security-in-v226" title="Permanent link">¶</a></h3>
|
|
10881
10995
|
<ul>
|
|
10882
10996
|
<li><a href="https://github.com/nautobot/nautobot/issues/5821">#5821</a> - Updated <code>urllib3</code> to 2.2.2 due to CVE-2024-37891. This is not a direct dependency so it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
10883
10997
|
</ul>
|
|
10884
|
-
<h3 id="
|
|
10998
|
+
<h3 id="added-in-v226">Added in v2.2.6<a class="headerlink" href="#added-in-v226" title="Permanent link">¶</a></h3>
|
|
10885
10999
|
<ul>
|
|
10886
11000
|
<li><a href="https://github.com/nautobot/nautobot/issues/5550">#5550</a> - Added support for specifying a tag or a commit hash as the GitRepository <code>branch</code> value.</li>
|
|
10887
11001
|
<li><a href="https://github.com/nautobot/nautobot/issues/5550">#5550</a> - Added an <code>enabled</code> flag to the JobButton class; disabled JobButtons will not appear in the UI.</li>
|
|
10888
11002
|
<li><a href="https://github.com/nautobot/nautobot/issues/5793">#5793</a> - Added <code>--print-hashes</code> option to <code>nautobot-server generate_test_data</code> command.</li>
|
|
10889
11003
|
<li><a href="https://github.com/nautobot/nautobot/issues/5807">#5807</a> - Added the ability to sort and filter the <code>IPAddress</code> list view by the <code>nat_inside</code> field.</li>
|
|
10890
11004
|
</ul>
|
|
10891
|
-
<h3 id="
|
|
11005
|
+
<h3 id="changed-in-v226">Changed in v2.2.6<a class="headerlink" href="#changed-in-v226" title="Permanent link">¶</a></h3>
|
|
10892
11006
|
<ul>
|
|
10893
11007
|
<li><a href="https://github.com/nautobot/nautobot/issues/5550">#5550</a> - Changed the behavior on removal of a previously-installed Job class to additionally auto-disable any JobButtons, JobHooks, and ScheduledJobs referencing this class.</li>
|
|
10894
11008
|
</ul>
|
|
10895
|
-
<h3 id="
|
|
11009
|
+
<h3 id="fixed-in-v226">Fixed in v2.2.6<a class="headerlink" href="#fixed-in-v226" title="Permanent link">¶</a></h3>
|
|
10896
11010
|
<ul>
|
|
10897
11011
|
<li><a href="https://github.com/nautobot/nautobot/issues/5550">#5550</a> - Fixed an issue where config-contexts and export-templates sourced from a Git repository might not be automatically deleted from Nautobot after removing them from the repository and resyncing it.</li>
|
|
10898
11012
|
<li><a href="https://github.com/nautobot/nautobot/issues/5550">#5550</a> - Fixed an exception that might be raised when performing a Git repository "dry-run" sync if certain types of diffs are present.</li>
|
|
@@ -10900,25 +11014,25 @@
|
|
|
10900
11014
|
<li><a href="https://github.com/nautobot/nautobot/issues/5809">#5809</a> - Fixed missing support for the GitRepository model in GraphQL.</li>
|
|
10901
11015
|
<li><a href="https://github.com/nautobot/nautobot/issues/5819">#5819</a> - Fixed inability to use bare (local-DNS) hostnames when specifying a GitRepository remote URL.</li>
|
|
10902
11016
|
</ul>
|
|
10903
|
-
<h3 id="
|
|
11017
|
+
<h3 id="documentation-in-v226">Documentation in v2.2.6<a class="headerlink" href="#documentation-in-v226" title="Permanent link">¶</a></h3>
|
|
10904
11018
|
<ul>
|
|
10905
11019
|
<li><a href="https://github.com/nautobot/nautobot/issues/5726">#5726</a> - Updated, cleaned up, and separated out the main landing page for Nautobot docs.</li>
|
|
10906
11020
|
<li><a href="https://github.com/nautobot/nautobot/issues/5752">#5752</a> - Corrected incorrect entry for <code>nautobot.utilities.ordering</code> in <code>v2-code-location-changes</code> table.</li>
|
|
10907
11021
|
<li><a href="https://github.com/nautobot/nautobot/issues/5754">#5754</a> - Updated <code>mkdocs-material</code> to 9.5.25.</li>
|
|
10908
11022
|
</ul>
|
|
10909
|
-
<h3 id="
|
|
11023
|
+
<h3 id="housekeeping-in-v226">Housekeeping in v2.2.6<a class="headerlink" href="#housekeeping-in-v226" title="Permanent link">¶</a></h3>
|
|
10910
11024
|
<ul>
|
|
10911
11025
|
<li><a href="https://github.com/nautobot/nautobot/issues/5754">#5754</a> - Updated development dependencies <code>requests</code> to <code>~2.32.2</code> and <code>watchdog</code> to <code>~4.0.1</code>.</li>
|
|
10912
11026
|
<li><a href="https://github.com/nautobot/nautobot/issues/5793">#5793</a> - Refactored <code>generate_test_data</code> implementation for improved debuggability.</li>
|
|
10913
11027
|
<li><a href="https://github.com/nautobot/nautobot/issues/5793">#5793</a> - Fixed a bug in <code>ControllerManagedDeviceGroupFactory</code> that could result in nondeterministic test data.</li>
|
|
10914
11028
|
</ul>
|
|
10915
11029
|
<h2 id="v225-2024-05-28">v2.2.5 (2024-05-28)<a class="headerlink" href="#v225-2024-05-28" title="Permanent link">¶</a></h2>
|
|
10916
|
-
<h3 id="
|
|
11030
|
+
<h3 id="security-in-v225">Security in v2.2.5<a class="headerlink" href="#security-in-v225" title="Permanent link">¶</a></h3>
|
|
10917
11031
|
<ul>
|
|
10918
11032
|
<li><a href="https://github.com/nautobot/nautobot/issues/5740">#5740</a> - Updated <code>requests</code> to <code>2.32.1</code> to address <a href="https://github.com/psf/requests/security/advisories/GHSA-9wx4-h78v-vm56">GHSA-9wx4-h78v-vm56</a>. This is not a direct dependency so it will not auto-update when upgrading Nautobot. Please be sure to update your local environment.</li>
|
|
10919
11033
|
<li><a href="https://github.com/nautobot/nautobot/issues/5757">#5757</a> - Fixed missing member object permission enforcement (e.g., enforce Device permissions for a Dynamic Group containing Devices) when viewing Dynamic Group member objects in the UI or REST API (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-qmjf-wc2h-6x3q">GHSA-qmjf-wc2h-6x3q</a>).</li>
|
|
10920
11034
|
</ul>
|
|
10921
|
-
<h3 id="
|
|
11035
|
+
<h3 id="added-in-v225">Added in v2.2.5<a class="headerlink" href="#added-in-v225" title="Permanent link">¶</a></h3>
|
|
10922
11036
|
<ul>
|
|
10923
11037
|
<li><a href="https://github.com/nautobot/nautobot/issues/5588">#5588</a> - Added "Add VRFs" and "Remove VRFs" fields to <code>PrefixBulkEditForm</code>.</li>
|
|
10924
11038
|
<li><a href="https://github.com/nautobot/nautobot/issues/5588">#5588</a> - Added "Add Prefixes" and "Remove Prefixes" fields to <code>VRFBulkEditForm</code>.</li>
|
|
@@ -10926,11 +11040,11 @@
|
|
|
10926
11040
|
<li><a href="https://github.com/nautobot/nautobot/issues/5690">#5690</a> - Added a generic test case that asserts that all list views provide an appropriate FilterForm class.</li>
|
|
10927
11041
|
<li><a href="https://github.com/nautobot/nautobot/issues/5747">#5747</a> - Added "Circuit Terminations" navigation menu item.</li>
|
|
10928
11042
|
</ul>
|
|
10929
|
-
<h3 id="removed">Removed<a class="headerlink" href="#removed" title="Permanent link">¶</a></h3>
|
|
11043
|
+
<h3 id="removed-in-v225">Removed in v2.2.5<a class="headerlink" href="#removed-in-v225" title="Permanent link">¶</a></h3>
|
|
10930
11044
|
<ul>
|
|
10931
11045
|
<li><a href="https://github.com/nautobot/nautobot/issues/5690">#5690</a> - Removed deprecated <code>CustomFieldFilterForm</code> alias of <code>CustomFieldModelFilterFormMixin</code> as this would have caused confusion with the newly added <code>CustomFieldFilterForm</code> class providing filtering support for the Custom Fields list view.</li>
|
|
10932
11046
|
</ul>
|
|
10933
|
-
<h3 id="
|
|
11047
|
+
<h3 id="fixed-in-v225">Fixed in v2.2.5<a class="headerlink" href="#fixed-in-v225" title="Permanent link">¶</a></h3>
|
|
10934
11048
|
<ul>
|
|
10935
11049
|
<li><a href="https://github.com/nautobot/nautobot/issues/5564">#5564</a> - Fixed <code>ContactAssociationFilterSet.associated_object_type</code> not using the right filter field.</li>
|
|
10936
11050
|
<li><a href="https://github.com/nautobot/nautobot/issues/5669">#5669</a> - Fixed <code>AttributeError</code> thrown when deleting software versions or images from list views.</li>
|
|
@@ -10943,51 +11057,51 @@
|
|
|
10943
11057
|
<li><a href="https://github.com/nautobot/nautobot/issues/5738">#5738</a> - Fixed incorrect API query parameters when selecting VLANs to apply to a VM Interface.</li>
|
|
10944
11058
|
<li><a href="https://github.com/nautobot/nautobot/issues/5738">#5738</a> - Fixed incorrect query parameters when accessing or creating Clusters from a Cluster Type detail view.</li>
|
|
10945
11059
|
</ul>
|
|
10946
|
-
<h3 id="
|
|
11060
|
+
<h3 id="documentation-in-v225">Documentation in v2.2.5<a class="headerlink" href="#documentation-in-v225" title="Permanent link">¶</a></h3>
|
|
10947
11061
|
<ul>
|
|
10948
11062
|
<li><a href="https://github.com/nautobot/nautobot/issues/5699">#5699</a> - Updated to <code>mkdocs~1.6.0</code> and <code>mkdocs-material~9.5.23</code>.</li>
|
|
10949
11063
|
<li><a href="https://github.com/nautobot/nautobot/issues/5699">#5699</a> - Fixed a number of broken links within the documentation.</li>
|
|
10950
11064
|
</ul>
|
|
10951
|
-
<h3 id="
|
|
11065
|
+
<h3 id="housekeeping-in-v225">Housekeeping in v2.2.5<a class="headerlink" href="#housekeeping-in-v225" title="Permanent link">¶</a></h3>
|
|
10952
11066
|
<ul>
|
|
10953
11067
|
<li><a href="https://github.com/nautobot/nautobot/issues/5699">#5699</a> - Updated <code>pylint</code> to <code>~3.1.1</code>.</li>
|
|
10954
11068
|
<li><a href="https://github.com/nautobot/nautobot/issues/5740">#5740</a> - Updated test dependency <code>requests</code> to <code>~2.32.1</code>.</li>
|
|
10955
11069
|
</ul>
|
|
10956
11070
|
<h2 id="v224-2024-05-13">v2.2.4 (2024-05-13)<a class="headerlink" href="#v224-2024-05-13" title="Permanent link">¶</a></h2>
|
|
10957
|
-
<h3 id="
|
|
11071
|
+
<h3 id="security-in-v224">Security in v2.2.4<a class="headerlink" href="#security-in-v224" title="Permanent link">¶</a></h3>
|
|
10958
11072
|
<ul>
|
|
10959
11073
|
<li><a href="https://github.com/nautobot/nautobot/issues/1858">#1858</a> - Added sanitization of HTML tags in the content of <code>BANNER_TOP</code>, <code>BANNER_BOTTOM</code>, and <code>BANNER_LOGIN</code> configuration to prevent against potential injection of malicious scripts (stored XSS) via these features (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-r2hr-4v48-fjv3">GHSA-r2hr-4v48-fjv3</a>).</li>
|
|
10960
11074
|
<li><a href="https://github.com/nautobot/nautobot/issues/5672">#5672</a> - Updated <code>Jinja2</code> dependency to <code>3.1.4</code> to address <code>CVE-2024-34064</code>.</li>
|
|
10961
11075
|
</ul>
|
|
10962
|
-
<h3 id="
|
|
11076
|
+
<h3 id="added-in-v224">Added in v2.2.4<a class="headerlink" href="#added-in-v224" title="Permanent link">¶</a></h3>
|
|
10963
11077
|
<ul>
|
|
10964
11078
|
<li><a href="https://github.com/nautobot/nautobot/issues/1858">#1858</a> - Added support in <code>BRANDING_FILEPATHS</code> configuration to specify a custom <code>css</code> and/or <code>javascript</code> file to be added to Nautobot page content.</li>
|
|
10965
11079
|
<li><a href="https://github.com/nautobot/nautobot/issues/1858">#1858</a> - Added Markdown support to the <code>BANNER_TOP</code>, <code>BANNER_BOTTOM</code>, and <code>BANNER_LOGIN</code> configuration settings.</li>
|
|
10966
11080
|
</ul>
|
|
10967
|
-
<h3 id="
|
|
11081
|
+
<h3 id="fixed-in-v224">Fixed in v2.2.4<a class="headerlink" href="#fixed-in-v224" title="Permanent link">¶</a></h3>
|
|
10968
11082
|
<ul>
|
|
10969
11083
|
<li><a href="https://github.com/nautobot/nautobot/issues/4986">#4986</a> - Fixed inconsistent use of super causing <code>active_tab</code> context to be missing from several views.</li>
|
|
10970
11084
|
<li><a href="https://github.com/nautobot/nautobot/issues/5644">#5644</a> - Made the uniqueness constraints between the ContactAssociation model and the related API serializer consistent.</li>
|
|
10971
11085
|
<li><a href="https://github.com/nautobot/nautobot/issues/5684">#5684</a> - Fixed standard CSV export when using export templates.</li>
|
|
10972
11086
|
<li><a href="https://github.com/nautobot/nautobot/issues/5689">#5689</a> - Fixed change logging for bulk delete operations so that user is included in the log.</li>
|
|
10973
11087
|
</ul>
|
|
10974
|
-
<h3 id="
|
|
11088
|
+
<h3 id="documentation-in-v224">Documentation in v2.2.4<a class="headerlink" href="#documentation-in-v224" title="Permanent link">¶</a></h3>
|
|
10975
11089
|
<ul>
|
|
10976
11090
|
<li><a href="https://github.com/nautobot/nautobot/issues/5661">#5661</a> - Updated documentation to organize installation instructions and provide easier to use functions from mkdocs.</li>
|
|
10977
11091
|
</ul>
|
|
10978
|
-
<h3 id="
|
|
11092
|
+
<h3 id="housekeeping-in-v224">Housekeeping in v2.2.4<a class="headerlink" href="#housekeeping-in-v224" title="Permanent link">¶</a></h3>
|
|
10979
11093
|
<ul>
|
|
10980
11094
|
<li><a href="https://github.com/nautobot/nautobot/issues/5263">#5263</a> - Updated <code>nh3</code> to <code>0.2.17</code> in <code>poetry.lock</code>.</li>
|
|
10981
11095
|
<li><a href="https://github.com/nautobot/nautobot/issues/5637">#5637</a> - Removed <code>"version"</code> from development <code>docker-compose.yml</code> files as newer versions of Docker complain about it being obsolete.</li>
|
|
10982
11096
|
<li><a href="https://github.com/nautobot/nautobot/issues/5637">#5637</a> - Fixed behavior of <code>invoke stop</code> so that it also stops the optional <code>mkdocs</code> container if present.</li>
|
|
10983
11097
|
</ul>
|
|
10984
11098
|
<h2 id="v223-2024-04-30">v2.2.3 (2024-04-30)<a class="headerlink" href="#v223-2024-04-30" title="Permanent link">¶</a></h2>
|
|
10985
|
-
<h3 id="
|
|
11099
|
+
<h3 id="security-in-v223">Security in v2.2.3<a class="headerlink" href="#security-in-v223" title="Permanent link">¶</a></h3>
|
|
10986
11100
|
<ul>
|
|
10987
11101
|
<li><a href="https://github.com/nautobot/nautobot/issues/5624">#5624</a> - Updated <code>social-auth-app-django</code> dependency to <code>~5.4.1</code> to address <code>CVE-2024-32879</code>.</li>
|
|
10988
11102
|
<li><a href="https://github.com/nautobot/nautobot/issues/5646">#5646</a> - Fixed a reflected-XSS vulnerability (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-jxgr-gcj5-cqqg">GHSA-jxgr-gcj5-cqqg</a>) in object-list view rendering of user-provided query parameters.</li>
|
|
10989
11103
|
</ul>
|
|
10990
|
-
<h3 id="
|
|
11104
|
+
<h3 id="added-in-v223">Added in v2.2.3<a class="headerlink" href="#added-in-v223" title="Permanent link">¶</a></h3>
|
|
10991
11105
|
<ul>
|
|
10992
11106
|
<li><a href="https://github.com/nautobot/nautobot/issues/2946">#2946</a> - Added custom link support for interfaces, console ports, console server ports, power ports, power outlets, front ports, rear ports, device bays, and inventory items.</li>
|
|
10993
11107
|
<li><a href="https://github.com/nautobot/nautobot/issues/5034">#5034</a> - Added a view to convert location contact information to contacts or teams.</li>
|
|
@@ -10995,11 +11109,11 @@
|
|
|
10995
11109
|
<li><a href="https://github.com/nautobot/nautobot/issues/5560">#5560</a> - Added a template tag which creates a hyperlink that opens in a new tab.</li>
|
|
10996
11110
|
<li><a href="https://github.com/nautobot/nautobot/issues/5586">#5586</a> - Added <code>nautobot.apps.jobs.get_jobs()</code> API.</li>
|
|
10997
11111
|
</ul>
|
|
10998
|
-
<h3 id="
|
|
11112
|
+
<h3 id="changed-in-v223">Changed in v2.2.3<a class="headerlink" href="#changed-in-v223" title="Permanent link">¶</a></h3>
|
|
10999
11113
|
<ul>
|
|
11000
11114
|
<li><a href="https://github.com/nautobot/nautobot/issues/5498">#5498</a> - Changed the <code>nautobot.extras.jobs.Job</code> class to no longer be a subclass of <code>celery.tasks.Task</code>.</li>
|
|
11001
11115
|
</ul>
|
|
11002
|
-
<h3 id="
|
|
11116
|
+
<h3 id="fixed-in-v223">Fixed in v2.2.3<a class="headerlink" href="#fixed-in-v223" title="Permanent link">¶</a></h3>
|
|
11003
11117
|
<ul>
|
|
11004
11118
|
<li><a href="https://github.com/nautobot/nautobot/issues/5513">#5513</a> - Fixed missing <code>location</code> field in <code>Prefix</code> and <code>VLAN</code> GraphQL schema.</li>
|
|
11005
11119
|
<li><a href="https://github.com/nautobot/nautobot/issues/5513">#5513</a> - Restored ability to filter Prefix and VLAN objects at the ORM level by <code>location</code>.</li>
|
|
@@ -11012,67 +11126,67 @@
|
|
|
11012
11126
|
<li><a href="https://github.com/nautobot/nautobot/issues/5642">#5642</a> - Fixed some cases where stale Job code might be present when Jobs are sourced from <code>JOBS_ROOT</code> or a Git repository.</li>
|
|
11013
11127
|
<li><a href="https://github.com/nautobot/nautobot/issues/5642">#5642</a> - Fixed incorrect handling of Job <code>kwargs</code> when dry-running a job approval request via the REST API.</li>
|
|
11014
11128
|
</ul>
|
|
11015
|
-
<h3 id="
|
|
11129
|
+
<h3 id="documentation-in-v223">Documentation in v2.2.3<a class="headerlink" href="#documentation-in-v223" title="Permanent link">¶</a></h3>
|
|
11016
11130
|
<ul>
|
|
11017
11131
|
<li><a href="https://github.com/nautobot/nautobot/issues/5094">#5094</a> - Added "Reserved Attribute Names" section to the Jobs developer documentation.</li>
|
|
11018
11132
|
<li><a href="https://github.com/nautobot/nautobot/issues/5608">#5608</a> - Updated VLAN documentation with a recommendation for modeling of VLANs with respect to Locations.</li>
|
|
11019
11133
|
<li><a href="https://github.com/nautobot/nautobot/issues/5626">#5626</a> - Added extras features docs to core developer new model checklist.</li>
|
|
11020
11134
|
<li><a href="https://github.com/nautobot/nautobot/issues/5635">#5635</a> - Added borders to tabbed sections of mkdocs.</li>
|
|
11021
11135
|
</ul>
|
|
11022
|
-
<h3 id="
|
|
11136
|
+
<h3 id="housekeeping-in-v223">Housekeeping in v2.2.3<a class="headerlink" href="#housekeeping-in-v223" title="Permanent link">¶</a></h3>
|
|
11023
11137
|
<ul>
|
|
11024
11138
|
<li><a href="https://github.com/nautobot/nautobot/issues/4498">#4498</a> - Removed redundant <code>nautobot.extras.plugins.register_jobs</code> function.</li>
|
|
11025
11139
|
<li><a href="https://github.com/nautobot/nautobot/issues/5586">#5586</a> - Fixed an intermittent ImportError when running tests with certain options.</li>
|
|
11026
11140
|
<li><a href="https://github.com/nautobot/nautobot/issues/5605">#5605</a> - Added prerelease and release workflow to deploy sandbox environments automatically.</li>
|
|
11027
11141
|
</ul>
|
|
11028
11142
|
<h2 id="v222-2024-04-18">v2.2.2 (2024-04-18)<a class="headerlink" href="#v222-2024-04-18" title="Permanent link">¶</a></h2>
|
|
11029
|
-
<h3 id="
|
|
11143
|
+
<h3 id="security-in-v222">Security in v2.2.2<a class="headerlink" href="#security-in-v222" title="Permanent link">¶</a></h3>
|
|
11030
11144
|
<ul>
|
|
11031
11145
|
<li><a href="https://github.com/nautobot/nautobot/issues/5579">#5579</a> - Updated <code>sqlparse</code> to <code>0.5.0</code> to fix <a href="https://github.com/advisories/GHSA-2m57-hf25-phgg">GHSA-2m57-hf25-phgg</a>. This is not a direct dependency so it will not auto-update when upgrading Nautobot. Please be sure to update your local environment.</li>
|
|
11032
11146
|
</ul>
|
|
11033
|
-
<h3 id="
|
|
11147
|
+
<h3 id="added-in-v222">Added in v2.2.2<a class="headerlink" href="#added-in-v222" title="Permanent link">¶</a></h3>
|
|
11034
11148
|
<ul>
|
|
11035
11149
|
<li><a href="https://github.com/nautobot/nautobot/issues/2459">#2459</a> - Added <code>nautobot.extras.utils.bulk_delete_with_bulk_change_logging</code> helper function for improving performance on bulk delete.</li>
|
|
11036
11150
|
<li><a href="https://github.com/nautobot/nautobot/issues/2459">#2459</a> - Added <code>nautobot.extras.context_managers.deferred_change_logging_for_bulk_operation</code> context manager for improving performance on bulk update.</li>
|
|
11037
11151
|
</ul>
|
|
11038
|
-
<h3 id="
|
|
11152
|
+
<h3 id="changed-in-v222">Changed in v2.2.2<a class="headerlink" href="#changed-in-v222" title="Permanent link">¶</a></h3>
|
|
11039
11153
|
<ul>
|
|
11040
11154
|
<li><a href="https://github.com/nautobot/nautobot/issues/2459">#2459</a> - Improved performance of bulk-edit and bulk-delete UI operations by refactoring change logging logic.</li>
|
|
11041
11155
|
<li><a href="https://github.com/nautobot/nautobot/issues/5568">#5568</a> - Added hyperlink to the total device count number under device family.</li>
|
|
11042
11156
|
<li><a href="https://github.com/nautobot/nautobot/issues/5589">#5589</a> - Fixed an invalid Javascript operator in the LLDP neighbor view.</li>
|
|
11043
11157
|
</ul>
|
|
11044
|
-
<h3 id="
|
|
11158
|
+
<h3 id="fixed-in-v222">Fixed in v2.2.2<a class="headerlink" href="#fixed-in-v222" title="Permanent link">¶</a></h3>
|
|
11045
11159
|
<ul>
|
|
11046
11160
|
<li><a href="https://github.com/nautobot/nautobot/issues/5580">#5580</a> - Fixed bugs when assigning a VLAN to an Interface related to the recently introduced many-to-many relationship between VLANs and Locations.</li>
|
|
11047
11161
|
<li><a href="https://github.com/nautobot/nautobot/issues/5592">#5592</a> - Fixed plugins not loading when using Gunicorn.</li>
|
|
11048
11162
|
</ul>
|
|
11049
|
-
<h3 id="
|
|
11163
|
+
<h3 id="documentation-in-v222">Documentation in v2.2.2<a class="headerlink" href="#documentation-in-v222" title="Permanent link">¶</a></h3>
|
|
11050
11164
|
<ul>
|
|
11051
11165
|
<li><a href="https://github.com/nautobot/nautobot/issues/5583">#5583</a> - Re-added release note content for v1.6.16 through v1.6.18.</li>
|
|
11052
11166
|
</ul>
|
|
11053
|
-
<h3 id="
|
|
11167
|
+
<h3 id="housekeeping-in-v222">Housekeeping in v2.2.2<a class="headerlink" href="#housekeeping-in-v222" title="Permanent link">¶</a></h3>
|
|
11054
11168
|
<ul>
|
|
11055
11169
|
<li><a href="https://github.com/nautobot/nautobot/issues/5590">#5590</a> - Fixed upstream testing workflows showing successful when one of the steps fail.</li>
|
|
11056
11170
|
</ul>
|
|
11057
11171
|
<h2 id="v221-2024-04-15">v2.2.1 (2024-04-15)<a class="headerlink" href="#v221-2024-04-15" title="Permanent link">¶</a></h2>
|
|
11058
|
-
<h3 id="
|
|
11172
|
+
<h3 id="security-in-v221">Security in v2.2.1<a class="headerlink" href="#security-in-v221" title="Permanent link">¶</a></h3>
|
|
11059
11173
|
<ul>
|
|
11060
11174
|
<li><a href="https://github.com/nautobot/nautobot/issues/5521">#5521</a> - Updated <code>Pillow</code> dependency to <code>~10.3.0</code> to address <code>CVE-2024-28219</code>.</li>
|
|
11061
11175
|
<li><a href="https://github.com/nautobot/nautobot/issues/5543">#5543</a> - Updated <code>jquery-ui</code> to version <code>1.13.2</code> due to <code>CVE-2022-31160</code>.</li>
|
|
11062
11176
|
<li><a href="https://github.com/nautobot/nautobot/issues/5561">#5561</a> - Updated <code>idna</code> to 3.7 due to CVE-2024-3651. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
11063
11177
|
</ul>
|
|
11064
|
-
<h3 id="
|
|
11178
|
+
<h3 id="added-in-v221">Added in v2.2.1<a class="headerlink" href="#added-in-v221" title="Permanent link">¶</a></h3>
|
|
11065
11179
|
<ul>
|
|
11066
11180
|
<li><a href="https://github.com/nautobot/nautobot/issues/1631">#1631</a> - Added change logging for custom field background tasks.</li>
|
|
11067
11181
|
<li><a href="https://github.com/nautobot/nautobot/issues/5009">#5009</a> - Added the option to filter objects with select/multi-select custom fields based on the UUID of the defined custom field choice(s), for example <code>/api/dcim/locations/?cf_multiselect=1ea9237c-3ba7-4985-ba7e-6fd9e9bff813</code> as an alternative to <code>/api/dcim/locations/?cf_multiselect=some-choice-value</code>.</li>
|
|
11068
11182
|
<li><a href="https://github.com/nautobot/nautobot/issues/5493">#5493</a> - Added a configuration setting <code>METRICS_DISABLED_APPS</code> to disable app metrics for specific apps.</li>
|
|
11069
11183
|
<li><a href="https://github.com/nautobot/nautobot/issues/5540">#5540</a> - Added total devices count to device family detail page.</li>
|
|
11070
11184
|
</ul>
|
|
11071
|
-
<h3 id="
|
|
11185
|
+
<h3 id="changed-in-v221">Changed in v2.2.1<a class="headerlink" href="#changed-in-v221" title="Permanent link">¶</a></h3>
|
|
11072
11186
|
<ul>
|
|
11073
11187
|
<li><a href="https://github.com/nautobot/nautobot/issues/5274">#5274</a> - Added a setting that changes all rack unit numbers to display a minimum of two digits in rack elevations.</li>
|
|
11074
11188
|
</ul>
|
|
11075
|
-
<h3 id="
|
|
11189
|
+
<h3 id="fixed-in-v221">Fixed in v2.2.1<a class="headerlink" href="#fixed-in-v221" title="Permanent link">¶</a></h3>
|
|
11076
11190
|
<ul>
|
|
11077
11191
|
<li><a href="https://github.com/nautobot/nautobot/issues/5469">#5469</a> - Fixed contacts and teams not being included in the global search.</li>
|
|
11078
11192
|
<li><a href="https://github.com/nautobot/nautobot/issues/5489">#5489</a> - Fixed REST API for Contact and Team incorrectly marking the <code>phone</code> and <code>email</code> fields as mandatory.</li>
|
|
@@ -11082,20 +11196,20 @@
|
|
|
11082
11196
|
<li><a href="https://github.com/nautobot/nautobot/issues/5527">#5527</a> - Fixed incorrect "members" links in Virtual Chassis list view.</li>
|
|
11083
11197
|
<li><a href="https://github.com/nautobot/nautobot/issues/5531">#5531</a> - Re-added <code>nautobot.setup()</code> function mistakenly removed in 2.2.0.</li>
|
|
11084
11198
|
</ul>
|
|
11085
|
-
<h3 id="
|
|
11199
|
+
<h3 id="dependencies-in-v221">Dependencies in v2.2.1<a class="headerlink" href="#dependencies-in-v221" title="Permanent link">¶</a></h3>
|
|
11086
11200
|
<ul>
|
|
11087
11201
|
<li><a href="https://github.com/nautobot/nautobot/issues/5495">#5495</a> - Changed jsonschema version constraint from <code>>=4.7.0,<4.19.0</code> to <code>^4.7.0</code>.</li>
|
|
11088
11202
|
<li><a href="https://github.com/nautobot/nautobot/issues/5517">#5517</a> - Updated <code>djangorestframework</code> to <code>~3.15.1</code>.</li>
|
|
11089
11203
|
<li><a href="https://github.com/nautobot/nautobot/issues/5521">#5521</a> - Updated most dependencies to the latest versions available as of 2024-04-01.</li>
|
|
11090
11204
|
<li><a href="https://github.com/nautobot/nautobot/issues/5543">#5543</a> - Updated <code>jquery</code> to version <code>3.7.1</code>.</li>
|
|
11091
11205
|
</ul>
|
|
11092
|
-
<h3 id="
|
|
11206
|
+
<h3 id="documentation-in-v221">Documentation in v2.2.1<a class="headerlink" href="#documentation-in-v221" title="Permanent link">¶</a></h3>
|
|
11093
11207
|
<ul>
|
|
11094
11208
|
<li><a href="https://github.com/nautobot/nautobot/issues/5189">#5189</a> - Added "Model Development Checklist" to the core developer documentation.</li>
|
|
11095
11209
|
<li><a href="https://github.com/nautobot/nautobot/issues/5189">#5189</a> - Merged "Extending Models" documentation into the "Model Development Checklist" documentation.</li>
|
|
11096
11210
|
<li><a href="https://github.com/nautobot/nautobot/issues/5526">#5526</a> - Fixed doc reference to job cprofile file location.</li>
|
|
11097
11211
|
</ul>
|
|
11098
|
-
<h3 id="
|
|
11212
|
+
<h3 id="housekeeping-in-v221">Housekeeping in v2.2.1<a class="headerlink" href="#housekeeping-in-v221" title="Permanent link">¶</a></h3>
|
|
11099
11213
|
<ul>
|
|
11100
11214
|
<li><a href="https://github.com/nautobot/nautobot/issues/5531">#5531</a> - Removed <code>nautobot-server pylint</code> management command from the <code>example_app</code>, as pylint can be invoked directly with an appropriate <code>--init-hook</code> instead.</li>
|
|
11101
11215
|
<li><a href="https://github.com/nautobot/nautobot/issues/5547">#5547</a> - Fixed TransactionTestCase inheritance order so that <code>test.client</code> works in test cases using this class.</li>
|
|
@@ -11105,12 +11219,12 @@
|
|
|
11105
11219
|
<p class="admonition-title">Warning</p>
|
|
11106
11220
|
<p>Upgrading from beta releases to final releases is never recommended for Nautobot; in the case of 2.2.0b1 to 2.2.0 several data models and database migrations have been modified (see <a href="https://github.com/nautobot/nautobot/issues/5454">#5454</a>) between the two releases, and so upgrading in place from 2.2.0b1 to 2.2.0 <strong>will not work</strong>.</p>
|
|
11107
11221
|
</div>
|
|
11108
|
-
<h3 id="
|
|
11222
|
+
<h3 id="added-in-v220">Added in v2.2.0<a class="headerlink" href="#added-in-v220" title="Permanent link">¶</a></h3>
|
|
11109
11223
|
<ul>
|
|
11110
11224
|
<li><a href="https://github.com/nautobot/nautobot/issues/4811">#4811</a> - Added a new generic test case (<code>test_table_with_indentation_is_removed_on_filter_or_sort</code>) to <code>ListObjectsViewTestCase</code> to test that the tree hierarchy is correctly removed on TreeModel list views when sorting or filtering is applied. This test will also run in these subclasses of the <code>ListObjectsViewTestCase</code>: <code>PrimaryObjectViewTestCase</code>, <code>OrganizationalObjectViewTestCase</code>, and <code>DeviceComponentViewTestCase</code>.</li>
|
|
11111
11225
|
<li><a href="https://github.com/nautobot/nautobot/issues/5034">#5034</a> - Added a management command (<code>nautobot-server migrate_location_contacts</code>) to help migrate the Location <code>contact_name</code>, <code>contact_email</code> and <code>contact_phone</code> fields to Contact and Teams models.</li>
|
|
11112
11226
|
</ul>
|
|
11113
|
-
<h3 id="
|
|
11227
|
+
<h3 id="changed-in-v220">Changed in v2.2.0<a class="headerlink" href="#changed-in-v220" title="Permanent link">¶</a></h3>
|
|
11114
11228
|
<ul>
|
|
11115
11229
|
<li><a href="https://github.com/nautobot/nautobot/issues/5452">#5452</a> - Changed the behavior of Prefix table: now they are sortable, and after sorting is applied, all hierarchy indentations are removed.</li>
|
|
11116
11230
|
<li><a href="https://github.com/nautobot/nautobot/issues/5454">#5454</a> - Changed one-to-many links from Controller to <code>PROTECT</code> against deleting.</li>
|
|
@@ -11123,24 +11237,24 @@
|
|
|
11123
11237
|
<li><a href="https://github.com/nautobot/nautobot/issues/5475">#5475</a> - Changed the behavior of Prefix table and other Tree Model tables: now after filtering is applied, all hierarchy indentations are removed.</li>
|
|
11124
11238
|
<li><a href="https://github.com/nautobot/nautobot/issues/5487">#5487</a> - Moved some nav menu items around to make better logical sense and to allow quicker access to more commonly accessed features.</li>
|
|
11125
11239
|
</ul>
|
|
11126
|
-
<h3 id="
|
|
11240
|
+
<h3 id="fixed-in-v220">Fixed in v2.2.0<a class="headerlink" href="#fixed-in-v220" title="Permanent link">¶</a></h3>
|
|
11127
11241
|
<ul>
|
|
11128
11242
|
<li><a href="https://github.com/nautobot/nautobot/issues/5415">#5415</a> - Fixed Team(s) field not pre-populating when editing a Contact.</li>
|
|
11129
11243
|
<li><a href="https://github.com/nautobot/nautobot/issues/5431">#5431</a> - Fixed Roles API response containing duplicate entries when filtering on more than one <code>content_types</code> value.</li>
|
|
11130
11244
|
<li><a href="https://github.com/nautobot/nautobot/issues/5431">#5431</a> - Fixed Providers API response containing duplicate entries when filtering on more than one <code>location</code> value.</li>
|
|
11131
11245
|
<li><a href="https://github.com/nautobot/nautobot/issues/5440">#5440</a> - Fixed <code>Cannot resolve keyword 'task_id' into field</code> error when calling <code>nautobot-server celery result <task_id></code>.</li>
|
|
11132
11246
|
</ul>
|
|
11133
|
-
<h3 id="
|
|
11247
|
+
<h3 id="dependencies-in-v220">Dependencies in v2.2.0<a class="headerlink" href="#dependencies-in-v220" title="Permanent link">¶</a></h3>
|
|
11134
11248
|
<ul>
|
|
11135
11249
|
<li><a href="https://github.com/nautobot/nautobot/issues/4583">#4583</a> - Updated pinned version of <code>social-auth-core</code> to remove dependency on <code>python-jose</code> & it's dependency on <code>ecdsa</code>.</li>
|
|
11136
11250
|
</ul>
|
|
11137
|
-
<h3 id="
|
|
11251
|
+
<h3 id="housekeeping-in-v220">Housekeeping in v2.2.0<a class="headerlink" href="#housekeeping-in-v220" title="Permanent link">¶</a></h3>
|
|
11138
11252
|
<ul>
|
|
11139
11253
|
<li><a href="https://github.com/nautobot/nautobot/issues/5435">#5435</a> - Added <code>--pattern</code> argument to <code>invoke unittest</code>.</li>
|
|
11140
11254
|
<li><a href="https://github.com/nautobot/nautobot/issues/5435">#5435</a> - Added <code>--parallel-workers</code> argument to <code>invoke unittest</code>.</li>
|
|
11141
11255
|
</ul>
|
|
11142
11256
|
<h2 id="v220-beta1-2024-03-19">v2.2.0-beta.1 (2024-03-19)<a class="headerlink" href="#v220-beta1-2024-03-19" title="Permanent link">¶</a></h2>
|
|
11143
|
-
<h3 id="
|
|
11257
|
+
<h3 id="added-in-v220-beta1">Added in v2.2.0-beta.1<a class="headerlink" href="#added-in-v220-beta1" title="Permanent link">¶</a></h3>
|
|
11144
11258
|
<ul>
|
|
11145
11259
|
<li><a href="https://github.com/nautobot/nautobot/issues/1">#1</a> - Added new models for software versions and software image files.</li>
|
|
11146
11260
|
<li><a href="https://github.com/nautobot/nautobot/issues/1">#1</a> - Added a many-to-many relationship from <code>Device</code> to <code>SoftwareImageFile</code>.</li>
|
|
@@ -11179,7 +11293,7 @@
|
|
|
11179
11293
|
<li><a href="https://github.com/nautobot/nautobot/issues/5347">#5347</a> - Added an option to the Job-based CSV import to make atomic transactions optional.</li>
|
|
11180
11294
|
<li><a href="https://github.com/nautobot/nautobot/issues/5349">#5349</a> - Added REST API for vlan-to-location and prefix-to-location M2M.</li>
|
|
11181
11295
|
</ul>
|
|
11182
|
-
<h3 id="
|
|
11296
|
+
<h3 id="changed-in-v220-beta1">Changed in v2.2.0-beta.1<a class="headerlink" href="#changed-in-v220-beta1" title="Permanent link">¶</a></h3>
|
|
11183
11297
|
<ul>
|
|
11184
11298
|
<li><a href="https://github.com/nautobot/nautobot/issues/2906">#2906</a> - Increased <code>max_length</code> on all CharFields to at least 255 characters except where a shorter <code>max_length</code> is explicitly justified.</li>
|
|
11185
11299
|
<li><a href="https://github.com/nautobot/nautobot/issues/4334">#4334</a> - Changed <code>Prefix.location</code> to <code>Prefix.locations</code> allowing multiple Locations to be associated with a given Prefix.</li>
|
|
@@ -11198,18 +11312,18 @@
|
|
|
11198
11312
|
<li><a href="https://github.com/nautobot/nautobot/issues/5412">#5412</a> - Changed DeviceType YAML/JSON import to now map unrecognized port template <code>type</code> values to <code>"other"</code> instead of failing the import.</li>
|
|
11199
11313
|
<li><a href="https://github.com/nautobot/nautobot/issues/5414">#5414</a> - Changed <code>ImportObjects.roll_back_if_error</code> form field help text and label.</li>
|
|
11200
11314
|
</ul>
|
|
11201
|
-
<h3 id="deprecated">Deprecated<a class="headerlink" href="#deprecated" title="Permanent link">¶</a></h3>
|
|
11315
|
+
<h3 id="deprecated-in-v220-beta1">Deprecated in v2.2.0-beta.1<a class="headerlink" href="#deprecated-in-v220-beta1" title="Permanent link">¶</a></h3>
|
|
11202
11316
|
<ul>
|
|
11203
11317
|
<li><a href="https://github.com/nautobot/nautobot/issues/5064">#5064</a> - Deprecated the <code>import_button</code> button template-tag.</li>
|
|
11204
11318
|
<li><a href="https://github.com/nautobot/nautobot/issues/5116">#5116</a> - Deprecated the <code>nautobot.apps.exceptions.ConfigurationError</code> class as it is no longer used in Nautobot core and is trivially reimplementable by any App if desired.</li>
|
|
11205
11319
|
<li><a href="https://github.com/nautobot/nautobot/issues/5341">#5341</a> - Deprecated the <code>plugins</code> key under the <code>/api/status/</code> REST API endpoint. Refer to <code>nautobot-apps</code> instead.</li>
|
|
11206
11320
|
</ul>
|
|
11207
|
-
<h3 id="
|
|
11321
|
+
<h3 id="removed-in-v220-beta1">Removed in v2.2.0-beta.1<a class="headerlink" href="#removed-in-v220-beta1" title="Permanent link">¶</a></h3>
|
|
11208
11322
|
<ul>
|
|
11209
11323
|
<li><a href="https://github.com/nautobot/nautobot/issues/5064">#5064</a> - Removed the requirement for <code>ViewTestCases</code> subclasses to define <code>csv_data</code> for testing bulk-import views, as this functionality is now covered by a generic system Job.</li>
|
|
11210
11324
|
<li><a href="https://github.com/nautobot/nautobot/issues/5116">#5116</a> - Removed <code>logan</code>-derived application startup logic, simplifying the Nautobot startup code flow.</li>
|
|
11211
11325
|
</ul>
|
|
11212
|
-
<h3 id="
|
|
11326
|
+
<h3 id="fixed-in-v220-beta1">Fixed in v2.2.0-beta.1<a class="headerlink" href="#fixed-in-v220-beta1" title="Permanent link">¶</a></h3>
|
|
11213
11327
|
<ul>
|
|
11214
11328
|
<li><a href="https://github.com/nautobot/nautobot/issues/4334">#4334</a> - Fixed ordering of VLANs in the UI list view.</li>
|
|
11215
11329
|
<li><a href="https://github.com/nautobot/nautobot/issues/5064">#5064</a> - Fixed an exception in <code>Job.after_return()</code> if a Job with an optional <code>FileVar</code> was executed without supplying a value for that variable.</li>
|
|
@@ -11222,18 +11336,18 @@
|
|
|
11222
11336
|
<li><a href="https://github.com/nautobot/nautobot/issues/5298">#5298</a> - Fixed a <code>ValidationError</code> that was being thrown when a user logged out.</li>
|
|
11223
11337
|
<li><a href="https://github.com/nautobot/nautobot/issues/5298">#5298</a> - Fixed a case where viewing a completed JobResult that was missing a <code>date_done</code> value would cause the JobResult view to repeatedly refresh.</li>
|
|
11224
11338
|
</ul>
|
|
11225
|
-
<h3 id="
|
|
11339
|
+
<h3 id="dependencies-in-v220-beta1">Dependencies in v2.2.0-beta.1<a class="headerlink" href="#dependencies-in-v220-beta1" title="Permanent link">¶</a></h3>
|
|
11226
11340
|
<ul>
|
|
11227
11341
|
<li><a href="https://github.com/nautobot/nautobot/issues/5248">#5248</a> - Broadened <code>Markdown</code> dependency to permit versions up to 3.5.x.</li>
|
|
11228
11342
|
</ul>
|
|
11229
|
-
<h3 id="
|
|
11343
|
+
<h3 id="documentation-in-v220-beta1">Documentation in v2.2.0-beta.1<a class="headerlink" href="#documentation-in-v220-beta1" title="Permanent link">¶</a></h3>
|
|
11230
11344
|
<ul>
|
|
11231
11345
|
<li><a href="https://github.com/nautobot/nautobot/issues/5179">#5179</a> - Updated all documentation referencing the <code>example_plugin</code> to refer to the (renamed) <code>example_app</code>.</li>
|
|
11232
11346
|
<li><a href="https://github.com/nautobot/nautobot/issues/5179">#5179</a> - Replaced some "plugin" references in the documentation with "App" or "Nautobot App" as appropriate.</li>
|
|
11233
11347
|
<li><a href="https://github.com/nautobot/nautobot/issues/5248">#5248</a> - Removed source code excerpts from the "App Developer Guide > Code Reference" section of the documentation.</li>
|
|
11234
11348
|
<li><a href="https://github.com/nautobot/nautobot/issues/5341">#5341</a> - Replaced references to "plugins" in the documentation with "Apps".</li>
|
|
11235
11349
|
</ul>
|
|
11236
|
-
<h3 id="
|
|
11350
|
+
<h3 id="housekeeping-in-v220-beta1">Housekeeping in v2.2.0-beta.1<a class="headerlink" href="#housekeeping-in-v220-beta1" title="Permanent link">¶</a></h3>
|
|
11237
11351
|
<ul>
|
|
11238
11352
|
<li><a href="https://github.com/nautobot/nautobot/issues/5099">#5099</a> - Added <code>mkdocs-macros-plugin</code> as a development/documentation-rendering dependency.</li>
|
|
11239
11353
|
<li><a href="https://github.com/nautobot/nautobot/issues/5099">#5099</a> - Refactored documentation in <code>optional-settings</code> and <code>required-settings</code> to be generated automatically from <code>settings.yaml</code> schema.</li>
|
|
@@ -11352,7 +11466,7 @@
|
|
|
11352
11466
|
|
|
11353
11467
|
|
|
11354
11468
|
<a href="https://blog.networktocode.com/blog/tags/nautobot" target="_blank" rel="noopener" title="Network to Code Blog" class="md-social__link">
|
|
11355
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.
|
|
11469
|
+
<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>
|
|
11356
11470
|
</a>
|
|
11357
11471
|
|
|
11358
11472
|
|
|
@@ -11360,7 +11474,7 @@
|
|
|
11360
11474
|
|
|
11361
11475
|
|
|
11362
11476
|
<a href="https://www.youtube.com/playlist?list=PLjA0bhxgryJ2Ts4GJMDA-tPzVWEncv4pb" target="_blank" rel="noopener" title="Nautobot Videos" class="md-social__link">
|
|
11363
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.
|
|
11477
|
+
<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>
|
|
11364
11478
|
</a>
|
|
11365
11479
|
|
|
11366
11480
|
|
|
@@ -11368,7 +11482,7 @@
|
|
|
11368
11482
|
|
|
11369
11483
|
|
|
11370
11484
|
<a href="https://www.networktocode.com/community/" target="_blank" rel="noopener" title="Network to Code Community" class="md-social__link">
|
|
11371
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.
|
|
11485
|
+
<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>
|
|
11372
11486
|
</a>
|
|
11373
11487
|
|
|
11374
11488
|
|
|
@@ -11376,7 +11490,7 @@
|
|
|
11376
11490
|
|
|
11377
11491
|
|
|
11378
11492
|
<a href="https://github.com/nautobot/nautobot" target="_blank" rel="noopener" title="GitHub Repo" class="md-social__link">
|
|
11379
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.
|
|
11493
|
+
<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>
|
|
11380
11494
|
</a>
|
|
11381
11495
|
|
|
11382
11496
|
|
|
@@ -11384,7 +11498,7 @@
|
|
|
11384
11498
|
|
|
11385
11499
|
|
|
11386
11500
|
<a href="https://twitter.com/networktocode" target="_blank" rel="noopener" title="Network to Code Twitter" class="md-social__link">
|
|
11387
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.
|
|
11501
|
+
<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>
|
|
11388
11502
|
</a>
|
|
11389
11503
|
|
|
11390
11504
|
</div>
|
|
@@ -11399,10 +11513,10 @@
|
|
|
11399
11513
|
</div>
|
|
11400
11514
|
|
|
11401
11515
|
|
|
11402
|
-
<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.
|
|
11516
|
+
<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>
|
|
11403
11517
|
|
|
11404
11518
|
|
|
11405
|
-
<script src="../assets/javascripts/bundle.
|
|
11519
|
+
<script src="../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
11406
11520
|
|
|
11407
11521
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
11408
11522
|
|