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
|
|
|
@@ -8679,9 +8796,9 @@
|
|
|
8679
8796
|
</li>
|
|
8680
8797
|
|
|
8681
8798
|
<li class="md-nav__item">
|
|
8682
|
-
<a href="#generic-role-model-
|
|
8799
|
+
<a href="#migration-to-generic-role-model-1063" class="md-nav__link">
|
|
8683
8800
|
<span class="md-ellipsis">
|
|
8684
|
-
Generic Role Model (#1063)
|
|
8801
|
+
Migration to Generic Role Model (#1063)
|
|
8685
8802
|
</span>
|
|
8686
8803
|
</a>
|
|
8687
8804
|
|
|
@@ -8840,72 +8957,72 @@
|
|
|
8840
8957
|
<ul class="md-nav__list">
|
|
8841
8958
|
|
|
8842
8959
|
<li class="md-nav__item">
|
|
8843
|
-
<a href="#security" class="md-nav__link">
|
|
8960
|
+
<a href="#security-in-v206" class="md-nav__link">
|
|
8844
8961
|
<span class="md-ellipsis">
|
|
8845
|
-
Security
|
|
8962
|
+
Security in v2.0.6
|
|
8846
8963
|
</span>
|
|
8847
8964
|
</a>
|
|
8848
8965
|
|
|
8849
8966
|
</li>
|
|
8850
8967
|
|
|
8851
8968
|
<li class="md-nav__item">
|
|
8852
|
-
<a href="#
|
|
8969
|
+
<a href="#added-in-v206" class="md-nav__link">
|
|
8853
8970
|
<span class="md-ellipsis">
|
|
8854
|
-
Added
|
|
8971
|
+
Added in v2.0.6
|
|
8855
8972
|
</span>
|
|
8856
8973
|
</a>
|
|
8857
8974
|
|
|
8858
8975
|
</li>
|
|
8859
8976
|
|
|
8860
8977
|
<li class="md-nav__item">
|
|
8861
|
-
<a href="#
|
|
8978
|
+
<a href="#changed-in-v206" class="md-nav__link">
|
|
8862
8979
|
<span class="md-ellipsis">
|
|
8863
|
-
Changed
|
|
8980
|
+
Changed in v2.0.6
|
|
8864
8981
|
</span>
|
|
8865
8982
|
</a>
|
|
8866
8983
|
|
|
8867
8984
|
</li>
|
|
8868
8985
|
|
|
8869
8986
|
<li class="md-nav__item">
|
|
8870
|
-
<a href="#
|
|
8987
|
+
<a href="#removed-in-v206" class="md-nav__link">
|
|
8871
8988
|
<span class="md-ellipsis">
|
|
8872
|
-
Removed
|
|
8989
|
+
Removed in v2.0.6
|
|
8873
8990
|
</span>
|
|
8874
8991
|
</a>
|
|
8875
8992
|
|
|
8876
8993
|
</li>
|
|
8877
8994
|
|
|
8878
8995
|
<li class="md-nav__item">
|
|
8879
|
-
<a href="#fixed" class="md-nav__link">
|
|
8996
|
+
<a href="#fixed-in-v206" class="md-nav__link">
|
|
8880
8997
|
<span class="md-ellipsis">
|
|
8881
|
-
Fixed
|
|
8998
|
+
Fixed in v2.0.6
|
|
8882
8999
|
</span>
|
|
8883
9000
|
</a>
|
|
8884
9001
|
|
|
8885
9002
|
</li>
|
|
8886
9003
|
|
|
8887
9004
|
<li class="md-nav__item">
|
|
8888
|
-
<a href="#dependencies" class="md-nav__link">
|
|
9005
|
+
<a href="#dependencies-in-v206" class="md-nav__link">
|
|
8889
9006
|
<span class="md-ellipsis">
|
|
8890
|
-
Dependencies
|
|
9007
|
+
Dependencies in v2.0.6
|
|
8891
9008
|
</span>
|
|
8892
9009
|
</a>
|
|
8893
9010
|
|
|
8894
9011
|
</li>
|
|
8895
9012
|
|
|
8896
9013
|
<li class="md-nav__item">
|
|
8897
|
-
<a href="#documentation" class="md-nav__link">
|
|
9014
|
+
<a href="#documentation-in-v206" class="md-nav__link">
|
|
8898
9015
|
<span class="md-ellipsis">
|
|
8899
|
-
Documentation
|
|
9016
|
+
Documentation in v2.0.6
|
|
8900
9017
|
</span>
|
|
8901
9018
|
</a>
|
|
8902
9019
|
|
|
8903
9020
|
</li>
|
|
8904
9021
|
|
|
8905
9022
|
<li class="md-nav__item">
|
|
8906
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
9023
|
+
<a href="#housekeeping-in-v206" class="md-nav__link">
|
|
8907
9024
|
<span class="md-ellipsis">
|
|
8908
|
-
Housekeeping
|
|
9025
|
+
Housekeeping in v2.0.6
|
|
8909
9026
|
</span>
|
|
8910
9027
|
</a>
|
|
8911
9028
|
|
|
@@ -8927,54 +9044,54 @@
|
|
|
8927
9044
|
<ul class="md-nav__list">
|
|
8928
9045
|
|
|
8929
9046
|
<li class="md-nav__item">
|
|
8930
|
-
<a href="#
|
|
9047
|
+
<a href="#security-in-v205" class="md-nav__link">
|
|
8931
9048
|
<span class="md-ellipsis">
|
|
8932
|
-
Security
|
|
9049
|
+
Security in v2.0.5
|
|
8933
9050
|
</span>
|
|
8934
9051
|
</a>
|
|
8935
9052
|
|
|
8936
9053
|
</li>
|
|
8937
9054
|
|
|
8938
9055
|
<li class="md-nav__item">
|
|
8939
|
-
<a href="#
|
|
9056
|
+
<a href="#changed-in-v205" class="md-nav__link">
|
|
8940
9057
|
<span class="md-ellipsis">
|
|
8941
|
-
Changed
|
|
9058
|
+
Changed in v2.0.5
|
|
8942
9059
|
</span>
|
|
8943
9060
|
</a>
|
|
8944
9061
|
|
|
8945
9062
|
</li>
|
|
8946
9063
|
|
|
8947
9064
|
<li class="md-nav__item">
|
|
8948
|
-
<a href="#
|
|
9065
|
+
<a href="#fixed-in-v205" class="md-nav__link">
|
|
8949
9066
|
<span class="md-ellipsis">
|
|
8950
|
-
Fixed
|
|
9067
|
+
Fixed in v2.0.5
|
|
8951
9068
|
</span>
|
|
8952
9069
|
</a>
|
|
8953
9070
|
|
|
8954
9071
|
</li>
|
|
8955
9072
|
|
|
8956
9073
|
<li class="md-nav__item">
|
|
8957
|
-
<a href="#
|
|
9074
|
+
<a href="#dependencies-in-v205" class="md-nav__link">
|
|
8958
9075
|
<span class="md-ellipsis">
|
|
8959
|
-
Dependencies
|
|
9076
|
+
Dependencies in v2.0.5
|
|
8960
9077
|
</span>
|
|
8961
9078
|
</a>
|
|
8962
9079
|
|
|
8963
9080
|
</li>
|
|
8964
9081
|
|
|
8965
9082
|
<li class="md-nav__item">
|
|
8966
|
-
<a href="#
|
|
9083
|
+
<a href="#documentation-in-v205" class="md-nav__link">
|
|
8967
9084
|
<span class="md-ellipsis">
|
|
8968
|
-
Documentation
|
|
9085
|
+
Documentation in v2.0.5
|
|
8969
9086
|
</span>
|
|
8970
9087
|
</a>
|
|
8971
9088
|
|
|
8972
9089
|
</li>
|
|
8973
9090
|
|
|
8974
9091
|
<li class="md-nav__item">
|
|
8975
|
-
<a href="#
|
|
9092
|
+
<a href="#housekeeping-in-v205" class="md-nav__link">
|
|
8976
9093
|
<span class="md-ellipsis">
|
|
8977
|
-
Housekeeping
|
|
9094
|
+
Housekeeping in v2.0.5
|
|
8978
9095
|
</span>
|
|
8979
9096
|
</a>
|
|
8980
9097
|
|
|
@@ -8996,54 +9113,54 @@
|
|
|
8996
9113
|
<ul class="md-nav__list">
|
|
8997
9114
|
|
|
8998
9115
|
<li class="md-nav__item">
|
|
8999
|
-
<a href="#
|
|
9116
|
+
<a href="#security-in-v204" class="md-nav__link">
|
|
9000
9117
|
<span class="md-ellipsis">
|
|
9001
|
-
Security
|
|
9118
|
+
Security in v2.0.4
|
|
9002
9119
|
</span>
|
|
9003
9120
|
</a>
|
|
9004
9121
|
|
|
9005
9122
|
</li>
|
|
9006
9123
|
|
|
9007
9124
|
<li class="md-nav__item">
|
|
9008
|
-
<a href="#
|
|
9125
|
+
<a href="#added-in-v204" class="md-nav__link">
|
|
9009
9126
|
<span class="md-ellipsis">
|
|
9010
|
-
Added
|
|
9127
|
+
Added in v2.0.4
|
|
9011
9128
|
</span>
|
|
9012
9129
|
</a>
|
|
9013
9130
|
|
|
9014
9131
|
</li>
|
|
9015
9132
|
|
|
9016
9133
|
<li class="md-nav__item">
|
|
9017
|
-
<a href="#
|
|
9134
|
+
<a href="#changed-in-v204" class="md-nav__link">
|
|
9018
9135
|
<span class="md-ellipsis">
|
|
9019
|
-
Changed
|
|
9136
|
+
Changed in v2.0.4
|
|
9020
9137
|
</span>
|
|
9021
9138
|
</a>
|
|
9022
9139
|
|
|
9023
9140
|
</li>
|
|
9024
9141
|
|
|
9025
9142
|
<li class="md-nav__item">
|
|
9026
|
-
<a href="#
|
|
9143
|
+
<a href="#fixed-in-v204" class="md-nav__link">
|
|
9027
9144
|
<span class="md-ellipsis">
|
|
9028
|
-
Fixed
|
|
9145
|
+
Fixed in v2.0.4
|
|
9029
9146
|
</span>
|
|
9030
9147
|
</a>
|
|
9031
9148
|
|
|
9032
9149
|
</li>
|
|
9033
9150
|
|
|
9034
9151
|
<li class="md-nav__item">
|
|
9035
|
-
<a href="#
|
|
9152
|
+
<a href="#documentation-in-v204" class="md-nav__link">
|
|
9036
9153
|
<span class="md-ellipsis">
|
|
9037
|
-
Documentation
|
|
9154
|
+
Documentation in v2.0.4
|
|
9038
9155
|
</span>
|
|
9039
9156
|
</a>
|
|
9040
9157
|
|
|
9041
9158
|
</li>
|
|
9042
9159
|
|
|
9043
9160
|
<li class="md-nav__item">
|
|
9044
|
-
<a href="#
|
|
9161
|
+
<a href="#housekeeping-in-v204" class="md-nav__link">
|
|
9045
9162
|
<span class="md-ellipsis">
|
|
9046
|
-
Housekeeping
|
|
9163
|
+
Housekeeping in v2.0.4
|
|
9047
9164
|
</span>
|
|
9048
9165
|
</a>
|
|
9049
9166
|
|
|
@@ -9065,54 +9182,54 @@
|
|
|
9065
9182
|
<ul class="md-nav__list">
|
|
9066
9183
|
|
|
9067
9184
|
<li class="md-nav__item">
|
|
9068
|
-
<a href="#
|
|
9185
|
+
<a href="#security-in-v203" class="md-nav__link">
|
|
9069
9186
|
<span class="md-ellipsis">
|
|
9070
|
-
Security
|
|
9187
|
+
Security in v2.0.3
|
|
9071
9188
|
</span>
|
|
9072
9189
|
</a>
|
|
9073
9190
|
|
|
9074
9191
|
</li>
|
|
9075
9192
|
|
|
9076
9193
|
<li class="md-nav__item">
|
|
9077
|
-
<a href="#
|
|
9194
|
+
<a href="#added-in-v203" class="md-nav__link">
|
|
9078
9195
|
<span class="md-ellipsis">
|
|
9079
|
-
Added
|
|
9196
|
+
Added in v2.0.3
|
|
9080
9197
|
</span>
|
|
9081
9198
|
</a>
|
|
9082
9199
|
|
|
9083
9200
|
</li>
|
|
9084
9201
|
|
|
9085
9202
|
<li class="md-nav__item">
|
|
9086
|
-
<a href="#
|
|
9203
|
+
<a href="#changed-in-v203" class="md-nav__link">
|
|
9087
9204
|
<span class="md-ellipsis">
|
|
9088
|
-
Changed
|
|
9205
|
+
Changed in v2.0.3
|
|
9089
9206
|
</span>
|
|
9090
9207
|
</a>
|
|
9091
9208
|
|
|
9092
9209
|
</li>
|
|
9093
9210
|
|
|
9094
9211
|
<li class="md-nav__item">
|
|
9095
|
-
<a href="#
|
|
9212
|
+
<a href="#fixed-in-v203" class="md-nav__link">
|
|
9096
9213
|
<span class="md-ellipsis">
|
|
9097
|
-
Fixed
|
|
9214
|
+
Fixed in v2.0.3
|
|
9098
9215
|
</span>
|
|
9099
9216
|
</a>
|
|
9100
9217
|
|
|
9101
9218
|
</li>
|
|
9102
9219
|
|
|
9103
9220
|
<li class="md-nav__item">
|
|
9104
|
-
<a href="#
|
|
9221
|
+
<a href="#documentation-in-v203" class="md-nav__link">
|
|
9105
9222
|
<span class="md-ellipsis">
|
|
9106
|
-
Documentation
|
|
9223
|
+
Documentation in v2.0.3
|
|
9107
9224
|
</span>
|
|
9108
9225
|
</a>
|
|
9109
9226
|
|
|
9110
9227
|
</li>
|
|
9111
9228
|
|
|
9112
9229
|
<li class="md-nav__item">
|
|
9113
|
-
<a href="#
|
|
9230
|
+
<a href="#housekeeping-in-v203" class="md-nav__link">
|
|
9114
9231
|
<span class="md-ellipsis">
|
|
9115
|
-
Housekeeping
|
|
9232
|
+
Housekeeping in v2.0.3
|
|
9116
9233
|
</span>
|
|
9117
9234
|
</a>
|
|
9118
9235
|
|
|
@@ -9134,54 +9251,54 @@
|
|
|
9134
9251
|
<ul class="md-nav__list">
|
|
9135
9252
|
|
|
9136
9253
|
<li class="md-nav__item">
|
|
9137
|
-
<a href="#
|
|
9254
|
+
<a href="#security-in-v202" class="md-nav__link">
|
|
9138
9255
|
<span class="md-ellipsis">
|
|
9139
|
-
Security
|
|
9256
|
+
Security in v2.0.2
|
|
9140
9257
|
</span>
|
|
9141
9258
|
</a>
|
|
9142
9259
|
|
|
9143
9260
|
</li>
|
|
9144
9261
|
|
|
9145
9262
|
<li class="md-nav__item">
|
|
9146
|
-
<a href="#
|
|
9263
|
+
<a href="#added-in-v202" class="md-nav__link">
|
|
9147
9264
|
<span class="md-ellipsis">
|
|
9148
|
-
Added
|
|
9265
|
+
Added in v2.0.2
|
|
9149
9266
|
</span>
|
|
9150
9267
|
</a>
|
|
9151
9268
|
|
|
9152
9269
|
</li>
|
|
9153
9270
|
|
|
9154
9271
|
<li class="md-nav__item">
|
|
9155
|
-
<a href="#
|
|
9272
|
+
<a href="#changed-in-v202" class="md-nav__link">
|
|
9156
9273
|
<span class="md-ellipsis">
|
|
9157
|
-
Changed
|
|
9274
|
+
Changed in v2.0.2
|
|
9158
9275
|
</span>
|
|
9159
9276
|
</a>
|
|
9160
9277
|
|
|
9161
9278
|
</li>
|
|
9162
9279
|
|
|
9163
9280
|
<li class="md-nav__item">
|
|
9164
|
-
<a href="#
|
|
9281
|
+
<a href="#fixed-in-v202" class="md-nav__link">
|
|
9165
9282
|
<span class="md-ellipsis">
|
|
9166
|
-
Fixed
|
|
9283
|
+
Fixed in v2.0.2
|
|
9167
9284
|
</span>
|
|
9168
9285
|
</a>
|
|
9169
9286
|
|
|
9170
9287
|
</li>
|
|
9171
9288
|
|
|
9172
9289
|
<li class="md-nav__item">
|
|
9173
|
-
<a href="#
|
|
9290
|
+
<a href="#documentation-in-v202" class="md-nav__link">
|
|
9174
9291
|
<span class="md-ellipsis">
|
|
9175
|
-
Documentation
|
|
9292
|
+
Documentation in v2.0.2
|
|
9176
9293
|
</span>
|
|
9177
9294
|
</a>
|
|
9178
9295
|
|
|
9179
9296
|
</li>
|
|
9180
9297
|
|
|
9181
9298
|
<li class="md-nav__item">
|
|
9182
|
-
<a href="#
|
|
9299
|
+
<a href="#housekeeping-in-v202" class="md-nav__link">
|
|
9183
9300
|
<span class="md-ellipsis">
|
|
9184
|
-
Housekeeping
|
|
9301
|
+
Housekeeping in v2.0.2
|
|
9185
9302
|
</span>
|
|
9186
9303
|
</a>
|
|
9187
9304
|
|
|
@@ -9203,18 +9320,18 @@
|
|
|
9203
9320
|
<ul class="md-nav__list">
|
|
9204
9321
|
|
|
9205
9322
|
<li class="md-nav__item">
|
|
9206
|
-
<a href="#
|
|
9323
|
+
<a href="#fixed-in-v201" class="md-nav__link">
|
|
9207
9324
|
<span class="md-ellipsis">
|
|
9208
|
-
Fixed
|
|
9325
|
+
Fixed in v2.0.1
|
|
9209
9326
|
</span>
|
|
9210
9327
|
</a>
|
|
9211
9328
|
|
|
9212
9329
|
</li>
|
|
9213
9330
|
|
|
9214
9331
|
<li class="md-nav__item">
|
|
9215
|
-
<a href="#
|
|
9332
|
+
<a href="#housekeeping-in-v201" class="md-nav__link">
|
|
9216
9333
|
<span class="md-ellipsis">
|
|
9217
|
-
Housekeeping
|
|
9334
|
+
Housekeeping in v2.0.1
|
|
9218
9335
|
</span>
|
|
9219
9336
|
</a>
|
|
9220
9337
|
|
|
@@ -9236,27 +9353,27 @@
|
|
|
9236
9353
|
<ul class="md-nav__list">
|
|
9237
9354
|
|
|
9238
9355
|
<li class="md-nav__item">
|
|
9239
|
-
<a href="#
|
|
9356
|
+
<a href="#added-in-v200" class="md-nav__link">
|
|
9240
9357
|
<span class="md-ellipsis">
|
|
9241
|
-
Added
|
|
9358
|
+
Added in v2.0.0
|
|
9242
9359
|
</span>
|
|
9243
9360
|
</a>
|
|
9244
9361
|
|
|
9245
9362
|
</li>
|
|
9246
9363
|
|
|
9247
9364
|
<li class="md-nav__item">
|
|
9248
|
-
<a href="#
|
|
9365
|
+
<a href="#fixed-in-v200" class="md-nav__link">
|
|
9249
9366
|
<span class="md-ellipsis">
|
|
9250
|
-
Fixed
|
|
9367
|
+
Fixed in v2.0.0
|
|
9251
9368
|
</span>
|
|
9252
9369
|
</a>
|
|
9253
9370
|
|
|
9254
9371
|
</li>
|
|
9255
9372
|
|
|
9256
9373
|
<li class="md-nav__item">
|
|
9257
|
-
<a href="#
|
|
9374
|
+
<a href="#documentation-in-v200" class="md-nav__link">
|
|
9258
9375
|
<span class="md-ellipsis">
|
|
9259
|
-
Documentation
|
|
9376
|
+
Documentation in v2.0.0
|
|
9260
9377
|
</span>
|
|
9261
9378
|
</a>
|
|
9262
9379
|
|
|
@@ -9278,72 +9395,72 @@
|
|
|
9278
9395
|
<ul class="md-nav__list">
|
|
9279
9396
|
|
|
9280
9397
|
<li class="md-nav__item">
|
|
9281
|
-
<a href="#
|
|
9398
|
+
<a href="#security-in-v200-rc4" class="md-nav__link">
|
|
9282
9399
|
<span class="md-ellipsis">
|
|
9283
|
-
Security
|
|
9400
|
+
Security in v2.0.0-rc.4
|
|
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="#added-in-v200-rc4" class="md-nav__link">
|
|
9291
9408
|
<span class="md-ellipsis">
|
|
9292
|
-
Added
|
|
9409
|
+
Added in v2.0.0-rc.4
|
|
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="#changed-in-v200-rc4" class="md-nav__link">
|
|
9300
9417
|
<span class="md-ellipsis">
|
|
9301
|
-
Changed
|
|
9418
|
+
Changed in v2.0.0-rc.4
|
|
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="#removed-in-v200-rc4" class="md-nav__link">
|
|
9309
9426
|
<span class="md-ellipsis">
|
|
9310
|
-
Removed
|
|
9427
|
+
Removed in v2.0.0-rc.4
|
|
9311
9428
|
</span>
|
|
9312
9429
|
</a>
|
|
9313
9430
|
|
|
9314
9431
|
</li>
|
|
9315
9432
|
|
|
9316
9433
|
<li class="md-nav__item">
|
|
9317
|
-
<a href="#
|
|
9434
|
+
<a href="#fixed-in-v200-rc4" class="md-nav__link">
|
|
9318
9435
|
<span class="md-ellipsis">
|
|
9319
|
-
Fixed
|
|
9436
|
+
Fixed in v2.0.0-rc.4
|
|
9320
9437
|
</span>
|
|
9321
9438
|
</a>
|
|
9322
9439
|
|
|
9323
9440
|
</li>
|
|
9324
9441
|
|
|
9325
9442
|
<li class="md-nav__item">
|
|
9326
|
-
<a href="#
|
|
9443
|
+
<a href="#dependencies-in-v200-rc4" class="md-nav__link">
|
|
9327
9444
|
<span class="md-ellipsis">
|
|
9328
|
-
Dependencies
|
|
9445
|
+
Dependencies in v2.0.0-rc.4
|
|
9329
9446
|
</span>
|
|
9330
9447
|
</a>
|
|
9331
9448
|
|
|
9332
9449
|
</li>
|
|
9333
9450
|
|
|
9334
9451
|
<li class="md-nav__item">
|
|
9335
|
-
<a href="#
|
|
9452
|
+
<a href="#documentation-in-v200-rc4" class="md-nav__link">
|
|
9336
9453
|
<span class="md-ellipsis">
|
|
9337
|
-
Documentation
|
|
9454
|
+
Documentation in v2.0.0-rc.4
|
|
9338
9455
|
</span>
|
|
9339
9456
|
</a>
|
|
9340
9457
|
|
|
9341
9458
|
</li>
|
|
9342
9459
|
|
|
9343
9460
|
<li class="md-nav__item">
|
|
9344
|
-
<a href="#
|
|
9461
|
+
<a href="#housekeeping-in-v200-rc4" class="md-nav__link">
|
|
9345
9462
|
<span class="md-ellipsis">
|
|
9346
|
-
Housekeeping
|
|
9463
|
+
Housekeeping in v2.0.0-rc.4
|
|
9347
9464
|
</span>
|
|
9348
9465
|
</a>
|
|
9349
9466
|
|
|
@@ -9365,63 +9482,63 @@
|
|
|
9365
9482
|
<ul class="md-nav__list">
|
|
9366
9483
|
|
|
9367
9484
|
<li class="md-nav__item">
|
|
9368
|
-
<a href="#
|
|
9485
|
+
<a href="#security-in-v200-rc3" class="md-nav__link">
|
|
9369
9486
|
<span class="md-ellipsis">
|
|
9370
|
-
Security
|
|
9487
|
+
Security in v2.0.0-rc.3
|
|
9371
9488
|
</span>
|
|
9372
9489
|
</a>
|
|
9373
9490
|
|
|
9374
9491
|
</li>
|
|
9375
9492
|
|
|
9376
9493
|
<li class="md-nav__item">
|
|
9377
|
-
<a href="#
|
|
9494
|
+
<a href="#added-in-v200-rc3" class="md-nav__link">
|
|
9378
9495
|
<span class="md-ellipsis">
|
|
9379
|
-
Added
|
|
9496
|
+
Added in v2.0.0-rc.3
|
|
9380
9497
|
</span>
|
|
9381
9498
|
</a>
|
|
9382
9499
|
|
|
9383
9500
|
</li>
|
|
9384
9501
|
|
|
9385
9502
|
<li class="md-nav__item">
|
|
9386
|
-
<a href="#
|
|
9503
|
+
<a href="#changed-in-v200-rc3" class="md-nav__link">
|
|
9387
9504
|
<span class="md-ellipsis">
|
|
9388
|
-
Changed
|
|
9505
|
+
Changed in v2.0.0-rc.3
|
|
9389
9506
|
</span>
|
|
9390
9507
|
</a>
|
|
9391
9508
|
|
|
9392
9509
|
</li>
|
|
9393
9510
|
|
|
9394
9511
|
<li class="md-nav__item">
|
|
9395
|
-
<a href="#
|
|
9512
|
+
<a href="#removed-in-v200-rc3" class="md-nav__link">
|
|
9396
9513
|
<span class="md-ellipsis">
|
|
9397
|
-
Removed
|
|
9514
|
+
Removed in v2.0.0-rc.3
|
|
9398
9515
|
</span>
|
|
9399
9516
|
</a>
|
|
9400
9517
|
|
|
9401
9518
|
</li>
|
|
9402
9519
|
|
|
9403
9520
|
<li class="md-nav__item">
|
|
9404
|
-
<a href="#
|
|
9521
|
+
<a href="#fixed-in-v200-rc3" class="md-nav__link">
|
|
9405
9522
|
<span class="md-ellipsis">
|
|
9406
|
-
Fixed
|
|
9523
|
+
Fixed in v2.0.0-rc.3
|
|
9407
9524
|
</span>
|
|
9408
9525
|
</a>
|
|
9409
9526
|
|
|
9410
9527
|
</li>
|
|
9411
9528
|
|
|
9412
9529
|
<li class="md-nav__item">
|
|
9413
|
-
<a href="#
|
|
9530
|
+
<a href="#documentation-in-v200-rc3" class="md-nav__link">
|
|
9414
9531
|
<span class="md-ellipsis">
|
|
9415
|
-
Documentation
|
|
9532
|
+
Documentation in v2.0.0-rc.3
|
|
9416
9533
|
</span>
|
|
9417
9534
|
</a>
|
|
9418
9535
|
|
|
9419
9536
|
</li>
|
|
9420
9537
|
|
|
9421
9538
|
<li class="md-nav__item">
|
|
9422
|
-
<a href="#
|
|
9539
|
+
<a href="#housekeeping-in-v200-rc3" class="md-nav__link">
|
|
9423
9540
|
<span class="md-ellipsis">
|
|
9424
|
-
Housekeeping
|
|
9541
|
+
Housekeeping in v2.0.0-rc.3
|
|
9425
9542
|
</span>
|
|
9426
9543
|
</a>
|
|
9427
9544
|
|
|
@@ -9443,36 +9560,36 @@
|
|
|
9443
9560
|
<ul class="md-nav__list">
|
|
9444
9561
|
|
|
9445
9562
|
<li class="md-nav__item">
|
|
9446
|
-
<a href="#
|
|
9563
|
+
<a href="#added-in-v200rc-2" class="md-nav__link">
|
|
9447
9564
|
<span class="md-ellipsis">
|
|
9448
|
-
Added
|
|
9565
|
+
Added in v2.0.0.rc-2
|
|
9449
9566
|
</span>
|
|
9450
9567
|
</a>
|
|
9451
9568
|
|
|
9452
9569
|
</li>
|
|
9453
9570
|
|
|
9454
9571
|
<li class="md-nav__item">
|
|
9455
|
-
<a href="#
|
|
9572
|
+
<a href="#changed-in-v200rc-2" class="md-nav__link">
|
|
9456
9573
|
<span class="md-ellipsis">
|
|
9457
|
-
Changed
|
|
9574
|
+
Changed in v2.0.0.rc-2
|
|
9458
9575
|
</span>
|
|
9459
9576
|
</a>
|
|
9460
9577
|
|
|
9461
9578
|
</li>
|
|
9462
9579
|
|
|
9463
9580
|
<li class="md-nav__item">
|
|
9464
|
-
<a href="#
|
|
9581
|
+
<a href="#removed-in-v200rc-2" class="md-nav__link">
|
|
9465
9582
|
<span class="md-ellipsis">
|
|
9466
|
-
Removed
|
|
9583
|
+
Removed in v2.0.0.rc-2
|
|
9467
9584
|
</span>
|
|
9468
9585
|
</a>
|
|
9469
9586
|
|
|
9470
9587
|
</li>
|
|
9471
9588
|
|
|
9472
9589
|
<li class="md-nav__item">
|
|
9473
|
-
<a href="#
|
|
9590
|
+
<a href="#fixed-in-v200rc-2" class="md-nav__link">
|
|
9474
9591
|
<span class="md-ellipsis">
|
|
9475
|
-
Fixed
|
|
9592
|
+
Fixed in v2.0.0.rc-2
|
|
9476
9593
|
</span>
|
|
9477
9594
|
</a>
|
|
9478
9595
|
|
|
@@ -9494,63 +9611,63 @@
|
|
|
9494
9611
|
<ul class="md-nav__list">
|
|
9495
9612
|
|
|
9496
9613
|
<li class="md-nav__item">
|
|
9497
|
-
<a href="#
|
|
9614
|
+
<a href="#added-in-v200rc1" class="md-nav__link">
|
|
9498
9615
|
<span class="md-ellipsis">
|
|
9499
|
-
Added
|
|
9616
|
+
Added in v2.0.0rc1
|
|
9500
9617
|
</span>
|
|
9501
9618
|
</a>
|
|
9502
9619
|
|
|
9503
9620
|
</li>
|
|
9504
9621
|
|
|
9505
9622
|
<li class="md-nav__item">
|
|
9506
|
-
<a href="#
|
|
9623
|
+
<a href="#changed-in-v200rc1" class="md-nav__link">
|
|
9507
9624
|
<span class="md-ellipsis">
|
|
9508
|
-
Changed
|
|
9625
|
+
Changed in v2.0.0rc1
|
|
9509
9626
|
</span>
|
|
9510
9627
|
</a>
|
|
9511
9628
|
|
|
9512
9629
|
</li>
|
|
9513
9630
|
|
|
9514
9631
|
<li class="md-nav__item">
|
|
9515
|
-
<a href="#
|
|
9632
|
+
<a href="#removed-in-v200rc1" class="md-nav__link">
|
|
9516
9633
|
<span class="md-ellipsis">
|
|
9517
|
-
Removed
|
|
9634
|
+
Removed in v2.0.0rc1
|
|
9518
9635
|
</span>
|
|
9519
9636
|
</a>
|
|
9520
9637
|
|
|
9521
9638
|
</li>
|
|
9522
9639
|
|
|
9523
9640
|
<li class="md-nav__item">
|
|
9524
|
-
<a href="#
|
|
9641
|
+
<a href="#fixed-in-v200rc1" class="md-nav__link">
|
|
9525
9642
|
<span class="md-ellipsis">
|
|
9526
|
-
Fixed
|
|
9643
|
+
Fixed in v2.0.0rc1
|
|
9527
9644
|
</span>
|
|
9528
9645
|
</a>
|
|
9529
9646
|
|
|
9530
9647
|
</li>
|
|
9531
9648
|
|
|
9532
9649
|
<li class="md-nav__item">
|
|
9533
|
-
<a href="#
|
|
9650
|
+
<a href="#dependencies-in-v200rc1" class="md-nav__link">
|
|
9534
9651
|
<span class="md-ellipsis">
|
|
9535
|
-
Dependencies
|
|
9652
|
+
Dependencies in v2.0.0rc1
|
|
9536
9653
|
</span>
|
|
9537
9654
|
</a>
|
|
9538
9655
|
|
|
9539
9656
|
</li>
|
|
9540
9657
|
|
|
9541
9658
|
<li class="md-nav__item">
|
|
9542
|
-
<a href="#
|
|
9659
|
+
<a href="#documentation-in-v200rc1" class="md-nav__link">
|
|
9543
9660
|
<span class="md-ellipsis">
|
|
9544
|
-
Documentation
|
|
9661
|
+
Documentation in v2.0.0rc1
|
|
9545
9662
|
</span>
|
|
9546
9663
|
</a>
|
|
9547
9664
|
|
|
9548
9665
|
</li>
|
|
9549
9666
|
|
|
9550
9667
|
<li class="md-nav__item">
|
|
9551
|
-
<a href="#
|
|
9668
|
+
<a href="#housekeeping-in-v200rc1" class="md-nav__link">
|
|
9552
9669
|
<span class="md-ellipsis">
|
|
9553
|
-
Housekeeping
|
|
9670
|
+
Housekeeping in v2.0.0rc1
|
|
9554
9671
|
</span>
|
|
9555
9672
|
</a>
|
|
9556
9673
|
|
|
@@ -9572,63 +9689,63 @@
|
|
|
9572
9689
|
<ul class="md-nav__list">
|
|
9573
9690
|
|
|
9574
9691
|
<li class="md-nav__item">
|
|
9575
|
-
<a href="#
|
|
9692
|
+
<a href="#added-in-v200-beta2" class="md-nav__link">
|
|
9576
9693
|
<span class="md-ellipsis">
|
|
9577
|
-
Added
|
|
9694
|
+
Added in v2.0.0-beta.2
|
|
9578
9695
|
</span>
|
|
9579
9696
|
</a>
|
|
9580
9697
|
|
|
9581
9698
|
</li>
|
|
9582
9699
|
|
|
9583
9700
|
<li class="md-nav__item">
|
|
9584
|
-
<a href="#
|
|
9701
|
+
<a href="#changed-in-v200-beta2" class="md-nav__link">
|
|
9585
9702
|
<span class="md-ellipsis">
|
|
9586
|
-
Changed
|
|
9703
|
+
Changed in v2.0.0-beta.2
|
|
9587
9704
|
</span>
|
|
9588
9705
|
</a>
|
|
9589
9706
|
|
|
9590
9707
|
</li>
|
|
9591
9708
|
|
|
9592
9709
|
<li class="md-nav__item">
|
|
9593
|
-
<a href="#
|
|
9710
|
+
<a href="#removed-in-v200-beta2" class="md-nav__link">
|
|
9594
9711
|
<span class="md-ellipsis">
|
|
9595
|
-
Removed
|
|
9712
|
+
Removed in v2.0.0-beta.2
|
|
9596
9713
|
</span>
|
|
9597
9714
|
</a>
|
|
9598
9715
|
|
|
9599
9716
|
</li>
|
|
9600
9717
|
|
|
9601
9718
|
<li class="md-nav__item">
|
|
9602
|
-
<a href="#
|
|
9719
|
+
<a href="#fixed-in-v200-beta2" class="md-nav__link">
|
|
9603
9720
|
<span class="md-ellipsis">
|
|
9604
|
-
Fixed
|
|
9721
|
+
Fixed in v2.0.0-beta.2
|
|
9605
9722
|
</span>
|
|
9606
9723
|
</a>
|
|
9607
9724
|
|
|
9608
9725
|
</li>
|
|
9609
9726
|
|
|
9610
9727
|
<li class="md-nav__item">
|
|
9611
|
-
<a href="#
|
|
9728
|
+
<a href="#dependencies-in-v200-beta2" class="md-nav__link">
|
|
9612
9729
|
<span class="md-ellipsis">
|
|
9613
|
-
Dependencies
|
|
9730
|
+
Dependencies in v2.0.0-beta.2
|
|
9614
9731
|
</span>
|
|
9615
9732
|
</a>
|
|
9616
9733
|
|
|
9617
9734
|
</li>
|
|
9618
9735
|
|
|
9619
9736
|
<li class="md-nav__item">
|
|
9620
|
-
<a href="#
|
|
9737
|
+
<a href="#documentation-in-v200-beta2" class="md-nav__link">
|
|
9621
9738
|
<span class="md-ellipsis">
|
|
9622
|
-
Documentation
|
|
9739
|
+
Documentation in v2.0.0-beta.2
|
|
9623
9740
|
</span>
|
|
9624
9741
|
</a>
|
|
9625
9742
|
|
|
9626
9743
|
</li>
|
|
9627
9744
|
|
|
9628
9745
|
<li class="md-nav__item">
|
|
9629
|
-
<a href="#
|
|
9746
|
+
<a href="#housekeeping-in-v200-beta2" class="md-nav__link">
|
|
9630
9747
|
<span class="md-ellipsis">
|
|
9631
|
-
Housekeeping
|
|
9748
|
+
Housekeeping in v2.0.0-beta.2
|
|
9632
9749
|
</span>
|
|
9633
9750
|
</a>
|
|
9634
9751
|
|
|
@@ -9650,63 +9767,63 @@
|
|
|
9650
9767
|
<ul class="md-nav__list">
|
|
9651
9768
|
|
|
9652
9769
|
<li class="md-nav__item">
|
|
9653
|
-
<a href="#
|
|
9770
|
+
<a href="#added-in-v200-beta1" class="md-nav__link">
|
|
9654
9771
|
<span class="md-ellipsis">
|
|
9655
|
-
Added
|
|
9772
|
+
Added in v2.0.0-beta.1
|
|
9656
9773
|
</span>
|
|
9657
9774
|
</a>
|
|
9658
9775
|
|
|
9659
9776
|
</li>
|
|
9660
9777
|
|
|
9661
9778
|
<li class="md-nav__item">
|
|
9662
|
-
<a href="#
|
|
9779
|
+
<a href="#changed-in-v200-beta1" class="md-nav__link">
|
|
9663
9780
|
<span class="md-ellipsis">
|
|
9664
|
-
Changed
|
|
9781
|
+
Changed in v2.0.0-beta.1
|
|
9665
9782
|
</span>
|
|
9666
9783
|
</a>
|
|
9667
9784
|
|
|
9668
9785
|
</li>
|
|
9669
9786
|
|
|
9670
9787
|
<li class="md-nav__item">
|
|
9671
|
-
<a href="#
|
|
9788
|
+
<a href="#removed-in-v200-beta1" class="md-nav__link">
|
|
9672
9789
|
<span class="md-ellipsis">
|
|
9673
|
-
Removed
|
|
9790
|
+
Removed in v2.0.0-beta.1
|
|
9674
9791
|
</span>
|
|
9675
9792
|
</a>
|
|
9676
9793
|
|
|
9677
9794
|
</li>
|
|
9678
9795
|
|
|
9679
9796
|
<li class="md-nav__item">
|
|
9680
|
-
<a href="#
|
|
9797
|
+
<a href="#fixed-in-v200-beta1" class="md-nav__link">
|
|
9681
9798
|
<span class="md-ellipsis">
|
|
9682
|
-
Fixed
|
|
9799
|
+
Fixed in v2.0.0-beta.1
|
|
9683
9800
|
</span>
|
|
9684
9801
|
</a>
|
|
9685
9802
|
|
|
9686
9803
|
</li>
|
|
9687
9804
|
|
|
9688
9805
|
<li class="md-nav__item">
|
|
9689
|
-
<a href="#
|
|
9806
|
+
<a href="#dependencies-in-v200-beta1" class="md-nav__link">
|
|
9690
9807
|
<span class="md-ellipsis">
|
|
9691
|
-
Dependencies
|
|
9808
|
+
Dependencies in v2.0.0-beta.1
|
|
9692
9809
|
</span>
|
|
9693
9810
|
</a>
|
|
9694
9811
|
|
|
9695
9812
|
</li>
|
|
9696
9813
|
|
|
9697
9814
|
<li class="md-nav__item">
|
|
9698
|
-
<a href="#
|
|
9815
|
+
<a href="#documentation-in-v200-beta1" class="md-nav__link">
|
|
9699
9816
|
<span class="md-ellipsis">
|
|
9700
|
-
Documentation
|
|
9817
|
+
Documentation in v2.0.0-beta.1
|
|
9701
9818
|
</span>
|
|
9702
9819
|
</a>
|
|
9703
9820
|
|
|
9704
9821
|
</li>
|
|
9705
9822
|
|
|
9706
9823
|
<li class="md-nav__item">
|
|
9707
|
-
<a href="#
|
|
9824
|
+
<a href="#housekeeping-in-v200-beta1" class="md-nav__link">
|
|
9708
9825
|
<span class="md-ellipsis">
|
|
9709
|
-
Housekeeping
|
|
9826
|
+
Housekeeping in v2.0.0-beta.1
|
|
9710
9827
|
</span>
|
|
9711
9828
|
</a>
|
|
9712
9829
|
|
|
@@ -9728,45 +9845,45 @@
|
|
|
9728
9845
|
<ul class="md-nav__list">
|
|
9729
9846
|
|
|
9730
9847
|
<li class="md-nav__item">
|
|
9731
|
-
<a href="#
|
|
9848
|
+
<a href="#added-in-v200-alpha3" class="md-nav__link">
|
|
9732
9849
|
<span class="md-ellipsis">
|
|
9733
|
-
Added
|
|
9850
|
+
Added in v2.0.0-alpha.3
|
|
9734
9851
|
</span>
|
|
9735
9852
|
</a>
|
|
9736
9853
|
|
|
9737
9854
|
</li>
|
|
9738
9855
|
|
|
9739
9856
|
<li class="md-nav__item">
|
|
9740
|
-
<a href="#
|
|
9857
|
+
<a href="#changed-in-v200-alpha3" class="md-nav__link">
|
|
9741
9858
|
<span class="md-ellipsis">
|
|
9742
|
-
Changed
|
|
9859
|
+
Changed in v2.0.0-alpha.3
|
|
9743
9860
|
</span>
|
|
9744
9861
|
</a>
|
|
9745
9862
|
|
|
9746
9863
|
</li>
|
|
9747
9864
|
|
|
9748
9865
|
<li class="md-nav__item">
|
|
9749
|
-
<a href="#
|
|
9866
|
+
<a href="#removed-in-v200-alpha3" class="md-nav__link">
|
|
9750
9867
|
<span class="md-ellipsis">
|
|
9751
|
-
Removed
|
|
9868
|
+
Removed in v2.0.0-alpha.3
|
|
9752
9869
|
</span>
|
|
9753
9870
|
</a>
|
|
9754
9871
|
|
|
9755
9872
|
</li>
|
|
9756
9873
|
|
|
9757
9874
|
<li class="md-nav__item">
|
|
9758
|
-
<a href="#
|
|
9875
|
+
<a href="#dependencies-in-v200-alpha3" class="md-nav__link">
|
|
9759
9876
|
<span class="md-ellipsis">
|
|
9760
|
-
Dependencies
|
|
9877
|
+
Dependencies in v2.0.0-alpha.3
|
|
9761
9878
|
</span>
|
|
9762
9879
|
</a>
|
|
9763
9880
|
|
|
9764
9881
|
</li>
|
|
9765
9882
|
|
|
9766
9883
|
<li class="md-nav__item">
|
|
9767
|
-
<a href="#
|
|
9884
|
+
<a href="#housekeeping-in-v200-alpha3" class="md-nav__link">
|
|
9768
9885
|
<span class="md-ellipsis">
|
|
9769
|
-
Housekeeping
|
|
9886
|
+
Housekeeping in v2.0.0-alpha.3
|
|
9770
9887
|
</span>
|
|
9771
9888
|
</a>
|
|
9772
9889
|
|
|
@@ -9788,54 +9905,54 @@
|
|
|
9788
9905
|
<ul class="md-nav__list">
|
|
9789
9906
|
|
|
9790
9907
|
<li class="md-nav__item">
|
|
9791
|
-
<a href="#
|
|
9908
|
+
<a href="#added-in-v200-alpha2" class="md-nav__link">
|
|
9792
9909
|
<span class="md-ellipsis">
|
|
9793
|
-
Added
|
|
9910
|
+
Added in v2.0.0-alpha.2
|
|
9794
9911
|
</span>
|
|
9795
9912
|
</a>
|
|
9796
9913
|
|
|
9797
9914
|
</li>
|
|
9798
9915
|
|
|
9799
9916
|
<li class="md-nav__item">
|
|
9800
|
-
<a href="#
|
|
9917
|
+
<a href="#changed-in-v200-alpha2" class="md-nav__link">
|
|
9801
9918
|
<span class="md-ellipsis">
|
|
9802
|
-
Changed
|
|
9919
|
+
Changed in v2.0.0-alpha.2
|
|
9803
9920
|
</span>
|
|
9804
9921
|
</a>
|
|
9805
9922
|
|
|
9806
9923
|
</li>
|
|
9807
9924
|
|
|
9808
9925
|
<li class="md-nav__item">
|
|
9809
|
-
<a href="#
|
|
9926
|
+
<a href="#removed-in-v200-alpha2" class="md-nav__link">
|
|
9810
9927
|
<span class="md-ellipsis">
|
|
9811
|
-
Removed
|
|
9928
|
+
Removed in v2.0.0-alpha.2
|
|
9812
9929
|
</span>
|
|
9813
9930
|
</a>
|
|
9814
9931
|
|
|
9815
9932
|
</li>
|
|
9816
9933
|
|
|
9817
9934
|
<li class="md-nav__item">
|
|
9818
|
-
<a href="#
|
|
9935
|
+
<a href="#fixed-in-v200-alpha2" class="md-nav__link">
|
|
9819
9936
|
<span class="md-ellipsis">
|
|
9820
|
-
Fixed
|
|
9937
|
+
Fixed in v2.0.0-alpha.2
|
|
9821
9938
|
</span>
|
|
9822
9939
|
</a>
|
|
9823
9940
|
|
|
9824
9941
|
</li>
|
|
9825
9942
|
|
|
9826
9943
|
<li class="md-nav__item">
|
|
9827
|
-
<a href="#
|
|
9944
|
+
<a href="#dependencies-in-v200-alpha2" class="md-nav__link">
|
|
9828
9945
|
<span class="md-ellipsis">
|
|
9829
|
-
Dependencies
|
|
9946
|
+
Dependencies in v2.0.0-alpha.2
|
|
9830
9947
|
</span>
|
|
9831
9948
|
</a>
|
|
9832
9949
|
|
|
9833
9950
|
</li>
|
|
9834
9951
|
|
|
9835
9952
|
<li class="md-nav__item">
|
|
9836
|
-
<a href="#
|
|
9953
|
+
<a href="#housekeeping-in-v200-alpha2" class="md-nav__link">
|
|
9837
9954
|
<span class="md-ellipsis">
|
|
9838
|
-
Housekeeping
|
|
9955
|
+
Housekeeping in v2.0.0-alpha.2
|
|
9839
9956
|
</span>
|
|
9840
9957
|
</a>
|
|
9841
9958
|
|
|
@@ -9857,63 +9974,63 @@
|
|
|
9857
9974
|
<ul class="md-nav__list">
|
|
9858
9975
|
|
|
9859
9976
|
<li class="md-nav__item">
|
|
9860
|
-
<a href="#
|
|
9977
|
+
<a href="#added-in-v200-alpha1" class="md-nav__link">
|
|
9861
9978
|
<span class="md-ellipsis">
|
|
9862
|
-
Added
|
|
9979
|
+
Added in v2.0.0-alpha.1
|
|
9863
9980
|
</span>
|
|
9864
9981
|
</a>
|
|
9865
9982
|
|
|
9866
9983
|
</li>
|
|
9867
9984
|
|
|
9868
9985
|
<li class="md-nav__item">
|
|
9869
|
-
<a href="#
|
|
9986
|
+
<a href="#changed-in-v200-alpha1" class="md-nav__link">
|
|
9870
9987
|
<span class="md-ellipsis">
|
|
9871
|
-
Changed
|
|
9988
|
+
Changed in v2.0.0-alpha.1
|
|
9872
9989
|
</span>
|
|
9873
9990
|
</a>
|
|
9874
9991
|
|
|
9875
9992
|
</li>
|
|
9876
9993
|
|
|
9877
9994
|
<li class="md-nav__item">
|
|
9878
|
-
<a href="#
|
|
9995
|
+
<a href="#removed-in-v200-alpha1" class="md-nav__link">
|
|
9879
9996
|
<span class="md-ellipsis">
|
|
9880
|
-
Removed
|
|
9997
|
+
Removed in v2.0.0-alpha.1
|
|
9881
9998
|
</span>
|
|
9882
9999
|
</a>
|
|
9883
10000
|
|
|
9884
10001
|
</li>
|
|
9885
10002
|
|
|
9886
10003
|
<li class="md-nav__item">
|
|
9887
|
-
<a href="#
|
|
10004
|
+
<a href="#fixed-in-v200-alpha1" class="md-nav__link">
|
|
9888
10005
|
<span class="md-ellipsis">
|
|
9889
|
-
Fixed
|
|
10006
|
+
Fixed in v2.0.0-alpha.1
|
|
9890
10007
|
</span>
|
|
9891
10008
|
</a>
|
|
9892
10009
|
|
|
9893
10010
|
</li>
|
|
9894
10011
|
|
|
9895
10012
|
<li class="md-nav__item">
|
|
9896
|
-
<a href="#
|
|
10013
|
+
<a href="#dependencies-in-v200-alpha1" class="md-nav__link">
|
|
9897
10014
|
<span class="md-ellipsis">
|
|
9898
|
-
Dependencies
|
|
10015
|
+
Dependencies in v2.0.0-alpha.1
|
|
9899
10016
|
</span>
|
|
9900
10017
|
</a>
|
|
9901
10018
|
|
|
9902
10019
|
</li>
|
|
9903
10020
|
|
|
9904
10021
|
<li class="md-nav__item">
|
|
9905
|
-
<a href="#
|
|
10022
|
+
<a href="#documentation-in-v200-alpha1" class="md-nav__link">
|
|
9906
10023
|
<span class="md-ellipsis">
|
|
9907
|
-
Documentation
|
|
10024
|
+
Documentation in v2.0.0-alpha.1
|
|
9908
10025
|
</span>
|
|
9909
10026
|
</a>
|
|
9910
10027
|
|
|
9911
10028
|
</li>
|
|
9912
10029
|
|
|
9913
10030
|
<li class="md-nav__item">
|
|
9914
|
-
<a href="#
|
|
10031
|
+
<a href="#housekeeping-in-v200-alpha1" class="md-nav__link">
|
|
9915
10032
|
<span class="md-ellipsis">
|
|
9916
|
-
Housekeeping
|
|
10033
|
+
Housekeeping in v2.0.0-alpha.1
|
|
9917
10034
|
</span>
|
|
9918
10035
|
</a>
|
|
9919
10036
|
|
|
@@ -10619,9 +10736,9 @@
|
|
|
10619
10736
|
</li>
|
|
10620
10737
|
|
|
10621
10738
|
<li class="md-nav__item">
|
|
10622
|
-
<a href="#generic-role-model-
|
|
10739
|
+
<a href="#migration-to-generic-role-model-1063" class="md-nav__link">
|
|
10623
10740
|
<span class="md-ellipsis">
|
|
10624
|
-
Generic Role Model (#1063)
|
|
10741
|
+
Migration to Generic Role Model (#1063)
|
|
10625
10742
|
</span>
|
|
10626
10743
|
</a>
|
|
10627
10744
|
|
|
@@ -10780,72 +10897,72 @@
|
|
|
10780
10897
|
<ul class="md-nav__list">
|
|
10781
10898
|
|
|
10782
10899
|
<li class="md-nav__item">
|
|
10783
|
-
<a href="#security" class="md-nav__link">
|
|
10900
|
+
<a href="#security-in-v206" class="md-nav__link">
|
|
10784
10901
|
<span class="md-ellipsis">
|
|
10785
|
-
Security
|
|
10902
|
+
Security in v2.0.6
|
|
10786
10903
|
</span>
|
|
10787
10904
|
</a>
|
|
10788
10905
|
|
|
10789
10906
|
</li>
|
|
10790
10907
|
|
|
10791
10908
|
<li class="md-nav__item">
|
|
10792
|
-
<a href="#
|
|
10909
|
+
<a href="#added-in-v206" class="md-nav__link">
|
|
10793
10910
|
<span class="md-ellipsis">
|
|
10794
|
-
Added
|
|
10911
|
+
Added in v2.0.6
|
|
10795
10912
|
</span>
|
|
10796
10913
|
</a>
|
|
10797
10914
|
|
|
10798
10915
|
</li>
|
|
10799
10916
|
|
|
10800
10917
|
<li class="md-nav__item">
|
|
10801
|
-
<a href="#
|
|
10918
|
+
<a href="#changed-in-v206" class="md-nav__link">
|
|
10802
10919
|
<span class="md-ellipsis">
|
|
10803
|
-
Changed
|
|
10920
|
+
Changed in v2.0.6
|
|
10804
10921
|
</span>
|
|
10805
10922
|
</a>
|
|
10806
10923
|
|
|
10807
10924
|
</li>
|
|
10808
10925
|
|
|
10809
10926
|
<li class="md-nav__item">
|
|
10810
|
-
<a href="#
|
|
10927
|
+
<a href="#removed-in-v206" class="md-nav__link">
|
|
10811
10928
|
<span class="md-ellipsis">
|
|
10812
|
-
Removed
|
|
10929
|
+
Removed in v2.0.6
|
|
10813
10930
|
</span>
|
|
10814
10931
|
</a>
|
|
10815
10932
|
|
|
10816
10933
|
</li>
|
|
10817
10934
|
|
|
10818
10935
|
<li class="md-nav__item">
|
|
10819
|
-
<a href="#fixed" class="md-nav__link">
|
|
10936
|
+
<a href="#fixed-in-v206" class="md-nav__link">
|
|
10820
10937
|
<span class="md-ellipsis">
|
|
10821
|
-
Fixed
|
|
10938
|
+
Fixed in v2.0.6
|
|
10822
10939
|
</span>
|
|
10823
10940
|
</a>
|
|
10824
10941
|
|
|
10825
10942
|
</li>
|
|
10826
10943
|
|
|
10827
10944
|
<li class="md-nav__item">
|
|
10828
|
-
<a href="#dependencies" class="md-nav__link">
|
|
10945
|
+
<a href="#dependencies-in-v206" class="md-nav__link">
|
|
10829
10946
|
<span class="md-ellipsis">
|
|
10830
|
-
Dependencies
|
|
10947
|
+
Dependencies in v2.0.6
|
|
10831
10948
|
</span>
|
|
10832
10949
|
</a>
|
|
10833
10950
|
|
|
10834
10951
|
</li>
|
|
10835
10952
|
|
|
10836
10953
|
<li class="md-nav__item">
|
|
10837
|
-
<a href="#documentation" class="md-nav__link">
|
|
10954
|
+
<a href="#documentation-in-v206" class="md-nav__link">
|
|
10838
10955
|
<span class="md-ellipsis">
|
|
10839
|
-
Documentation
|
|
10956
|
+
Documentation in v2.0.6
|
|
10840
10957
|
</span>
|
|
10841
10958
|
</a>
|
|
10842
10959
|
|
|
10843
10960
|
</li>
|
|
10844
10961
|
|
|
10845
10962
|
<li class="md-nav__item">
|
|
10846
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
10963
|
+
<a href="#housekeeping-in-v206" class="md-nav__link">
|
|
10847
10964
|
<span class="md-ellipsis">
|
|
10848
|
-
Housekeeping
|
|
10965
|
+
Housekeeping in v2.0.6
|
|
10849
10966
|
</span>
|
|
10850
10967
|
</a>
|
|
10851
10968
|
|
|
@@ -10867,54 +10984,54 @@
|
|
|
10867
10984
|
<ul class="md-nav__list">
|
|
10868
10985
|
|
|
10869
10986
|
<li class="md-nav__item">
|
|
10870
|
-
<a href="#
|
|
10987
|
+
<a href="#security-in-v205" class="md-nav__link">
|
|
10871
10988
|
<span class="md-ellipsis">
|
|
10872
|
-
Security
|
|
10989
|
+
Security in v2.0.5
|
|
10873
10990
|
</span>
|
|
10874
10991
|
</a>
|
|
10875
10992
|
|
|
10876
10993
|
</li>
|
|
10877
10994
|
|
|
10878
10995
|
<li class="md-nav__item">
|
|
10879
|
-
<a href="#
|
|
10996
|
+
<a href="#changed-in-v205" class="md-nav__link">
|
|
10880
10997
|
<span class="md-ellipsis">
|
|
10881
|
-
Changed
|
|
10998
|
+
Changed in v2.0.5
|
|
10882
10999
|
</span>
|
|
10883
11000
|
</a>
|
|
10884
11001
|
|
|
10885
11002
|
</li>
|
|
10886
11003
|
|
|
10887
11004
|
<li class="md-nav__item">
|
|
10888
|
-
<a href="#
|
|
11005
|
+
<a href="#fixed-in-v205" class="md-nav__link">
|
|
10889
11006
|
<span class="md-ellipsis">
|
|
10890
|
-
Fixed
|
|
11007
|
+
Fixed in v2.0.5
|
|
10891
11008
|
</span>
|
|
10892
11009
|
</a>
|
|
10893
11010
|
|
|
10894
11011
|
</li>
|
|
10895
11012
|
|
|
10896
11013
|
<li class="md-nav__item">
|
|
10897
|
-
<a href="#
|
|
11014
|
+
<a href="#dependencies-in-v205" class="md-nav__link">
|
|
10898
11015
|
<span class="md-ellipsis">
|
|
10899
|
-
Dependencies
|
|
11016
|
+
Dependencies in v2.0.5
|
|
10900
11017
|
</span>
|
|
10901
11018
|
</a>
|
|
10902
11019
|
|
|
10903
11020
|
</li>
|
|
10904
11021
|
|
|
10905
11022
|
<li class="md-nav__item">
|
|
10906
|
-
<a href="#
|
|
11023
|
+
<a href="#documentation-in-v205" class="md-nav__link">
|
|
10907
11024
|
<span class="md-ellipsis">
|
|
10908
|
-
Documentation
|
|
11025
|
+
Documentation in v2.0.5
|
|
10909
11026
|
</span>
|
|
10910
11027
|
</a>
|
|
10911
11028
|
|
|
10912
11029
|
</li>
|
|
10913
11030
|
|
|
10914
11031
|
<li class="md-nav__item">
|
|
10915
|
-
<a href="#
|
|
11032
|
+
<a href="#housekeeping-in-v205" class="md-nav__link">
|
|
10916
11033
|
<span class="md-ellipsis">
|
|
10917
|
-
Housekeeping
|
|
11034
|
+
Housekeeping in v2.0.5
|
|
10918
11035
|
</span>
|
|
10919
11036
|
</a>
|
|
10920
11037
|
|
|
@@ -10936,54 +11053,54 @@
|
|
|
10936
11053
|
<ul class="md-nav__list">
|
|
10937
11054
|
|
|
10938
11055
|
<li class="md-nav__item">
|
|
10939
|
-
<a href="#
|
|
11056
|
+
<a href="#security-in-v204" class="md-nav__link">
|
|
10940
11057
|
<span class="md-ellipsis">
|
|
10941
|
-
Security
|
|
11058
|
+
Security in v2.0.4
|
|
10942
11059
|
</span>
|
|
10943
11060
|
</a>
|
|
10944
11061
|
|
|
10945
11062
|
</li>
|
|
10946
11063
|
|
|
10947
11064
|
<li class="md-nav__item">
|
|
10948
|
-
<a href="#
|
|
11065
|
+
<a href="#added-in-v204" class="md-nav__link">
|
|
10949
11066
|
<span class="md-ellipsis">
|
|
10950
|
-
Added
|
|
11067
|
+
Added in v2.0.4
|
|
10951
11068
|
</span>
|
|
10952
11069
|
</a>
|
|
10953
11070
|
|
|
10954
11071
|
</li>
|
|
10955
11072
|
|
|
10956
11073
|
<li class="md-nav__item">
|
|
10957
|
-
<a href="#
|
|
11074
|
+
<a href="#changed-in-v204" class="md-nav__link">
|
|
10958
11075
|
<span class="md-ellipsis">
|
|
10959
|
-
Changed
|
|
11076
|
+
Changed in v2.0.4
|
|
10960
11077
|
</span>
|
|
10961
11078
|
</a>
|
|
10962
11079
|
|
|
10963
11080
|
</li>
|
|
10964
11081
|
|
|
10965
11082
|
<li class="md-nav__item">
|
|
10966
|
-
<a href="#
|
|
11083
|
+
<a href="#fixed-in-v204" class="md-nav__link">
|
|
10967
11084
|
<span class="md-ellipsis">
|
|
10968
|
-
Fixed
|
|
11085
|
+
Fixed in v2.0.4
|
|
10969
11086
|
</span>
|
|
10970
11087
|
</a>
|
|
10971
11088
|
|
|
10972
11089
|
</li>
|
|
10973
11090
|
|
|
10974
11091
|
<li class="md-nav__item">
|
|
10975
|
-
<a href="#
|
|
11092
|
+
<a href="#documentation-in-v204" class="md-nav__link">
|
|
10976
11093
|
<span class="md-ellipsis">
|
|
10977
|
-
Documentation
|
|
11094
|
+
Documentation in v2.0.4
|
|
10978
11095
|
</span>
|
|
10979
11096
|
</a>
|
|
10980
11097
|
|
|
10981
11098
|
</li>
|
|
10982
11099
|
|
|
10983
11100
|
<li class="md-nav__item">
|
|
10984
|
-
<a href="#
|
|
11101
|
+
<a href="#housekeeping-in-v204" class="md-nav__link">
|
|
10985
11102
|
<span class="md-ellipsis">
|
|
10986
|
-
Housekeeping
|
|
11103
|
+
Housekeeping in v2.0.4
|
|
10987
11104
|
</span>
|
|
10988
11105
|
</a>
|
|
10989
11106
|
|
|
@@ -11005,54 +11122,54 @@
|
|
|
11005
11122
|
<ul class="md-nav__list">
|
|
11006
11123
|
|
|
11007
11124
|
<li class="md-nav__item">
|
|
11008
|
-
<a href="#
|
|
11125
|
+
<a href="#security-in-v203" class="md-nav__link">
|
|
11009
11126
|
<span class="md-ellipsis">
|
|
11010
|
-
Security
|
|
11127
|
+
Security in v2.0.3
|
|
11011
11128
|
</span>
|
|
11012
11129
|
</a>
|
|
11013
11130
|
|
|
11014
11131
|
</li>
|
|
11015
11132
|
|
|
11016
11133
|
<li class="md-nav__item">
|
|
11017
|
-
<a href="#
|
|
11134
|
+
<a href="#added-in-v203" class="md-nav__link">
|
|
11018
11135
|
<span class="md-ellipsis">
|
|
11019
|
-
Added
|
|
11136
|
+
Added in v2.0.3
|
|
11020
11137
|
</span>
|
|
11021
11138
|
</a>
|
|
11022
11139
|
|
|
11023
11140
|
</li>
|
|
11024
11141
|
|
|
11025
11142
|
<li class="md-nav__item">
|
|
11026
|
-
<a href="#
|
|
11143
|
+
<a href="#changed-in-v203" class="md-nav__link">
|
|
11027
11144
|
<span class="md-ellipsis">
|
|
11028
|
-
Changed
|
|
11145
|
+
Changed in v2.0.3
|
|
11029
11146
|
</span>
|
|
11030
11147
|
</a>
|
|
11031
11148
|
|
|
11032
11149
|
</li>
|
|
11033
11150
|
|
|
11034
11151
|
<li class="md-nav__item">
|
|
11035
|
-
<a href="#
|
|
11152
|
+
<a href="#fixed-in-v203" class="md-nav__link">
|
|
11036
11153
|
<span class="md-ellipsis">
|
|
11037
|
-
Fixed
|
|
11154
|
+
Fixed in v2.0.3
|
|
11038
11155
|
</span>
|
|
11039
11156
|
</a>
|
|
11040
11157
|
|
|
11041
11158
|
</li>
|
|
11042
11159
|
|
|
11043
11160
|
<li class="md-nav__item">
|
|
11044
|
-
<a href="#
|
|
11161
|
+
<a href="#documentation-in-v203" class="md-nav__link">
|
|
11045
11162
|
<span class="md-ellipsis">
|
|
11046
|
-
Documentation
|
|
11163
|
+
Documentation in v2.0.3
|
|
11047
11164
|
</span>
|
|
11048
11165
|
</a>
|
|
11049
11166
|
|
|
11050
11167
|
</li>
|
|
11051
11168
|
|
|
11052
11169
|
<li class="md-nav__item">
|
|
11053
|
-
<a href="#
|
|
11170
|
+
<a href="#housekeeping-in-v203" class="md-nav__link">
|
|
11054
11171
|
<span class="md-ellipsis">
|
|
11055
|
-
Housekeeping
|
|
11172
|
+
Housekeeping in v2.0.3
|
|
11056
11173
|
</span>
|
|
11057
11174
|
</a>
|
|
11058
11175
|
|
|
@@ -11074,54 +11191,54 @@
|
|
|
11074
11191
|
<ul class="md-nav__list">
|
|
11075
11192
|
|
|
11076
11193
|
<li class="md-nav__item">
|
|
11077
|
-
<a href="#
|
|
11194
|
+
<a href="#security-in-v202" class="md-nav__link">
|
|
11078
11195
|
<span class="md-ellipsis">
|
|
11079
|
-
Security
|
|
11196
|
+
Security in v2.0.2
|
|
11080
11197
|
</span>
|
|
11081
11198
|
</a>
|
|
11082
11199
|
|
|
11083
11200
|
</li>
|
|
11084
11201
|
|
|
11085
11202
|
<li class="md-nav__item">
|
|
11086
|
-
<a href="#
|
|
11203
|
+
<a href="#added-in-v202" class="md-nav__link">
|
|
11087
11204
|
<span class="md-ellipsis">
|
|
11088
|
-
Added
|
|
11205
|
+
Added in v2.0.2
|
|
11089
11206
|
</span>
|
|
11090
11207
|
</a>
|
|
11091
11208
|
|
|
11092
11209
|
</li>
|
|
11093
11210
|
|
|
11094
11211
|
<li class="md-nav__item">
|
|
11095
|
-
<a href="#
|
|
11212
|
+
<a href="#changed-in-v202" class="md-nav__link">
|
|
11096
11213
|
<span class="md-ellipsis">
|
|
11097
|
-
Changed
|
|
11214
|
+
Changed in v2.0.2
|
|
11098
11215
|
</span>
|
|
11099
11216
|
</a>
|
|
11100
11217
|
|
|
11101
11218
|
</li>
|
|
11102
11219
|
|
|
11103
11220
|
<li class="md-nav__item">
|
|
11104
|
-
<a href="#
|
|
11221
|
+
<a href="#fixed-in-v202" class="md-nav__link">
|
|
11105
11222
|
<span class="md-ellipsis">
|
|
11106
|
-
Fixed
|
|
11223
|
+
Fixed in v2.0.2
|
|
11107
11224
|
</span>
|
|
11108
11225
|
</a>
|
|
11109
11226
|
|
|
11110
11227
|
</li>
|
|
11111
11228
|
|
|
11112
11229
|
<li class="md-nav__item">
|
|
11113
|
-
<a href="#
|
|
11230
|
+
<a href="#documentation-in-v202" class="md-nav__link">
|
|
11114
11231
|
<span class="md-ellipsis">
|
|
11115
|
-
Documentation
|
|
11232
|
+
Documentation in v2.0.2
|
|
11116
11233
|
</span>
|
|
11117
11234
|
</a>
|
|
11118
11235
|
|
|
11119
11236
|
</li>
|
|
11120
11237
|
|
|
11121
11238
|
<li class="md-nav__item">
|
|
11122
|
-
<a href="#
|
|
11239
|
+
<a href="#housekeeping-in-v202" class="md-nav__link">
|
|
11123
11240
|
<span class="md-ellipsis">
|
|
11124
|
-
Housekeeping
|
|
11241
|
+
Housekeeping in v2.0.2
|
|
11125
11242
|
</span>
|
|
11126
11243
|
</a>
|
|
11127
11244
|
|
|
@@ -11143,18 +11260,18 @@
|
|
|
11143
11260
|
<ul class="md-nav__list">
|
|
11144
11261
|
|
|
11145
11262
|
<li class="md-nav__item">
|
|
11146
|
-
<a href="#
|
|
11263
|
+
<a href="#fixed-in-v201" class="md-nav__link">
|
|
11147
11264
|
<span class="md-ellipsis">
|
|
11148
|
-
Fixed
|
|
11265
|
+
Fixed in v2.0.1
|
|
11149
11266
|
</span>
|
|
11150
11267
|
</a>
|
|
11151
11268
|
|
|
11152
11269
|
</li>
|
|
11153
11270
|
|
|
11154
11271
|
<li class="md-nav__item">
|
|
11155
|
-
<a href="#
|
|
11272
|
+
<a href="#housekeeping-in-v201" class="md-nav__link">
|
|
11156
11273
|
<span class="md-ellipsis">
|
|
11157
|
-
Housekeeping
|
|
11274
|
+
Housekeeping in v2.0.1
|
|
11158
11275
|
</span>
|
|
11159
11276
|
</a>
|
|
11160
11277
|
|
|
@@ -11176,27 +11293,27 @@
|
|
|
11176
11293
|
<ul class="md-nav__list">
|
|
11177
11294
|
|
|
11178
11295
|
<li class="md-nav__item">
|
|
11179
|
-
<a href="#
|
|
11296
|
+
<a href="#added-in-v200" class="md-nav__link">
|
|
11180
11297
|
<span class="md-ellipsis">
|
|
11181
|
-
Added
|
|
11298
|
+
Added in v2.0.0
|
|
11182
11299
|
</span>
|
|
11183
11300
|
</a>
|
|
11184
11301
|
|
|
11185
11302
|
</li>
|
|
11186
11303
|
|
|
11187
11304
|
<li class="md-nav__item">
|
|
11188
|
-
<a href="#
|
|
11305
|
+
<a href="#fixed-in-v200" class="md-nav__link">
|
|
11189
11306
|
<span class="md-ellipsis">
|
|
11190
|
-
Fixed
|
|
11307
|
+
Fixed in v2.0.0
|
|
11191
11308
|
</span>
|
|
11192
11309
|
</a>
|
|
11193
11310
|
|
|
11194
11311
|
</li>
|
|
11195
11312
|
|
|
11196
11313
|
<li class="md-nav__item">
|
|
11197
|
-
<a href="#
|
|
11314
|
+
<a href="#documentation-in-v200" class="md-nav__link">
|
|
11198
11315
|
<span class="md-ellipsis">
|
|
11199
|
-
Documentation
|
|
11316
|
+
Documentation in v2.0.0
|
|
11200
11317
|
</span>
|
|
11201
11318
|
</a>
|
|
11202
11319
|
|
|
@@ -11218,72 +11335,72 @@
|
|
|
11218
11335
|
<ul class="md-nav__list">
|
|
11219
11336
|
|
|
11220
11337
|
<li class="md-nav__item">
|
|
11221
|
-
<a href="#
|
|
11338
|
+
<a href="#security-in-v200-rc4" class="md-nav__link">
|
|
11222
11339
|
<span class="md-ellipsis">
|
|
11223
|
-
Security
|
|
11340
|
+
Security in v2.0.0-rc.4
|
|
11224
11341
|
</span>
|
|
11225
11342
|
</a>
|
|
11226
11343
|
|
|
11227
11344
|
</li>
|
|
11228
11345
|
|
|
11229
11346
|
<li class="md-nav__item">
|
|
11230
|
-
<a href="#
|
|
11347
|
+
<a href="#added-in-v200-rc4" class="md-nav__link">
|
|
11231
11348
|
<span class="md-ellipsis">
|
|
11232
|
-
Added
|
|
11349
|
+
Added in v2.0.0-rc.4
|
|
11233
11350
|
</span>
|
|
11234
11351
|
</a>
|
|
11235
11352
|
|
|
11236
11353
|
</li>
|
|
11237
11354
|
|
|
11238
11355
|
<li class="md-nav__item">
|
|
11239
|
-
<a href="#
|
|
11356
|
+
<a href="#changed-in-v200-rc4" class="md-nav__link">
|
|
11240
11357
|
<span class="md-ellipsis">
|
|
11241
|
-
Changed
|
|
11358
|
+
Changed in v2.0.0-rc.4
|
|
11242
11359
|
</span>
|
|
11243
11360
|
</a>
|
|
11244
11361
|
|
|
11245
11362
|
</li>
|
|
11246
11363
|
|
|
11247
11364
|
<li class="md-nav__item">
|
|
11248
|
-
<a href="#
|
|
11365
|
+
<a href="#removed-in-v200-rc4" class="md-nav__link">
|
|
11249
11366
|
<span class="md-ellipsis">
|
|
11250
|
-
Removed
|
|
11367
|
+
Removed in v2.0.0-rc.4
|
|
11251
11368
|
</span>
|
|
11252
11369
|
</a>
|
|
11253
11370
|
|
|
11254
11371
|
</li>
|
|
11255
11372
|
|
|
11256
11373
|
<li class="md-nav__item">
|
|
11257
|
-
<a href="#
|
|
11374
|
+
<a href="#fixed-in-v200-rc4" class="md-nav__link">
|
|
11258
11375
|
<span class="md-ellipsis">
|
|
11259
|
-
Fixed
|
|
11376
|
+
Fixed in v2.0.0-rc.4
|
|
11260
11377
|
</span>
|
|
11261
11378
|
</a>
|
|
11262
11379
|
|
|
11263
11380
|
</li>
|
|
11264
11381
|
|
|
11265
11382
|
<li class="md-nav__item">
|
|
11266
|
-
<a href="#
|
|
11383
|
+
<a href="#dependencies-in-v200-rc4" class="md-nav__link">
|
|
11267
11384
|
<span class="md-ellipsis">
|
|
11268
|
-
Dependencies
|
|
11385
|
+
Dependencies in v2.0.0-rc.4
|
|
11269
11386
|
</span>
|
|
11270
11387
|
</a>
|
|
11271
11388
|
|
|
11272
11389
|
</li>
|
|
11273
11390
|
|
|
11274
11391
|
<li class="md-nav__item">
|
|
11275
|
-
<a href="#
|
|
11392
|
+
<a href="#documentation-in-v200-rc4" class="md-nav__link">
|
|
11276
11393
|
<span class="md-ellipsis">
|
|
11277
|
-
Documentation
|
|
11394
|
+
Documentation in v2.0.0-rc.4
|
|
11278
11395
|
</span>
|
|
11279
11396
|
</a>
|
|
11280
11397
|
|
|
11281
11398
|
</li>
|
|
11282
11399
|
|
|
11283
11400
|
<li class="md-nav__item">
|
|
11284
|
-
<a href="#
|
|
11401
|
+
<a href="#housekeeping-in-v200-rc4" class="md-nav__link">
|
|
11285
11402
|
<span class="md-ellipsis">
|
|
11286
|
-
Housekeeping
|
|
11403
|
+
Housekeeping in v2.0.0-rc.4
|
|
11287
11404
|
</span>
|
|
11288
11405
|
</a>
|
|
11289
11406
|
|
|
@@ -11305,63 +11422,63 @@
|
|
|
11305
11422
|
<ul class="md-nav__list">
|
|
11306
11423
|
|
|
11307
11424
|
<li class="md-nav__item">
|
|
11308
|
-
<a href="#
|
|
11425
|
+
<a href="#security-in-v200-rc3" class="md-nav__link">
|
|
11309
11426
|
<span class="md-ellipsis">
|
|
11310
|
-
Security
|
|
11427
|
+
Security in v2.0.0-rc.3
|
|
11311
11428
|
</span>
|
|
11312
11429
|
</a>
|
|
11313
11430
|
|
|
11314
11431
|
</li>
|
|
11315
11432
|
|
|
11316
11433
|
<li class="md-nav__item">
|
|
11317
|
-
<a href="#
|
|
11434
|
+
<a href="#added-in-v200-rc3" class="md-nav__link">
|
|
11318
11435
|
<span class="md-ellipsis">
|
|
11319
|
-
Added
|
|
11436
|
+
Added in v2.0.0-rc.3
|
|
11320
11437
|
</span>
|
|
11321
11438
|
</a>
|
|
11322
11439
|
|
|
11323
11440
|
</li>
|
|
11324
11441
|
|
|
11325
11442
|
<li class="md-nav__item">
|
|
11326
|
-
<a href="#
|
|
11443
|
+
<a href="#changed-in-v200-rc3" class="md-nav__link">
|
|
11327
11444
|
<span class="md-ellipsis">
|
|
11328
|
-
Changed
|
|
11445
|
+
Changed in v2.0.0-rc.3
|
|
11329
11446
|
</span>
|
|
11330
11447
|
</a>
|
|
11331
11448
|
|
|
11332
11449
|
</li>
|
|
11333
11450
|
|
|
11334
11451
|
<li class="md-nav__item">
|
|
11335
|
-
<a href="#
|
|
11452
|
+
<a href="#removed-in-v200-rc3" class="md-nav__link">
|
|
11336
11453
|
<span class="md-ellipsis">
|
|
11337
|
-
Removed
|
|
11454
|
+
Removed in v2.0.0-rc.3
|
|
11338
11455
|
</span>
|
|
11339
11456
|
</a>
|
|
11340
11457
|
|
|
11341
11458
|
</li>
|
|
11342
11459
|
|
|
11343
11460
|
<li class="md-nav__item">
|
|
11344
|
-
<a href="#
|
|
11461
|
+
<a href="#fixed-in-v200-rc3" class="md-nav__link">
|
|
11345
11462
|
<span class="md-ellipsis">
|
|
11346
|
-
Fixed
|
|
11463
|
+
Fixed in v2.0.0-rc.3
|
|
11347
11464
|
</span>
|
|
11348
11465
|
</a>
|
|
11349
11466
|
|
|
11350
11467
|
</li>
|
|
11351
11468
|
|
|
11352
11469
|
<li class="md-nav__item">
|
|
11353
|
-
<a href="#
|
|
11470
|
+
<a href="#documentation-in-v200-rc3" class="md-nav__link">
|
|
11354
11471
|
<span class="md-ellipsis">
|
|
11355
|
-
Documentation
|
|
11472
|
+
Documentation in v2.0.0-rc.3
|
|
11356
11473
|
</span>
|
|
11357
11474
|
</a>
|
|
11358
11475
|
|
|
11359
11476
|
</li>
|
|
11360
11477
|
|
|
11361
11478
|
<li class="md-nav__item">
|
|
11362
|
-
<a href="#
|
|
11479
|
+
<a href="#housekeeping-in-v200-rc3" class="md-nav__link">
|
|
11363
11480
|
<span class="md-ellipsis">
|
|
11364
|
-
Housekeeping
|
|
11481
|
+
Housekeeping in v2.0.0-rc.3
|
|
11365
11482
|
</span>
|
|
11366
11483
|
</a>
|
|
11367
11484
|
|
|
@@ -11383,36 +11500,36 @@
|
|
|
11383
11500
|
<ul class="md-nav__list">
|
|
11384
11501
|
|
|
11385
11502
|
<li class="md-nav__item">
|
|
11386
|
-
<a href="#
|
|
11503
|
+
<a href="#added-in-v200rc-2" class="md-nav__link">
|
|
11387
11504
|
<span class="md-ellipsis">
|
|
11388
|
-
Added
|
|
11505
|
+
Added in v2.0.0.rc-2
|
|
11389
11506
|
</span>
|
|
11390
11507
|
</a>
|
|
11391
11508
|
|
|
11392
11509
|
</li>
|
|
11393
11510
|
|
|
11394
11511
|
<li class="md-nav__item">
|
|
11395
|
-
<a href="#
|
|
11512
|
+
<a href="#changed-in-v200rc-2" class="md-nav__link">
|
|
11396
11513
|
<span class="md-ellipsis">
|
|
11397
|
-
Changed
|
|
11514
|
+
Changed in v2.0.0.rc-2
|
|
11398
11515
|
</span>
|
|
11399
11516
|
</a>
|
|
11400
11517
|
|
|
11401
11518
|
</li>
|
|
11402
11519
|
|
|
11403
11520
|
<li class="md-nav__item">
|
|
11404
|
-
<a href="#
|
|
11521
|
+
<a href="#removed-in-v200rc-2" class="md-nav__link">
|
|
11405
11522
|
<span class="md-ellipsis">
|
|
11406
|
-
Removed
|
|
11523
|
+
Removed in v2.0.0.rc-2
|
|
11407
11524
|
</span>
|
|
11408
11525
|
</a>
|
|
11409
11526
|
|
|
11410
11527
|
</li>
|
|
11411
11528
|
|
|
11412
11529
|
<li class="md-nav__item">
|
|
11413
|
-
<a href="#
|
|
11530
|
+
<a href="#fixed-in-v200rc-2" class="md-nav__link">
|
|
11414
11531
|
<span class="md-ellipsis">
|
|
11415
|
-
Fixed
|
|
11532
|
+
Fixed in v2.0.0.rc-2
|
|
11416
11533
|
</span>
|
|
11417
11534
|
</a>
|
|
11418
11535
|
|
|
@@ -11434,63 +11551,63 @@
|
|
|
11434
11551
|
<ul class="md-nav__list">
|
|
11435
11552
|
|
|
11436
11553
|
<li class="md-nav__item">
|
|
11437
|
-
<a href="#
|
|
11554
|
+
<a href="#added-in-v200rc1" class="md-nav__link">
|
|
11438
11555
|
<span class="md-ellipsis">
|
|
11439
|
-
Added
|
|
11556
|
+
Added in v2.0.0rc1
|
|
11440
11557
|
</span>
|
|
11441
11558
|
</a>
|
|
11442
11559
|
|
|
11443
11560
|
</li>
|
|
11444
11561
|
|
|
11445
11562
|
<li class="md-nav__item">
|
|
11446
|
-
<a href="#
|
|
11563
|
+
<a href="#changed-in-v200rc1" class="md-nav__link">
|
|
11447
11564
|
<span class="md-ellipsis">
|
|
11448
|
-
Changed
|
|
11565
|
+
Changed in v2.0.0rc1
|
|
11449
11566
|
</span>
|
|
11450
11567
|
</a>
|
|
11451
11568
|
|
|
11452
11569
|
</li>
|
|
11453
11570
|
|
|
11454
11571
|
<li class="md-nav__item">
|
|
11455
|
-
<a href="#
|
|
11572
|
+
<a href="#removed-in-v200rc1" class="md-nav__link">
|
|
11456
11573
|
<span class="md-ellipsis">
|
|
11457
|
-
Removed
|
|
11574
|
+
Removed in v2.0.0rc1
|
|
11458
11575
|
</span>
|
|
11459
11576
|
</a>
|
|
11460
11577
|
|
|
11461
11578
|
</li>
|
|
11462
11579
|
|
|
11463
11580
|
<li class="md-nav__item">
|
|
11464
|
-
<a href="#
|
|
11581
|
+
<a href="#fixed-in-v200rc1" class="md-nav__link">
|
|
11465
11582
|
<span class="md-ellipsis">
|
|
11466
|
-
Fixed
|
|
11583
|
+
Fixed in v2.0.0rc1
|
|
11467
11584
|
</span>
|
|
11468
11585
|
</a>
|
|
11469
11586
|
|
|
11470
11587
|
</li>
|
|
11471
11588
|
|
|
11472
11589
|
<li class="md-nav__item">
|
|
11473
|
-
<a href="#
|
|
11590
|
+
<a href="#dependencies-in-v200rc1" class="md-nav__link">
|
|
11474
11591
|
<span class="md-ellipsis">
|
|
11475
|
-
Dependencies
|
|
11592
|
+
Dependencies in v2.0.0rc1
|
|
11476
11593
|
</span>
|
|
11477
11594
|
</a>
|
|
11478
11595
|
|
|
11479
11596
|
</li>
|
|
11480
11597
|
|
|
11481
11598
|
<li class="md-nav__item">
|
|
11482
|
-
<a href="#
|
|
11599
|
+
<a href="#documentation-in-v200rc1" class="md-nav__link">
|
|
11483
11600
|
<span class="md-ellipsis">
|
|
11484
|
-
Documentation
|
|
11601
|
+
Documentation in v2.0.0rc1
|
|
11485
11602
|
</span>
|
|
11486
11603
|
</a>
|
|
11487
11604
|
|
|
11488
11605
|
</li>
|
|
11489
11606
|
|
|
11490
11607
|
<li class="md-nav__item">
|
|
11491
|
-
<a href="#
|
|
11608
|
+
<a href="#housekeeping-in-v200rc1" class="md-nav__link">
|
|
11492
11609
|
<span class="md-ellipsis">
|
|
11493
|
-
Housekeeping
|
|
11610
|
+
Housekeeping in v2.0.0rc1
|
|
11494
11611
|
</span>
|
|
11495
11612
|
</a>
|
|
11496
11613
|
|
|
@@ -11512,63 +11629,63 @@
|
|
|
11512
11629
|
<ul class="md-nav__list">
|
|
11513
11630
|
|
|
11514
11631
|
<li class="md-nav__item">
|
|
11515
|
-
<a href="#
|
|
11632
|
+
<a href="#added-in-v200-beta2" class="md-nav__link">
|
|
11516
11633
|
<span class="md-ellipsis">
|
|
11517
|
-
Added
|
|
11634
|
+
Added in v2.0.0-beta.2
|
|
11518
11635
|
</span>
|
|
11519
11636
|
</a>
|
|
11520
11637
|
|
|
11521
11638
|
</li>
|
|
11522
11639
|
|
|
11523
11640
|
<li class="md-nav__item">
|
|
11524
|
-
<a href="#
|
|
11641
|
+
<a href="#changed-in-v200-beta2" class="md-nav__link">
|
|
11525
11642
|
<span class="md-ellipsis">
|
|
11526
|
-
Changed
|
|
11643
|
+
Changed in v2.0.0-beta.2
|
|
11527
11644
|
</span>
|
|
11528
11645
|
</a>
|
|
11529
11646
|
|
|
11530
11647
|
</li>
|
|
11531
11648
|
|
|
11532
11649
|
<li class="md-nav__item">
|
|
11533
|
-
<a href="#
|
|
11650
|
+
<a href="#removed-in-v200-beta2" class="md-nav__link">
|
|
11534
11651
|
<span class="md-ellipsis">
|
|
11535
|
-
Removed
|
|
11652
|
+
Removed in v2.0.0-beta.2
|
|
11536
11653
|
</span>
|
|
11537
11654
|
</a>
|
|
11538
11655
|
|
|
11539
11656
|
</li>
|
|
11540
11657
|
|
|
11541
11658
|
<li class="md-nav__item">
|
|
11542
|
-
<a href="#
|
|
11659
|
+
<a href="#fixed-in-v200-beta2" class="md-nav__link">
|
|
11543
11660
|
<span class="md-ellipsis">
|
|
11544
|
-
Fixed
|
|
11661
|
+
Fixed in v2.0.0-beta.2
|
|
11545
11662
|
</span>
|
|
11546
11663
|
</a>
|
|
11547
11664
|
|
|
11548
11665
|
</li>
|
|
11549
11666
|
|
|
11550
11667
|
<li class="md-nav__item">
|
|
11551
|
-
<a href="#
|
|
11668
|
+
<a href="#dependencies-in-v200-beta2" class="md-nav__link">
|
|
11552
11669
|
<span class="md-ellipsis">
|
|
11553
|
-
Dependencies
|
|
11670
|
+
Dependencies in v2.0.0-beta.2
|
|
11554
11671
|
</span>
|
|
11555
11672
|
</a>
|
|
11556
11673
|
|
|
11557
11674
|
</li>
|
|
11558
11675
|
|
|
11559
11676
|
<li class="md-nav__item">
|
|
11560
|
-
<a href="#
|
|
11677
|
+
<a href="#documentation-in-v200-beta2" class="md-nav__link">
|
|
11561
11678
|
<span class="md-ellipsis">
|
|
11562
|
-
Documentation
|
|
11679
|
+
Documentation in v2.0.0-beta.2
|
|
11563
11680
|
</span>
|
|
11564
11681
|
</a>
|
|
11565
11682
|
|
|
11566
11683
|
</li>
|
|
11567
11684
|
|
|
11568
11685
|
<li class="md-nav__item">
|
|
11569
|
-
<a href="#
|
|
11686
|
+
<a href="#housekeeping-in-v200-beta2" class="md-nav__link">
|
|
11570
11687
|
<span class="md-ellipsis">
|
|
11571
|
-
Housekeeping
|
|
11688
|
+
Housekeeping in v2.0.0-beta.2
|
|
11572
11689
|
</span>
|
|
11573
11690
|
</a>
|
|
11574
11691
|
|
|
@@ -11590,63 +11707,63 @@
|
|
|
11590
11707
|
<ul class="md-nav__list">
|
|
11591
11708
|
|
|
11592
11709
|
<li class="md-nav__item">
|
|
11593
|
-
<a href="#
|
|
11710
|
+
<a href="#added-in-v200-beta1" class="md-nav__link">
|
|
11594
11711
|
<span class="md-ellipsis">
|
|
11595
|
-
Added
|
|
11712
|
+
Added in v2.0.0-beta.1
|
|
11596
11713
|
</span>
|
|
11597
11714
|
</a>
|
|
11598
11715
|
|
|
11599
11716
|
</li>
|
|
11600
11717
|
|
|
11601
11718
|
<li class="md-nav__item">
|
|
11602
|
-
<a href="#
|
|
11719
|
+
<a href="#changed-in-v200-beta1" class="md-nav__link">
|
|
11603
11720
|
<span class="md-ellipsis">
|
|
11604
|
-
Changed
|
|
11721
|
+
Changed in v2.0.0-beta.1
|
|
11605
11722
|
</span>
|
|
11606
11723
|
</a>
|
|
11607
11724
|
|
|
11608
11725
|
</li>
|
|
11609
11726
|
|
|
11610
11727
|
<li class="md-nav__item">
|
|
11611
|
-
<a href="#
|
|
11728
|
+
<a href="#removed-in-v200-beta1" class="md-nav__link">
|
|
11612
11729
|
<span class="md-ellipsis">
|
|
11613
|
-
Removed
|
|
11730
|
+
Removed in v2.0.0-beta.1
|
|
11614
11731
|
</span>
|
|
11615
11732
|
</a>
|
|
11616
11733
|
|
|
11617
11734
|
</li>
|
|
11618
11735
|
|
|
11619
11736
|
<li class="md-nav__item">
|
|
11620
|
-
<a href="#
|
|
11737
|
+
<a href="#fixed-in-v200-beta1" class="md-nav__link">
|
|
11621
11738
|
<span class="md-ellipsis">
|
|
11622
|
-
Fixed
|
|
11739
|
+
Fixed in v2.0.0-beta.1
|
|
11623
11740
|
</span>
|
|
11624
11741
|
</a>
|
|
11625
11742
|
|
|
11626
11743
|
</li>
|
|
11627
11744
|
|
|
11628
11745
|
<li class="md-nav__item">
|
|
11629
|
-
<a href="#
|
|
11746
|
+
<a href="#dependencies-in-v200-beta1" class="md-nav__link">
|
|
11630
11747
|
<span class="md-ellipsis">
|
|
11631
|
-
Dependencies
|
|
11748
|
+
Dependencies in v2.0.0-beta.1
|
|
11632
11749
|
</span>
|
|
11633
11750
|
</a>
|
|
11634
11751
|
|
|
11635
11752
|
</li>
|
|
11636
11753
|
|
|
11637
11754
|
<li class="md-nav__item">
|
|
11638
|
-
<a href="#
|
|
11755
|
+
<a href="#documentation-in-v200-beta1" class="md-nav__link">
|
|
11639
11756
|
<span class="md-ellipsis">
|
|
11640
|
-
Documentation
|
|
11757
|
+
Documentation in v2.0.0-beta.1
|
|
11641
11758
|
</span>
|
|
11642
11759
|
</a>
|
|
11643
11760
|
|
|
11644
11761
|
</li>
|
|
11645
11762
|
|
|
11646
11763
|
<li class="md-nav__item">
|
|
11647
|
-
<a href="#
|
|
11764
|
+
<a href="#housekeeping-in-v200-beta1" class="md-nav__link">
|
|
11648
11765
|
<span class="md-ellipsis">
|
|
11649
|
-
Housekeeping
|
|
11766
|
+
Housekeeping in v2.0.0-beta.1
|
|
11650
11767
|
</span>
|
|
11651
11768
|
</a>
|
|
11652
11769
|
|
|
@@ -11668,45 +11785,45 @@
|
|
|
11668
11785
|
<ul class="md-nav__list">
|
|
11669
11786
|
|
|
11670
11787
|
<li class="md-nav__item">
|
|
11671
|
-
<a href="#
|
|
11788
|
+
<a href="#added-in-v200-alpha3" class="md-nav__link">
|
|
11672
11789
|
<span class="md-ellipsis">
|
|
11673
|
-
Added
|
|
11790
|
+
Added in v2.0.0-alpha.3
|
|
11674
11791
|
</span>
|
|
11675
11792
|
</a>
|
|
11676
11793
|
|
|
11677
11794
|
</li>
|
|
11678
11795
|
|
|
11679
11796
|
<li class="md-nav__item">
|
|
11680
|
-
<a href="#
|
|
11797
|
+
<a href="#changed-in-v200-alpha3" class="md-nav__link">
|
|
11681
11798
|
<span class="md-ellipsis">
|
|
11682
|
-
Changed
|
|
11799
|
+
Changed in v2.0.0-alpha.3
|
|
11683
11800
|
</span>
|
|
11684
11801
|
</a>
|
|
11685
11802
|
|
|
11686
11803
|
</li>
|
|
11687
11804
|
|
|
11688
11805
|
<li class="md-nav__item">
|
|
11689
|
-
<a href="#
|
|
11806
|
+
<a href="#removed-in-v200-alpha3" class="md-nav__link">
|
|
11690
11807
|
<span class="md-ellipsis">
|
|
11691
|
-
Removed
|
|
11808
|
+
Removed in v2.0.0-alpha.3
|
|
11692
11809
|
</span>
|
|
11693
11810
|
</a>
|
|
11694
11811
|
|
|
11695
11812
|
</li>
|
|
11696
11813
|
|
|
11697
11814
|
<li class="md-nav__item">
|
|
11698
|
-
<a href="#
|
|
11815
|
+
<a href="#dependencies-in-v200-alpha3" class="md-nav__link">
|
|
11699
11816
|
<span class="md-ellipsis">
|
|
11700
|
-
Dependencies
|
|
11817
|
+
Dependencies in v2.0.0-alpha.3
|
|
11701
11818
|
</span>
|
|
11702
11819
|
</a>
|
|
11703
11820
|
|
|
11704
11821
|
</li>
|
|
11705
11822
|
|
|
11706
11823
|
<li class="md-nav__item">
|
|
11707
|
-
<a href="#
|
|
11824
|
+
<a href="#housekeeping-in-v200-alpha3" class="md-nav__link">
|
|
11708
11825
|
<span class="md-ellipsis">
|
|
11709
|
-
Housekeeping
|
|
11826
|
+
Housekeeping in v2.0.0-alpha.3
|
|
11710
11827
|
</span>
|
|
11711
11828
|
</a>
|
|
11712
11829
|
|
|
@@ -11728,54 +11845,54 @@
|
|
|
11728
11845
|
<ul class="md-nav__list">
|
|
11729
11846
|
|
|
11730
11847
|
<li class="md-nav__item">
|
|
11731
|
-
<a href="#
|
|
11848
|
+
<a href="#added-in-v200-alpha2" class="md-nav__link">
|
|
11732
11849
|
<span class="md-ellipsis">
|
|
11733
|
-
Added
|
|
11850
|
+
Added in v2.0.0-alpha.2
|
|
11734
11851
|
</span>
|
|
11735
11852
|
</a>
|
|
11736
11853
|
|
|
11737
11854
|
</li>
|
|
11738
11855
|
|
|
11739
11856
|
<li class="md-nav__item">
|
|
11740
|
-
<a href="#
|
|
11857
|
+
<a href="#changed-in-v200-alpha2" class="md-nav__link">
|
|
11741
11858
|
<span class="md-ellipsis">
|
|
11742
|
-
Changed
|
|
11859
|
+
Changed in v2.0.0-alpha.2
|
|
11743
11860
|
</span>
|
|
11744
11861
|
</a>
|
|
11745
11862
|
|
|
11746
11863
|
</li>
|
|
11747
11864
|
|
|
11748
11865
|
<li class="md-nav__item">
|
|
11749
|
-
<a href="#
|
|
11866
|
+
<a href="#removed-in-v200-alpha2" class="md-nav__link">
|
|
11750
11867
|
<span class="md-ellipsis">
|
|
11751
|
-
Removed
|
|
11868
|
+
Removed in v2.0.0-alpha.2
|
|
11752
11869
|
</span>
|
|
11753
11870
|
</a>
|
|
11754
11871
|
|
|
11755
11872
|
</li>
|
|
11756
11873
|
|
|
11757
11874
|
<li class="md-nav__item">
|
|
11758
|
-
<a href="#
|
|
11875
|
+
<a href="#fixed-in-v200-alpha2" class="md-nav__link">
|
|
11759
11876
|
<span class="md-ellipsis">
|
|
11760
|
-
Fixed
|
|
11877
|
+
Fixed in v2.0.0-alpha.2
|
|
11761
11878
|
</span>
|
|
11762
11879
|
</a>
|
|
11763
11880
|
|
|
11764
11881
|
</li>
|
|
11765
11882
|
|
|
11766
11883
|
<li class="md-nav__item">
|
|
11767
|
-
<a href="#
|
|
11884
|
+
<a href="#dependencies-in-v200-alpha2" class="md-nav__link">
|
|
11768
11885
|
<span class="md-ellipsis">
|
|
11769
|
-
Dependencies
|
|
11886
|
+
Dependencies in v2.0.0-alpha.2
|
|
11770
11887
|
</span>
|
|
11771
11888
|
</a>
|
|
11772
11889
|
|
|
11773
11890
|
</li>
|
|
11774
11891
|
|
|
11775
11892
|
<li class="md-nav__item">
|
|
11776
|
-
<a href="#
|
|
11893
|
+
<a href="#housekeeping-in-v200-alpha2" class="md-nav__link">
|
|
11777
11894
|
<span class="md-ellipsis">
|
|
11778
|
-
Housekeeping
|
|
11895
|
+
Housekeeping in v2.0.0-alpha.2
|
|
11779
11896
|
</span>
|
|
11780
11897
|
</a>
|
|
11781
11898
|
|
|
@@ -11797,63 +11914,63 @@
|
|
|
11797
11914
|
<ul class="md-nav__list">
|
|
11798
11915
|
|
|
11799
11916
|
<li class="md-nav__item">
|
|
11800
|
-
<a href="#
|
|
11917
|
+
<a href="#added-in-v200-alpha1" class="md-nav__link">
|
|
11801
11918
|
<span class="md-ellipsis">
|
|
11802
|
-
Added
|
|
11919
|
+
Added in v2.0.0-alpha.1
|
|
11803
11920
|
</span>
|
|
11804
11921
|
</a>
|
|
11805
11922
|
|
|
11806
11923
|
</li>
|
|
11807
11924
|
|
|
11808
11925
|
<li class="md-nav__item">
|
|
11809
|
-
<a href="#
|
|
11926
|
+
<a href="#changed-in-v200-alpha1" class="md-nav__link">
|
|
11810
11927
|
<span class="md-ellipsis">
|
|
11811
|
-
Changed
|
|
11928
|
+
Changed in v2.0.0-alpha.1
|
|
11812
11929
|
</span>
|
|
11813
11930
|
</a>
|
|
11814
11931
|
|
|
11815
11932
|
</li>
|
|
11816
11933
|
|
|
11817
11934
|
<li class="md-nav__item">
|
|
11818
|
-
<a href="#
|
|
11935
|
+
<a href="#removed-in-v200-alpha1" class="md-nav__link">
|
|
11819
11936
|
<span class="md-ellipsis">
|
|
11820
|
-
Removed
|
|
11937
|
+
Removed in v2.0.0-alpha.1
|
|
11821
11938
|
</span>
|
|
11822
11939
|
</a>
|
|
11823
11940
|
|
|
11824
11941
|
</li>
|
|
11825
11942
|
|
|
11826
11943
|
<li class="md-nav__item">
|
|
11827
|
-
<a href="#
|
|
11944
|
+
<a href="#fixed-in-v200-alpha1" class="md-nav__link">
|
|
11828
11945
|
<span class="md-ellipsis">
|
|
11829
|
-
Fixed
|
|
11946
|
+
Fixed in v2.0.0-alpha.1
|
|
11830
11947
|
</span>
|
|
11831
11948
|
</a>
|
|
11832
11949
|
|
|
11833
11950
|
</li>
|
|
11834
11951
|
|
|
11835
11952
|
<li class="md-nav__item">
|
|
11836
|
-
<a href="#
|
|
11953
|
+
<a href="#dependencies-in-v200-alpha1" class="md-nav__link">
|
|
11837
11954
|
<span class="md-ellipsis">
|
|
11838
|
-
Dependencies
|
|
11955
|
+
Dependencies in v2.0.0-alpha.1
|
|
11839
11956
|
</span>
|
|
11840
11957
|
</a>
|
|
11841
11958
|
|
|
11842
11959
|
</li>
|
|
11843
11960
|
|
|
11844
11961
|
<li class="md-nav__item">
|
|
11845
|
-
<a href="#
|
|
11962
|
+
<a href="#documentation-in-v200-alpha1" class="md-nav__link">
|
|
11846
11963
|
<span class="md-ellipsis">
|
|
11847
|
-
Documentation
|
|
11964
|
+
Documentation in v2.0.0-alpha.1
|
|
11848
11965
|
</span>
|
|
11849
11966
|
</a>
|
|
11850
11967
|
|
|
11851
11968
|
</li>
|
|
11852
11969
|
|
|
11853
11970
|
<li class="md-nav__item">
|
|
11854
|
-
<a href="#
|
|
11971
|
+
<a href="#housekeeping-in-v200-alpha1" class="md-nav__link">
|
|
11855
11972
|
<span class="md-ellipsis">
|
|
11856
|
-
Housekeeping
|
|
11973
|
+
Housekeeping in v2.0.0-alpha.1
|
|
11857
11974
|
</span>
|
|
11858
11975
|
</a>
|
|
11859
11976
|
|
|
@@ -11882,8 +11999,6 @@
|
|
|
11882
11999
|
|
|
11883
12000
|
|
|
11884
12001
|
|
|
11885
|
-
<!-- markdownlint-disable MD024 -->
|
|
11886
|
-
|
|
11887
12002
|
<h1 id="nautobot-v20">Nautobot v2.0<a class="headerlink" href="#nautobot-v20" title="Permanent link">¶</a></h1>
|
|
11888
12003
|
<p>This document describes all new features and changes in Nautobot 2.0.</p>
|
|
11889
12004
|
<div class="admonition note">
|
|
@@ -12058,7 +12173,7 @@
|
|
|
12058
12173
|
<p>Now in v2.x, you are able to filter those <code>RackGroups</code> by their parent(s) names or UUID primary keys:</p>
|
|
12059
12174
|
<p><code>/dcim/rack-groups/?parent=<name></code> or <code>/dcim/rack-groups/?parent=<uuid></code></p>
|
|
12060
12175
|
<p>Check out the specific changes documented in the table at <a href="../user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html#enhanced-filter-fields">UI and REST API Filter Changes</a></p>
|
|
12061
|
-
<h4 id="generic-role-model-
|
|
12176
|
+
<h4 id="migration-to-generic-role-model-1063">Migration to Generic Role Model (<a href="https://github.com/nautobot/nautobot/issues/1063">#1063</a>)<a class="headerlink" href="#migration-to-generic-role-model-1063" title="Permanent link">¶</a></h4>
|
|
12062
12177
|
<p>The <code>DeviceRole</code>, <code>RackRole</code>, <code>ipam.Role</code>, and <code>IPAddressRoleChoices</code> have all been removed and replaced with a <code>extras.Role</code> model, This means that all references to any of the replaced models and choices now points to this generic role model.</p>
|
|
12063
12178
|
<p>In addition, the <code>role</code> field of the <code>IPAddress</code> model has also been changed from a choice field to a foreign key related field to the <code>extras.Role</code> model.</p>
|
|
12064
12179
|
<h4 id="job-overhaul-765">Job Overhaul (<a href="https://github.com/nautobot/nautobot/issues/765">#765</a>)<a class="headerlink" href="#job-overhaul-765" title="Permanent link">¶</a></h4>
|
|
@@ -12166,35 +12281,34 @@
|
|
|
12166
12281
|
<p>The <code>slug</code> field has been removed from all core models except for <code>GitRepository</code>. Generally, Nautobot URLs that referenced the <code>slug</code> field have been changed to use the primary key instead. For example, the URL for <code>https://nautobot/dcim/locations/building-01</code> would change to a URL similar to <code>https://nautobot/dcim/locations/e41f381a-a53b-485a-886f-9d36859b47a1</code>. There are a small number of URLs that still reference a value that's not the primary key, including some URLs related to secrets providers, cables and jobs.</p>
|
|
12167
12282
|
<p>A <code>natural_slug</code> property has been added to all models that inherit from <code>BaseModel</code> to provide a human-readable value for use in tools that require a loose reference to a Nautobot object, but this value is not equivalent to the <code>slug</code> field and is not guaranteed to be unique.</p>
|
|
12168
12283
|
<p>A natural key interface has been provided for most models to allow for uniquely referencing objects by a name that is friendlier than the primary key. For more information on the usage of natural keys vs primary keys see the documentation for <a href="../development/apps/api/platform-features/uniquely-identify-objects.html">Uniquely Identifying a Nautobot Object</a>.</p>
|
|
12169
|
-
<!-- towncrier release notes start -->
|
|
12170
12284
|
<h2 id="v206-2023-12-11">v2.0.6 (2023-12-11)<a class="headerlink" href="#v206-2023-12-11" title="Permanent link">¶</a></h2>
|
|
12171
|
-
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
12285
|
+
<h3 id="security-in-v206">Security in v2.0.6<a class="headerlink" href="#security-in-v206" title="Permanent link">¶</a></h3>
|
|
12172
12286
|
<ul>
|
|
12173
12287
|
<li><a href="https://github.com/nautobot/nautobot/issues/4876">#4876</a> - Updated <code>cryptography</code> to <code>~41.0.6</code> due to CVE-2023-49083. As this is not a direct dependency of Nautobot, it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
12174
12288
|
<li><a href="https://github.com/nautobot/nautobot/issues/4890">#4890</a> - Updated alpha UI dependency <code>@adobe/css-tools</code> to version 4.3.2 due to CVE-2023-48631.</li>
|
|
12175
12289
|
<li><a href="https://github.com/nautobot/nautobot/issues/4959">#4959</a> - Enforce authentication and object permissions on DB file storage views (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-75mc-3pjc-727q">GHSA-75mc-3pjc-727q</a>).</li>
|
|
12176
12290
|
</ul>
|
|
12177
|
-
<h3 id="
|
|
12291
|
+
<h3 id="added-in-v206">Added in v2.0.6<a class="headerlink" href="#added-in-v206" title="Permanent link">¶</a></h3>
|
|
12178
12292
|
<ul>
|
|
12179
12293
|
<li><a href="https://github.com/nautobot/nautobot/issues/4854">#4854</a> - Added invocations of <code>clean()</code> methods to <code>save()</code> methods for <code>ComputedField</code>, <code>CustomField</code>, and <code>Relationship</code> models to protect against creation of invalid data.</li>
|
|
12180
12294
|
<li><a href="https://github.com/nautobot/nautobot/issues/4873">#4873</a> - Added QSFP112 interface type to interface type choices.</li>
|
|
12181
12295
|
<li><a href="https://github.com/nautobot/nautobot/issues/4883">#4883</a> - Added <code>get_default_namespace</code> and <code>get_default_namespace_pk</code> methods to <code>nautobot.apps.models</code> API.</li>
|
|
12182
12296
|
</ul>
|
|
12183
|
-
<h3 id="
|
|
12297
|
+
<h3 id="changed-in-v206">Changed in v2.0.6<a class="headerlink" href="#changed-in-v206" title="Permanent link">¶</a></h3>
|
|
12184
12298
|
<ul>
|
|
12185
12299
|
<li><a href="https://github.com/nautobot/nautobot/issues/4813">#4813</a> - Changed <code>generate_secret_key.py</code> to use Python <code>secrets</code> library instead of <code>random</code>.</li>
|
|
12186
12300
|
</ul>
|
|
12187
|
-
<h3 id="
|
|
12301
|
+
<h3 id="removed-in-v206">Removed in v2.0.6<a class="headerlink" href="#removed-in-v206" title="Permanent link">¶</a></h3>
|
|
12188
12302
|
<ul>
|
|
12189
12303
|
<li><a href="https://github.com/nautobot/nautobot/issues/4805">#4805</a> - Removed unused <code>nautobot.extras.choices.JobSourceChoices</code>.</li>
|
|
12190
12304
|
<li><a href="https://github.com/nautobot/nautobot/issues/4805">#4805</a> - Removed check for <code>__init__.py</code> in <code>JOBS_ROOT</code> directory.</li>
|
|
12191
12305
|
<li><a href="https://github.com/nautobot/nautobot/issues/4858">#4858</a> - Removed Jathan McCollum as a point of contact in <code>SECURITY.md</code>.</li>
|
|
12192
12306
|
</ul>
|
|
12193
|
-
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
12307
|
+
<h3 id="fixed-in-v206">Fixed in v2.0.6<a class="headerlink" href="#fixed-in-v206" title="Permanent link">¶</a></h3>
|
|
12194
12308
|
<ul>
|
|
12195
12309
|
<li><a href="https://github.com/nautobot/nautobot/issues/3488">#3488</a> - Corrected positioning and style of "Collapse All" button in Jobs list view.</li>
|
|
12196
12310
|
<li><a href="https://github.com/nautobot/nautobot/issues/4142">#4142</a> - Fixed unnecessary git operations when calling <code>ensure_git_repository</code> while the desired commit is already checked out.</li>
|
|
12197
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/4179">#4179</a> - Fixed error in creation of storage directories (GIT_ROOT
|
|
12311
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/4179">#4179</a> - Fixed error in creation of storage directories (<code>GIT_ROOT</code>, <code>JOBS_ROOT</code>, <code>MEDIA_ROOT</code>, etc.) when running tests in parallel.</li>
|
|
12198
12312
|
<li><a href="https://github.com/nautobot/nautobot/issues/4747">#4747</a> - Fixed an issue when appending nautobot version to a static file path with existing query parameters resulted in an invalid URL generation.</li>
|
|
12199
12313
|
<li><a href="https://github.com/nautobot/nautobot/issues/4768">#4768</a> - Fixed incorrect link in TenantGroup template.</li>
|
|
12200
12314
|
<li><a href="https://github.com/nautobot/nautobot/issues/4768">#4768</a> - Fixed ConfigContext not applied to nested TenantGroup objects.</li>
|
|
@@ -12210,7 +12324,7 @@
|
|
|
12210
12324
|
<li><a href="https://github.com/nautobot/nautobot/issues/4911">#4911</a> - Fixed the ability to modify tags on Namespaces via the UI.</li>
|
|
12211
12325
|
<li><a href="https://github.com/nautobot/nautobot/issues/4922">#4922</a> - Fixed incorrect position of "actions" column in Location table view.</li>
|
|
12212
12326
|
</ul>
|
|
12213
|
-
<h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">¶</a></h3>
|
|
12327
|
+
<h3 id="dependencies-in-v206">Dependencies in v2.0.6<a class="headerlink" href="#dependencies-in-v206" title="Permanent link">¶</a></h3>
|
|
12214
12328
|
<ul>
|
|
12215
12329
|
<li><a href="https://github.com/nautobot/nautobot/issues/4812">#4812</a> - Updated <code>django-tree-queries</code> to <code>0.16.1</code> to bring in some desired feature fixes.</li>
|
|
12216
12330
|
<li><a href="https://github.com/nautobot/nautobot/issues/4937">#4937</a> - Updated alpha UI dependency @rjsf/core to version 5.13.6.</li>
|
|
@@ -12219,27 +12333,27 @@
|
|
|
12219
12333
|
<li><a href="https://github.com/nautobot/nautobot/issues/4937">#4937</a> - Updated alpha UI dependency react-refresh to version 0.14.0.</li>
|
|
12220
12334
|
<li><a href="https://github.com/nautobot/nautobot/issues/4937">#4937</a> - Updated alpha UI dependency react-router-dom to version 6.18.0.</li>
|
|
12221
12335
|
</ul>
|
|
12222
|
-
<h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">¶</a></h3>
|
|
12336
|
+
<h3 id="documentation-in-v206">Documentation in v2.0.6<a class="headerlink" href="#documentation-in-v206" title="Permanent link">¶</a></h3>
|
|
12223
12337
|
<ul>
|
|
12224
12338
|
<li><a href="https://github.com/nautobot/nautobot/issues/4805">#4805</a> - Updated documentation on jobs registration.</li>
|
|
12225
12339
|
<li><a href="https://github.com/nautobot/nautobot/issues/4871">#4871</a> - Removed some duplicate documentation links in the Feature Guides.</li>
|
|
12226
12340
|
<li><a href="https://github.com/nautobot/nautobot/issues/4923">#4923</a> - Fixed border for namespace image in docs.</li>
|
|
12227
12341
|
<li><a href="https://github.com/nautobot/nautobot/issues/4952">#4952</a> - Corrected spelling of "extensions" in the navigation menu.</li>
|
|
12228
12342
|
</ul>
|
|
12229
|
-
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
12343
|
+
<h3 id="housekeeping-in-v206">Housekeeping in v2.0.6<a class="headerlink" href="#housekeeping-in-v206" title="Permanent link">¶</a></h3>
|
|
12230
12344
|
<ul>
|
|
12231
12345
|
<li><a href="https://github.com/nautobot/nautobot/issues/4945">#4945</a> - Replaced calls to deprecated <code>is_safe_url()</code> Django API with <code>url_has_allowed_host_and_scheme()</code> replacement API.</li>
|
|
12232
12346
|
</ul>
|
|
12233
12347
|
<h2 id="v205-2023-11-21">v2.0.5 (2023-11-21)<a class="headerlink" href="#v205-2023-11-21" title="Permanent link">¶</a></h2>
|
|
12234
|
-
<h3 id="
|
|
12348
|
+
<h3 id="security-in-v205">Security in v2.0.5<a class="headerlink" href="#security-in-v205" title="Permanent link">¶</a></h3>
|
|
12235
12349
|
<ul>
|
|
12236
12350
|
<li><a href="https://github.com/nautobot/nautobot/issues/4832">#4832</a> - Fixed cross-site-scripting (XSS) potential with maliciously crafted Custom Links, Computed Fields, and Job Buttons (GHSA-cf9f-wmhp-v4pr).</li>
|
|
12237
12351
|
</ul>
|
|
12238
|
-
<h3 id="
|
|
12352
|
+
<h3 id="changed-in-v205">Changed in v2.0.5<a class="headerlink" href="#changed-in-v205" title="Permanent link">¶</a></h3>
|
|
12239
12353
|
<ul>
|
|
12240
12354
|
<li><a href="https://github.com/nautobot/nautobot/issues/4832">#4832</a> - Changed the <code>render_jinja2()</code> API to no longer automatically call <code>mark_safe()</code> on the output.</li>
|
|
12241
12355
|
</ul>
|
|
12242
|
-
<h3 id="
|
|
12356
|
+
<h3 id="fixed-in-v205">Fixed in v2.0.5<a class="headerlink" href="#fixed-in-v205" title="Permanent link">¶</a></h3>
|
|
12243
12357
|
<ul>
|
|
12244
12358
|
<li><a href="https://github.com/nautobot/nautobot/issues/3015">#3015</a> - Fixed multiple jobhooks and/or webhooks triggered by a single change.</li>
|
|
12245
12359
|
<li><a href="https://github.com/nautobot/nautobot/issues/3015">#3015</a> - Fixed change logging behavior to properly combine multiple changes to an object in the same request.</li>
|
|
@@ -12249,39 +12363,39 @@
|
|
|
12249
12363
|
<li><a href="https://github.com/nautobot/nautobot/issues/4799">#4799</a> - Reduced size of Nautobot <code>sdist</code> and <code>wheel</code> packages from 86 MB to 31 MB.</li>
|
|
12250
12364
|
<li><a href="https://github.com/nautobot/nautobot/issues/4804">#4804</a> - Fixed VarbinaryIPField storing None or empty values as the binary representation of b'' thereby ignoring the non-null constraint on the field.</li>
|
|
12251
12365
|
</ul>
|
|
12252
|
-
<h3 id="
|
|
12366
|
+
<h3 id="dependencies-in-v205">Dependencies in v2.0.5<a class="headerlink" href="#dependencies-in-v205" title="Permanent link">¶</a></h3>
|
|
12253
12367
|
<ul>
|
|
12254
12368
|
<li><a href="https://github.com/nautobot/nautobot/issues/4615">#4615</a> - Updated <code>psycopg2-binary</code> dependency to version 2.9.9.</li>
|
|
12255
12369
|
<li><a href="https://github.com/nautobot/nautobot/issues/4615">#4615</a> - Updated <code>pylint</code> development dependency to version 2.17.7.</li>
|
|
12256
12370
|
<li><a href="https://github.com/nautobot/nautobot/issues/4799">#4799</a> - Updated <code>mkdocs</code> development dependency to <code>1.5.3</code>.</li>
|
|
12257
12371
|
</ul>
|
|
12258
|
-
<h3 id="
|
|
12372
|
+
<h3 id="documentation-in-v205">Documentation in v2.0.5<a class="headerlink" href="#documentation-in-v205" title="Permanent link">¶</a></h3>
|
|
12259
12373
|
<ul>
|
|
12260
12374
|
<li><a href="https://github.com/nautobot/nautobot/issues/4008">#4008</a> - Removed CacheOps reference from application stack diagram.</li>
|
|
12261
12375
|
</ul>
|
|
12262
|
-
<h3 id="
|
|
12376
|
+
<h3 id="housekeeping-in-v205">Housekeeping in v2.0.5<a class="headerlink" href="#housekeeping-in-v205" title="Permanent link">¶</a></h3>
|
|
12263
12377
|
<ul>
|
|
12264
12378
|
<li><a href="https://github.com/nautobot/nautobot/issues/3179">#3179</a> - Added unittest for CircuitTermination with a cable connected to CircuitTermination, FrontPort, or RearPort fix in #4815.</li>
|
|
12265
12379
|
<li><a href="https://github.com/nautobot/nautobot/issues/4799">#4799</a> - Updated docs configuration for <code>examples/example_plugin</code>.</li>
|
|
12266
12380
|
<li><a href="https://github.com/nautobot/nautobot/issues/4832">#4832</a> - Added <code>ruff</code> to invoke tasks and CI.</li>
|
|
12267
12381
|
</ul>
|
|
12268
12382
|
<h2 id="v204-2023-11-13">v2.0.4 (2023-11-13)<a class="headerlink" href="#v204-2023-11-13" title="Permanent link">¶</a></h2>
|
|
12269
|
-
<h3 id="
|
|
12383
|
+
<h3 id="security-in-v204">Security in v2.0.4<a class="headerlink" href="#security-in-v204" title="Permanent link">¶</a></h3>
|
|
12270
12384
|
<ul>
|
|
12271
12385
|
<li><a href="https://github.com/nautobot/nautobot/issues/4748">#4748</a> - Updated <code>Django</code> minimum version to 3.2.23 to protect against CVE-2023-46695.</li>
|
|
12272
12386
|
<li><a href="https://github.com/nautobot/nautobot/issues/4782">#4782</a> - Updated alpha-UI dependency <code>axios</code> to version 1.6.0 due to CVE-2023-45857.</li>
|
|
12273
12387
|
</ul>
|
|
12274
|
-
<h3 id="
|
|
12388
|
+
<h3 id="added-in-v204">Added in v2.0.4<a class="headerlink" href="#added-in-v204" title="Permanent link">¶</a></h3>
|
|
12275
12389
|
<ul>
|
|
12276
12390
|
<li><a href="https://github.com/nautobot/nautobot/issues/4349">#4349</a> - Added Note List View.</li>
|
|
12277
12391
|
<li><a href="https://github.com/nautobot/nautobot/issues/4704">#4704</a> - Added missing Rack table to Role Detail View.</li>
|
|
12278
12392
|
<li><a href="https://github.com/nautobot/nautobot/issues/4709">#4709</a> - Added form field to allow assignment of IP addresses when creating a new Interface.</li>
|
|
12279
12393
|
</ul>
|
|
12280
|
-
<h3 id="
|
|
12394
|
+
<h3 id="changed-in-v204">Changed in v2.0.4<a class="headerlink" href="#changed-in-v204" title="Permanent link">¶</a></h3>
|
|
12281
12395
|
<ul>
|
|
12282
12396
|
<li><a href="https://github.com/nautobot/nautobot/issues/4709">#4709</a> - Changed order of fields displayed when editing an Interface to be the same as when creating a new Interface.</li>
|
|
12283
12397
|
</ul>
|
|
12284
|
-
<h3 id="
|
|
12398
|
+
<h3 id="fixed-in-v204">Fixed in v2.0.4<a class="headerlink" href="#fixed-in-v204" title="Permanent link">¶</a></h3>
|
|
12285
12399
|
<ul>
|
|
12286
12400
|
<li><a href="https://github.com/nautobot/nautobot/issues/3990">#3990</a> - Fixed the issue preventing associated Note objects from being deleted when the assigned object is deleted.</li>
|
|
12287
12401
|
<li><a href="https://github.com/nautobot/nautobot/issues/4626">#4626</a> - Fixed incorrect "Prefixes" link from VRF detail view.</li>
|
|
@@ -12300,7 +12414,7 @@
|
|
|
12300
12414
|
<li><a href="https://github.com/nautobot/nautobot/issues/4751">#4751</a> - Fixed a bug with <code>BaseModel.get_absolute_url</code> returning an AttributeError instead of raising it.</li>
|
|
12301
12415
|
<li><a href="https://github.com/nautobot/nautobot/issues/4779">#4779</a> - Fixed an error when syncing a git repo without a worker running.</li>
|
|
12302
12416
|
</ul>
|
|
12303
|
-
<h3 id="
|
|
12417
|
+
<h3 id="documentation-in-v204">Documentation in v2.0.4<a class="headerlink" href="#documentation-in-v204" title="Permanent link">¶</a></h3>
|
|
12304
12418
|
<ul>
|
|
12305
12419
|
<li><a href="https://github.com/nautobot/nautobot/issues/3927">#3927</a> - Fixed documentation for creating databases on PostgreSQL version 15.</li>
|
|
12306
12420
|
<li><a href="https://github.com/nautobot/nautobot/issues/4622">#4622</a> - Fixed docs incorrectly referencing Nautobot 1.5 as the LTM release for 1.x.</li>
|
|
@@ -12311,7 +12425,7 @@
|
|
|
12311
12425
|
<li><a href="https://github.com/nautobot/nautobot/issues/4720">#4720</a> - Added redeployment demo environment step to release-checklist.md.</li>
|
|
12312
12426
|
<li><a href="https://github.com/nautobot/nautobot/issues/4767">#4767</a> - Updated Job and App Developer docs to import from the <code>nautobot.apps</code> module throughout.</li>
|
|
12313
12427
|
</ul>
|
|
12314
|
-
<h3 id="
|
|
12428
|
+
<h3 id="housekeeping-in-v204">Housekeeping in v2.0.4<a class="headerlink" href="#housekeeping-in-v204" title="Permanent link">¶</a></h3>
|
|
12315
12429
|
<ul>
|
|
12316
12430
|
<li><a href="https://github.com/nautobot/nautobot/issues/4638">#4638</a> - Updated Apps upstream testing CI to use the correct branch pairings post-2.0.</li>
|
|
12317
12431
|
<li><a href="https://github.com/nautobot/nautobot/issues/4686">#4686</a> - Fixed incorrect tagging of 1.6.x Docker <code>nautobot-dev</code> images as <code>latest</code>.</li>
|
|
@@ -12319,53 +12433,53 @@
|
|
|
12319
12433
|
<li><a href="https://github.com/nautobot/nautobot/issues/4709">#4709</a> - Replaced a number of <code>ModelChoiceField</code> in DCIM forms with more appropriate <code>DynamicModelChoiceField</code>.</li>
|
|
12320
12434
|
</ul>
|
|
12321
12435
|
<h2 id="v203-2023-10-23">v2.0.3 (2023-10-23)<a class="headerlink" href="#v203-2023-10-23" title="Permanent link">¶</a></h2>
|
|
12322
|
-
<h3 id="
|
|
12436
|
+
<h3 id="security-in-v203">Security in v2.0.3<a class="headerlink" href="#security-in-v203" title="Permanent link">¶</a></h3>
|
|
12323
12437
|
<ul>
|
|
12324
12438
|
<li><a href="https://github.com/nautobot/nautobot/issues/4671">#4671</a> - Updated <code>urllib3</code> to 2.0.7 due to CVE-2023-45803. This is not a direct dependency so it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
12325
12439
|
<li><a href="https://github.com/nautobot/nautobot/issues/4673">#4673</a> - Fixed token exposure in <code>JobResult</code> traceback and result output when a <code>GitRepositorySync</code> job fails in certain ways.</li>
|
|
12326
12440
|
<li><a href="https://github.com/nautobot/nautobot/issues/4692">#4692</a> - Fixed potential exposure of hashed user password data on certain REST API endpoints when using the <code>?depth=1</code> query parameter. For more details, please refer to <a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-r2hw-74xv-4gqp">GHSA-r2hw-74xv-4gqp</a>.</li>
|
|
12327
12441
|
</ul>
|
|
12328
|
-
<h3 id="
|
|
12442
|
+
<h3 id="added-in-v203">Added in v2.0.3<a class="headerlink" href="#added-in-v203" title="Permanent link">¶</a></h3>
|
|
12329
12443
|
<ul>
|
|
12330
12444
|
<li><a href="https://github.com/nautobot/nautobot/issues/4612">#4612</a> - Added validation step to handle invalid/legacy filters from v1.x in DynamicGroup form validation.</li>
|
|
12331
12445
|
<li><a href="https://github.com/nautobot/nautobot/issues/4668">#4668</a> - Added an <code>ENABLE_ALPHA_UI</code> configuration option to the settings, which is initially set to False. When set to True, this option enables the "Alpha UI 2.0" feature.</li>
|
|
12332
12446
|
</ul>
|
|
12333
|
-
<h3 id="
|
|
12447
|
+
<h3 id="changed-in-v203">Changed in v2.0.3<a class="headerlink" href="#changed-in-v203" title="Permanent link">¶</a></h3>
|
|
12334
12448
|
<ul>
|
|
12335
12449
|
<li><a href="https://github.com/nautobot/nautobot/issues/4668">#4668</a> - Changed the flag <code>--no-build-ui</code> to <code>--build-ui</code>, and its default value to False for the <code>nautobot-server post-upgrade</code> command.</li>
|
|
12336
12450
|
</ul>
|
|
12337
|
-
<h3 id="
|
|
12451
|
+
<h3 id="fixed-in-v203">Fixed in v2.0.3<a class="headerlink" href="#fixed-in-v203" title="Permanent link">¶</a></h3>
|
|
12338
12452
|
<ul>
|
|
12339
12453
|
<li><a href="https://github.com/nautobot/nautobot/issues/4604">#4604</a> - Fixed <code>post_upgrade</code> bug involving potential left over references to Aggregate, DeviceRole, and RackRole ContentTypes in ObjectChange records.</li>
|
|
12340
12454
|
<li><a href="https://github.com/nautobot/nautobot/issues/4608">#4608</a> - Fixed error <code>'IPAddressBulkAddForm' has no field named 'parent'</code> when bulk creating IPs via UI.</li>
|
|
12341
12455
|
<li><a href="https://github.com/nautobot/nautobot/issues/4676">#4676</a> - Ensured that <code>ScheduledJob.job_class</code> values are correctly transferred to <code>ScheduledJob.task</code> during v2 migration.</li>
|
|
12342
12456
|
<li><a href="https://github.com/nautobot/nautobot/issues/4692">#4692</a> - Fixed incorrect inheritance of <code>Meta</code> attributes into nested serializers (<code>depth >= 1</code>).</li>
|
|
12343
12457
|
</ul>
|
|
12344
|
-
<h3 id="
|
|
12458
|
+
<h3 id="documentation-in-v203">Documentation in v2.0.3<a class="headerlink" href="#documentation-in-v203" title="Permanent link">¶</a></h3>
|
|
12345
12459
|
<ul>
|
|
12346
12460
|
<li><a href="https://github.com/nautobot/nautobot/issues/4669">#4669</a> - Added redirects from 1.x documentation paths to their 2.x equivalents to fix broken links/bookmarks.</li>
|
|
12347
12461
|
</ul>
|
|
12348
|
-
<h3 id="
|
|
12462
|
+
<h3 id="housekeeping-in-v203">Housekeeping in v2.0.3<a class="headerlink" href="#housekeeping-in-v203" title="Permanent link">¶</a></h3>
|
|
12349
12463
|
<ul>
|
|
12350
12464
|
<li><a href="https://github.com/nautobot/nautobot/issues/4692">#4692</a> - Added check in REST API generic test cases to detect strings like <code>password</code> and <code>sha256</code> that shouldn't generally appear in REST API responses.</li>
|
|
12351
12465
|
</ul>
|
|
12352
12466
|
<h2 id="v202-2023-10-16">v2.0.2 (2023-10-16)<a class="headerlink" href="#v202-2023-10-16" title="Permanent link">¶</a></h2>
|
|
12353
|
-
<h3 id="
|
|
12467
|
+
<h3 id="security-in-v202">Security in v2.0.2<a class="headerlink" href="#security-in-v202" title="Permanent link">¶</a></h3>
|
|
12354
12468
|
<ul>
|
|
12355
12469
|
<li><a href="https://github.com/nautobot/nautobot/issues/4586">#4586</a> - Updated <code>urllib3</code> to 2.0.6 due to CVE-2023-43804. This is not a direct dependency so it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
12356
12470
|
<li><a href="https://github.com/nautobot/nautobot/issues/4621">#4621</a> - Updated <code>postcss</code> <code>npm</code> package to 8.4.31 to address CVE-2023-44270.</li>
|
|
12357
12471
|
<li><a href="https://github.com/nautobot/nautobot/issues/4652">#4652</a> - Updated <code>babel/traverse</code> <code>npm</code> dependency to 7.23.2 to address CVE-2023-45133.</li>
|
|
12358
12472
|
</ul>
|
|
12359
|
-
<h3 id="
|
|
12473
|
+
<h3 id="added-in-v202">Added in v2.0.2<a class="headerlink" href="#added-in-v202" title="Permanent link">¶</a></h3>
|
|
12360
12474
|
<ul>
|
|
12361
12475
|
<li><a href="https://github.com/nautobot/nautobot/issues/4361">#4361</a> - Added <code>SUPPORT_MESSAGE</code> configuration setting.</li>
|
|
12362
12476
|
<li><a href="https://github.com/nautobot/nautobot/issues/4607">#4607</a> - Added <code>nautobot-server audit_graphql_queries</code> management command for evaluating breaking filter changes to existing GraphQLQuery instances.</li>
|
|
12363
12477
|
</ul>
|
|
12364
|
-
<h3 id="
|
|
12478
|
+
<h3 id="changed-in-v202">Changed in v2.0.2<a class="headerlink" href="#changed-in-v202" title="Permanent link">¶</a></h3>
|
|
12365
12479
|
<ul>
|
|
12366
12480
|
<li><a href="https://github.com/nautobot/nautobot/issues/4313">#4313</a> - Updated device search to include manufacturer name.</li>
|
|
12367
12481
|
</ul>
|
|
12368
|
-
<h3 id="
|
|
12482
|
+
<h3 id="fixed-in-v202">Fixed in v2.0.2<a class="headerlink" href="#fixed-in-v202" title="Permanent link">¶</a></h3>
|
|
12369
12483
|
<ul>
|
|
12370
12484
|
<li><a href="https://github.com/nautobot/nautobot/issues/4472">#4472</a> - Fixed incorrect logic in <code>nautobot_config.py.j2</code> template that wouldn't detect the MySQL engine when Prometheus metrics are enabled.</li>
|
|
12371
12485
|
<li><a href="https://github.com/nautobot/nautobot/issues/4547">#4547</a> - Fixed incorrect form field type for <code>DeviceFilterForm.device_redundancy_group_priority</code>.</li>
|
|
@@ -12373,7 +12487,7 @@
|
|
|
12373
12487
|
<li><a href="https://github.com/nautobot/nautobot/issues/4603">#4603</a> - Fixed a bug that makes Manufacturers list fail to load.</li>
|
|
12374
12488
|
<li><a href="https://github.com/nautobot/nautobot/issues/4639">#4639</a> - Fixed the ability to attach images to Locations.</li>
|
|
12375
12489
|
</ul>
|
|
12376
|
-
<h3 id="
|
|
12490
|
+
<h3 id="documentation-in-v202">Documentation in v2.0.2<a class="headerlink" href="#documentation-in-v202" title="Permanent link">¶</a></h3>
|
|
12377
12491
|
<ul>
|
|
12378
12492
|
<li><a href="https://github.com/nautobot/nautobot/issues/4591">#4591</a> - Fixed incorrect documentation of <code>FEEDBACK_BUTTON_ENABLED</code> configuration setting.</li>
|
|
12379
12493
|
<li><a href="https://github.com/nautobot/nautobot/issues/4591">#4591</a> - Fixed a number of missing app code-reference links in the documentation table of contents.</li>
|
|
@@ -12382,33 +12496,33 @@
|
|
|
12382
12496
|
<li><a href="https://github.com/nautobot/nautobot/issues/4613">#4613</a> - Changed CLI reference from <code>dns</code> to <code>dnf</code> for install on RHEL systems.</li>
|
|
12383
12497
|
<li><a href="https://github.com/nautobot/nautobot/issues/4619">#4619</a> - Fixed broken links in Nautobot README.md.</li>
|
|
12384
12498
|
</ul>
|
|
12385
|
-
<h3 id="
|
|
12499
|
+
<h3 id="housekeeping-in-v202">Housekeeping in v2.0.2<a class="headerlink" href="#housekeeping-in-v202" title="Permanent link">¶</a></h3>
|
|
12386
12500
|
<ul>
|
|
12387
12501
|
<li><a href="https://github.com/nautobot/nautobot/issues/4611">#4611</a> - Updated pylint to use multiple threads.</li>
|
|
12388
12502
|
</ul>
|
|
12389
12503
|
<h2 id="v201-2023-10-04">v2.0.1 (2023-10-04)<a class="headerlink" href="#v201-2023-10-04" title="Permanent link">¶</a></h2>
|
|
12390
|
-
<h3 id="
|
|
12504
|
+
<h3 id="fixed-in-v201">Fixed in v2.0.1<a class="headerlink" href="#fixed-in-v201" title="Permanent link">¶</a></h3>
|
|
12391
12505
|
<ul>
|
|
12392
12506
|
<li><a href="https://github.com/nautobot/nautobot/issues/4436">#4436</a> - Allowed Interfaces of type <code>Virtual</code>, <code>LAG</code>, and <code>Bridge</code> to be selected as a virtual Interface's <code>parent</code>.</li>
|
|
12393
12507
|
<li><a href="https://github.com/nautobot/nautobot/issues/4572">#4572</a> - Fixed a JS crash when using list view search box to filter objects in legacy UI.</li>
|
|
12394
12508
|
</ul>
|
|
12395
|
-
<h3 id="
|
|
12509
|
+
<h3 id="housekeeping-in-v201">Housekeeping in v2.0.1<a class="headerlink" href="#housekeeping-in-v201" title="Permanent link">¶</a></h3>
|
|
12396
12510
|
<ul>
|
|
12397
12511
|
<li><a href="https://github.com/nautobot/nautobot/issues/4523">#4523</a> - Fixed <code>invoke eslint</code> not running against local development environment.</li>
|
|
12398
12512
|
<li><a href="https://github.com/nautobot/nautobot/issues/4552">#4552</a> - Improved <code>test_bulk_delete_form_contains_all_filtered</code> and <code>test_bulk_edit_form_contains_all_filtered</code> generic tests to fail more gracefully if insufficient test data is available.</li>
|
|
12399
12513
|
</ul>
|
|
12400
12514
|
<h2 id="v200-2023-09-28">v2.0.0 (2023-09-28)<a class="headerlink" href="#v200-2023-09-28" title="Permanent link">¶</a></h2>
|
|
12401
|
-
<h3 id="
|
|
12515
|
+
<h3 id="added-in-v200">Added in v2.0.0<a class="headerlink" href="#added-in-v200" title="Permanent link">¶</a></h3>
|
|
12402
12516
|
<ul>
|
|
12403
12517
|
<li><a href="https://github.com/nautobot/nautobot/issues/4553">#4553</a> - Implement table sticky headers.</li>
|
|
12404
12518
|
</ul>
|
|
12405
|
-
<h3 id="
|
|
12519
|
+
<h3 id="fixed-in-v200">Fixed in v2.0.0<a class="headerlink" href="#fixed-in-v200" title="Permanent link">¶</a></h3>
|
|
12406
12520
|
<ul>
|
|
12407
12521
|
<li><a href="https://github.com/nautobot/nautobot/issues/4550">#4550</a> - Fixed a 500 error caused by <code>PrefixForm</code> when <code>prefix_length</code> was omitted from <code>prefix</code> input.</li>
|
|
12408
12522
|
<li><a href="https://github.com/nautobot/nautobot/issues/4559">#4559</a> - Fixed behavior of a <code>DynamicGroup</code> with an invalid <code>filter</code> to fail closed rather than failing open.</li>
|
|
12409
12523
|
<li><a href="https://github.com/nautobot/nautobot/issues/4566">#4566</a> - Fixed table sticky headers in Firefox.</li>
|
|
12410
12524
|
</ul>
|
|
12411
|
-
<h3 id="
|
|
12525
|
+
<h3 id="documentation-in-v200">Documentation in v2.0.0<a class="headerlink" href="#documentation-in-v200" title="Permanent link">¶</a></h3>
|
|
12412
12526
|
<ul>
|
|
12413
12527
|
<li><a href="https://github.com/nautobot/nautobot/issues/4489">#4489</a> - Added release note overview to Jobs Overhaul.</li>
|
|
12414
12528
|
<li><a href="https://github.com/nautobot/nautobot/issues/4492">#4492</a> - Added slug removal documentation to the 2.0 release notes Release Overview.</li>
|
|
@@ -12416,11 +12530,11 @@
|
|
|
12416
12530
|
<li><a href="https://github.com/nautobot/nautobot/issues/4556">#4556</a> - Added documentation for using lowercase variables in App provided Constance Config.</li>
|
|
12417
12531
|
</ul>
|
|
12418
12532
|
<h2 id="v200rc-4-2023-09-27">v2.0.0.rc-4 (2023-09-27)<a class="headerlink" href="#v200rc-4-2023-09-27" title="Permanent link">¶</a></h2>
|
|
12419
|
-
<h3 id="
|
|
12533
|
+
<h3 id="security-in-v200-rc4">Security in v2.0.0-rc.4<a class="headerlink" href="#security-in-v200-rc4" title="Permanent link">¶</a></h3>
|
|
12420
12534
|
<ul>
|
|
12421
12535
|
<li><a href="https://github.com/nautobot/nautobot/issues/4500">#4500</a> - Updated <code>cryptography</code> to 41.0.4 due to <a href="https://github.com/advisories/GHSA-v8gr-m533-ghj9">GHSA-v8gr-m533-ghj9</a>. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
12422
12536
|
</ul>
|
|
12423
|
-
<h3 id="
|
|
12537
|
+
<h3 id="added-in-v200-rc4">Added in v2.0.0-rc.4<a class="headerlink" href="#added-in-v200-rc4" title="Permanent link">¶</a></h3>
|
|
12424
12538
|
<ul>
|
|
12425
12539
|
<li><a href="https://github.com/nautobot/nautobot/issues/4103">#4103</a> - Added UI viewset for detail/list/import/export views of <code>IPAddressToInterface</code> objects.</li>
|
|
12426
12540
|
<li><a href="https://github.com/nautobot/nautobot/issues/4418">#4418</a> - Added <code>netutils_parser</code> to <code>network_driver</code>.</li>
|
|
@@ -12436,7 +12550,7 @@
|
|
|
12436
12550
|
<li><a href="https://github.com/nautobot/nautobot/issues/4477">#4477</a> - Added the <code>slugify</code> Django template tag as a Jinja filter.</li>
|
|
12437
12551
|
<li><a href="https://github.com/nautobot/nautobot/issues/4524">#4524</a> - Added optional <code>api</code> parameter to <code>NotesMixin.get_notes_url()</code> model method.</li>
|
|
12438
12552
|
</ul>
|
|
12439
|
-
<h3 id="
|
|
12553
|
+
<h3 id="changed-in-v200-rc4">Changed in v2.0.0-rc.4<a class="headerlink" href="#changed-in-v200-rc4" title="Permanent link">¶</a></h3>
|
|
12440
12554
|
<ul>
|
|
12441
12555
|
<li><a href="https://github.com/nautobot/nautobot/issues/2472">#2472</a> - Added <code>tagged_vlans</code> and <code>untagged_vlan</code> as selected/prefetched in (VM)Interface API views.</li>
|
|
12442
12556
|
<li><a href="https://github.com/nautobot/nautobot/issues/2472">#2472</a> - Added <code>ip_addresses</code> as prefetched in VMInterface API views.</li>
|
|
@@ -12450,13 +12564,13 @@
|
|
|
12450
12564
|
<li><a href="https://github.com/nautobot/nautobot/issues/4426">#4426</a> - Changed <code>fix_custom_fields</code> to skip models without any custom fields.</li>
|
|
12451
12565
|
<li><a href="https://github.com/nautobot/nautobot/issues/4462">#4462</a> - Updated new UI to use REST API FilterSet metadata to populate filter form.</li>
|
|
12452
12566
|
</ul>
|
|
12453
|
-
<h3 id="
|
|
12567
|
+
<h3 id="removed-in-v200-rc4">Removed in v2.0.0-rc.4<a class="headerlink" href="#removed-in-v200-rc4" title="Permanent link">¶</a></h3>
|
|
12454
12568
|
<ul>
|
|
12455
12569
|
<li><a href="https://github.com/nautobot/nautobot/issues/4425">#4425</a> - Removed composite key from new UI object-detail "Advanced" tab.</li>
|
|
12456
12570
|
<li><a href="https://github.com/nautobot/nautobot/issues/4448">#4448</a> - Removed composite key from user-facing interfaces (API, UI).</li>
|
|
12457
12571
|
<li><a href="https://github.com/nautobot/nautobot/issues/4538">#4538</a> - Removed unnecessary dependency on <code>semver</code> npm package.</li>
|
|
12458
12572
|
</ul>
|
|
12459
|
-
<h3 id="
|
|
12573
|
+
<h3 id="fixed-in-v200-rc4">Fixed in v2.0.0-rc.4<a class="headerlink" href="#fixed-in-v200-rc4" title="Permanent link">¶</a></h3>
|
|
12460
12574
|
<ul>
|
|
12461
12575
|
<li><a href="https://github.com/nautobot/nautobot/issues/4033">#4033</a> - Fixed filtering objects in bulk edit and bulk delete.</li>
|
|
12462
12576
|
<li><a href="https://github.com/nautobot/nautobot/issues/4327">#4327</a> - Fixed a case where an ObjectChange would not be created when making an M2M change via the ORM.</li>
|
|
@@ -12478,12 +12592,12 @@
|
|
|
12478
12592
|
<li><a href="https://github.com/nautobot/nautobot/issues/4524">#4524</a> - Fixed an exception in REST API <code>/notes/</code> action endpoints that was inadvertently introduced in #4517.</li>
|
|
12479
12593
|
<li><a href="https://github.com/nautobot/nautobot/issues/4535">#4535</a> - Fixed off-by-one error in new UI date processing.</li>
|
|
12480
12594
|
</ul>
|
|
12481
|
-
<h3 id="
|
|
12595
|
+
<h3 id="dependencies-in-v200-rc4">Dependencies in v2.0.0-rc.4<a class="headerlink" href="#dependencies-in-v200-rc4" title="Permanent link">¶</a></h3>
|
|
12482
12596
|
<ul>
|
|
12483
12597
|
<li><a href="https://github.com/nautobot/nautobot/issues/4418">#4418</a> - Dependency <code>netutils</code> updated to <code>^1.6.0</code>.</li>
|
|
12484
12598
|
<li><a href="https://github.com/nautobot/nautobot/issues/4538">#4538</a> - Updated npm dependencies via <code>npm update</code>.</li>
|
|
12485
12599
|
</ul>
|
|
12486
|
-
<h3 id="
|
|
12600
|
+
<h3 id="documentation-in-v200-rc4">Documentation in v2.0.0-rc.4<a class="headerlink" href="#documentation-in-v200-rc4" title="Permanent link">¶</a></h3>
|
|
12487
12601
|
<ul>
|
|
12488
12602
|
<li><a href="https://github.com/nautobot/nautobot/issues/3303">#3303</a> - Added additional section headers to the Release Overview of Nautobot 2.0 release notes.</li>
|
|
12489
12603
|
<li><a href="https://github.com/nautobot/nautobot/issues/3303">#3303</a> - Added TODO comments for each additional section header.</li>
|
|
@@ -12498,17 +12612,17 @@
|
|
|
12498
12612
|
<li><a href="https://github.com/nautobot/nautobot/issues/4493">#4493</a> - Reordered overview items in the 2.0 release-notes.</li>
|
|
12499
12613
|
<li><a href="https://github.com/nautobot/nautobot/issues/4507">#4507</a> - Added Data Validation Engine to list of apps in docs.</li>
|
|
12500
12614
|
</ul>
|
|
12501
|
-
<h3 id="
|
|
12615
|
+
<h3 id="housekeeping-in-v200-rc4">Housekeeping in v2.0.0-rc.4<a class="headerlink" href="#housekeeping-in-v200-rc4" title="Permanent link">¶</a></h3>
|
|
12502
12616
|
<ul>
|
|
12503
12617
|
<li><a href="https://github.com/nautobot/nautobot/issues/4479">#4479</a> - Configured <code>npm</code> in Docker image to use 30s timeout, pinned <code>npm</code> to 9.X, and changed Docker build to use <code>npm ci</code> instead of <code>npm install</code> to improve builds.</li>
|
|
12504
12618
|
<li><a href="https://github.com/nautobot/nautobot/issues/4524">#4524</a> - Added <code>test_notes_url_functionality</code> test case to <code>APIViewTestCases.NotesURLViewTestCase</code> generic test class.</li>
|
|
12505
12619
|
</ul>
|
|
12506
12620
|
<h2 id="v200-rc3-2023-09-15">v2.0.0-rc.3 (2023-09-15)<a class="headerlink" href="#v200-rc3-2023-09-15" title="Permanent link">¶</a></h2>
|
|
12507
|
-
<h3 id="
|
|
12621
|
+
<h3 id="security-in-v200-rc3">Security in v2.0.0-rc.3<a class="headerlink" href="#security-in-v200-rc3" title="Permanent link">¶</a></h3>
|
|
12508
12622
|
<ul>
|
|
12509
12623
|
<li><a href="https://github.com/nautobot/nautobot/issues/3880">#3880</a> - Updated <code>GitPython</code> to <code>3.1.36</code> to address <code>CVE-2023-41040</code>.</li>
|
|
12510
12624
|
</ul>
|
|
12511
|
-
<h3 id="
|
|
12625
|
+
<h3 id="added-in-v200-rc3">Added in v2.0.0-rc.3<a class="headerlink" href="#added-in-v200-rc3" title="Permanent link">¶</a></h3>
|
|
12512
12626
|
<ul>
|
|
12513
12627
|
<li><a href="https://github.com/nautobot/nautobot/issues/3934">#3934</a> - Added <code>Namespace</code> column to <code>VRFDeviceAssignmentTable</code> and <code>VRFPrefixAssignmentTable</code> to display assigned VRFs' <code>namespace</code> property.</li>
|
|
12514
12628
|
<li><a href="https://github.com/nautobot/nautobot/issues/3934">#3934</a> - Added <code>namespace</code> attribute to rendering of "IP Addresses" columns of relevant <code>Interface</code> and <code>InterfaceRedundancyGroup</code> tables.</li>
|
|
@@ -12518,7 +12632,7 @@
|
|
|
12518
12632
|
<li><a href="https://github.com/nautobot/nautobot/issues/4249">#4249</a> - Added REST API endpoint for the IPAddressToInterface model.</li>
|
|
12519
12633
|
<li><a href="https://github.com/nautobot/nautobot/issues/4346">#4346</a> - Implemented <code>.natural_slug</code> property on all models.</li>
|
|
12520
12634
|
</ul>
|
|
12521
|
-
<h3 id="
|
|
12635
|
+
<h3 id="changed-in-v200-rc3">Changed in v2.0.0-rc.3<a class="headerlink" href="#changed-in-v200-rc3" title="Permanent link">¶</a></h3>
|
|
12522
12636
|
<ul>
|
|
12523
12637
|
<li><a href="https://github.com/nautobot/nautobot/issues/4012">#4012</a> - Disable non ready Model View in new-ui sidebar.</li>
|
|
12524
12638
|
<li><a href="https://github.com/nautobot/nautobot/issues/4015">#4015</a> - Refined new-UI IPAddress detail view.</li>
|
|
@@ -12528,14 +12642,14 @@
|
|
|
12528
12642
|
<li><a href="https://github.com/nautobot/nautobot/issues/4333">#4333</a> - Updated Dockerfile not to use Python virtual environment.</li>
|
|
12529
12643
|
<li><a href="https://github.com/nautobot/nautobot/issues/4440">#4440</a> - Fixed an issues with ModelForm's that used <code>__all__</code> on <code>Meta.fields</code> and <code>custom_fields</code> displayed a JSON blob.</li>
|
|
12530
12644
|
</ul>
|
|
12531
|
-
<h3 id="
|
|
12645
|
+
<h3 id="removed-in-v200-rc3">Removed in v2.0.0-rc.3<a class="headerlink" href="#removed-in-v200-rc3" title="Permanent link">¶</a></h3>
|
|
12532
12646
|
<ul>
|
|
12533
12647
|
<li><a href="https://github.com/nautobot/nautobot/issues/3934">#3934</a> - Removed <code>ip_family</code> queryset annotation from <code>PrefixQuerySet</code> and <code>IPAddressQuerySet</code>.</li>
|
|
12534
12648
|
<li><a href="https://github.com/nautobot/nautobot/issues/4011">#4011</a> - Removed the "disable menu" feature for non-NewUI ready menu links in the sidebar and NavBar.</li>
|
|
12535
12649
|
<li><a href="https://github.com/nautobot/nautobot/issues/4015">#4015</a> - Removed <code>tags</code>, <code>custom-fields</code>, <code>computed-fields</code>, <code>relationships</code> from new-UI object detail</li>
|
|
12536
12650
|
<li><a href="https://github.com/nautobot/nautobot/issues/4017">#4017</a> - Removed <code>notes_url</code> from new-UI object detail views.</li>
|
|
12537
12651
|
</ul>
|
|
12538
|
-
<h3 id="
|
|
12652
|
+
<h3 id="fixed-in-v200-rc3">Fixed in v2.0.0-rc.3<a class="headerlink" href="#fixed-in-v200-rc3" title="Permanent link">¶</a></h3>
|
|
12539
12653
|
<ul>
|
|
12540
12654
|
<li><a href="https://github.com/nautobot/nautobot/issues/3934">#3934</a> - Fixed validation logic for VirtualMachine primary ips.</li>
|
|
12541
12655
|
<li><a href="https://github.com/nautobot/nautobot/issues/4010">#4010</a> - Fixed error not being raised when an invalid parent is provided to the IPAddress in both the API and ORM.</li>
|
|
@@ -12547,7 +12661,7 @@
|
|
|
12547
12661
|
<li><a href="https://github.com/nautobot/nautobot/issues/4388">#4388</a> - Fixed a bug that makes ConfigContexts applied to parent locations missing from rendered config context of child location Devices/Virtual Machines.</li>
|
|
12548
12662
|
<li><a href="https://github.com/nautobot/nautobot/issues/4407">#4407</a> - Fixed Dockerfile Node.js <code>setup_XX.x</code> <a href="https://github.com/nodesource/distributions#new-update-%EF%B8%8F">deprecated script</a>.</li>
|
|
12549
12663
|
</ul>
|
|
12550
|
-
<h3 id="
|
|
12664
|
+
<h3 id="documentation-in-v200-rc3">Documentation in v2.0.0-rc.3<a class="headerlink" href="#documentation-in-v200-rc3" title="Permanent link">¶</a></h3>
|
|
12551
12665
|
<ul>
|
|
12552
12666
|
<li><a href="https://github.com/nautobot/nautobot/issues/2821">#2821</a> - Adds navigation.footer to mkdocs features to enable navigation in the footer.</li>
|
|
12553
12667
|
<li><a href="https://github.com/nautobot/nautobot/issues/2821">#2821</a> - Updates installation documentation into a single path, using tabs for MySQL/PostgeSQL & Ubuntu/Debian/RHEL.</li>
|
|
@@ -12559,7 +12673,7 @@
|
|
|
12559
12673
|
<li><a href="https://github.com/nautobot/nautobot/issues/4326">#4326</a> - Update documentation on Nautobot release workflow.</li>
|
|
12560
12674
|
<li><a href="https://github.com/nautobot/nautobot/issues/4429">#4429</a> - Updated the pylint-nautobot migration steps.</li>
|
|
12561
12675
|
</ul>
|
|
12562
|
-
<h3 id="
|
|
12676
|
+
<h3 id="housekeeping-in-v200-rc3">Housekeeping in v2.0.0-rc.3<a class="headerlink" href="#housekeeping-in-v200-rc3" title="Permanent link">¶</a></h3>
|
|
12563
12677
|
<ul>
|
|
12564
12678
|
<li><a href="https://github.com/nautobot/nautobot/issues/2821">#2821</a> - Updates docker-compose standalone to docker compose plugin to assist in development environment.</li>
|
|
12565
12679
|
<li><a href="https://github.com/nautobot/nautobot/issues/4310">#4310</a> - Updated CI integration workflow to remove some redundant tests, run more tests in parallel and remove arm64 platform from the container build.</li>
|
|
@@ -12568,11 +12682,11 @@
|
|
|
12568
12682
|
<li><a href="https://github.com/nautobot/nautobot/issues/4409">#4409</a> - Updated upstream testing workflow for apps to test against LTM and 2.0 with <code>ltm-1.6</code> and <code>develop</code> branch tags respectively.</li>
|
|
12569
12683
|
</ul>
|
|
12570
12684
|
<h2 id="v200rc-2-2023-08-24">v2.0.0.rc-2 (2023-08-24)<a class="headerlink" href="#v200rc-2-2023-08-24" title="Permanent link">¶</a></h2>
|
|
12571
|
-
<h3 id="
|
|
12685
|
+
<h3 id="added-in-v200rc-2">Added in v2.0.0.rc-2<a class="headerlink" href="#added-in-v200rc-2" title="Permanent link">¶</a></h3>
|
|
12572
12686
|
<ul>
|
|
12573
12687
|
<li><a href="https://github.com/nautobot/nautobot/issues/3794">#3794</a> - Added support for multi-column keys for CSV Import.</li>
|
|
12574
12688
|
</ul>
|
|
12575
|
-
<h3 id="
|
|
12689
|
+
<h3 id="changed-in-v200rc-2">Changed in v2.0.0.rc-2<a class="headerlink" href="#changed-in-v200rc-2" title="Permanent link">¶</a></h3>
|
|
12576
12690
|
<ul>
|
|
12577
12691
|
<li><a href="https://github.com/nautobot/nautobot/issues/2807">#2807</a> - Renamed <code>IPAddress</code> <code>vrf</code> filter to <code>vrfs</code>.</li>
|
|
12578
12692
|
<li><a href="https://github.com/nautobot/nautobot/issues/2807">#2807</a> - Renamed <code>Prefix</code> <code>mask_length</code> filter to <code>prefix_length</code> and <code>vrf</code> filter to <code>vrfs</code>.</li>
|
|
@@ -12585,21 +12699,21 @@
|
|
|
12585
12699
|
<li><a href="https://github.com/nautobot/nautobot/issues/2853">#2853</a> - Changed <code>as_form_class</code>, <code>as_form</code> and <code>validate_data</code> functions on BaseJob Model to <code>classmethods</code>.</li>
|
|
12586
12700
|
<li><a href="https://github.com/nautobot/nautobot/issues/4305">#4305</a> - Merged develop back into next after release 1.6.1</li>
|
|
12587
12701
|
</ul>
|
|
12588
|
-
<h3 id="
|
|
12702
|
+
<h3 id="removed-in-v200rc-2">Removed in v2.0.0.rc-2<a class="headerlink" href="#removed-in-v200rc-2" title="Permanent link">¶</a></h3>
|
|
12589
12703
|
<ul>
|
|
12590
12704
|
<li><a href="https://github.com/nautobot/nautobot/issues/2807">#2807</a> - Removed <code>RouteTarget</code> <code>exporting_vrf_id</code> and <code>importing_vrf_id</code> filters as they are redundant with the <code>exporting_vrfs</code> and <code>importing_vrfs</code> filters.</li>
|
|
12591
12705
|
<li><a href="https://github.com/nautobot/nautobot/issues/2807">#2807</a> - Removed <code>Service</code> <code>device_id</code> and <code>virtual_machine_id</code> filters as they are redundant with the <code>device</code> and <code>virtual_machine</code> filters.</li>
|
|
12592
12706
|
<li><a href="https://github.com/nautobot/nautobot/issues/2807">#2807</a> - Removed <code>VRF</code> <code>export_target_id</code> and <code>import_target_id</code> filters as they are redundant with the <code>export_targets</code> and <code>import_targets</code> filters.</li>
|
|
12593
12707
|
<li><a href="https://github.com/nautobot/nautobot/issues/2853">#2853</a> - Removed <code>/extras/jobs/results/<uuid:pk>/</code> URL endpoint.</li>
|
|
12594
12708
|
</ul>
|
|
12595
|
-
<h3 id="
|
|
12709
|
+
<h3 id="fixed-in-v200rc-2">Fixed in v2.0.0.rc-2<a class="headerlink" href="#fixed-in-v200rc-2" title="Permanent link">¶</a></h3>
|
|
12596
12710
|
<ul>
|
|
12597
12711
|
<li><a href="https://github.com/nautobot/nautobot/issues/2807">#2807</a> - Fixed misnamed <code>tag</code> fields on various filter forms (correct filter name is now <code>tags</code>).</li>
|
|
12598
12712
|
<li><a href="https://github.com/nautobot/nautobot/issues/4299">#4299</a> - Added missing <code>to_field_name</code> attribute on <code>TagFilterField</code>, which was causing dynamic-group filtering failures.</li>
|
|
12599
12713
|
<li><a href="https://github.com/nautobot/nautobot/issues/4300">#4300</a> - Fixed a permission issue when using <code>final-dev</code> containers by switching to root user before exposing port and entrypoint.</li>
|
|
12600
12714
|
</ul>
|
|
12601
12715
|
<h2 id="v200rc1-2023-08-18">v2.0.0rc1 (2023-08-18)<a class="headerlink" href="#v200rc1-2023-08-18" title="Permanent link">¶</a></h2>
|
|
12602
|
-
<h3 id="
|
|
12716
|
+
<h3 id="added-in-v200rc1">Added in v2.0.0rc1<a class="headerlink" href="#added-in-v200rc1" title="Permanent link">¶</a></h3>
|
|
12603
12717
|
<ul>
|
|
12604
12718
|
<li><a href="https://github.com/nautobot/nautobot/issues/1175">#1175</a> - Added "Submit Feedback" functionality to the new UI.</li>
|
|
12605
12719
|
<li><a href="https://github.com/nautobot/nautobot/issues/3582">#3582</a> - The 'GetFilterSetFieldDOMElementAPIView' now has the option to return the filterset field's DOM element in JSON format.</li>
|
|
@@ -12619,7 +12733,7 @@
|
|
|
12619
12733
|
<li><a href="https://github.com/nautobot/nautobot/issues/4225">#4225</a> - Added Namespace to IPAddressDetailTable.</li>
|
|
12620
12734
|
<li><a href="https://github.com/nautobot/nautobot/issues/4228">#4228</a> - Incorporated all code changes from Nautobot 1.6.0.</li>
|
|
12621
12735
|
</ul>
|
|
12622
|
-
<h3 id="
|
|
12736
|
+
<h3 id="changed-in-v200rc1">Changed in v2.0.0rc1<a class="headerlink" href="#changed-in-v200rc1" title="Permanent link">¶</a></h3>
|
|
12623
12737
|
<ul>
|
|
12624
12738
|
<li><a href="https://github.com/nautobot/nautobot/issues/3229">#3229</a> - Rename JobResult.data to JobResult.result and delete the original JobResult.result.</li>
|
|
12625
12739
|
<li><a href="https://github.com/nautobot/nautobot/issues/3636">#3636</a> - Reintroduced "Assign IP Address" button to Device Interfaces list view.</li>
|
|
@@ -12645,7 +12759,7 @@
|
|
|
12645
12759
|
<li><a href="https://github.com/nautobot/nautobot/issues/4164">#4164</a> - Modified docker dev stage to run as root user to prevent permission issues with bind mounts.</li>
|
|
12646
12760
|
<li><a href="https://github.com/nautobot/nautobot/issues/4242">#4242</a> - Changed behavior of <code>dev</code> and <code>final-dev</code> Docker images to disable installation metrics by default.</li>
|
|
12647
12761
|
</ul>
|
|
12648
|
-
<h3 id="
|
|
12762
|
+
<h3 id="removed-in-v200rc1">Removed in v2.0.0rc1<a class="headerlink" href="#removed-in-v200rc1" title="Permanent link">¶</a></h3>
|
|
12649
12763
|
<ul>
|
|
12650
12764
|
<li><a href="https://github.com/nautobot/nautobot/issues/3761">#3761</a> - Remove remaining <code>Site</code> and <code>Region</code> references from core docs.</li>
|
|
12651
12765
|
<li><a href="https://github.com/nautobot/nautobot/issues/3892">#3892</a> - Removed unused method <code>get_job_result_and_repository_record</code> in <code>nautobot.extras.datasources.git</code>.</li>
|
|
@@ -12653,7 +12767,7 @@
|
|
|
12653
12767
|
<li><a href="https://github.com/nautobot/nautobot/issues/4104">#4104</a> - Removed unused <code>primary_for_device</code> from Interface data migration.</li>
|
|
12654
12768
|
<li><a href="https://github.com/nautobot/nautobot/issues/4115">#4115</a> - Removed temporary code from <code>ObjectEditView</code> that was working around some IPAddress/Prefix form validation gaps.</li>
|
|
12655
12769
|
</ul>
|
|
12656
|
-
<h3 id="
|
|
12770
|
+
<h3 id="fixed-in-v200rc1">Fixed in v2.0.0rc1<a class="headerlink" href="#fixed-in-v200rc1" title="Permanent link">¶</a></h3>
|
|
12657
12771
|
<ul>
|
|
12658
12772
|
<li><a href="https://github.com/nautobot/nautobot/issues/3904">#3904</a> - Added proper spacing/alignment to pagination section.</li>
|
|
12659
12773
|
<li><a href="https://github.com/nautobot/nautobot/issues/3974">#3974</a> - Corrected the natural-key definitions for <code>ComputedField</code>, <code>CustomField</code>, <code>FileAttachment</code>, <code>ImageAttachment</code>, <code>ObjectChange</code>, <code>Relationship</code>, <code>RelationshipAssociation</code>, and <code>Token</code> models.</li>
|
|
@@ -12670,7 +12784,7 @@
|
|
|
12670
12784
|
<li><a href="https://github.com/nautobot/nautobot/issues/4154">#4154</a> - Added useEffect to fix the <code>last_page</code> in Pagination from not updating dynamically.</li>
|
|
12671
12785
|
<li><a href="https://github.com/nautobot/nautobot/issues/4241">#4241</a> - Added a timeout and exception handling to the <code>nautobot-server send_installation_metrics</code> command.</li>
|
|
12672
12786
|
</ul>
|
|
12673
|
-
<h3 id="
|
|
12787
|
+
<h3 id="dependencies-in-v200rc1">Dependencies in v2.0.0rc1<a class="headerlink" href="#dependencies-in-v200rc1" title="Permanent link">¶</a></h3>
|
|
12674
12788
|
<ul>
|
|
12675
12789
|
<li><a href="https://github.com/nautobot/nautobot/issues/4125">#4125</a> - Added support for Python 3.11.</li>
|
|
12676
12790
|
<li><a href="https://github.com/nautobot/nautobot/issues/4125">#4125</a> - Updated <code>django-auth-ldap</code> optional dependency to <code>~4.3.0</code>.</li>
|
|
@@ -12700,7 +12814,7 @@
|
|
|
12700
12814
|
<li><a href="https://github.com/nautobot/nautobot/issues/4143">#4143</a> - Updated <code>packaging</code> dependency to <code>~23.1</code>.</li>
|
|
12701
12815
|
<li><a href="https://github.com/nautobot/nautobot/issues/4143">#4143</a> - Updated <code>psycopg2-binary</code> dependency to <code>~2.9.6</code>.</li>
|
|
12702
12816
|
</ul>
|
|
12703
|
-
<h3 id="
|
|
12817
|
+
<h3 id="documentation-in-v200rc1">Documentation in v2.0.0rc1<a class="headerlink" href="#documentation-in-v200rc1" title="Permanent link">¶</a></h3>
|
|
12704
12818
|
<ul>
|
|
12705
12819
|
<li><a href="https://github.com/nautobot/nautobot/issues/3330">#3330</a> - Added UI configuration documentation.</li>
|
|
12706
12820
|
<li><a href="https://github.com/nautobot/nautobot/issues/3386">#3386</a> - Added documentation linking to best practices for database backup.</li>
|
|
@@ -12712,7 +12826,7 @@
|
|
|
12712
12826
|
<li><a href="https://github.com/nautobot/nautobot/issues/4061">#4061</a> - Fixed a few broken links in the documentation.</li>
|
|
12713
12827
|
<li><a href="https://github.com/nautobot/nautobot/issues/4091">#4091</a> - Added information about installing and running Node.js as a part of the Nautobot installation documentation.</li>
|
|
12714
12828
|
</ul>
|
|
12715
|
-
<h3 id="
|
|
12829
|
+
<h3 id="housekeeping-in-v200rc1">Housekeeping in v2.0.0rc1<a class="headerlink" href="#housekeeping-in-v200rc1" title="Permanent link">¶</a></h3>
|
|
12716
12830
|
<ul>
|
|
12717
12831
|
<li><a href="https://github.com/nautobot/nautobot/issues/4028">#4028</a> - Fixed CI integration workflow to publish 'final-dev', and build only <code>final</code> images.</li>
|
|
12718
12832
|
<li><a href="https://github.com/nautobot/nautobot/issues/4028">#4028</a> - Fixed CI integration workflow <code>set-output</code> warnings.</li>
|
|
@@ -12727,7 +12841,7 @@
|
|
|
12727
12841
|
<li><a href="https://github.com/nautobot/nautobot/issues/4285">#4285</a> - Fixed <code>next</code> container build workflow.</li>
|
|
12728
12842
|
</ul>
|
|
12729
12843
|
<h2 id="v200-beta2-2023-07-07">v2.0.0-beta.2 (2023-07-07)<a class="headerlink" href="#v200-beta2-2023-07-07" title="Permanent link">¶</a></h2>
|
|
12730
|
-
<h3 id="
|
|
12844
|
+
<h3 id="added-in-v200-beta2">Added in v2.0.0-beta.2<a class="headerlink" href="#added-in-v200-beta2" title="Permanent link">¶</a></h3>
|
|
12731
12845
|
<ul>
|
|
12732
12846
|
<li><a href="https://github.com/nautobot/nautobot/issues/3287">#3287</a> - Added <code>nautobot-server audit_dynamic_groups</code> management command for evaluating breaking filter changes to existing DynamicGroup instances.</li>
|
|
12733
12847
|
<li><a href="https://github.com/nautobot/nautobot/issues/3526">#3526</a> - Added detail view UI layout config.</li>
|
|
@@ -12745,7 +12859,7 @@
|
|
|
12745
12859
|
<li><a href="https://github.com/nautobot/nautobot/issues/4004">#4004</a> - Added <code>parent</code> filter for <code>Prefix</code> objects.</li>
|
|
12746
12860
|
<li><a href="https://github.com/nautobot/nautobot/issues/4004">#4004</a> - Added warning messages when creating or editing a <code>Prefix</code> or <code>IPAddress</code> that does not follow prefix <code>type</code> guidance.</li>
|
|
12747
12861
|
</ul>
|
|
12748
|
-
<h3 id="
|
|
12862
|
+
<h3 id="changed-in-v200-beta2">Changed in v2.0.0-beta.2<a class="headerlink" href="#changed-in-v200-beta2" title="Permanent link">¶</a></h3>
|
|
12749
12863
|
<ul>
|
|
12750
12864
|
<li><a href="https://github.com/nautobot/nautobot/issues/2662">#2662</a> - Changed many FilterSet filters to filter on (name or ID) instead of (slug or ID) since the relevant model <code>slug</code> fields have been removed.</li>
|
|
12751
12865
|
<li><a href="https://github.com/nautobot/nautobot/issues/2662">#2662</a> - Changed FilterSet filters referring to <code>DeviceType</code> objects to filter on (model or ID) instead of (slug or ID).</li>
|
|
@@ -12759,7 +12873,7 @@
|
|
|
12759
12873
|
<li><a href="https://github.com/nautobot/nautobot/issues/3424">#3424</a> - Added <code>IPAddress.type</code> field and moved DHCP/SLAAC status to types.</li>
|
|
12760
12874
|
<li><a href="https://github.com/nautobot/nautobot/issues/3634">#3634</a> - Restored <code>assigned_to_interface</code> as a <code>RelatedMembershipBooleanFilter</code> with name <code>has_interface_assignments</code> on <code>IPAddressFilterSet</code>.</li>
|
|
12761
12875
|
<li><a href="https://github.com/nautobot/nautobot/issues/3634">#3634</a> - Restored <code>present_in_vrf</code> and <code>present_in_vrf_id</code> filters on <code>IPAddressFilterSet</code>.</li>
|
|
12762
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/3725">#3725</a> - Changed REST API nested hyperlink to a brief object representation consisting of its ID, URL, and object_type
|
|
12876
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/3725">#3725</a> - Changed REST API nested hyperlink to a brief object representation consisting of its ID, URL, and <code>object_type</code>.</li>
|
|
12763
12877
|
<li><a href="https://github.com/nautobot/nautobot/issues/3748">#3748</a> - Updated API serializers to support Namespaces and unskip unit tests</li>
|
|
12764
12878
|
<li><a href="https://github.com/nautobot/nautobot/issues/3770">#3770</a> - Modified the text color to be gray-1 for the sidebarNav components.</li>
|
|
12765
12879
|
<li><a href="https://github.com/nautobot/nautobot/issues/3770">#3770</a> - In Layout.js, also made the 'Return to Legacy UI' link gray-1 for consistency.</li>
|
|
@@ -12792,7 +12906,7 @@
|
|
|
12792
12906
|
<li><a href="https://github.com/nautobot/nautobot/issues/4004">#4004</a> - Changed <code>Prefix.type</code> validation with respect to parents and children from strictly-enforced to advisory-only for 2.0.</li>
|
|
12793
12907
|
<li><a href="https://github.com/nautobot/nautobot/issues/4004">#4004</a> - Changed <code>parent</code> filter on <code>IPAddress</code> to be exact-match by PK; the previously present filter is renamed to <code>prefix</code>.</li>
|
|
12794
12908
|
</ul>
|
|
12795
|
-
<h3 id="
|
|
12909
|
+
<h3 id="removed-in-v200-beta2">Removed in v2.0.0-beta.2<a class="headerlink" href="#removed-in-v200-beta2" title="Permanent link">¶</a></h3>
|
|
12796
12910
|
<ul>
|
|
12797
12911
|
<li><a href="https://github.com/nautobot/nautobot/issues/2662">#2662</a> - Removed <code>DeviceType.slug</code> field.</li>
|
|
12798
12912
|
<li><a href="https://github.com/nautobot/nautobot/issues/2662">#2662</a> - Removed <code>Location.slug</code> field.</li>
|
|
@@ -12814,7 +12928,7 @@
|
|
|
12814
12928
|
<li><a href="https://github.com/nautobot/nautobot/issues/3941">#3941</a> - Removed <code>namespace, name</code> uniqueness constraint on <code>VRF</code>.</li>
|
|
12815
12929
|
<li><a href="https://github.com/nautobot/nautobot/issues/3941">#3941</a> - Removed some overly verbose messaging in IPAM migration utilities.</li>
|
|
12816
12930
|
</ul>
|
|
12817
|
-
<h3 id="
|
|
12931
|
+
<h3 id="fixed-in-v200-beta2">Fixed in v2.0.0-beta.2<a class="headerlink" href="#fixed-in-v200-beta2" title="Permanent link">¶</a></h3>
|
|
12818
12932
|
<ul>
|
|
12819
12933
|
<li><a href="https://github.com/nautobot/nautobot/issues/2662">#2662</a> - Corrected leftover "natural key slug" reference in <code>object_bulk_create.html</code>.</li>
|
|
12820
12934
|
<li><a href="https://github.com/nautobot/nautobot/issues/2662">#2662</a> - Fixed leftover reference to <code>GraphQLQuery.slug</code> in <code>CustomGraphQLView</code>.</li>
|
|
@@ -12846,18 +12960,18 @@
|
|
|
12846
12960
|
<li><a href="https://github.com/nautobot/nautobot/issues/4005">#4005</a> - Added logic to catch and report errors when registering a Job to the database.</li>
|
|
12847
12961
|
<li><a href="https://github.com/nautobot/nautobot/issues/4005">#4005</a> - Added logic to Job class <code>@classproperty</code> methods to enforce correct data types.</li>
|
|
12848
12962
|
</ul>
|
|
12849
|
-
<h3 id="
|
|
12963
|
+
<h3 id="dependencies-in-v200-beta2">Dependencies in v2.0.0-beta.2<a class="headerlink" href="#dependencies-in-v200-beta2" title="Permanent link">¶</a></h3>
|
|
12850
12964
|
<ul>
|
|
12851
12965
|
<li><a href="https://github.com/nautobot/nautobot/issues/3883">#3883</a> - Updated nautobot-ui package in next.</li>
|
|
12852
12966
|
</ul>
|
|
12853
|
-
<h3 id="
|
|
12967
|
+
<h3 id="documentation-in-v200-beta2">Documentation in v2.0.0-beta.2<a class="headerlink" href="#documentation-in-v200-beta2" title="Permanent link">¶</a></h3>
|
|
12854
12968
|
<ul>
|
|
12855
12969
|
<li><a href="https://github.com/nautobot/nautobot/issues/2662">#2662</a> - Revised development best-practices documentation around the inclusion of <code>slug</code> fields in models.</li>
|
|
12856
12970
|
<li><a href="https://github.com/nautobot/nautobot/issues/3847">#3847</a> - Corrected out-of-date information about <code>class_path</code> in the Jobs documentation.</li>
|
|
12857
12971
|
<li><a href="https://github.com/nautobot/nautobot/issues/3940">#3940</a> - Added Jobs migration docs.</li>
|
|
12858
12972
|
<li><a href="https://github.com/nautobot/nautobot/issues/4005">#4005</a> - Fixed incorrect documentation about how to register Jobs from an app.</li>
|
|
12859
12973
|
</ul>
|
|
12860
|
-
<h3 id="
|
|
12974
|
+
<h3 id="housekeeping-in-v200-beta2">Housekeeping in v2.0.0-beta.2<a class="headerlink" href="#housekeeping-in-v200-beta2" title="Permanent link">¶</a></h3>
|
|
12861
12975
|
<ul>
|
|
12862
12976
|
<li><a href="https://github.com/nautobot/nautobot/issues/2662">#2662</a> - Corrected incorrect logic in generic view test <code>test_list_objects_filtered</code> and <code>test_list_objects_unknown_filter_strict_filtering</code>.</li>
|
|
12863
12977
|
<li><a href="https://github.com/nautobot/nautobot/issues/3424">#3424</a> - Unskipped <code>nautobot.ipam.tests.test_forms.IPAddressFormTest</code></li>
|
|
@@ -12871,7 +12985,7 @@
|
|
|
12871
12985
|
<li><a href="https://github.com/nautobot/nautobot/issues/4078">#4078</a> - Fixed prerelease workflow referenced <code>ci_integration.yml</code> file.</li>
|
|
12872
12986
|
</ul>
|
|
12873
12987
|
<h2 id="v200-beta1-2023-06-06">v2.0.0-beta.1 (2023-06-06)<a class="headerlink" href="#v200-beta1-2023-06-06" title="Permanent link">¶</a></h2>
|
|
12874
|
-
<h3 id="
|
|
12988
|
+
<h3 id="added-in-v200-beta1">Added in v2.0.0-beta.1<a class="headerlink" href="#added-in-v200-beta1" title="Permanent link">¶</a></h3>
|
|
12875
12989
|
<ul>
|
|
12876
12990
|
<li><a href="https://github.com/nautobot/nautobot/issues/851">#851</a> - Added list view with CSV import/export buttons for <code>CircuitTermination</code> objects.</li>
|
|
12877
12991
|
<li><a href="https://github.com/nautobot/nautobot/issues/1633">#1633</a> - Added <code>created</code> and <code>last_updated</code> fields on the <code>VMInterface</code> model. When migrating to this release, these fields will default to <code>None</code> for any pre-existing instances of this model.</li>
|
|
@@ -12906,7 +13020,7 @@
|
|
|
12906
13020
|
<li><a href="https://github.com/nautobot/nautobot/issues/3804">#3804</a> - Added feature to redirect all add and edit views to legacy UI.</li>
|
|
12907
13021
|
<li><a href="https://github.com/nautobot/nautobot/issues/3840">#3840</a> - Added <code>bool</code> return value for <code>Nautobot.extras.datasources.git.ensure_git_repository()</code> to indicate whether the filesystem was changed.</li>
|
|
12908
13022
|
</ul>
|
|
12909
|
-
<h3 id="
|
|
13023
|
+
<h3 id="changed-in-v200-beta1">Changed in v2.0.0-beta.1<a class="headerlink" href="#changed-in-v200-beta1" title="Permanent link">¶</a></h3>
|
|
12910
13024
|
<ul>
|
|
12911
13025
|
<li><a href="https://github.com/nautobot/nautobot/issues/1633">#1633</a> - The base class for all <code>tags</code> fields on <code>PrimaryModel</code> subclasses is now <code>nautobot.core.models.fields.TagsField</code> rather than <code>taggit.managers.TaggableManager</code>. Any apps using <code>PrimaryModel</code> as a base class will likely need to generate and run a schema migration to reflect this change.</li>
|
|
12912
13026
|
<li><a href="https://github.com/nautobot/nautobot/issues/2331">#2331</a> - Changed <code>JobLogEntry.log_level</code> choices from <code>default</code>, <code>info</code>, <code>success</code>, <code>warning</code>, <code>failure</code> to Python default logging levels <code>debug</code>, <code>info</code>, <code>warning</code>, <code>error</code> and <code>critical</code>.</li>
|
|
@@ -12951,7 +13065,7 @@
|
|
|
12951
13065
|
<li><a href="https://github.com/nautobot/nautobot/issues/3840">#3840</a> - Changed <code>Job.runnable</code> property to not consider whether the <code>job_class</code> is set, as a performance optimization.</li>
|
|
12952
13066
|
<li><a href="https://github.com/nautobot/nautobot/issues/3840">#3840</a> - Changed client-side slug construction (legacy UI) to use underscores rather than dashes.</li>
|
|
12953
13067
|
</ul>
|
|
12954
|
-
<h3 id="
|
|
13068
|
+
<h3 id="removed-in-v200-beta1">Removed in v2.0.0-beta.1<a class="headerlink" href="#removed-in-v200-beta1" title="Permanent link">¶</a></h3>
|
|
12955
13069
|
<ul>
|
|
12956
13070
|
<li><a href="https://github.com/nautobot/nautobot/issues/1633">#1633</a> - Removed <code>nautobot.extras.utils.is_taggable</code>; use <code>nautobot.core.models.utils.is_taggable</code> instead.</li>
|
|
12957
13071
|
<li><a href="https://github.com/nautobot/nautobot/issues/1633">#1633</a> - Removed backward-compatibility with <code>taggit</code> 1.x Python API; instead of <code>object.tags.set(tag1, tag2, tag3)</code> you must now do <code>object.tags.set([tag1, tag2, tag3])</code>.</li>
|
|
@@ -12977,7 +13091,7 @@
|
|
|
12977
13091
|
<li><a href="https://github.com/nautobot/nautobot/issues/3840">#3840</a> - Removed <code>source</code> and <code>slug</code> filters for Jobs.</li>
|
|
12978
13092
|
<li><a href="https://github.com/nautobot/nautobot/issues/3840">#3840</a> - Removed <code>get_jobs()</code>, <code>get_job_classpaths()</code>, <code>jobs_in_directory()</code> functions.</li>
|
|
12979
13093
|
</ul>
|
|
12980
|
-
<h3 id="
|
|
13094
|
+
<h3 id="fixed-in-v200-beta1">Fixed in v2.0.0-beta.1<a class="headerlink" href="#fixed-in-v200-beta1" title="Permanent link">¶</a></h3>
|
|
12981
13095
|
<ul>
|
|
12982
13096
|
<li><a href="https://github.com/nautobot/nautobot/issues/3437">#3437</a> - Fixed the possibility of inadvertently applying the same <code>Tag</code> to the same object multiple times by adding appropriate uniqueness constraints on the <code>TaggedItem</code> through table.</li>
|
|
12983
13097
|
<li><a href="https://github.com/nautobot/nautobot/issues/3518">#3518</a> - Fixed an error seen when running the <code>extras.0061_collect_roles_from_related_apps_roles</code> migration.</li>
|
|
@@ -13008,16 +13122,16 @@
|
|
|
13008
13122
|
<li><a href="https://github.com/nautobot/nautobot/issues/3840">#3840</a> - Removed leftover/non-functional <code>Source</code> tab from <code>job_approval_request.html</code>.</li>
|
|
13009
13123
|
<li><a href="https://github.com/nautobot/nautobot/issues/3864">#3864</a> - Fixed cases where Device.role was null, incongruent with the enforcement in the API and UI.</li>
|
|
13010
13124
|
</ul>
|
|
13011
|
-
<h3 id="
|
|
13125
|
+
<h3 id="dependencies-in-v200-beta1">Dependencies in v2.0.0-beta.1<a class="headerlink" href="#dependencies-in-v200-beta1" title="Permanent link">¶</a></h3>
|
|
13012
13126
|
<ul>
|
|
13013
13127
|
<li><a href="https://github.com/nautobot/nautobot/issues/1721">#1721</a> - Removed dependency on <code>django-cacheops</code>.</li>
|
|
13014
13128
|
<li><a href="https://github.com/nautobot/nautobot/issues/3672">#3672</a> - Changed <code>napalm</code> dependency to 4.x release in order to allow Netmiko 4.x to install. Dependency resolution resulted in removing the following packages: <code>ciscoconfparse</code>, <code>deprecat</code>, <code>dnspython</code>, <code>loguru</code>, <code>toml</code>, <code>win32-setctime</code>.</li>
|
|
13015
13129
|
</ul>
|
|
13016
|
-
<h3 id="
|
|
13130
|
+
<h3 id="documentation-in-v200-beta1">Documentation in v2.0.0-beta.1<a class="headerlink" href="#documentation-in-v200-beta1" title="Permanent link">¶</a></h3>
|
|
13017
13131
|
<ul>
|
|
13018
13132
|
<li><a href="https://github.com/nautobot/nautobot/issues/3591">#3591</a> - Fixed a few errors in the v2.0 migration documentation.</li>
|
|
13019
13133
|
</ul>
|
|
13020
|
-
<h3 id="
|
|
13134
|
+
<h3 id="housekeeping-in-v200-beta1">Housekeeping in v2.0.0-beta.1<a class="headerlink" href="#housekeeping-in-v200-beta1" title="Permanent link">¶</a></h3>
|
|
13021
13135
|
<ul>
|
|
13022
13136
|
<li><a href="https://github.com/nautobot/nautobot/issues/1633">#1633</a> - Removed monkey-patching of <code>taggit.managers.TaggableManager</code>.</li>
|
|
13023
13137
|
<li><a href="https://github.com/nautobot/nautobot/issues/3378">#3378</a> - Re-enabled skipped tests.</li>
|
|
@@ -13030,11 +13144,11 @@
|
|
|
13030
13144
|
<li><a href="https://github.com/nautobot/nautobot/issues/3840">#3840</a> - Moved test Jobs from <code>nautobot/extras/tests/example_jobs/test_*.py</code> to <code>nautobot/extras/test_jobs/*.py</code> to avoid unnecessary loading by the <code>unittest</code> runner.</li>
|
|
13031
13145
|
</ul>
|
|
13032
13146
|
<h2 id="v200-alpha3-2023-04-13">v2.0.0-alpha.3 (2023-04-13)<a class="headerlink" href="#v200-alpha3-2023-04-13" title="Permanent link">¶</a></h2>
|
|
13033
|
-
<h3 id="
|
|
13147
|
+
<h3 id="added-in-v200-alpha3">Added in v2.0.0-alpha.3<a class="headerlink" href="#added-in-v200-alpha3" title="Permanent link">¶</a></h3>
|
|
13034
13148
|
<ul>
|
|
13035
13149
|
<li><a href="https://github.com/nautobot/nautobot/issues/3337">#3337</a> - Add <code>Namespace</code> model to IPAM.</li>
|
|
13036
13150
|
</ul>
|
|
13037
|
-
<h3 id="
|
|
13151
|
+
<h3 id="changed-in-v200-alpha3">Changed in v2.0.0-alpha.3<a class="headerlink" href="#changed-in-v200-alpha3" title="Permanent link">¶</a></h3>
|
|
13038
13152
|
<ul>
|
|
13039
13153
|
<li><a href="https://github.com/nautobot/nautobot/issues/2915">#2915</a> - Implemented a concrete <code>parent</code> relationship from <code>Prefix</code> to itself.</li>
|
|
13040
13154
|
<li><a href="https://github.com/nautobot/nautobot/issues/3337">#3337</a> - Changed Prefix and other model uniqueness to center around Namespace model.</li>
|
|
@@ -13042,12 +13156,12 @@
|
|
|
13042
13156
|
<li><a href="https://github.com/nautobot/nautobot/issues/3439">#3439</a> - Changed the GraphQL <code>execute_saved_query</code> function's argument from <code>saved_query_slug</code> to <code>saved_query_name</code>.</li>
|
|
13043
13157
|
<li><a href="https://github.com/nautobot/nautobot/issues/3523">#3523</a> - Renamed <code>nat_outside</code> field on IPAddress serializer to <code>nat_outside_list</code> for self-consistency.</li>
|
|
13044
13158
|
</ul>
|
|
13045
|
-
<h3 id="
|
|
13159
|
+
<h3 id="removed-in-v200-alpha3">Removed in v2.0.0-alpha.3<a class="headerlink" href="#removed-in-v200-alpha3" title="Permanent link">¶</a></h3>
|
|
13046
13160
|
<ul>
|
|
13047
13161
|
<li><a href="https://github.com/nautobot/nautobot/issues/3439">#3439</a> - Removed <code>slug</code> field from many database models.</li>
|
|
13048
13162
|
<li><a href="https://github.com/nautobot/nautobot/issues/3523">#3523</a> - Removed <code>nat_outside</code> getter-setter in IPAddress model.</li>
|
|
13049
13163
|
</ul>
|
|
13050
|
-
<h3 id="
|
|
13164
|
+
<h3 id="dependencies-in-v200-alpha3">Dependencies in v2.0.0-alpha.3<a class="headerlink" href="#dependencies-in-v200-alpha3" title="Permanent link">¶</a></h3>
|
|
13051
13165
|
<ul>
|
|
13052
13166
|
<li><a href="https://github.com/nautobot/nautobot/issues/2316">#2316</a> - Dropped support for Python 3.7. Python 3.8 is now the minimum version required by Nautobot.</li>
|
|
13053
13167
|
<li><a href="https://github.com/nautobot/nautobot/issues/2316">#2316</a> - Updated <code>django-auth-ldap</code> dependency to <code>~4.2.0</code>.</li>
|
|
@@ -13063,12 +13177,12 @@
|
|
|
13063
13177
|
<li><a href="https://github.com/nautobot/nautobot/issues/2316">#2316</a> - Updated <code>social-auth-app-django</code> dependency to <code>~5.2.0</code>.</li>
|
|
13064
13178
|
<li><a href="https://github.com/nautobot/nautobot/issues/3525">#3525</a> - Added explicit dependency on <code>packaging</code> that had been inadvertently omitted.</li>
|
|
13065
13179
|
</ul>
|
|
13066
|
-
<h3 id="
|
|
13180
|
+
<h3 id="housekeeping-in-v200-alpha3">Housekeeping in v2.0.0-alpha.3<a class="headerlink" href="#housekeeping-in-v200-alpha3" title="Permanent link">¶</a></h3>
|
|
13067
13181
|
<ul>
|
|
13068
13182
|
<li><a href="https://github.com/nautobot/nautobot/issues/2316">#2316</a> - Updated various development-only dependencies to the latest available versions.</li>
|
|
13069
13183
|
</ul>
|
|
13070
13184
|
<h2 id="v200-alpha2-2023-03-29">v2.0.0-alpha.2 (2023-03-29)<a class="headerlink" href="#v200-alpha2-2023-03-29" title="Permanent link">¶</a></h2>
|
|
13071
|
-
<h3 id="
|
|
13185
|
+
<h3 id="added-in-v200-alpha2">Added in v2.0.0-alpha.2<a class="headerlink" href="#added-in-v200-alpha2" title="Permanent link">¶</a></h3>
|
|
13072
13186
|
<ul>
|
|
13073
13187
|
<li><a href="https://github.com/nautobot/nautobot/issues/2900">#2900</a> - Added natural-key support to most Nautobot models, inspired by the <code>django-natural-keys</code> library.</li>
|
|
13074
13188
|
<li><a href="https://github.com/nautobot/nautobot/issues/2957">#2957</a> - Added Location constraints for objects (CircuitTermination, Device, PowerPanel, PowerFeed, RackGroup, Rack, Prefix, VLAN, VLANGroup, Cluster).</li>
|
|
@@ -13084,7 +13198,7 @@
|
|
|
13084
13198
|
<li><a href="https://github.com/nautobot/nautobot/issues/3403">#3403</a> - Added support for Nautobot Apps to provide Django Constance Fields for the settings.</li>
|
|
13085
13199
|
<li><a href="https://github.com/nautobot/nautobot/issues/3418">#3418</a> - Added ObjectPermission Data Migration from Region/Site to Location.</li>
|
|
13086
13200
|
</ul>
|
|
13087
|
-
<h3 id="
|
|
13201
|
+
<h3 id="changed-in-v200-alpha2">Changed in v2.0.0-alpha.2<a class="headerlink" href="#changed-in-v200-alpha2" title="Permanent link">¶</a></h3>
|
|
13088
13202
|
<ul>
|
|
13089
13203
|
<li><a href="https://github.com/nautobot/nautobot/issues/824">#824</a> - Renamed <code>slug</code> field to <code>key</code> on CustomField model class.</li>
|
|
13090
13204
|
<li><a href="https://github.com/nautobot/nautobot/issues/824">#824</a> - Changed validation of CustomField <code>key</code> to enforce that it is valid as a GraphQL identifier.</li>
|
|
@@ -13128,7 +13242,7 @@
|
|
|
13128
13242
|
<li><a href="https://github.com/nautobot/nautobot/issues/3351">#3351</a> - Changed extras abstract model ForeignKeys to use ForeignKeyWithAutoRelatedName.</li>
|
|
13129
13243
|
<li><a href="https://github.com/nautobot/nautobot/issues/3354">#3354</a> - Synced in fixes from 1.5.x LTM branch up through v1.5.11.</li>
|
|
13130
13244
|
</ul>
|
|
13131
|
-
<h3 id="
|
|
13245
|
+
<h3 id="removed-in-v200-alpha2">Removed in v2.0.0-alpha.2<a class="headerlink" href="#removed-in-v200-alpha2" title="Permanent link">¶</a></h3>
|
|
13132
13246
|
<ul>
|
|
13133
13247
|
<li><a href="https://github.com/nautobot/nautobot/issues/824">#824</a> - Removed <code>name</code> field from CustomField model class.</li>
|
|
13134
13248
|
<li><a href="https://github.com/nautobot/nautobot/issues/1634">#1634</a> - Removed unnecessary legacy <code>manage.py</code> file from Nautobot repository.</li>
|
|
@@ -13143,7 +13257,7 @@
|
|
|
13143
13257
|
<li><a href="https://github.com/nautobot/nautobot/issues/3224">#3224</a> - Removed support for Nautobot "1.x" REST API versions. The minimum supported REST API version is now "2.0".</li>
|
|
13144
13258
|
<li><a href="https://github.com/nautobot/nautobot/issues/3302">#3302</a> - Removed <code>Aggregate</code> and migrated all existing instances to <code>Prefix</code>.</li>
|
|
13145
13259
|
</ul>
|
|
13146
|
-
<h3 id="
|
|
13260
|
+
<h3 id="fixed-in-v200-alpha2">Fixed in v2.0.0-alpha.2<a class="headerlink" href="#fixed-in-v200-alpha2" title="Permanent link">¶</a></h3>
|
|
13147
13261
|
<ul>
|
|
13148
13262
|
<li><a href="https://github.com/nautobot/nautobot/issues/633">#633</a> - Fixed job result not updating when job hard time limit is reached.</li>
|
|
13149
13263
|
<li><a href="https://github.com/nautobot/nautobot/issues/1362">#1362</a> - Fixed migrations for <code>Prefix.type</code>.</li>
|
|
@@ -13158,18 +13272,18 @@
|
|
|
13158
13272
|
<li><a href="https://github.com/nautobot/nautobot/issues/3342">#3342</a> - Fixed BaseFilterSet not using multiple choice filters for CharFields with choices.</li>
|
|
13159
13273
|
<li><a href="https://github.com/nautobot/nautobot/issues/3457">#3457</a> - Fixed bug preventing scheduled job from running.</li>
|
|
13160
13274
|
</ul>
|
|
13161
|
-
<h3 id="
|
|
13275
|
+
<h3 id="dependencies-in-v200-alpha2">Dependencies in v2.0.0-alpha.2<a class="headerlink" href="#dependencies-in-v200-alpha2" title="Permanent link">¶</a></h3>
|
|
13162
13276
|
<ul>
|
|
13163
13277
|
<li><a href="https://github.com/nautobot/nautobot/issues/2521">#2521</a> - Removed dependency on <code>django-cryptography</code>.</li>
|
|
13164
13278
|
<li><a href="https://github.com/nautobot/nautobot/issues/2524">#2524</a> - Removed no-longer-used <code>drf-yasg</code> dependency.</li>
|
|
13165
13279
|
</ul>
|
|
13166
|
-
<h3 id="
|
|
13280
|
+
<h3 id="housekeeping-in-v200-alpha2">Housekeeping in v2.0.0-alpha.2<a class="headerlink" href="#housekeeping-in-v200-alpha2" title="Permanent link">¶</a></h3>
|
|
13167
13281
|
<ul>
|
|
13168
13282
|
<li><a href="https://github.com/nautobot/nautobot/issues/3255">#3255</a> - Added <code>--cache-test-fixtures</code> command line argument to Nautobot unit and integration tests.</li>
|
|
13169
13283
|
<li><a href="https://github.com/nautobot/nautobot/issues/3233">#3233</a> - Removed <code>CeleryTestCase</code> and associated calling code as it is no longer needed.</li>
|
|
13170
13284
|
</ul>
|
|
13171
13285
|
<h2 id="v200-alpha1-2023-01-31">v2.0.0-alpha.1 (2023-01-31)<a class="headerlink" href="#v200-alpha1-2023-01-31" title="Permanent link">¶</a></h2>
|
|
13172
|
-
<h3 id="
|
|
13286
|
+
<h3 id="added-in-v200-alpha1">Added in v2.0.0-alpha.1<a class="headerlink" href="#added-in-v200-alpha1" title="Permanent link">¶</a></h3>
|
|
13173
13287
|
<ul>
|
|
13174
13288
|
<li><a href="https://github.com/nautobot/nautobot/issues/1731">#1731</a> - Added missing filters to <code>circuits</code> app.</li>
|
|
13175
13289
|
<li><a href="https://github.com/nautobot/nautobot/issues/1733">#1733</a> - Added support for filtering on many more fields to the <code>Tenant</code> and <code>TenantGroup</code> filtersets.</li>
|
|
@@ -13177,7 +13291,7 @@
|
|
|
13177
13291
|
<li><a href="https://github.com/nautobot/nautobot/issues/2955">#2955</a> - Added "Region" and "Site" <code>LocationTypes</code> and their respective locations based on existing <code>Site</code> and <code>Region</code> instances.</li>
|
|
13178
13292
|
<li><a href="https://github.com/nautobot/nautobot/issues/3132">#3132</a> - Added the ability for apps to register their models for inclusion in the global Nautobot search.</li>
|
|
13179
13293
|
</ul>
|
|
13180
|
-
<h3 id="
|
|
13294
|
+
<h3 id="changed-in-v200-alpha1">Changed in v2.0.0-alpha.1<a class="headerlink" href="#changed-in-v200-alpha1" title="Permanent link">¶</a></h3>
|
|
13181
13295
|
<ul>
|
|
13182
13296
|
<li><a href="https://github.com/nautobot/nautobot/issues/510">#510</a> - The <code>Region</code>, <code>RackGroup</code>, <code>TenantGroup</code>, and <code>InventoryItem</code> models are now based on <code>django-tree-queries</code> instead of <code>django-mptt</code>. This does change the API for certain tree operations on these models, for example <code>get_ancestors()</code> is now <code>ancestors()</code> and <code>get_descendants()</code> is now <code>descendants()</code>.</li>
|
|
13183
13297
|
<li><a href="https://github.com/nautobot/nautobot/issues/510">#510</a> - The UI and REST API for <code>Region</code>, <code>RackGroup</code>, and <code>TenantGroup</code> now provide only the related count of objects (e.g. <code>site_count</code> for <code>Region</code>) that are directly related to each instance. Formerly they provided a cumulative total including objects related to its descendants as well.</li>
|
|
@@ -13197,7 +13311,7 @@
|
|
|
13197
13311
|
<li><a href="https://github.com/nautobot/nautobot/issues/3068">#3068</a> - Renamed <code>group</code> field to <code>tenant_group</code> on <code>Tenant</code> model.</li>
|
|
13198
13312
|
<li><a href="https://github.com/nautobot/nautobot/issues/3069">#3069</a> - Renamed foreign key fields and related names in Virtualization and DCIM apps to follow a common naming convention. See v2 upgrade guide for full list of changes.</li>
|
|
13199
13313
|
</ul>
|
|
13200
|
-
<h3 id="
|
|
13314
|
+
<h3 id="removed-in-v200-alpha1">Removed in v2.0.0-alpha.1<a class="headerlink" href="#removed-in-v200-alpha1" title="Permanent link">¶</a></h3>
|
|
13201
13315
|
<ul>
|
|
13202
13316
|
<li><a href="https://github.com/nautobot/nautobot/issues/510">#510</a> - Removed dependency on <code>django-mptt</code>. Models (<code>Region</code>, <code>RackGroup</code>, <code>TenantGroup</code>, <code>InventoryItem</code>) that previously were based on MPTT are now implemented using <code>django-tree-queries</code> instead.</li>
|
|
13203
13317
|
<li><a href="https://github.com/nautobot/nautobot/issues/1731">#1731</a> - Removed redundant filters from <code>circuits</code> app.</li>
|
|
@@ -13209,14 +13323,14 @@
|
|
|
13209
13323
|
<li><a href="https://github.com/nautobot/nautobot/issues/2993">#2993</a> - Removed optional settings documentation for <code>CELERY_RESULT_BACKEND_TRANSPORT_OPTIONS</code> as it is no longer user-serviceable.</li>
|
|
13210
13324
|
<li><a href="https://github.com/nautobot/nautobot/issues/3130">#3130</a> - Removed <code>CSS_CLASSES</code> definitions from legacy <code>ChoiceSets</code>.</li>
|
|
13211
13325
|
</ul>
|
|
13212
|
-
<h3 id="
|
|
13326
|
+
<h3 id="fixed-in-v200-alpha1">Fixed in v2.0.0-alpha.1<a class="headerlink" href="#fixed-in-v200-alpha1" title="Permanent link">¶</a></h3>
|
|
13213
13327
|
<ul>
|
|
13214
13328
|
<li><a href="https://github.com/nautobot/nautobot/issues/1982">#1982</a> - Fixed a UI presentation/validation issue with dynamic-groups using foreign-key filters that aren't explicitly defined in the corresponding FilterForm.</li>
|
|
13215
13329
|
<li><a href="https://github.com/nautobot/nautobot/issues/2808">#2808</a> - Fixed incorrectly named filters in <code>circuits</code> app.</li>
|
|
13216
13330
|
<li><a href="https://github.com/nautobot/nautobot/issues/3126">#3126</a> - Fixed <code>Interface</code> not raising exception when adding a <code>VLAN</code> from a different <code>Site</code> in <code>tagged_vlans</code>.</li>
|
|
13217
13331
|
<li><a href="https://github.com/nautobot/nautobot/issues/3167">#3167</a> - Fixed <code>ObjectChange</code> records not being migrated and <code>legacy_role__name</code> not being a property in <code>Role</code> migrations.</li>
|
|
13218
13332
|
</ul>
|
|
13219
|
-
<h3 id="
|
|
13333
|
+
<h3 id="dependencies-in-v200-alpha1">Dependencies in v2.0.0-alpha.1<a class="headerlink" href="#dependencies-in-v200-alpha1" title="Permanent link">¶</a></h3>
|
|
13220
13334
|
<ul>
|
|
13221
13335
|
<li><a href="https://github.com/nautobot/nautobot/issues/2771">#2771</a> - Updated <code>jsonschema</code> version to <code>~4.17.0</code>.</li>
|
|
13222
13336
|
<li><a href="https://github.com/nautobot/nautobot/issues/2883">#2883</a> - Updated <code>django-taggit</code> to <code>3.1.0</code>.</li>
|
|
@@ -13224,11 +13338,11 @@
|
|
|
13224
13338
|
<li><a href="https://github.com/nautobot/nautobot/issues/2943">#2943</a> - Updated dependency <code>rich</code> to <code>~12.6.0</code>.</li>
|
|
13225
13339
|
<li><a href="https://github.com/nautobot/nautobot/issues/3027">#3027</a> - Updated dependencies <code>prometheus-client</code>, <code>django-storages</code>, <code>drf-spectacular</code>, <code>black</code>, <code>django-debug-toolbar</code>, <code>mkdocstrings</code>, <code>mkdocstrings-python</code>, <code>pylint</code>, <code>requests</code>, <code>selenium</code>, <code>watchdog</code>.</li>
|
|
13226
13340
|
</ul>
|
|
13227
|
-
<h3 id="
|
|
13341
|
+
<h3 id="documentation-in-v200-alpha1">Documentation in v2.0.0-alpha.1<a class="headerlink" href="#documentation-in-v200-alpha1" title="Permanent link">¶</a></h3>
|
|
13228
13342
|
<ul>
|
|
13229
13343
|
<li><a href="https://github.com/nautobot/nautobot/issues/204">#204</a> - Added style guide documentation for importing python modules in Nautobot.</li>
|
|
13230
13344
|
</ul>
|
|
13231
|
-
<h3 id="
|
|
13345
|
+
<h3 id="housekeeping-in-v200-alpha1">Housekeeping in v2.0.0-alpha.1<a class="headerlink" href="#housekeeping-in-v200-alpha1" title="Permanent link">¶</a></h3>
|
|
13232
13346
|
<ul>
|
|
13233
13347
|
<li><a href="https://github.com/nautobot/nautobot/issues/204">#204</a> - Changed imports to use module namespaces in <code>utilities/filters.py</code>.</li>
|
|
13234
13348
|
<li><a href="https://github.com/nautobot/nautobot/issues/2674">#2674</a> - Updated development dependency <code>black</code> to <code>~22.10.0</code>.</li>
|
|
@@ -13334,7 +13448,7 @@
|
|
|
13334
13448
|
|
|
13335
13449
|
|
|
13336
13450
|
<a href="https://blog.networktocode.com/blog/tags/nautobot" target="_blank" rel="noopener" title="Network to Code Blog" class="md-social__link">
|
|
13337
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.
|
|
13451
|
+
<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>
|
|
13338
13452
|
</a>
|
|
13339
13453
|
|
|
13340
13454
|
|
|
@@ -13342,7 +13456,7 @@
|
|
|
13342
13456
|
|
|
13343
13457
|
|
|
13344
13458
|
<a href="https://www.youtube.com/playlist?list=PLjA0bhxgryJ2Ts4GJMDA-tPzVWEncv4pb" target="_blank" rel="noopener" title="Nautobot Videos" class="md-social__link">
|
|
13345
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.
|
|
13459
|
+
<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>
|
|
13346
13460
|
</a>
|
|
13347
13461
|
|
|
13348
13462
|
|
|
@@ -13350,7 +13464,7 @@
|
|
|
13350
13464
|
|
|
13351
13465
|
|
|
13352
13466
|
<a href="https://www.networktocode.com/community/" target="_blank" rel="noopener" title="Network to Code Community" class="md-social__link">
|
|
13353
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.
|
|
13467
|
+
<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>
|
|
13354
13468
|
</a>
|
|
13355
13469
|
|
|
13356
13470
|
|
|
@@ -13358,7 +13472,7 @@
|
|
|
13358
13472
|
|
|
13359
13473
|
|
|
13360
13474
|
<a href="https://github.com/nautobot/nautobot" target="_blank" rel="noopener" title="GitHub Repo" class="md-social__link">
|
|
13361
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.
|
|
13475
|
+
<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>
|
|
13362
13476
|
</a>
|
|
13363
13477
|
|
|
13364
13478
|
|
|
@@ -13366,7 +13480,7 @@
|
|
|
13366
13480
|
|
|
13367
13481
|
|
|
13368
13482
|
<a href="https://twitter.com/networktocode" target="_blank" rel="noopener" title="Network to Code Twitter" class="md-social__link">
|
|
13369
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.
|
|
13483
|
+
<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>
|
|
13370
13484
|
</a>
|
|
13371
13485
|
|
|
13372
13486
|
</div>
|
|
@@ -13381,10 +13495,10 @@
|
|
|
13381
13495
|
</div>
|
|
13382
13496
|
|
|
13383
13497
|
|
|
13384
|
-
<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.
|
|
13498
|
+
<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>
|
|
13385
13499
|
|
|
13386
13500
|
|
|
13387
|
-
<script src="../assets/javascripts/bundle.
|
|
13501
|
+
<script src="../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
13388
13502
|
|
|
13389
13503
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
13390
13504
|
|