infrahub-server 1.3.5__tar.gz → 1.4.0b0__tar.gz
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.
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/PKG-INFO +5 -4
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/api/internal.py +5 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/artifacts/tasks.py +17 -22
- infrahub_server-1.4.0b0/backend/infrahub/branch/merge_mutation_checker.py +38 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/cli/__init__.py +2 -2
- infrahub_server-1.4.0b0/backend/infrahub/cli/context.py +19 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/cli/db.py +5 -16
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/cli/upgrade.py +7 -29
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/computed_attribute/tasks.py +36 -46
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/config.py +53 -2
- infrahub_server-1.4.0b0/backend/infrahub/constants/environment.py +1 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/attribute.py +9 -7
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/branch/tasks.py +43 -41
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/constants/__init__.py +20 -6
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/constants/infrahubkind.py +2 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/coordinator.py +3 -1
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/repository/repository.py +0 -8
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/tasks.py +11 -8
- infrahub_server-1.4.0b0/backend/infrahub/core/graph/__init__.py +1 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/graph/index.py +1 -2
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/graph/schema.py +50 -29
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/initialization.py +62 -33
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/ipam/tasks.py +4 -3
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/merge.py +8 -10
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/graph/__init__.py +2 -0
- infrahub_server-1.4.0b0/backend/infrahub/core/migrations/graph/m035_drop_attr_value_index.py +45 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/query/attribute_add.py +27 -2
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/schema/tasks.py +6 -5
- infrahub_server-1.4.0b0/backend/infrahub/core/node/proposed_change.py +43 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/protocols.py +12 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/query/attribute.py +32 -14
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/query/diff.py +11 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/query/ipam.py +13 -7
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/query/node.py +51 -10
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/query/resource_manager.py +3 -3
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/schema/basenode_schema.py +8 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/schema/definitions/core/__init__.py +10 -1
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/schema/definitions/core/ipam.py +28 -2
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/schema/definitions/core/propose_change.py +15 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/schema/definitions/core/webhook.py +3 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/schema/generic_schema.py +10 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/schema/manager.py +10 -1
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/schema/node_schema.py +22 -17
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/schema/profile_schema.py +8 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/schema/schema_branch.py +9 -5
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/schema/template_schema.py +8 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/validators/checks_runner.py +5 -5
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/validators/tasks.py +6 -7
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/validators/uniqueness/checker.py +4 -2
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/validators/uniqueness/model.py +1 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/validators/uniqueness/query.py +57 -7
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/database/__init__.py +2 -1
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/events/__init__.py +18 -0
- infrahub_server-1.4.0b0/backend/infrahub/events/constants.py +8 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/events/generator.py +29 -2
- infrahub_server-1.4.0b0/backend/infrahub/events/proposed_change_action.py +181 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/generators/tasks.py +24 -20
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/git/base.py +4 -7
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/git/integrator.py +21 -12
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/git/repository.py +15 -30
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/git/tasks.py +121 -106
- infrahub_server-1.4.0b0/backend/infrahub/graphql/field_extractor.py +69 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/manager.py +15 -11
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/mutations/account.py +2 -2
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/mutations/action.py +8 -2
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/mutations/artifact_definition.py +4 -1
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/mutations/branch.py +10 -5
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/mutations/graphql_query.py +2 -1
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/mutations/main.py +14 -8
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/mutations/menu.py +2 -1
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/mutations/proposed_change.py +225 -8
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/mutations/relationship.py +5 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/mutations/repository.py +2 -1
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/mutations/tasks.py +7 -9
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/mutations/webhook.py +4 -1
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/parser.py +15 -6
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/queries/__init__.py +10 -1
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/queries/account.py +3 -3
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/queries/branch.py +2 -2
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/queries/diff/tree.py +3 -3
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/queries/event.py +13 -3
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/queries/ipam.py +23 -1
- infrahub_server-1.4.0b0/backend/infrahub/graphql/queries/proposed_change.py +84 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/queries/relationship.py +2 -2
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/queries/resource_manager.py +3 -3
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/queries/search.py +3 -2
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/queries/status.py +3 -2
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/queries/task.py +2 -2
- infrahub_server-1.4.0b0/backend/infrahub/graphql/resolvers/ipam.py +440 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/resolvers/many_relationship.py +4 -3
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/resolvers/resolver.py +5 -5
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/resolvers/single_relationship.py +3 -2
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/schema.py +25 -5
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/types/__init__.py +2 -2
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/types/attribute.py +3 -3
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/types/event.py +60 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/groups/tasks.py +6 -6
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/lock.py +3 -2
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/menu/generator.py +8 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/message_bus/operations/__init__.py +9 -12
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/message_bus/operations/git/file.py +6 -5
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/message_bus/operations/git/repository.py +12 -20
- infrahub_server-1.4.0b0/backend/infrahub/message_bus/operations/refresh/registry.py +34 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/message_bus/operations/send/echo.py +7 -4
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/message_bus/types.py +1 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/permissions/globals.py +1 -4
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/permissions/manager.py +8 -5
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/pools/prefix.py +7 -5
- infrahub_server-1.4.0b0/backend/infrahub/prefect_server/app.py +49 -0
- infrahub_server-1.4.0b0/backend/infrahub/prefect_server/bootstrap.py +18 -0
- infrahub_server-1.4.0b0/backend/infrahub/proposed_change/action_checker.py +206 -0
- infrahub_server-1.4.0b0/backend/infrahub/proposed_change/approval_revoker.py +40 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/proposed_change/branch_diff.py +3 -1
- infrahub_server-1.4.0b0/backend/infrahub/proposed_change/checker.py +45 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/proposed_change/constants.py +32 -2
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/proposed_change/tasks.py +182 -150
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/server.py +29 -17
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/services/__init__.py +13 -28
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/services/adapters/cache/__init__.py +4 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/services/adapters/cache/nats.py +2 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/services/adapters/cache/redis.py +3 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/services/adapters/message_bus/__init__.py +0 -2
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/services/adapters/message_bus/local.py +1 -2
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/services/adapters/message_bus/nats.py +6 -8
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/services/adapters/message_bus/rabbitmq.py +7 -9
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/services/adapters/workflow/__init__.py +1 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/services/adapters/workflow/local.py +1 -8
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/services/component.py +2 -1
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/task_manager/event.py +52 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/task_manager/models.py +9 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/tasks/artifact.py +6 -7
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/tasks/check.py +4 -7
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/telemetry/tasks.py +15 -18
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/transformations/tasks.py +10 -6
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/trigger/tasks.py +4 -3
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/types.py +4 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/validators/events.py +7 -7
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/validators/tasks.py +6 -7
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/webhook/models.py +45 -45
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/webhook/tasks.py +25 -24
- infrahub_server-1.4.0b0/backend/infrahub/workers/dependencies.py +143 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/workers/infrahub_async.py +19 -43
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/workflows/catalogue.py +16 -2
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/workflows/initialization.py +5 -4
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/workflows/models.py +2 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/pyproject.toml +20 -11
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/client.py +6 -6
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/ctl/repository.py +51 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/ctl/schema.py +9 -9
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/protocols.py +40 -6
- infrahub_server-1.4.0b0/python_sdk/infrahub_sdk/transfer/importer/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_testcontainers/infrahub_testcontainers/container.py +17 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_testcontainers/infrahub_testcontainers/docker-compose-cluster.test.yml +56 -1
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_testcontainers/infrahub_testcontainers/docker-compose.test.yml +56 -1
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_testcontainers/infrahub_testcontainers/helpers.py +4 -1
- infrahub_server-1.3.5/backend/infrahub/cli/context.py +0 -15
- infrahub_server-1.3.5/backend/infrahub/core/graph/__init__.py +0 -1
- infrahub_server-1.3.5/backend/infrahub/events/constants.py +0 -1
- infrahub_server-1.3.5/backend/infrahub/message_bus/operations/refresh/registry.py +0 -28
- infrahub_server-1.3.5/backend/infrahub/prefect_server/app.py +0 -18
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/LICENSE.txt +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/README.md +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/actions/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/actions/constants.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/actions/gather.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/actions/models.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/actions/parsers.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/actions/schema.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/actions/tasks.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/actions/triggers.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/api/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/api/artifact.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/api/auth.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/api/dependencies.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/api/diff/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/api/diff/diff.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/api/diff/validation_models.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/api/exception_handlers.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/api/exceptions.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/api/file.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/api/menu.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/api/oauth2.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/api/oidc.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/api/query.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/api/schema.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/api/static/redoc.standalone.js +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/api/static/swagger-ui-bundle.js +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/api/static/swagger-ui.css +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/api/storage.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/api/transformation.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/artifacts/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/artifacts/models.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/auth.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/branch/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/branch/tasks.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/branch/triggers.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/cli/constants.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/cli/events.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/cli/git_agent.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/cli/patch.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/cli/server.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/cli/tasks.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/components.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/computed_attribute/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/computed_attribute/constants.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/computed_attribute/gather.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/computed_attribute/models.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/computed_attribute/triggers.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/constants/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/constants/database.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/context.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/account.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/branch/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/branch/enums.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/branch/models.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/changelog/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/changelog/diff.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/changelog/models.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/constants/database.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/constants/relationship_label.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/constants/schema.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/constraint/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/constraint/node/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/constraint/node/runner.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/convert_object_type/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/convert_object_type/conversion.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/convert_object_type/schema_mapping.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/artifacts/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/artifacts/calculator.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/branch_differ.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/calculator.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/combiner.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/conflict_transferer.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/conflicts_enricher.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/conflicts_extractor.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/data_check_synchronizer.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/diff_locker.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/enricher/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/enricher/aggregated.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/enricher/cardinality_one.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/enricher/hierarchy.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/enricher/interface.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/enricher/labels.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/enricher/path_identifier.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/enricher/summary_counts.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/exceptions.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/ipam_diff_parser.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/merger/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/merger/merger.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/merger/model.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/merger/serializer.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/model/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/model/diff.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/model/field_specifiers_map.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/model/path.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/models.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/parent_node_adder.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/payload_builder.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/query/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/query/all_conflicts.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/query/artifact.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/query/delete_query.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/query/diff_get.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/query/diff_summary.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/query/drop_nodes.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/query/field_specifiers.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/query/field_summary.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/query/filters.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/query/get_conflict_query.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/query/has_conflicts_query.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/query/merge.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/query/merge_tracking_id.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/query/roots_metadata.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/query/save.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/query/summary_counts_enricher.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/query/time_range_query.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/query/update_conflict_query.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/query_parser.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/repository/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/diff/repository/deserializer.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/enums.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/graph/constraints.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/integrity/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/integrity/object_conflict/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/integrity/object_conflict/conflict_recorder.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/ipam/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/ipam/constants.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/ipam/kinds_getter.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/ipam/model.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/ipam/reconciler.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/ipam/size.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/ipam/utilization.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/manager.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/graph/m001_add_version_to_graph.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/graph/m002_attribute_is_default.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/graph/m003_relationship_parent_optional.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/graph/m004_add_attr_documentation.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/graph/m005_add_rel_read_only.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/graph/m006_add_rel_on_delete.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/graph/m007_add_rel_allow_override.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/graph/m008_add_human_friendly_id.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/graph/m009_add_generate_profile_attr.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/graph/m010_add_generate_profile_attr_generic.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/graph/m011_remove_profile_relationship_schema.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/graph/m012_convert_account_generic.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/graph/m013_convert_git_password_credential.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/graph/m014_remove_index_attr_value.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/graph/m015_diff_format_update.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/graph/m016_diff_delete_bug_fix.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/graph/m017_add_core_profile.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/graph/m018_uniqueness_nulls.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/graph/m019_restore_rels_to_time.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/graph/m020_duplicate_edges.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/graph/m021_missing_hierarchy_merge.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/graph/m022_add_generate_template_attr.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/graph/m023_deduplicate_cardinality_one_relationships.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/graph/m024_missing_hierarchy_backfill.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/graph/m025_uniqueness_nulls.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/graph/m026_0000_prefix_fix.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/graph/m027_delete_isolated_nodes.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/graph/m028_delete_diffs.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/graph/m029_duplicates_cleanup.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/graph/m030_illegal_edges.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/graph/m031_check_number_attributes.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/graph/m032_cleanup_orphaned_branch_relationships.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/graph/m033_deduplicate_relationship_vertices.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/graph/m034_find_orphaned_schema_fields.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/query/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/query/attribute_rename.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/query/delete_element_in_schema.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/query/node_duplicate.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/query/relationship_duplicate.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/query/schema_attribute_update.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/schema/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/schema/attribute_name_update.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/schema/models.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/schema/node_attribute_add.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/schema/node_attribute_remove.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/schema/node_kind_update.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/schema/node_remove.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/schema/placeholder_dummy.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/migrations/shared.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/models.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/node/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/node/base.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/node/constraints/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/node/constraints/attribute_uniqueness.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/node/constraints/grouped_uniqueness.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/node/constraints/interface.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/node/create.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/node/delete_validator.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/node/ipam.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/node/permissions.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/node/resource_manager/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/node/resource_manager/ip_address_pool.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/node/resource_manager/ip_prefix_pool.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/node/resource_manager/number_pool.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/node/standard.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/path.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/property.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/protocols_base.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/query/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/query/branch.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/query/delete.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/query/relationship.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/query/standard_node.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/query/subquery.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/query/task.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/query/task_log.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/query/utils.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/registry.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/relationship/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/relationship/constraints/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/relationship/constraints/count.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/relationship/constraints/interface.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/relationship/constraints/peer_kind.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/relationship/constraints/peer_parent.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/relationship/constraints/peer_relatives.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/relationship/constraints/profiles_kind.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/relationship/model.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/root.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/schema/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/schema/attribute_parameters.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/schema/attribute_schema.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/schema/computed_attribute.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/schema/constants.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/schema/definitions/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/schema/definitions/core/account.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/schema/definitions/core/artifact.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/schema/definitions/core/builtin.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/schema/definitions/core/check.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/schema/definitions/core/core.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/schema/definitions/core/generator.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/schema/definitions/core/graphql_query.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/schema/definitions/core/group.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/schema/definitions/core/lineage.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/schema/definitions/core/menu.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/schema/definitions/core/permission.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/schema/definitions/core/profile.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/schema/definitions/core/propose_change_comment.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/schema/definitions/core/propose_change_validator.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/schema/definitions/core/repository.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/schema/definitions/core/resource_pool.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/schema/definitions/core/template.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/schema/definitions/core/transform.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/schema/definitions/deprecated.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/schema/definitions/internal.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/schema/dropdown.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/schema/generated/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/schema/generated/attribute_schema.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/schema/generated/base_node_schema.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/schema/generated/genericnode_schema.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/schema/generated/node_schema.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/schema/generated/relationship_schema.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/schema/relationship_schema.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/schema/schema_branch_computed.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/task/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/task/task.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/task/task_log.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/task/user_task.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/timestamp.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/utils.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/validators/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/validators/aggregated_checker.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/validators/attribute/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/validators/attribute/choices.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/validators/attribute/enum.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/validators/attribute/kind.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/validators/attribute/length.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/validators/attribute/min_max.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/validators/attribute/number_pool.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/validators/attribute/optional.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/validators/attribute/regex.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/validators/attribute/unique.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/validators/determiner.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/validators/enum.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/validators/interface.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/validators/model.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/validators/models/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/validators/models/validate_migration.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/validators/models/violation.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/validators/node/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/validators/node/attribute.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/validators/node/generate_profile.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/validators/node/hierarchy.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/validators/node/inherit_from.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/validators/node/relationship.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/validators/query.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/validators/relationship/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/validators/relationship/count.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/validators/relationship/optional.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/validators/relationship/peer.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/validators/shared.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/validators/uniqueness/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/core/validators/uniqueness/index.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/database/index.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/database/memgraph.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/database/metrics.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/database/neo4j.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/database/validation.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/constraint/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/constraint/grouped/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/constraint/grouped/node_runner.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/constraint/node/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/constraint/node/grouped_uniqueness.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/constraint/node/uniqueness.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/constraint/relationship_manager/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/constraint/relationship_manager/count.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/constraint/relationship_manager/peer_kind.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/constraint/relationship_manager/peer_parent.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/constraint/relationship_manager/peer_relatives.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/constraint/relationship_manager/profiles_kind.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/constraint/schema/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/constraint/schema/aggregated.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/constraint/schema/attribute_choices.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/constraint/schema/attribute_enum.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/constraint/schema/attribute_kind.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/constraint/schema/attribute_length.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/constraint/schema/attribute_optional.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/constraint/schema/attribute_regex.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/constraint/schema/attribute_uniqueness.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/constraint/schema/generate_profile.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/constraint/schema/inherit_from.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/constraint/schema/node_attribute.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/constraint/schema/node_relationship.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/constraint/schema/relationship_count.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/constraint/schema/relationship_optional.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/constraint/schema/relationship_peer.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/constraint/schema/uniqueness.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/diff/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/diff/calculator.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/diff/combiner.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/diff/conflict_transferer.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/diff/conflicts_enricher.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/diff/conflicts_extractor.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/diff/coordinator.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/diff/data_check_conflict_recorder.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/diff/data_check_synchronizer.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/diff/deserializer.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/diff/diff_merger.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/diff/enricher/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/diff/enricher/aggregated.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/diff/enricher/cardinality_one.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/diff/enricher/hierarchy.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/diff/enricher/labels.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/diff/enricher/path_identifier.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/diff/enricher/summary_counts.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/diff/ipam_diff_parser.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/diff/locker.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/diff/parent_node_adder.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/diff/repository.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/ip/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/ip/kinds_getter.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/node/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/builder/node/delete_validator.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/component/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/component/exceptions.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/component/registry.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/interface.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/dependencies/registry.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/events/artifact_action.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/events/branch_action.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/events/group_action.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/events/models.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/events/node_action.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/events/repository_action.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/events/schema_action.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/events/utils.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/events/validator_action.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/exceptions.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/generators/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/generators/models.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/git/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/git/constants.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/git/directory.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/git/models.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/git/utils.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/git/worktree.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/git_credential/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/git_credential/askpass.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/git_credential/helper.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/analyzer.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/api/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/api/dependencies.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/api/endpoints.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/app.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/auth/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/auth/query_permission_checker/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/auth/query_permission_checker/anonymous_checker.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/auth/query_permission_checker/checker.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/auth/query_permission_checker/default_branch_checker.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/auth/query_permission_checker/interface.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/auth/query_permission_checker/merge_operation_checker.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/auth/query_permission_checker/object_permission_checker.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/auth/query_permission_checker/super_admin_checker.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/constants.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/context.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/directives.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/enums.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/initialization.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/loaders/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/loaders/node.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/loaders/peers.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/loaders/shared.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/metrics.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/models.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/mutations/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/mutations/attribute.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/mutations/computed_attribute.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/mutations/convert_object_type.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/mutations/diff.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/mutations/diff_conflict.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/mutations/generator.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/mutations/ipam.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/mutations/models.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/mutations/node_getter/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/mutations/node_getter/by_default_filter.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/mutations/node_getter/by_hfid.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/mutations/node_getter/by_id.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/mutations/node_getter/interface.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/mutations/resource_manager.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/mutations/schema.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/permissions.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/queries/convert_object_type_mapping.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/queries/diff/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/queries/internal.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/resolvers/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/subscription/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/subscription/events.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/subscription/graphql_query.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/types/branch.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/types/common.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/types/context.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/types/enums.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/types/interface.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/types/node.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/types/permission.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/types/relationship.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/types/standard_node.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/types/task.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/types/task_log.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/graphql/utils.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/groups/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/groups/ancestors.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/groups/models.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/groups/parsers.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/helpers.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/log.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/menu/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/menu/constants.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/menu/menu.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/menu/models.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/menu/repository.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/menu/utils.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/message_bus/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/message_bus/messages/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/message_bus/messages/git_file_get.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/message_bus/messages/git_repository_connectivity.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/message_bus/messages/refresh_git_fetch.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/message_bus/messages/refresh_registry_branches.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/message_bus/messages/refresh_registry_rebasedbranch.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/message_bus/messages/send_echo_request.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/message_bus/operations/git/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/message_bus/operations/refresh/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/message_bus/operations/send/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/middleware.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/models.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/patch/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/patch/constants.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/patch/edge_adder.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/patch/edge_deleter.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/patch/edge_updater.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/patch/models.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/patch/plan_reader.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/patch/plan_writer.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/patch/queries/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/patch/queries/base.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/patch/queries/delete_duplicated_edges.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/patch/runner.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/patch/vertex_adder.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/patch/vertex_deleter.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/patch/vertex_updater.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/permissions/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/permissions/backend.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/permissions/constants.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/permissions/local_backend.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/permissions/report.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/permissions/types.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/pools/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/pools/address.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/pools/models.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/pools/number.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/pools/registration.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/pools/tasks.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/prefect_server/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/prefect_server/database.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/prefect_server/events.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/prefect_server/models.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/proposed_change/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/proposed_change/models.py +0 -0
- /infrahub_server-1.3.5/backend/infrahub/schema/__init__.py → /infrahub_server-1.4.0b0/backend/infrahub/py.typed +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/pytest_plugin.py +0 -0
- {infrahub_server-1.3.5/backend/infrahub/services/adapters → infrahub_server-1.4.0b0/backend/infrahub/schema}/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/schema/tasks.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/schema/triggers.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/serve/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/serve/gunicorn_config.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/serve/log.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/serve/worker.py +0 -0
- {infrahub_server-1.3.5/backend/infrahub/task_manager → infrahub_server-1.4.0b0/backend/infrahub/services/adapters}/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/services/adapters/event/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/services/adapters/http/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/services/adapters/http/httpx.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/services/adapters/workflow/worker.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/services/protocols.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/services/scheduler.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/storage.py +0 -0
- {infrahub_server-1.3.5/backend/infrahub/tasks → infrahub_server-1.4.0b0/backend/infrahub/task_manager}/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/task_manager/constants.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/task_manager/task.py +0 -0
- {infrahub_server-1.3.5/backend/infrahub/telemetry → infrahub_server-1.4.0b0/backend/infrahub/tasks}/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/tasks/dummy.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/tasks/keepalive.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/tasks/recurring.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/tasks/registry.py +0 -0
- {infrahub_server-1.3.5/backend/infrahub/transformations → infrahub_server-1.4.0b0/backend/infrahub/telemetry}/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/telemetry/constants.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/telemetry/database.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/telemetry/models.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/telemetry/task_manager.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/telemetry/utils.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/trace.py +0 -0
- {infrahub_server-1.3.5/backend/infrahub/trigger → infrahub_server-1.4.0b0/backend/infrahub/transformations}/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/transformations/constants.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/transformations/models.py +0 -0
- {infrahub_server-1.3.5/backend/infrahub/validators → infrahub_server-1.4.0b0/backend/infrahub/trigger}/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/trigger/catalogue.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/trigger/constants.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/trigger/models.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/trigger/setup.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/utils.py +0 -0
- {infrahub_server-1.3.5/backend/infrahub/webhook → infrahub_server-1.4.0b0/backend/infrahub/validators}/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/visuals.py +0 -0
- {infrahub_server-1.3.5/backend/infrahub/workers → infrahub_server-1.4.0b0/backend/infrahub/webhook}/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/webhook/gather.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/webhook/triggers.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/worker.py +0 -0
- {infrahub_server-1.3.5/backend/infrahub/workflows → infrahub_server-1.4.0b0/backend/infrahub/workers}/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/workers/utils.py +0 -0
- {infrahub_server-1.3.5/python_sdk/infrahub_sdk/ctl → infrahub_server-1.4.0b0/backend/infrahub/workflows}/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/workflows/constants.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/workflows/utils.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/_importer.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/analyzer.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/async_typer.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/batch.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/branch.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/checks.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/config.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/constants.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/context.py +0 -0
- {infrahub_server-1.3.5/python_sdk/infrahub_sdk/protocols_generator → infrahub_server-1.4.0b0/python_sdk/infrahub_sdk/ctl}/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/ctl/branch.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/ctl/check.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/ctl/cli.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/ctl/cli_commands.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/ctl/client.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/ctl/config.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/ctl/exceptions.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/ctl/exporter.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/ctl/generator.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/ctl/importer.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/ctl/menu.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/ctl/object.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/ctl/parameters.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/ctl/render.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/ctl/transform.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/ctl/utils.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/ctl/validate.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/data.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/diff.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/exceptions.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/generator.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/graphql.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/groups.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/jinja2.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/node/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/node/attribute.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/node/constants.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/node/node.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/node/parsers.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/node/property.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/node/related_node.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/node/relationship.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/object_store.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/operation.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/playback.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/protocols_base.py +0 -0
- {infrahub_server-1.3.5/python_sdk/infrahub_sdk/pytest_plugin → infrahub_server-1.4.0b0/python_sdk/infrahub_sdk/protocols_generator}/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/protocols_generator/constants.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/protocols_generator/generator.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/protocols_generator/template.j2 +0 -0
- {infrahub_server-1.3.5/python_sdk/infrahub_sdk/spec → infrahub_server-1.4.0b0/python_sdk/infrahub_sdk/pytest_plugin}/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/pytest_plugin/exceptions.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/pytest_plugin/items/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/pytest_plugin/items/base.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/pytest_plugin/items/check.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/pytest_plugin/items/graphql_query.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/pytest_plugin/items/jinja2_transform.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/pytest_plugin/items/python_transform.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/pytest_plugin/loader.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/pytest_plugin/models.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/pytest_plugin/plugin.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/pytest_plugin/utils.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/queries.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/query_groups.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/recorder.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/repository.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/schema/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/schema/main.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/schema/repository.py +0 -0
- {infrahub_server-1.3.5/python_sdk/infrahub_sdk/testing → infrahub_server-1.4.0b0/python_sdk/infrahub_sdk/spec}/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/spec/menu.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/spec/object.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/store.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/task/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/task/constants.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/task/exceptions.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/task/manager.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/task/models.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/template/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/template/exceptions.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/template/filters.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/template/models.py +0 -0
- {infrahub_server-1.3.5/python_sdk/infrahub_sdk/testing/schemas → infrahub_server-1.4.0b0/python_sdk/infrahub_sdk/testing}/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/testing/docker.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/testing/repository.py +0 -0
- {infrahub_server-1.3.5/python_sdk/infrahub_sdk/transfer → infrahub_server-1.4.0b0/python_sdk/infrahub_sdk/testing/schemas}/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/testing/schemas/animal.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/testing/schemas/car_person.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/timestamp.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/topological_sort.py +0 -0
- {infrahub_server-1.3.5/python_sdk/infrahub_sdk/transfer/exporter → infrahub_server-1.4.0b0/python_sdk/infrahub_sdk/transfer}/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/transfer/constants.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/transfer/exceptions.py +0 -0
- {infrahub_server-1.3.5/python_sdk/infrahub_sdk/transfer/importer → infrahub_server-1.4.0b0/python_sdk/infrahub_sdk/transfer/exporter}/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/transfer/exporter/interface.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/transfer/exporter/json.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/transfer/importer/interface.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/transfer/importer/json.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/transfer/schema_sorter.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/transforms.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/types.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/utils.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/uuidt.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_sdk/infrahub_sdk/yaml.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_testcontainers/infrahub_testcontainers/__init__.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_testcontainers/infrahub_testcontainers/constants.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_testcontainers/infrahub_testcontainers/haproxy.cfg +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_testcontainers/infrahub_testcontainers/host.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_testcontainers/infrahub_testcontainers/measurements.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_testcontainers/infrahub_testcontainers/models.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_testcontainers/infrahub_testcontainers/performance_test.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_testcontainers/infrahub_testcontainers/plugin.py +0 -0
- {infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/python_testcontainers/infrahub_testcontainers/prometheus.yml +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: infrahub-server
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.4.0b0
|
|
4
4
|
Summary: Infrahub is taking a new approach to Infrastructure Management by providing a new generation of datastore to organize and control all the data that defines how an infrastructure should run.
|
|
5
5
|
License: Apache-2.0
|
|
6
6
|
Author: OpsMill
|
|
@@ -21,6 +21,7 @@ Requires-Dist: bcrypt (>=4.1,<4.2)
|
|
|
21
21
|
Requires-Dist: boto3 (==1.34.129)
|
|
22
22
|
Requires-Dist: dulwich (>=0.22.7,<0.23.0)
|
|
23
23
|
Requires-Dist: email-validator (>=2.1,<2.2)
|
|
24
|
+
Requires-Dist: fast-depends (>=2.4.12,<3.0.0)
|
|
24
25
|
Requires-Dist: fastapi (>=0.115,<0.116)
|
|
25
26
|
Requires-Dist: fastapi-storages (>=0.3,<0.4)
|
|
26
27
|
Requires-Dist: gitpython (>=3,<4)
|
|
@@ -38,8 +39,8 @@ Requires-Dist: opentelemetry-exporter-otlp-proto-grpc (==1.28.1)
|
|
|
38
39
|
Requires-Dist: opentelemetry-exporter-otlp-proto-http (==1.28.1)
|
|
39
40
|
Requires-Dist: opentelemetry-instrumentation-aio-pika (==0.49b1)
|
|
40
41
|
Requires-Dist: opentelemetry-instrumentation-fastapi (==0.49b1)
|
|
41
|
-
Requires-Dist: prefect (==3.4.
|
|
42
|
-
Requires-Dist: prefect-redis (==0.2.
|
|
42
|
+
Requires-Dist: prefect (==3.4.11)
|
|
43
|
+
Requires-Dist: prefect-redis (==0.2.3)
|
|
43
44
|
Requires-Dist: pyarrow (>=14,<15)
|
|
44
45
|
Requires-Dist: pydantic (>=2.10,<2.11)
|
|
45
46
|
Requires-Dist: pydantic-settings (>=2.8,<2.9)
|
|
@@ -47,7 +48,7 @@ Requires-Dist: pyjwt (>=2.8,<2.9)
|
|
|
47
48
|
Requires-Dist: pytest (>=7.4,<7.5)
|
|
48
49
|
Requires-Dist: python-multipart (==0.0.18)
|
|
49
50
|
Requires-Dist: pyyaml (>=6,<7)
|
|
50
|
-
Requires-Dist: redis[hiredis] (>=
|
|
51
|
+
Requires-Dist: redis[hiredis] (>=6.0.0,<7.0.0)
|
|
51
52
|
Requires-Dist: rich (>=13,<14)
|
|
52
53
|
Requires-Dist: starlette-exporter (>=0.23,<0.24)
|
|
53
54
|
Requires-Dist: structlog (==24.1.0)
|
|
@@ -18,6 +18,7 @@ from infrahub.config import ( # noqa: TC001
|
|
|
18
18
|
)
|
|
19
19
|
from infrahub.core import registry
|
|
20
20
|
from infrahub.exceptions import NodeNotFoundError
|
|
21
|
+
from infrahub.workers.dependencies import get_installation_type
|
|
21
22
|
|
|
22
23
|
if TYPE_CHECKING:
|
|
23
24
|
from infrahub.auth import AccountSession
|
|
@@ -31,6 +32,8 @@ class ConfigAPI(BaseModel):
|
|
|
31
32
|
analytics: AnalyticsSettings
|
|
32
33
|
experimental_features: ExperimentalFeaturesSettings
|
|
33
34
|
sso: config.SSOInfo
|
|
35
|
+
installation_type: str
|
|
36
|
+
policy: config.PolicySettings
|
|
34
37
|
|
|
35
38
|
|
|
36
39
|
class InfoAPI(BaseModel):
|
|
@@ -46,6 +49,8 @@ async def get_config() -> ConfigAPI:
|
|
|
46
49
|
analytics=config.SETTINGS.analytics,
|
|
47
50
|
experimental_features=config.SETTINGS.experimental_features,
|
|
48
51
|
sso=config.SETTINGS.security.public_sso_config,
|
|
52
|
+
installation_type=get_installation_type(),
|
|
53
|
+
policy=config.SETTINGS.policy,
|
|
49
54
|
)
|
|
50
55
|
|
|
51
56
|
|
|
@@ -3,34 +3,29 @@ from prefect import flow
|
|
|
3
3
|
from infrahub.artifacts.models import CheckArtifactCreate
|
|
4
4
|
from infrahub.core.constants import InfrahubKind, ValidatorConclusion
|
|
5
5
|
from infrahub.core.timestamp import Timestamp
|
|
6
|
-
from infrahub.git import
|
|
7
|
-
from infrahub.services import InfrahubServices
|
|
6
|
+
from infrahub.git.repository import get_initialized_repo
|
|
8
7
|
from infrahub.tasks.artifact import define_artifact
|
|
8
|
+
from infrahub.workers.dependencies import get_client
|
|
9
9
|
from infrahub.workflows.utils import add_tags
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
@flow(name="git-repository-check-artifact-create", flow_run_name="Check artifact creation")
|
|
13
|
-
async def create(model: CheckArtifactCreate
|
|
13
|
+
async def create(model: CheckArtifactCreate) -> ValidatorConclusion:
|
|
14
14
|
await add_tags(branches=[model.branch_name], nodes=[model.target_id])
|
|
15
|
-
validator = await service.client.get(kind=InfrahubKind.ARTIFACTVALIDATOR, id=model.validator_id, include=["checks"])
|
|
16
15
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
name=model.repository_name,
|
|
29
|
-
client=service.client,
|
|
30
|
-
service=service,
|
|
31
|
-
)
|
|
16
|
+
client = get_client()
|
|
17
|
+
|
|
18
|
+
validator = await client.get(kind=InfrahubKind.ARTIFACTVALIDATOR, id=model.validator_id, include=["checks"])
|
|
19
|
+
|
|
20
|
+
repo = await get_initialized_repo(
|
|
21
|
+
client=client,
|
|
22
|
+
repository_id=model.repository_id,
|
|
23
|
+
name=model.repository_name,
|
|
24
|
+
repository_kind=model.repository_kind,
|
|
25
|
+
commit=model.commit,
|
|
26
|
+
)
|
|
32
27
|
|
|
33
|
-
artifact, artifact_created = await define_artifact(model=model
|
|
28
|
+
artifact, artifact_created = await define_artifact(model=model)
|
|
34
29
|
|
|
35
30
|
severity = "info"
|
|
36
31
|
artifact_result: dict[str, str | bool | None] = {
|
|
@@ -59,7 +54,7 @@ async def create(model: CheckArtifactCreate, service: InfrahubServices) -> Valid
|
|
|
59
54
|
|
|
60
55
|
check = None
|
|
61
56
|
check_name = f"{model.artifact_name}: {model.target_name}"
|
|
62
|
-
existing_check = await
|
|
57
|
+
existing_check = await client.filters(
|
|
63
58
|
kind=InfrahubKind.ARTIFACTCHECK, validator__ids=validator.id, name__value=check_name
|
|
64
59
|
)
|
|
65
60
|
if existing_check:
|
|
@@ -75,7 +70,7 @@ async def create(model: CheckArtifactCreate, service: InfrahubServices) -> Valid
|
|
|
75
70
|
check.storage_id.value = artifact_result["storage_id"]
|
|
76
71
|
await check.save()
|
|
77
72
|
else:
|
|
78
|
-
check = await
|
|
73
|
+
check = await client.create(
|
|
79
74
|
kind=InfrahubKind.ARTIFACTCHECK,
|
|
80
75
|
data={
|
|
81
76
|
"name": check_name,
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
from abc import ABC, abstractmethod
|
|
2
|
+
|
|
3
|
+
from fast_depends import Depends, inject
|
|
4
|
+
|
|
5
|
+
from infrahub.auth import AccountSession
|
|
6
|
+
from infrahub.database import InfrahubDatabase
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class BranchMergeMutationChecker(ABC):
|
|
10
|
+
@abstractmethod
|
|
11
|
+
async def verify_branch_merge_mutation_allowed(
|
|
12
|
+
self,
|
|
13
|
+
db: InfrahubDatabase,
|
|
14
|
+
account_session: AccountSession,
|
|
15
|
+
) -> None:
|
|
16
|
+
raise NotImplementedError()
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
class BranchMergeMutationCheckerCommunity(BranchMergeMutationChecker):
|
|
20
|
+
async def verify_branch_merge_mutation_allowed(
|
|
21
|
+
self,
|
|
22
|
+
db: InfrahubDatabase,
|
|
23
|
+
account_session: AccountSession,
|
|
24
|
+
) -> None:
|
|
25
|
+
pass
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
def get_branch_merge_mutation_checker() -> BranchMergeMutationChecker:
|
|
29
|
+
return BranchMergeMutationCheckerCommunity()
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
@inject
|
|
33
|
+
async def verify_branch_merge_mutation_allowed(
|
|
34
|
+
db: InfrahubDatabase,
|
|
35
|
+
account_session: AccountSession,
|
|
36
|
+
branch_merge_mutation_checker: BranchMergeMutationChecker = Depends(get_branch_merge_mutation_checker), # noqa: B008
|
|
37
|
+
) -> None:
|
|
38
|
+
await branch_merge_mutation_checker.verify_branch_merge_mutation_allowed(db=db, account_session=account_session)
|
|
@@ -5,8 +5,8 @@ from infrahub_sdk.async_typer import AsyncTyper
|
|
|
5
5
|
|
|
6
6
|
from infrahub import config
|
|
7
7
|
from infrahub.core.initialization import initialization
|
|
8
|
-
from infrahub.database import InfrahubDatabase, get_db
|
|
9
8
|
|
|
9
|
+
from ..workers.dependencies import get_database
|
|
10
10
|
from .context import CliContext
|
|
11
11
|
from .db import app as db_app
|
|
12
12
|
from .events import app as events_app
|
|
@@ -36,7 +36,7 @@ async def _init_shell(config_file: str) -> None:
|
|
|
36
36
|
"""Launch a Python Interactive shell."""
|
|
37
37
|
config.load_and_exit(config_file_name=config_file)
|
|
38
38
|
|
|
39
|
-
db =
|
|
39
|
+
db = await get_database()
|
|
40
40
|
|
|
41
41
|
async with db.start_session() as db:
|
|
42
42
|
await initialization(db=db)
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
from dataclasses import dataclass
|
|
4
|
+
from typing import TYPE_CHECKING
|
|
5
|
+
|
|
6
|
+
from infrahub.workers.dependencies import get_database
|
|
7
|
+
|
|
8
|
+
if TYPE_CHECKING:
|
|
9
|
+
from infrahub.database import InfrahubDatabase
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
@dataclass
|
|
13
|
+
class CliContext:
|
|
14
|
+
application: str = "infrahub.server:app"
|
|
15
|
+
|
|
16
|
+
# This method is inherited for Infrahub Enterprise.
|
|
17
|
+
@staticmethod
|
|
18
|
+
async def init_db(retry: int) -> InfrahubDatabase: # type:ignore # noqa
|
|
19
|
+
return await get_database()
|
|
@@ -23,7 +23,7 @@ from infrahub import config
|
|
|
23
23
|
from infrahub.core import registry
|
|
24
24
|
from infrahub.core.graph import GRAPH_VERSION
|
|
25
25
|
from infrahub.core.graph.constraints import ConstraintManagerBase, ConstraintManagerMemgraph, ConstraintManagerNeo4j
|
|
26
|
-
from infrahub.core.graph.index import
|
|
26
|
+
from infrahub.core.graph.index import node_indexes, rel_indexes
|
|
27
27
|
from infrahub.core.graph.schema import (
|
|
28
28
|
GRAPH_SCHEMA,
|
|
29
29
|
GraphAttributeProperties,
|
|
@@ -51,9 +51,6 @@ from infrahub.database import DatabaseType
|
|
|
51
51
|
from infrahub.database.memgraph import IndexManagerMemgraph
|
|
52
52
|
from infrahub.database.neo4j import IndexManagerNeo4j
|
|
53
53
|
from infrahub.log import get_logger
|
|
54
|
-
from infrahub.services import InfrahubServices
|
|
55
|
-
from infrahub.services.adapters.message_bus.local import BusSimulator
|
|
56
|
-
from infrahub.services.adapters.workflow.local import WorkflowLocalExecution
|
|
57
54
|
|
|
58
55
|
from .constants import ERROR_BADGE, FAILED_BADGE, SUCCESS_BADGE
|
|
59
56
|
from .patch import patch_app
|
|
@@ -195,12 +192,8 @@ async def update_core_schema_cmd(
|
|
|
195
192
|
context: CliContext = ctx.obj
|
|
196
193
|
dbdriver = await context.init_db(retry=1)
|
|
197
194
|
|
|
198
|
-
service = await InfrahubServices.new(
|
|
199
|
-
database=dbdriver, message_bus=BusSimulator(), workflow=WorkflowLocalExecution()
|
|
200
|
-
)
|
|
201
|
-
|
|
202
195
|
with prefect_test_harness():
|
|
203
|
-
await update_core_schema(db=dbdriver,
|
|
196
|
+
await update_core_schema(db=dbdriver, initialize=True, debug=debug)
|
|
204
197
|
|
|
205
198
|
await dbdriver.close()
|
|
206
199
|
|
|
@@ -264,8 +257,6 @@ async def index(
|
|
|
264
257
|
index_manager: IndexManagerBase = IndexManagerMemgraph(db=dbdriver)
|
|
265
258
|
index_manager = IndexManagerNeo4j(db=dbdriver)
|
|
266
259
|
|
|
267
|
-
if config.SETTINGS.experimental_features.value_db_index:
|
|
268
|
-
node_indexes.append(attr_value_index)
|
|
269
260
|
index_manager.init(nodes=node_indexes, rels=rel_indexes)
|
|
270
261
|
|
|
271
262
|
if action == IndexAction.ADD:
|
|
@@ -368,9 +359,7 @@ async def initialize_internal_schema() -> None:
|
|
|
368
359
|
registry.schema.register_schema(schema=schema)
|
|
369
360
|
|
|
370
361
|
|
|
371
|
-
async def update_core_schema(
|
|
372
|
-
db: InfrahubDatabase, service: InfrahubServices, initialize: bool = True, debug: bool = False
|
|
373
|
-
) -> None:
|
|
362
|
+
async def update_core_schema(db: InfrahubDatabase, initialize: bool = True, debug: bool = False) -> None:
|
|
374
363
|
"""Update the core schema of Infrahub to the latest version"""
|
|
375
364
|
# ----------------------------------------------------------
|
|
376
365
|
# Initialize Schema and Registry
|
|
@@ -419,7 +408,7 @@ async def update_core_schema(
|
|
|
419
408
|
schema_branch=candidate_schema,
|
|
420
409
|
constraints=result.constraints,
|
|
421
410
|
)
|
|
422
|
-
responses = await schema_validate_migrations(message=validate_migration_data
|
|
411
|
+
responses = await schema_validate_migrations(message=validate_migration_data)
|
|
423
412
|
error_messages = [violation.message for response in responses for violation in response.violations]
|
|
424
413
|
if error_messages:
|
|
425
414
|
rprint(f"{ERROR_BADGE} | Unable to update the schema, due to failed validations")
|
|
@@ -461,7 +450,7 @@ async def update_core_schema(
|
|
|
461
450
|
previous_schema=origin_schema,
|
|
462
451
|
migrations=result.migrations,
|
|
463
452
|
)
|
|
464
|
-
migration_error_msgs = await schema_apply_migrations(message=apply_migration_data
|
|
453
|
+
migration_error_msgs = await schema_apply_migrations(message=apply_migration_data)
|
|
465
454
|
|
|
466
455
|
if migration_error_msgs:
|
|
467
456
|
rprint(f"{ERROR_BADGE} | Some error(s) happened while running the schema migrations")
|
|
@@ -11,22 +11,13 @@ from prefect.client.orchestration import get_client
|
|
|
11
11
|
from rich import print as rprint
|
|
12
12
|
|
|
13
13
|
from infrahub import config
|
|
14
|
-
from infrahub.core.
|
|
15
|
-
from infrahub.core.initialization import (
|
|
16
|
-
create_anonymous_role,
|
|
17
|
-
create_default_roles,
|
|
18
|
-
create_super_administrator_role,
|
|
19
|
-
create_super_administrators_group,
|
|
20
|
-
initialize_registry,
|
|
21
|
-
)
|
|
14
|
+
from infrahub.core.initialization import create_anonymous_role, create_default_account_groups, initialize_registry
|
|
22
15
|
from infrahub.core.manager import NodeManager
|
|
16
|
+
from infrahub.core.protocols import CoreAccount, CoreObjectPermission
|
|
23
17
|
from infrahub.menu.menu import default_menu
|
|
24
18
|
from infrahub.menu.models import MenuDict
|
|
25
19
|
from infrahub.menu.repository import MenuRepository
|
|
26
20
|
from infrahub.menu.utils import create_default_menu
|
|
27
|
-
from infrahub.services import InfrahubServices
|
|
28
|
-
from infrahub.services.adapters.message_bus.local import BusSimulator
|
|
29
|
-
from infrahub.services.adapters.workflow.local import WorkflowLocalExecution
|
|
30
21
|
from infrahub.trigger.tasks import trigger_configure_all
|
|
31
22
|
from infrahub.workflows.initialization import (
|
|
32
23
|
setup_blocks,
|
|
@@ -61,9 +52,6 @@ async def upgrade_cmd(
|
|
|
61
52
|
context: CliContext = ctx.obj
|
|
62
53
|
dbdriver = await context.init_db(retry=1)
|
|
63
54
|
|
|
64
|
-
service = await InfrahubServices.new(
|
|
65
|
-
database=dbdriver, message_bus=BusSimulator(), workflow=WorkflowLocalExecution()
|
|
66
|
-
)
|
|
67
55
|
await initialize_registry(db=dbdriver)
|
|
68
56
|
|
|
69
57
|
# NOTE add step to validate if the database and the task manager are reachable
|
|
@@ -83,7 +71,7 @@ async def upgrade_cmd(
|
|
|
83
71
|
return
|
|
84
72
|
|
|
85
73
|
await initialize_internal_schema()
|
|
86
|
-
await update_core_schema(db=dbdriver,
|
|
74
|
+
await update_core_schema(db=dbdriver, initialize=False)
|
|
87
75
|
|
|
88
76
|
# -------------------------------------------
|
|
89
77
|
# Upgrade Internal Objects, generated and managed by Infrahub
|
|
@@ -98,7 +86,7 @@ async def upgrade_cmd(
|
|
|
98
86
|
await setup_blocks()
|
|
99
87
|
await setup_worker_pools(client=client)
|
|
100
88
|
await setup_deployments(client=client)
|
|
101
|
-
await trigger_configure_all(
|
|
89
|
+
await trigger_configure_all()
|
|
102
90
|
|
|
103
91
|
await dbdriver.close()
|
|
104
92
|
|
|
@@ -124,11 +112,7 @@ async def upgrade_menu(db: InfrahubDatabase) -> None:
|
|
|
124
112
|
|
|
125
113
|
|
|
126
114
|
async def upgrade_permissions(db: InfrahubDatabase) -> None:
|
|
127
|
-
existing_permissions = await NodeManager.query(
|
|
128
|
-
schema=InfrahubKind.OBJECTPERMISSION,
|
|
129
|
-
db=db,
|
|
130
|
-
limit=1,
|
|
131
|
-
)
|
|
115
|
+
existing_permissions = await NodeManager.query(schema=CoreObjectPermission, db=db, limit=1)
|
|
132
116
|
if existing_permissions:
|
|
133
117
|
rprint("Permissions Up to date, nothing to update")
|
|
134
118
|
return
|
|
@@ -138,14 +122,8 @@ async def upgrade_permissions(db: InfrahubDatabase) -> None:
|
|
|
138
122
|
|
|
139
123
|
|
|
140
124
|
async def setup_permissions(db: InfrahubDatabase) -> None:
|
|
141
|
-
existing_accounts = await NodeManager.query(
|
|
142
|
-
|
|
143
|
-
db=db,
|
|
144
|
-
limit=1,
|
|
145
|
-
)
|
|
146
|
-
administrator_role = await create_super_administrator_role(db=db)
|
|
147
|
-
await create_super_administrators_group(db=db, role=administrator_role, admin_accounts=existing_accounts)
|
|
148
|
-
await create_default_roles(db=db)
|
|
125
|
+
existing_accounts = await NodeManager.query(schema=CoreAccount, db=db, limit=1)
|
|
126
|
+
await create_default_account_groups(db=db, admin_accounts=existing_accounts)
|
|
149
127
|
|
|
150
128
|
if config.SETTINGS.main.allow_anonymous_access:
|
|
151
129
|
await create_anonymous_role(db=db)
|
{infrahub_server-1.3.5 → infrahub_server-1.4.0b0}/backend/infrahub/computed_attribute/tasks.py
RENAMED
|
@@ -5,7 +5,7 @@ from typing import TYPE_CHECKING
|
|
|
5
5
|
from infrahub_sdk.protocols import CoreTransformPython
|
|
6
6
|
from infrahub_sdk.template import Jinja2Template
|
|
7
7
|
from prefect import flow
|
|
8
|
-
from prefect.client.orchestration import get_client
|
|
8
|
+
from prefect.client.orchestration import get_client as get_prefect_client
|
|
9
9
|
from prefect.logging import get_run_logger
|
|
10
10
|
|
|
11
11
|
from infrahub.context import InfrahubContext # noqa: TC001 needed for prefect flow
|
|
@@ -13,9 +13,9 @@ from infrahub.core.constants import ComputedAttributeKind, InfrahubKind
|
|
|
13
13
|
from infrahub.core.registry import registry
|
|
14
14
|
from infrahub.events import BranchDeletedEvent
|
|
15
15
|
from infrahub.git.repository import get_initialized_repo
|
|
16
|
-
from infrahub.services import InfrahubServices # noqa: TC001 needed for prefect flow
|
|
17
16
|
from infrahub.trigger.models import TriggerSetupReport, TriggerType
|
|
18
17
|
from infrahub.trigger.setup import setup_triggers, setup_triggers_specific
|
|
18
|
+
from infrahub.workers.dependencies import get_client, get_component, get_database, get_workflow
|
|
19
19
|
from infrahub.workflows.catalogue import (
|
|
20
20
|
COMPUTED_ATTRIBUTE_PROCESS_JINJA2,
|
|
21
21
|
COMPUTED_ATTRIBUTE_PROCESS_TRANSFORM,
|
|
@@ -61,10 +61,10 @@ async def process_transform(
|
|
|
61
61
|
computed_attribute_name: str, # noqa: ARG001
|
|
62
62
|
computed_attribute_kind: str, # noqa: ARG001
|
|
63
63
|
context: InfrahubContext, # noqa: ARG001
|
|
64
|
-
service: InfrahubServices,
|
|
65
64
|
updated_fields: list[str] | None = None, # noqa: ARG001
|
|
66
65
|
) -> None:
|
|
67
66
|
await add_tags(branches=[branch_name], nodes=[object_id])
|
|
67
|
+
client = get_client()
|
|
68
68
|
|
|
69
69
|
schema_branch = registry.schema.get_schema_branch(name=branch_name)
|
|
70
70
|
node_schema = schema_branch.get_node(name=node_kind, duplicate=False)
|
|
@@ -77,7 +77,7 @@ async def process_transform(
|
|
|
77
77
|
return
|
|
78
78
|
|
|
79
79
|
for attribute_name, transform_attribute in transform_attributes.items():
|
|
80
|
-
transform = await
|
|
80
|
+
transform = await client.get(
|
|
81
81
|
kind=CoreTransformPython,
|
|
82
82
|
branch=branch_name,
|
|
83
83
|
id=transform_attribute.transform,
|
|
@@ -88,7 +88,7 @@ async def process_transform(
|
|
|
88
88
|
if not transform:
|
|
89
89
|
continue
|
|
90
90
|
|
|
91
|
-
repo_node = await
|
|
91
|
+
repo_node = await client.get(
|
|
92
92
|
kind=str(transform.repository.peer.typename),
|
|
93
93
|
branch=branch_name,
|
|
94
94
|
id=transform.repository.peer.id,
|
|
@@ -96,14 +96,14 @@ async def process_transform(
|
|
|
96
96
|
)
|
|
97
97
|
|
|
98
98
|
repo = await get_initialized_repo(
|
|
99
|
+
client=client,
|
|
99
100
|
repository_id=transform.repository.peer.id,
|
|
100
101
|
name=transform.repository.peer.name.value,
|
|
101
|
-
service=service,
|
|
102
102
|
repository_kind=str(transform.repository.peer.typename),
|
|
103
103
|
commit=repo_node.commit.value,
|
|
104
104
|
) # type: ignore[misc]
|
|
105
105
|
|
|
106
|
-
data = await
|
|
106
|
+
data = await client.query_gql_query(
|
|
107
107
|
name=transform.query.peer.name.value,
|
|
108
108
|
branch_name=branch_name,
|
|
109
109
|
variables={"id": object_id},
|
|
@@ -112,22 +112,17 @@ async def process_transform(
|
|
|
112
112
|
)
|
|
113
113
|
|
|
114
114
|
transformed_data = await repo.execute_python_transform.with_options(timeout_seconds=transform.timeout.value)(
|
|
115
|
+
client=client,
|
|
115
116
|
branch_name=branch_name,
|
|
116
117
|
commit=repo_node.commit.value,
|
|
117
118
|
location=f"{transform.file_path.value}::{transform.class_name.value}",
|
|
118
119
|
data=data,
|
|
119
|
-
client=service.client,
|
|
120
120
|
convert_query_response=transform.convert_query_response.value,
|
|
121
121
|
) # type: ignore[misc]
|
|
122
122
|
|
|
123
|
-
await
|
|
123
|
+
await client.execute_graphql(
|
|
124
124
|
query=UPDATE_ATTRIBUTE,
|
|
125
|
-
variables={
|
|
126
|
-
"id": object_id,
|
|
127
|
-
"kind": node_kind,
|
|
128
|
-
"attribute": attribute_name,
|
|
129
|
-
"value": transformed_data,
|
|
130
|
-
},
|
|
125
|
+
variables={"id": object_id, "kind": node_kind, "attribute": attribute_name, "value": transformed_data},
|
|
131
126
|
branch_name=branch_name,
|
|
132
127
|
)
|
|
133
128
|
|
|
@@ -141,14 +136,13 @@ async def trigger_update_python_computed_attributes(
|
|
|
141
136
|
computed_attribute_name: str,
|
|
142
137
|
computed_attribute_kind: str,
|
|
143
138
|
context: InfrahubContext,
|
|
144
|
-
service: InfrahubServices,
|
|
145
139
|
) -> None:
|
|
146
140
|
await add_tags(branches=[branch_name])
|
|
147
141
|
|
|
148
|
-
nodes = await
|
|
142
|
+
nodes = await get_client().all(kind=computed_attribute_kind, branch=branch_name)
|
|
149
143
|
|
|
150
144
|
for node in nodes:
|
|
151
|
-
await
|
|
145
|
+
await get_workflow().submit_workflow(
|
|
152
146
|
workflow=COMPUTED_ATTRIBUTE_PROCESS_TRANSFORM,
|
|
153
147
|
context=context,
|
|
154
148
|
parameters={
|
|
@@ -172,9 +166,9 @@ async def computed_attribute_jinja2_update_value(
|
|
|
172
166
|
node_kind: str,
|
|
173
167
|
attribute_name: str,
|
|
174
168
|
template: Jinja2Template,
|
|
175
|
-
service: InfrahubServices,
|
|
176
169
|
) -> None:
|
|
177
170
|
log = get_run_logger()
|
|
171
|
+
client = get_client()
|
|
178
172
|
|
|
179
173
|
await add_tags(branches=[branch_name], nodes=[obj.node_id], db_change=True)
|
|
180
174
|
|
|
@@ -183,14 +177,9 @@ async def computed_attribute_jinja2_update_value(
|
|
|
183
177
|
log.debug(f"Ignoring to update {obj} with existing value on {attribute_name}={value}")
|
|
184
178
|
return
|
|
185
179
|
|
|
186
|
-
await
|
|
180
|
+
await client.execute_graphql(
|
|
187
181
|
query=UPDATE_ATTRIBUTE,
|
|
188
|
-
variables={
|
|
189
|
-
"id": obj.node_id,
|
|
190
|
-
"kind": node_kind,
|
|
191
|
-
"attribute": attribute_name,
|
|
192
|
-
"value": value,
|
|
193
|
-
},
|
|
182
|
+
variables={"id": obj.node_id, "kind": node_kind, "attribute": attribute_name, "value": value},
|
|
194
183
|
branch_name=branch_name,
|
|
195
184
|
)
|
|
196
185
|
log.info(f"Updating computed attribute {node_kind}.{attribute_name}='{value}' ({obj.node_id})")
|
|
@@ -207,10 +196,10 @@ async def process_jinja2(
|
|
|
207
196
|
computed_attribute_name: str,
|
|
208
197
|
computed_attribute_kind: str,
|
|
209
198
|
context: InfrahubContext, # noqa: ARG001
|
|
210
|
-
service: InfrahubServices,
|
|
211
199
|
updated_fields: list[str] | None = None,
|
|
212
200
|
) -> None:
|
|
213
201
|
log = get_run_logger()
|
|
202
|
+
client = get_client()
|
|
214
203
|
|
|
215
204
|
await add_tags(branches=[branch_name])
|
|
216
205
|
updates: list[str] = updated_fields or []
|
|
@@ -240,14 +229,14 @@ async def process_jinja2(
|
|
|
240
229
|
|
|
241
230
|
for id_filter in computed_macro.node_filters:
|
|
242
231
|
query = attribute_graphql.render_graphql_query(query_filter=id_filter, filter_id=object_id)
|
|
243
|
-
response = await
|
|
232
|
+
response = await client.execute_graphql(query=query, branch_name=branch_name)
|
|
244
233
|
output = attribute_graphql.parse_response(response=response)
|
|
245
234
|
found.extend(output)
|
|
246
235
|
|
|
247
236
|
if not found:
|
|
248
237
|
log.debug("No nodes found that requires updates")
|
|
249
238
|
|
|
250
|
-
batch = await
|
|
239
|
+
batch = await client.create_batch()
|
|
251
240
|
for node in found:
|
|
252
241
|
batch.add(
|
|
253
242
|
task=computed_attribute_jinja2_update_value,
|
|
@@ -256,7 +245,6 @@ async def process_jinja2(
|
|
|
256
245
|
node_kind=node_schema.kind,
|
|
257
246
|
attribute_name=computed_macro.attribute.name,
|
|
258
247
|
template=jinja_template,
|
|
259
|
-
service=service,
|
|
260
248
|
)
|
|
261
249
|
|
|
262
250
|
_ = [response async for _, response in batch.execute()]
|
|
@@ -271,15 +259,16 @@ async def trigger_update_jinja2_computed_attributes(
|
|
|
271
259
|
computed_attribute_name: str,
|
|
272
260
|
computed_attribute_kind: str,
|
|
273
261
|
context: InfrahubContext,
|
|
274
|
-
service: InfrahubServices,
|
|
275
262
|
) -> None:
|
|
276
263
|
await add_tags(branches=[branch_name])
|
|
277
264
|
|
|
265
|
+
client = get_client()
|
|
266
|
+
|
|
278
267
|
# NOTE we only need the id of the nodes, we need to ooptimize the query here
|
|
279
|
-
nodes = await
|
|
268
|
+
nodes = await client.all(kind=computed_attribute_kind, branch=branch_name)
|
|
280
269
|
|
|
281
270
|
for node in nodes:
|
|
282
|
-
await
|
|
271
|
+
await get_workflow().submit_workflow(
|
|
283
272
|
workflow=COMPUTED_ATTRIBUTE_PROCESS_JINJA2,
|
|
284
273
|
context=context,
|
|
285
274
|
parameters={
|
|
@@ -295,14 +284,16 @@ async def trigger_update_jinja2_computed_attributes(
|
|
|
295
284
|
|
|
296
285
|
@flow(name="computed-attribute-setup-jinja2", flow_run_name="Setup computed attributes in task-manager")
|
|
297
286
|
async def computed_attribute_setup_jinja2(
|
|
298
|
-
|
|
287
|
+
context: InfrahubContext, branch_name: str | None = None, event_name: str | None = None
|
|
299
288
|
) -> None:
|
|
300
|
-
|
|
289
|
+
database = await get_database()
|
|
290
|
+
async with database.start_session() as db:
|
|
301
291
|
log = get_run_logger()
|
|
302
292
|
|
|
303
293
|
if branch_name:
|
|
304
294
|
await add_tags(branches=[branch_name])
|
|
305
|
-
|
|
295
|
+
component = await get_component()
|
|
296
|
+
await wait_for_schema_to_converge(branch_name=branch_name, component=component, db=db, log=log)
|
|
306
297
|
|
|
307
298
|
report: TriggerSetupReport = await setup_triggers_specific(
|
|
308
299
|
gatherer=gather_trigger_computed_attribute_jinja2, trigger_type=TriggerType.COMPUTED_ATTR_JINJA2
|
|
@@ -317,7 +308,7 @@ async def computed_attribute_setup_jinja2(
|
|
|
317
308
|
}
|
|
318
309
|
for branch, kind, attribute_name in unique_nodes:
|
|
319
310
|
if event_name != BranchDeletedEvent.event_name and branch == branch_name:
|
|
320
|
-
await
|
|
311
|
+
await get_workflow().submit_workflow(
|
|
321
312
|
workflow=TRIGGER_UPDATE_JINJA_COMPUTED_ATTRIBUTES,
|
|
322
313
|
context=context,
|
|
323
314
|
parameters={
|
|
@@ -335,20 +326,20 @@ async def computed_attribute_setup_jinja2(
|
|
|
335
326
|
flow_run_name="Setup computed attributes for Python transforms in task-manager",
|
|
336
327
|
)
|
|
337
328
|
async def computed_attribute_setup_python(
|
|
338
|
-
service: InfrahubServices,
|
|
339
329
|
context: InfrahubContext,
|
|
340
330
|
branch_name: str | None = None,
|
|
341
331
|
event_name: str | None = None,
|
|
342
332
|
commit: str | None = None, # noqa: ARG001
|
|
343
333
|
) -> None:
|
|
344
|
-
|
|
334
|
+
database = await get_database()
|
|
335
|
+
async with database.start_session() as db:
|
|
345
336
|
log = get_run_logger()
|
|
346
337
|
|
|
347
338
|
branch_name = branch_name or registry.default_branch
|
|
348
|
-
|
|
349
339
|
if branch_name:
|
|
350
340
|
await add_tags(branches=[branch_name])
|
|
351
|
-
|
|
341
|
+
component = await get_component()
|
|
342
|
+
await wait_for_schema_to_converge(branch_name=branch_name, component=component, db=db, log=log)
|
|
352
343
|
|
|
353
344
|
triggers_python, triggers_python_query = await gather_trigger_computed_attribute_python(db=db)
|
|
354
345
|
|
|
@@ -368,7 +359,7 @@ async def computed_attribute_setup_python(
|
|
|
368
359
|
for branch, kind, attribute_name in unique_nodes:
|
|
369
360
|
if event_name != BranchDeletedEvent.event_name and branch == branch_name:
|
|
370
361
|
log.info(f"Triggering update for {kind}.{attribute_name} on {branch}")
|
|
371
|
-
await
|
|
362
|
+
await get_workflow().submit_workflow(
|
|
372
363
|
workflow=TRIGGER_UPDATE_PYTHON_COMPUTED_ATTRIBUTES,
|
|
373
364
|
context=context,
|
|
374
365
|
parameters={
|
|
@@ -378,7 +369,7 @@ async def computed_attribute_setup_python(
|
|
|
378
369
|
},
|
|
379
370
|
)
|
|
380
371
|
|
|
381
|
-
async with
|
|
372
|
+
async with get_prefect_client(sync_client=False) as prefect_client:
|
|
382
373
|
await setup_triggers(
|
|
383
374
|
client=prefect_client,
|
|
384
375
|
triggers=triggers_python,
|
|
@@ -405,11 +396,10 @@ async def query_transform_targets(
|
|
|
405
396
|
node_kind: str, # noqa: ARG001
|
|
406
397
|
object_id: str,
|
|
407
398
|
context: InfrahubContext,
|
|
408
|
-
service: InfrahubServices,
|
|
409
399
|
) -> None:
|
|
410
400
|
await add_tags(branches=[branch_name])
|
|
411
401
|
schema_branch = registry.schema.get_schema_branch(name=branch_name)
|
|
412
|
-
targets = await
|
|
402
|
+
targets = await get_client().execute_graphql(
|
|
413
403
|
query=GATHER_GRAPHQL_QUERY_SUBSCRIBERS, variables={"members": [object_id]}, branch_name=branch_name
|
|
414
404
|
)
|
|
415
405
|
|
|
@@ -425,7 +415,7 @@ async def query_transform_targets(
|
|
|
425
415
|
for subscriber in subscribers:
|
|
426
416
|
if subscriber.kind in nodes_with_computed_attributes:
|
|
427
417
|
for computed_attribute in nodes_with_computed_attributes[subscriber.kind]:
|
|
428
|
-
await
|
|
418
|
+
await get_workflow().submit_workflow(
|
|
429
419
|
workflow=COMPUTED_ATTRIBUTE_PROCESS_TRANSFORM,
|
|
430
420
|
context=context,
|
|
431
421
|
parameters={
|