infrahub-server 1.2.7__tar.gz → 1.2.9__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.2.7 → infrahub_server-1.2.9}/PKG-INFO +2 -2
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/api/transformation.py +1 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/artifacts/models.py +4 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/cli/db.py +15 -6
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/computed_attribute/tasks.py +34 -12
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/config.py +2 -1
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/branch/tasks.py +0 -2
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/constants/__init__.py +1 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/diff/calculator.py +4 -3
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/diff/combiner.py +1 -2
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/diff/coordinator.py +44 -28
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/diff/data_check_synchronizer.py +3 -2
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/diff/enricher/hierarchy.py +38 -27
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/diff/ipam_diff_parser.py +5 -4
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/diff/merger/merger.py +20 -18
- infrahub_server-1.2.9/backend/infrahub/core/diff/model/field_specifiers_map.py +64 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/diff/model/path.py +55 -58
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/diff/parent_node_adder.py +14 -16
- infrahub_server-1.2.9/backend/infrahub/core/diff/query/drop_nodes.py +42 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/diff/query/field_specifiers.py +8 -7
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/diff/query/filters.py +15 -1
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/diff/query/save.py +3 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/diff/query_parser.py +49 -52
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/diff/repository/deserializer.py +36 -23
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/diff/repository/repository.py +31 -12
- infrahub_server-1.2.9/backend/infrahub/core/graph/__init__.py +1 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/graph/index.py +3 -1
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/initialization.py +23 -7
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/manager.py +16 -5
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/migrations/graph/__init__.py +2 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/migrations/graph/m014_remove_index_attr_value.py +9 -8
- infrahub_server-1.2.9/backend/infrahub/core/migrations/graph/m027_delete_isolated_nodes.py +50 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/protocols.py +1 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/query/branch.py +27 -17
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/query/diff.py +65 -38
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/query/node.py +111 -33
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/query/relationship.py +17 -3
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/query/subquery.py +2 -2
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/schema/definitions/core/builtin.py +2 -4
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/schema/definitions/core/transform.py +1 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/schema/schema_branch.py +3 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/validators/aggregated_checker.py +2 -2
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/validators/uniqueness/query.py +30 -9
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/database/__init__.py +1 -16
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/database/index.py +1 -1
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/database/memgraph.py +1 -12
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/database/neo4j.py +1 -13
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/git/integrator.py +27 -3
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/git/models.py +4 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/git/tasks.py +3 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/git_credential/helper.py +2 -2
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/mutations/computed_attribute.py +5 -1
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/queries/diff/tree.py +2 -1
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/message_bus/operations/requests/proposed_change.py +6 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/message_bus/types.py +3 -0
- infrahub_server-1.2.9/backend/infrahub/patch/queries/consolidate_duplicated_nodes.py +109 -0
- infrahub_server-1.2.9/backend/infrahub/patch/queries/delete_duplicated_edges.py +138 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/proposed_change/tasks.py +1 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/server.py +1 -3
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/transformations/models.py +3 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/transformations/tasks.py +1 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/trigger/models.py +11 -1
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/trigger/setup.py +38 -13
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/trigger/tasks.py +1 -4
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/webhook/models.py +3 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/workflows/initialization.py +1 -3
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/pyproject.toml +2 -2
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/client.py +4 -4
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/config.py +17 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/ctl/cli_commands.py +7 -1
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/ctl/generator.py +2 -2
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/generator.py +12 -66
- infrahub_server-1.2.9/python_sdk/infrahub_sdk/operation.py +80 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/protocols.py +12 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/recorder.py +3 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/schema/repository.py +4 -0
- infrahub_server-1.2.9/python_sdk/infrahub_sdk/transfer/importer/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/transforms.py +15 -27
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_testcontainers/infrahub_testcontainers/container.py +1 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_testcontainers/infrahub_testcontainers/docker-compose.test.yml +5 -1
- infrahub_server-1.2.7/backend/infrahub/core/graph/__init__.py +0 -1
- infrahub_server-1.2.7/backend/infrahub/database/manager.py +0 -15
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/LICENSE.txt +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/README.md +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/api/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/api/artifact.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/api/auth.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/api/dependencies.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/api/diff/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/api/diff/diff.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/api/diff/validation_models.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/api/exception_handlers.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/api/exceptions.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/api/file.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/api/internal.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/api/menu.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/api/oauth2.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/api/oidc.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/api/query.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/api/schema.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/api/static/redoc.standalone.js +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/api/static/swagger-ui-bundle.js +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/api/static/swagger-ui.css +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/api/storage.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/artifacts/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/artifacts/tasks.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/auth.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/cli/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/cli/constants.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/cli/context.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/cli/events.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/cli/git_agent.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/cli/patch.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/cli/server.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/cli/tasks.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/cli/upgrade.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/components.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/computed_attribute/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/computed_attribute/constants.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/computed_attribute/gather.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/computed_attribute/models.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/computed_attribute/triggers.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/core/changelog → infrahub_server-1.2.9/backend/infrahub/constants}/__init__.py +0 -0
- /infrahub_server-1.2.7/backend/infrahub/database/constants.py → /infrahub_server-1.2.9/backend/infrahub/constants/database.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/context.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/account.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/attribute.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/branch/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/branch/models.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/core/constraint → infrahub_server-1.2.9/backend/infrahub/core/changelog}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/changelog/diff.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/changelog/models.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/constants/database.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/constants/infrahubkind.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/constants/relationship_label.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/constants/schema.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/core/constraint/node → infrahub_server-1.2.9/backend/infrahub/core/constraint}/__init__.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/core/diff → infrahub_server-1.2.9/backend/infrahub/core/constraint/node}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/constraint/node/runner.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/core/diff/artifacts → infrahub_server-1.2.9/backend/infrahub/core/diff}/__init__.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/core/diff/enricher → infrahub_server-1.2.9/backend/infrahub/core/diff/artifacts}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/diff/artifacts/calculator.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/diff/branch_differ.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/diff/conflict_transferer.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/diff/conflicts_enricher.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/diff/conflicts_extractor.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/core/diff/merger → infrahub_server-1.2.9/backend/infrahub/core/diff/enricher}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/diff/enricher/aggregated.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/diff/enricher/cardinality_one.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/diff/enricher/interface.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/diff/enricher/labels.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/diff/enricher/path_identifier.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/diff/enricher/summary_counts.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/diff/exceptions.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/core/diff/model → infrahub_server-1.2.9/backend/infrahub/core/diff/merger}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/diff/merger/model.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/diff/merger/serializer.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/core/diff/query → infrahub_server-1.2.9/backend/infrahub/core/diff/model}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/diff/model/diff.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/diff/models.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/diff/payload_builder.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/core/diff/repository → infrahub_server-1.2.9/backend/infrahub/core/diff/query}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/diff/query/all_conflicts.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/diff/query/artifact.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/diff/query/delete_query.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/diff/query/diff_get.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/diff/query/diff_summary.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/diff/query/field_summary.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/diff/query/get_conflict_query.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/diff/query/has_conflicts_query.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/diff/query/merge.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/diff/query/merge_tracking_id.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/diff/query/roots_metadata.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/diff/query/summary_counts_enricher.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/diff/query/time_range_query.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/diff/query/update_conflict_query.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/core/integrity → infrahub_server-1.2.9/backend/infrahub/core/diff/repository}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/diff/tasks.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/enums.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/graph/constraints.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/graph/schema.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/core/integrity/object_conflict → infrahub_server-1.2.9/backend/infrahub/core/integrity}/__init__.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/core/ipam → infrahub_server-1.2.9/backend/infrahub/core/integrity/object_conflict}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/integrity/object_conflict/conflict_recorder.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/core/migrations/schema → infrahub_server-1.2.9/backend/infrahub/core/ipam}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/ipam/constants.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/ipam/kinds_getter.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/ipam/model.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/ipam/reconciler.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/ipam/size.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/ipam/tasks.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/ipam/utilization.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/merge.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/migrations/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/migrations/graph/m001_add_version_to_graph.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/migrations/graph/m002_attribute_is_default.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/migrations/graph/m003_relationship_parent_optional.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/migrations/graph/m004_add_attr_documentation.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/migrations/graph/m005_add_rel_read_only.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/migrations/graph/m006_add_rel_on_delete.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/migrations/graph/m007_add_rel_allow_override.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/migrations/graph/m008_add_human_friendly_id.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/migrations/graph/m009_add_generate_profile_attr.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/migrations/graph/m010_add_generate_profile_attr_generic.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/migrations/graph/m011_remove_profile_relationship_schema.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/migrations/graph/m012_convert_account_generic.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/migrations/graph/m013_convert_git_password_credential.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/migrations/graph/m015_diff_format_update.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/migrations/graph/m016_diff_delete_bug_fix.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/migrations/graph/m017_add_core_profile.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/migrations/graph/m018_uniqueness_nulls.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/migrations/graph/m019_restore_rels_to_time.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/migrations/graph/m020_duplicate_edges.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/migrations/graph/m021_missing_hierarchy_merge.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/migrations/graph/m022_add_generate_template_attr.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/migrations/graph/m023_deduplicate_cardinality_one_relationships.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/migrations/graph/m024_missing_hierarchy_backfill.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/migrations/graph/m025_uniqueness_nulls.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/migrations/graph/m026_0000_prefix_fix.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/migrations/query/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/migrations/query/attribute_add.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/migrations/query/attribute_rename.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/migrations/query/delete_element_in_schema.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/migrations/query/node_duplicate.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/migrations/query/relationship_duplicate.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/migrations/query/schema_attribute_update.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/core/node/constraints → infrahub_server-1.2.9/backend/infrahub/core/migrations/schema}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/migrations/schema/attribute_name_update.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/migrations/schema/models.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/migrations/schema/node_attribute_add.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/migrations/schema/node_attribute_remove.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/migrations/schema/node_kind_update.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/migrations/schema/node_remove.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/migrations/schema/placeholder_dummy.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/migrations/schema/tasks.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/migrations/shared.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/models.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/node/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/node/base.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/core/node/resource_manager → infrahub_server-1.2.9/backend/infrahub/core/node/constraints}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/node/constraints/attribute_uniqueness.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/node/constraints/grouped_uniqueness.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/node/constraints/interface.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/node/delete_validator.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/node/ipam.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/node/permissions.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/core/relationship/constraints → infrahub_server-1.2.9/backend/infrahub/core/node/resource_manager}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/node/resource_manager/ip_address_pool.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/node/resource_manager/ip_prefix_pool.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/node/resource_manager/number_pool.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/node/standard.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/path.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/property.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/protocols_base.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/query/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/query/attribute.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/query/delete.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/query/ipam.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/query/resource_manager.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/query/standard_node.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/query/task.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/query/task_log.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/query/utils.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/registry.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/relationship/__init__.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/core/schema/definitions → infrahub_server-1.2.9/backend/infrahub/core/relationship/constraints}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/relationship/constraints/count.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/relationship/constraints/interface.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/relationship/constraints/peer_kind.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/relationship/constraints/profiles_kind.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/relationship/model.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/root.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/schema/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/schema/attribute_schema.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/schema/basenode_schema.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/schema/computed_attribute.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/schema/constants.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/core/schema/generated → infrahub_server-1.2.9/backend/infrahub/core/schema/definitions}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/schema/definitions/core/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/schema/definitions/core/account.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/schema/definitions/core/artifact.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/schema/definitions/core/check.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/schema/definitions/core/core.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/schema/definitions/core/generator.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/schema/definitions/core/graphql_query.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/schema/definitions/core/group.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/schema/definitions/core/ipam.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/schema/definitions/core/lineage.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/schema/definitions/core/menu.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/schema/definitions/core/permission.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/schema/definitions/core/profile.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/schema/definitions/core/propose_change.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/schema/definitions/core/propose_change_comment.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/schema/definitions/core/propose_change_validator.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/schema/definitions/core/repository.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/schema/definitions/core/resource_pool.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/schema/definitions/core/template.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/schema/definitions/core/webhook.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/schema/definitions/deprecated.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/schema/definitions/internal.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/schema/dropdown.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/core/validators/attribute → infrahub_server-1.2.9/backend/infrahub/core/schema/generated}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/schema/generated/attribute_schema.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/schema/generated/base_node_schema.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/schema/generated/genericnode_schema.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/schema/generated/node_schema.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/schema/generated/relationship_schema.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/schema/generic_schema.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/schema/manager.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/schema/node_schema.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/schema/profile_schema.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/schema/relationship_schema.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/schema/schema_branch_computed.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/schema/template_schema.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/task/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/task/task.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/task/task_log.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/task/user_task.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/timestamp.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/utils.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/validators/__init__.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/core/validators/models → infrahub_server-1.2.9/backend/infrahub/core/validators/attribute}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/validators/attribute/choices.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/validators/attribute/enum.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/validators/attribute/kind.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/validators/attribute/length.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/validators/attribute/optional.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/validators/attribute/regex.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/validators/attribute/unique.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/validators/checks_runner.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/validators/determiner.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/validators/interface.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/validators/model.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/core/validators/node → infrahub_server-1.2.9/backend/infrahub/core/validators/models}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/validators/models/validate_migration.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/validators/models/violation.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/core/validators/relationship → infrahub_server-1.2.9/backend/infrahub/core/validators/node}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/validators/node/attribute.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/validators/node/generate_profile.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/validators/node/hierarchy.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/validators/node/inherit_from.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/validators/node/relationship.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/validators/query.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/core/validators/uniqueness → infrahub_server-1.2.9/backend/infrahub/core/validators/relationship}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/validators/relationship/count.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/validators/relationship/optional.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/validators/relationship/peer.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/validators/shared.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/validators/tasks.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/dependencies → infrahub_server-1.2.9/backend/infrahub/core/validators/uniqueness}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/validators/uniqueness/checker.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/validators/uniqueness/index.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/core/validators/uniqueness/model.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/database/metrics.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/dependencies/builder/constraint → infrahub_server-1.2.9/backend/infrahub/dependencies}/__init__.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/dependencies/builder/constraint/grouped → infrahub_server-1.2.9/backend/infrahub/dependencies/builder/constraint}/__init__.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/dependencies/builder/constraint/node → infrahub_server-1.2.9/backend/infrahub/dependencies/builder/constraint/grouped}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/dependencies/builder/constraint/grouped/node_runner.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/dependencies/builder/constraint/relationship_manager → infrahub_server-1.2.9/backend/infrahub/dependencies/builder/constraint/node}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/dependencies/builder/constraint/node/grouped_uniqueness.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/dependencies/builder/constraint/node/uniqueness.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/dependencies/builder/constraint/schema → infrahub_server-1.2.9/backend/infrahub/dependencies/builder/constraint/relationship_manager}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/dependencies/builder/constraint/relationship_manager/count.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/dependencies/builder/constraint/relationship_manager/peer_kind.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/dependencies/builder/constraint/relationship_manager/profiles_kind.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/dependencies/builder/diff → infrahub_server-1.2.9/backend/infrahub/dependencies/builder/constraint/schema}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/dependencies/builder/constraint/schema/aggregated.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/dependencies/builder/constraint/schema/attribute_choices.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/dependencies/builder/constraint/schema/attribute_enum.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/dependencies/builder/constraint/schema/attribute_kind.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/dependencies/builder/constraint/schema/attribute_length.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/dependencies/builder/constraint/schema/attribute_optional.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/dependencies/builder/constraint/schema/attribute_regex.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/dependencies/builder/constraint/schema/attribute_uniqueness.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/dependencies/builder/constraint/schema/generate_profile.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/dependencies/builder/constraint/schema/inherit_from.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/dependencies/builder/constraint/schema/node_attribute.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/dependencies/builder/constraint/schema/node_relationship.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/dependencies/builder/constraint/schema/relationship_count.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/dependencies/builder/constraint/schema/relationship_optional.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/dependencies/builder/constraint/schema/uniqueness.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/dependencies/builder/diff/enricher → infrahub_server-1.2.9/backend/infrahub/dependencies/builder/diff}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/dependencies/builder/diff/calculator.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/dependencies/builder/diff/combiner.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/dependencies/builder/diff/conflict_transferer.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/dependencies/builder/diff/conflicts_enricher.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/dependencies/builder/diff/conflicts_extractor.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/dependencies/builder/diff/coordinator.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/dependencies/builder/diff/data_check_conflict_recorder.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/dependencies/builder/diff/data_check_synchronizer.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/dependencies/builder/diff/deserializer.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/dependencies/builder/diff/diff_merger.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/dependencies/builder/ip → infrahub_server-1.2.9/backend/infrahub/dependencies/builder/diff/enricher}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/dependencies/builder/diff/enricher/aggregated.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/dependencies/builder/diff/enricher/cardinality_one.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/dependencies/builder/diff/enricher/hierarchy.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/dependencies/builder/diff/enricher/labels.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/dependencies/builder/diff/enricher/path_identifier.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/dependencies/builder/diff/enricher/summary_counts.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/dependencies/builder/diff/ipam_diff_parser.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/dependencies/builder/diff/parent_node_adder.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/dependencies/builder/diff/repository.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/dependencies/builder/node → infrahub_server-1.2.9/backend/infrahub/dependencies/builder/ip}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/dependencies/builder/ip/kinds_getter.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/dependencies/component → infrahub_server-1.2.9/backend/infrahub/dependencies/builder/node}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/dependencies/builder/node/delete_validator.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/generators → infrahub_server-1.2.9/backend/infrahub/dependencies/component}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/dependencies/component/exceptions.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/dependencies/component/registry.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/dependencies/interface.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/dependencies/registry.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/events/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/events/artifact_action.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/events/branch_action.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/events/constants.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/events/generator.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/events/group_action.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/events/models.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/events/node_action.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/events/repository_action.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/events/schema_action.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/events/utils.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/events/validator_action.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/exceptions.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/git_credential → infrahub_server-1.2.9/backend/infrahub/generators}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/generators/models.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/generators/tasks.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/git/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/git/base.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/git/constants.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/git/directory.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/git/repository.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/git/utils.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/git/worktree.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/graphql → infrahub_server-1.2.9/backend/infrahub/git_credential}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/git_credential/askpass.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/graphql/api → infrahub_server-1.2.9/backend/infrahub/graphql}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/analyzer.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/graphql/auth → infrahub_server-1.2.9/backend/infrahub/graphql/api}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/api/dependencies.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/api/endpoints.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/app.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/graphql/auth/query_permission_checker → infrahub_server-1.2.9/backend/infrahub/graphql/auth}/__init__.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/graphql/loaders → infrahub_server-1.2.9/backend/infrahub/graphql/auth/query_permission_checker}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/auth/query_permission_checker/anonymous_checker.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/auth/query_permission_checker/checker.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/auth/query_permission_checker/default_branch_checker.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/auth/query_permission_checker/interface.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/auth/query_permission_checker/merge_operation_checker.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/auth/query_permission_checker/object_permission_checker.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/auth/query_permission_checker/super_admin_checker.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/constants.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/context.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/directives.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/enums.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/initialization.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/graphql/mutations → infrahub_server-1.2.9/backend/infrahub/graphql/loaders}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/loaders/node.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/loaders/peers.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/loaders/shared.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/manager.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/metrics.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/models.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/graphql/mutations/node_getter → infrahub_server-1.2.9/backend/infrahub/graphql/mutations}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/mutations/account.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/mutations/artifact_definition.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/mutations/attribute.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/mutations/branch.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/mutations/diff.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/mutations/diff_conflict.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/mutations/generator.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/mutations/graphql_query.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/mutations/ipam.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/mutations/main.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/mutations/menu.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/mutations/models.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/graphql/queries/diff → infrahub_server-1.2.9/backend/infrahub/graphql/mutations/node_getter}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/mutations/node_getter/by_default_filter.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/mutations/node_getter/by_hfid.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/mutations/node_getter/by_id.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/mutations/node_getter/interface.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/mutations/proposed_change.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/mutations/relationship.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/mutations/repository.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/mutations/resource_manager.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/mutations/schema.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/mutations/tasks.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/mutations/webhook.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/parser.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/permissions.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/queries/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/queries/account.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/queries/branch.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/graphql/resolvers → infrahub_server-1.2.9/backend/infrahub/graphql/queries/diff}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/queries/event.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/queries/internal.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/queries/ipam.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/queries/relationship.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/queries/resource_manager.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/queries/search.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/queries/status.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/queries/task.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/groups → infrahub_server-1.2.9/backend/infrahub/graphql/resolvers}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/resolvers/many_relationship.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/resolvers/resolver.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/resolvers/single_relationship.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/schema.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/subscription/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/subscription/events.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/subscription/graphql_query.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/types/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/types/attribute.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/types/branch.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/types/common.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/types/context.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/types/enums.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/types/event.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/types/interface.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/types/node.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/types/permission.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/types/relationship.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/types/standard_node.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/types/task.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/types/task_log.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/graphql/utils.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/menu → infrahub_server-1.2.9/backend/infrahub/groups}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/groups/ancestors.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/groups/models.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/groups/parsers.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/groups/tasks.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/helpers.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/lock.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/log.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/message_bus/messages/proposed_change → infrahub_server-1.2.9/backend/infrahub/menu}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/menu/constants.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/menu/generator.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/menu/menu.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/menu/models.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/menu/repository.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/menu/utils.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/message_bus/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/message_bus/messages/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/message_bus/messages/check_generator_run.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/message_bus/messages/finalize_validator_execution.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/message_bus/messages/git_file_get.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/message_bus/messages/git_repository_connectivity.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/patch → infrahub_server-1.2.9/backend/infrahub/message_bus/messages/proposed_change}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/message_bus/messages/proposed_change/base_with_diff.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/message_bus/messages/proposed_change/request_proposedchange_refreshartifacts.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/message_bus/messages/refresh_git_fetch.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/message_bus/messages/refresh_registry_branches.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/message_bus/messages/refresh_registry_rebasedbranch.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/message_bus/messages/request_generatordefinition_check.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/message_bus/messages/request_proposedchange_pipeline.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/message_bus/messages/send_echo_request.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/message_bus/operations/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/message_bus/operations/check/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/message_bus/operations/check/generator.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/message_bus/operations/finalize/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/message_bus/operations/finalize/validator.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/message_bus/operations/git/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/message_bus/operations/git/file.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/message_bus/operations/git/repository.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/message_bus/operations/refresh/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/message_bus/operations/refresh/registry.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/message_bus/operations/requests/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/message_bus/operations/requests/generator_definition.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/message_bus/operations/send/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/message_bus/operations/send/echo.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/middleware.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/models.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/patch/queries → infrahub_server-1.2.9/backend/infrahub/patch}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/patch/constants.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/patch/edge_adder.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/patch/edge_deleter.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/patch/edge_updater.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/patch/models.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/patch/plan_reader.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/patch/plan_writer.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/pools → infrahub_server-1.2.9/backend/infrahub/patch/queries}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/patch/queries/base.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/patch/runner.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/patch/vertex_adder.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/patch/vertex_deleter.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/patch/vertex_updater.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/permissions/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/permissions/backend.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/permissions/constants.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/permissions/globals.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/permissions/local_backend.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/permissions/manager.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/permissions/report.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/permissions/types.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/prefect_server → infrahub_server-1.2.9/backend/infrahub/pools}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/pools/address.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/pools/number.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/pools/prefix.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/proposed_change → infrahub_server-1.2.9/backend/infrahub/prefect_server}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/prefect_server/app.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/prefect_server/database.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/prefect_server/events.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/prefect_server/models.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/services/adapters → infrahub_server-1.2.9/backend/infrahub/proposed_change}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/proposed_change/branch_diff.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/proposed_change/constants.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/proposed_change/models.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/pytest_plugin.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/serve/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/serve/gunicorn_config.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/serve/log.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/serve/worker.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/services/__init__.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/task_manager → infrahub_server-1.2.9/backend/infrahub/services/adapters}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/services/adapters/cache/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/services/adapters/cache/nats.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/services/adapters/cache/redis.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/services/adapters/event/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/services/adapters/http/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/services/adapters/http/httpx.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/services/adapters/message_bus/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/services/adapters/message_bus/local.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/services/adapters/message_bus/nats.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/services/adapters/message_bus/rabbitmq.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/services/adapters/workflow/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/services/adapters/workflow/local.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/services/adapters/workflow/worker.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/services/component.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/services/protocols.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/services/scheduler.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/storage.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/tasks → infrahub_server-1.2.9/backend/infrahub/task_manager}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/task_manager/constants.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/task_manager/event.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/task_manager/models.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/task_manager/task.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/telemetry → infrahub_server-1.2.9/backend/infrahub/tasks}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/tasks/artifact.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/tasks/check.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/tasks/dummy.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/tasks/keepalive.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/tasks/recurring.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/tasks/registry.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/transformations → infrahub_server-1.2.9/backend/infrahub/telemetry}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/telemetry/constants.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/telemetry/database.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/telemetry/models.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/telemetry/task_manager.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/telemetry/tasks.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/telemetry/utils.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/trace.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/trigger → infrahub_server-1.2.9/backend/infrahub/transformations}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/transformations/constants.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/validators → infrahub_server-1.2.9/backend/infrahub/trigger}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/trigger/catalogue.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/trigger/constants.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/types.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/utils.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/webhook → infrahub_server-1.2.9/backend/infrahub/validators}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/validators/events.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/validators/tasks.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/visuals.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/workers → infrahub_server-1.2.9/backend/infrahub/webhook}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/webhook/gather.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/webhook/tasks.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/webhook/triggers.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/worker.py +0 -0
- {infrahub_server-1.2.7/backend/infrahub/workflows → infrahub_server-1.2.9/backend/infrahub/workers}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/workers/infrahub_async.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/workers/utils.py +0 -0
- {infrahub_server-1.2.7/python_sdk/infrahub_sdk/ctl → infrahub_server-1.2.9/backend/infrahub/workflows}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/workflows/catalogue.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/workflows/constants.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/workflows/models.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/workflows/utils.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/_importer.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/analyzer.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/async_typer.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/batch.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/branch.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/checks.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/constants.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/context.py +0 -0
- {infrahub_server-1.2.7/python_sdk/infrahub_sdk/protocols_generator → infrahub_server-1.2.9/python_sdk/infrahub_sdk/ctl}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/ctl/branch.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/ctl/check.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/ctl/cli.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/ctl/client.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/ctl/config.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/ctl/exceptions.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/ctl/exporter.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/ctl/importer.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/ctl/menu.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/ctl/object.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/ctl/parameters.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/ctl/render.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/ctl/repository.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/ctl/schema.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/ctl/transform.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/ctl/utils.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/ctl/validate.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/data.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/diff.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/exceptions.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/graphql.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/groups.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/jinja2.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/node.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/object_store.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/playback.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/protocols_base.py +0 -0
- {infrahub_server-1.2.7/python_sdk/infrahub_sdk/pytest_plugin → infrahub_server-1.2.9/python_sdk/infrahub_sdk/protocols_generator}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/protocols_generator/constants.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/protocols_generator/generator.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/protocols_generator/template.j2 +0 -0
- {infrahub_server-1.2.7/python_sdk/infrahub_sdk/spec → infrahub_server-1.2.9/python_sdk/infrahub_sdk/pytest_plugin}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/pytest_plugin/exceptions.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/pytest_plugin/items/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/pytest_plugin/items/base.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/pytest_plugin/items/check.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/pytest_plugin/items/graphql_query.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/pytest_plugin/items/jinja2_transform.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/pytest_plugin/items/python_transform.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/pytest_plugin/loader.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/pytest_plugin/models.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/pytest_plugin/plugin.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/pytest_plugin/utils.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/queries.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/query_groups.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/repository.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/schema/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/schema/main.py +0 -0
- {infrahub_server-1.2.7/python_sdk/infrahub_sdk/testing → infrahub_server-1.2.9/python_sdk/infrahub_sdk/spec}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/spec/menu.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/spec/object.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/store.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/task/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/task/constants.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/task/exceptions.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/task/manager.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/task/models.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/template/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/template/exceptions.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/template/filters.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/template/models.py +0 -0
- {infrahub_server-1.2.7/python_sdk/infrahub_sdk/testing/schemas → infrahub_server-1.2.9/python_sdk/infrahub_sdk/testing}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/testing/docker.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/testing/repository.py +0 -0
- {infrahub_server-1.2.7/python_sdk/infrahub_sdk/transfer → infrahub_server-1.2.9/python_sdk/infrahub_sdk/testing/schemas}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/testing/schemas/animal.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/testing/schemas/car_person.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/timestamp.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/topological_sort.py +0 -0
- {infrahub_server-1.2.7/python_sdk/infrahub_sdk/transfer/exporter → infrahub_server-1.2.9/python_sdk/infrahub_sdk/transfer}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/transfer/constants.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/transfer/exceptions.py +0 -0
- {infrahub_server-1.2.7/python_sdk/infrahub_sdk/transfer/importer → infrahub_server-1.2.9/python_sdk/infrahub_sdk/transfer/exporter}/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/transfer/exporter/interface.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/transfer/exporter/json.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/transfer/importer/interface.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/transfer/importer/json.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/transfer/schema_sorter.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/types.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/utils.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/uuidt.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_sdk/infrahub_sdk/yaml.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_testcontainers/infrahub_testcontainers/__init__.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_testcontainers/infrahub_testcontainers/constants.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_testcontainers/infrahub_testcontainers/haproxy.cfg +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_testcontainers/infrahub_testcontainers/helpers.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_testcontainers/infrahub_testcontainers/host.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_testcontainers/infrahub_testcontainers/measurements.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_testcontainers/infrahub_testcontainers/models.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_testcontainers/infrahub_testcontainers/performance_test.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_testcontainers/infrahub_testcontainers/plugin.py +0 -0
- {infrahub_server-1.2.7 → infrahub_server-1.2.9}/python_testcontainers/infrahub_testcontainers/prometheus.yml +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: infrahub-server
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.9
|
|
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
|
Home-page: https://opsmill.com
|
|
6
6
|
License: AGPL-3.0-only
|
|
@@ -39,7 +39,7 @@ Requires-Dist: opentelemetry-exporter-otlp-proto-grpc (==1.28.1)
|
|
|
39
39
|
Requires-Dist: opentelemetry-exporter-otlp-proto-http (==1.28.1)
|
|
40
40
|
Requires-Dist: opentelemetry-instrumentation-aio-pika (==0.49b1)
|
|
41
41
|
Requires-Dist: opentelemetry-instrumentation-fastapi (==0.49b1)
|
|
42
|
-
Requires-Dist: prefect (==3.3.
|
|
42
|
+
Requires-Dist: prefect (==3.3.7)
|
|
43
43
|
Requires-Dist: prefect-redis (==0.2.2)
|
|
44
44
|
Requires-Dist: pyarrow (>=14,<15)
|
|
45
45
|
Requires-Dist: pydantic (>=2.10,<2.11)
|
|
@@ -88,6 +88,7 @@ async def transform_python(
|
|
|
88
88
|
branch=branch_params.branch.name,
|
|
89
89
|
transform_location=f"{transform.file_path.value}::{transform.class_name.value}",
|
|
90
90
|
timeout=transform.timeout.value,
|
|
91
|
+
convert_query_response=transform.convert_query_response.value or False,
|
|
91
92
|
data=data,
|
|
92
93
|
)
|
|
93
94
|
|
|
@@ -12,6 +12,10 @@ class CheckArtifactCreate(BaseModel):
|
|
|
12
12
|
content_type: str = Field(..., description="Content type of the artifact")
|
|
13
13
|
transform_type: str = Field(..., description="The type of transform associated with this artifact")
|
|
14
14
|
transform_location: str = Field(..., description="The transforms location within the repository")
|
|
15
|
+
convert_query_response: bool = Field(
|
|
16
|
+
default=False,
|
|
17
|
+
description="Indicate if the query response should be converted to InfrahubNode objects for Python transforms",
|
|
18
|
+
)
|
|
15
19
|
repository_id: str = Field(..., description="The unique ID of the Repository")
|
|
16
20
|
repository_name: str = Field(..., description="The name of the Repository")
|
|
17
21
|
repository_kind: str = Field(..., description="The kind of the Repository")
|
|
@@ -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 node_indexes, rel_indexes
|
|
26
|
+
from infrahub.core.graph.index import attr_value_index, node_indexes, rel_indexes
|
|
27
27
|
from infrahub.core.graph.schema import (
|
|
28
28
|
GRAPH_SCHEMA,
|
|
29
29
|
GraphAttributeProperties,
|
|
@@ -48,6 +48,8 @@ from infrahub.core.utils import delete_all_nodes
|
|
|
48
48
|
from infrahub.core.validators.models.validate_migration import SchemaValidateMigrationData
|
|
49
49
|
from infrahub.core.validators.tasks import schema_validate_migrations
|
|
50
50
|
from infrahub.database import DatabaseType
|
|
51
|
+
from infrahub.database.memgraph import IndexManagerMemgraph
|
|
52
|
+
from infrahub.database.neo4j import IndexManagerNeo4j
|
|
51
53
|
from infrahub.log import get_logger
|
|
52
54
|
from infrahub.services import InfrahubServices
|
|
53
55
|
from infrahub.services.adapters.message_bus.local import BusSimulator
|
|
@@ -59,6 +61,7 @@ from .patch import patch_app
|
|
|
59
61
|
if TYPE_CHECKING:
|
|
60
62
|
from infrahub.cli.context import CliContext
|
|
61
63
|
from infrahub.database import InfrahubDatabase
|
|
64
|
+
from infrahub.database.index import IndexManagerBase
|
|
62
65
|
|
|
63
66
|
app = AsyncTyper()
|
|
64
67
|
app.add_typer(patch_app, name="patch")
|
|
@@ -249,14 +252,20 @@ async def index(
|
|
|
249
252
|
|
|
250
253
|
context: CliContext = ctx.obj
|
|
251
254
|
dbdriver = await context.init_db(retry=1)
|
|
252
|
-
dbdriver.
|
|
255
|
+
if dbdriver.db_type is DatabaseType.MEMGRAPH:
|
|
256
|
+
index_manager: IndexManagerBase = IndexManagerMemgraph(db=dbdriver)
|
|
257
|
+
index_manager = IndexManagerNeo4j(db=dbdriver)
|
|
258
|
+
|
|
259
|
+
if config.SETTINGS.experimental_features.value_db_index:
|
|
260
|
+
node_indexes.append(attr_value_index)
|
|
261
|
+
index_manager.init(nodes=node_indexes, rels=rel_indexes)
|
|
253
262
|
|
|
254
263
|
if action == IndexAction.ADD:
|
|
255
|
-
await
|
|
264
|
+
await index_manager.add()
|
|
256
265
|
elif action == IndexAction.DROP:
|
|
257
|
-
await
|
|
266
|
+
await index_manager.drop()
|
|
258
267
|
|
|
259
|
-
indexes = await
|
|
268
|
+
indexes = await index_manager.list()
|
|
260
269
|
|
|
261
270
|
console = Console()
|
|
262
271
|
|
|
@@ -412,7 +421,7 @@ async def update_core_schema(
|
|
|
412
421
|
update_db=True,
|
|
413
422
|
)
|
|
414
423
|
default_branch.update_schema_hash()
|
|
415
|
-
rprint("The Core Schema has been updated")
|
|
424
|
+
rprint("The Core Schema has been updated, make sure to rebase any open branches after the upgrade")
|
|
416
425
|
if debug:
|
|
417
426
|
rprint(f"New schema hash: {default_branch.active_schema_hash.main}")
|
|
418
427
|
await default_branch.save(db=dbt)
|
{infrahub_server-1.2.7 → infrahub_server-1.2.9}/backend/infrahub/computed_attribute/tasks.py
RENAMED
|
@@ -113,6 +113,7 @@ async def process_transform(
|
|
|
113
113
|
location=f"{transform.file_path.value}::{transform.class_name.value}",
|
|
114
114
|
data=data,
|
|
115
115
|
client=service.client,
|
|
116
|
+
convert_query_response=transform.convert_query_response.value,
|
|
116
117
|
) # type: ignore[misc]
|
|
117
118
|
|
|
118
119
|
await service.client.execute_graphql(
|
|
@@ -301,15 +302,24 @@ async def computed_attribute_setup_jinja2(
|
|
|
301
302
|
|
|
302
303
|
triggers = await gather_trigger_computed_attribute_jinja2()
|
|
303
304
|
|
|
304
|
-
|
|
305
|
-
|
|
305
|
+
# Since we can have multiple trigger per NodeKind
|
|
306
|
+
# we need to extract the list of unique node that should be processed
|
|
307
|
+
# also
|
|
308
|
+
# Because the automation in Prefect doesn't capture all information about the computed attribute
|
|
309
|
+
# we can't tell right now if a given computed attribute has changed and need to be updated
|
|
310
|
+
unique_nodes: set[tuple[str, str, str]] = {
|
|
311
|
+
(trigger.branch, trigger.computed_attribute.kind, trigger.computed_attribute.attribute.name)
|
|
312
|
+
for trigger in triggers
|
|
313
|
+
}
|
|
314
|
+
for branch, kind, attribute_name in unique_nodes:
|
|
315
|
+
if event_name != BranchDeletedEvent.event_name and branch == branch_name:
|
|
306
316
|
await service.workflow.submit_workflow(
|
|
307
317
|
workflow=TRIGGER_UPDATE_JINJA_COMPUTED_ATTRIBUTES,
|
|
308
318
|
context=context,
|
|
309
319
|
parameters={
|
|
310
|
-
"branch_name":
|
|
311
|
-
"computed_attribute_name":
|
|
312
|
-
"computed_attribute_kind":
|
|
320
|
+
"branch_name": branch,
|
|
321
|
+
"computed_attribute_name": attribute_name,
|
|
322
|
+
"computed_attribute_kind": kind,
|
|
313
323
|
},
|
|
314
324
|
)
|
|
315
325
|
|
|
@@ -319,6 +329,7 @@ async def computed_attribute_setup_jinja2(
|
|
|
319
329
|
client=prefect_client,
|
|
320
330
|
triggers=triggers,
|
|
321
331
|
trigger_type=TriggerType.COMPUTED_ATTR_JINJA2,
|
|
332
|
+
force_update=False,
|
|
322
333
|
) # type: ignore[misc]
|
|
323
334
|
|
|
324
335
|
log.info(f"{len(triggers)} Computed Attribute for Jinja2 automation configuration completed")
|
|
@@ -346,18 +357,29 @@ async def computed_attribute_setup_python(
|
|
|
346
357
|
|
|
347
358
|
triggers_python, triggers_python_query = await gather_trigger_computed_attribute_python(db=db)
|
|
348
359
|
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
360
|
+
# Since we can have multiple trigger per NodeKind
|
|
361
|
+
# we need to extract the list of unique node that should be processed
|
|
362
|
+
# also
|
|
363
|
+
# Because the automation in Prefect doesn't capture all information about the computed attribute
|
|
364
|
+
# we can't tell right now if a given computed attribute has changed and need to be updated
|
|
365
|
+
unique_nodes: set[tuple[str, str, str]] = {
|
|
366
|
+
(
|
|
367
|
+
trigger.branch,
|
|
368
|
+
trigger.computed_attribute.computed_attribute.kind,
|
|
369
|
+
trigger.computed_attribute.computed_attribute.attribute.name,
|
|
370
|
+
)
|
|
371
|
+
for trigger in triggers_python
|
|
372
|
+
}
|
|
373
|
+
for branch, kind, attribute_name in unique_nodes:
|
|
374
|
+
if event_name != BranchDeletedEvent.event_name and branch == branch_name:
|
|
375
|
+
log.info(f"Triggering update for {kind}.{attribute_name} on {branch}")
|
|
354
376
|
await service.workflow.submit_workflow(
|
|
355
377
|
workflow=TRIGGER_UPDATE_PYTHON_COMPUTED_ATTRIBUTES,
|
|
356
378
|
context=context,
|
|
357
379
|
parameters={
|
|
358
380
|
"branch_name": branch_name,
|
|
359
|
-
"computed_attribute_name":
|
|
360
|
-
"computed_attribute_kind":
|
|
381
|
+
"computed_attribute_name": attribute_name,
|
|
382
|
+
"computed_attribute_kind": kind,
|
|
361
383
|
},
|
|
362
384
|
)
|
|
363
385
|
|
|
@@ -23,7 +23,7 @@ from pydantic import (
|
|
|
23
23
|
from pydantic_settings import BaseSettings, SettingsConfigDict
|
|
24
24
|
from typing_extensions import Self
|
|
25
25
|
|
|
26
|
-
from infrahub.database
|
|
26
|
+
from infrahub.constants.database import DatabaseType
|
|
27
27
|
from infrahub.exceptions import InitializationError, ProcessingError
|
|
28
28
|
|
|
29
29
|
if TYPE_CHECKING:
|
|
@@ -629,6 +629,7 @@ class AnalyticsSettings(BaseSettings):
|
|
|
629
629
|
class ExperimentalFeaturesSettings(BaseSettings):
|
|
630
630
|
model_config = SettingsConfigDict(env_prefix="INFRAHUB_EXPERIMENTAL_")
|
|
631
631
|
graphql_enums: bool = False
|
|
632
|
+
value_db_index: bool = False
|
|
632
633
|
|
|
633
634
|
|
|
634
635
|
class SecuritySettings(BaseSettings):
|
|
@@ -212,8 +212,6 @@ async def merge_branch(
|
|
|
212
212
|
|
|
213
213
|
merger: BranchMerger | None = None
|
|
214
214
|
async with lock.registry.global_graph_lock():
|
|
215
|
-
# await update_diff(model=RequestDiffUpdate(branch_name=obj.name))
|
|
216
|
-
|
|
217
215
|
diff_repository = await component_registry.get_component(DiffRepository, db=db, branch=obj)
|
|
218
216
|
diff_coordinator = await component_registry.get_component(DiffCoordinator, db=db, branch=obj)
|
|
219
217
|
diff_merger = await component_registry.get_component(DiffMerger, db=db, branch=obj)
|
|
@@ -150,6 +150,7 @@ class ContentType(InfrahubStringEnum):
|
|
|
150
150
|
APPLICATION_JSON = "application/json"
|
|
151
151
|
APPLICATION_YAML = "application/yaml"
|
|
152
152
|
APPLICATION_XML = "application/xml"
|
|
153
|
+
APPLICATION_HCL = "application/hcl"
|
|
153
154
|
TEXT_PLAIN = "text/plain"
|
|
154
155
|
TEXT_MARKDOWN = "text/markdown"
|
|
155
156
|
TEXT_CSV = "text/csv"
|
|
@@ -14,6 +14,7 @@ from infrahub.core.timestamp import Timestamp
|
|
|
14
14
|
from infrahub.database import InfrahubDatabase
|
|
15
15
|
from infrahub.log import get_logger
|
|
16
16
|
|
|
17
|
+
from .model.field_specifiers_map import NodeFieldSpecifierMap
|
|
17
18
|
from .model.path import CalculatedDiffs
|
|
18
19
|
|
|
19
20
|
log = get_logger()
|
|
@@ -26,8 +27,8 @@ class DiffCalculationRequest:
|
|
|
26
27
|
branch_from_time: Timestamp
|
|
27
28
|
from_time: Timestamp
|
|
28
29
|
to_time: Timestamp
|
|
29
|
-
current_node_field_specifiers:
|
|
30
|
-
new_node_field_specifiers:
|
|
30
|
+
current_node_field_specifiers: NodeFieldSpecifierMap | None = field(default=None)
|
|
31
|
+
new_node_field_specifiers: NodeFieldSpecifierMap | None = field(default=None)
|
|
31
32
|
|
|
32
33
|
|
|
33
34
|
class DiffCalculator:
|
|
@@ -75,7 +76,7 @@ class DiffCalculator:
|
|
|
75
76
|
from_time: Timestamp,
|
|
76
77
|
to_time: Timestamp,
|
|
77
78
|
include_unchanged: bool = True,
|
|
78
|
-
previous_node_specifiers:
|
|
79
|
+
previous_node_specifiers: NodeFieldSpecifierMap | None = None,
|
|
79
80
|
) -> CalculatedDiffs:
|
|
80
81
|
if diff_branch.name == registry.default_branch:
|
|
81
82
|
diff_branch_from_time = from_time
|
|
@@ -384,8 +384,7 @@ class DiffCombiner:
|
|
|
384
384
|
):
|
|
385
385
|
combined_nodes.add(
|
|
386
386
|
EnrichedDiffNode(
|
|
387
|
-
|
|
388
|
-
kind=node_pair.later.kind,
|
|
387
|
+
identifier=node_pair.later.identifier,
|
|
389
388
|
label=node_pair.later.label,
|
|
390
389
|
changed_at=node_pair.later.changed_at or node_pair.earlier.changed_at,
|
|
391
390
|
action=combined_action,
|
|
@@ -9,6 +9,7 @@ from infrahub.core.timestamp import Timestamp
|
|
|
9
9
|
from infrahub.exceptions import ValidationError
|
|
10
10
|
from infrahub.log import get_logger
|
|
11
11
|
|
|
12
|
+
from .model.field_specifiers_map import NodeFieldSpecifierMap
|
|
12
13
|
from .model.path import (
|
|
13
14
|
BranchTrackingId,
|
|
14
15
|
EnrichedDiffRoot,
|
|
@@ -16,6 +17,7 @@ from .model.path import (
|
|
|
16
17
|
EnrichedDiffs,
|
|
17
18
|
EnrichedDiffsMetadata,
|
|
18
19
|
NameTrackingId,
|
|
20
|
+
NodeIdentifier,
|
|
19
21
|
TrackingId,
|
|
20
22
|
)
|
|
21
23
|
|
|
@@ -43,7 +45,7 @@ class EnrichedDiffRequest:
|
|
|
43
45
|
from_time: Timestamp
|
|
44
46
|
to_time: Timestamp
|
|
45
47
|
tracking_id: TrackingId
|
|
46
|
-
node_field_specifiers:
|
|
48
|
+
node_field_specifiers: NodeFieldSpecifierMap = field(default_factory=NodeFieldSpecifierMap)
|
|
47
49
|
|
|
48
50
|
def __repr__(self) -> str:
|
|
49
51
|
return (
|
|
@@ -141,7 +143,7 @@ class DiffCoordinator:
|
|
|
141
143
|
self.lock_registry.get(name=incremental_lock_name, namespace=self.lock_namespace),
|
|
142
144
|
):
|
|
143
145
|
log.info(f"Acquired lock to run branch diff update for {base_branch.name} - {diff_branch.name}")
|
|
144
|
-
enriched_diffs = await self._update_diffs(
|
|
146
|
+
enriched_diffs, node_identifiers_to_drop = await self._update_diffs(
|
|
145
147
|
base_branch=base_branch,
|
|
146
148
|
diff_branch=diff_branch,
|
|
147
149
|
from_time=from_time,
|
|
@@ -149,7 +151,9 @@ class DiffCoordinator:
|
|
|
149
151
|
tracking_id=tracking_id,
|
|
150
152
|
force_branch_refresh=False,
|
|
151
153
|
)
|
|
152
|
-
await self.diff_repo.save(
|
|
154
|
+
await self.diff_repo.save(
|
|
155
|
+
enriched_diffs=enriched_diffs, node_identifiers_to_drop=list(node_identifiers_to_drop)
|
|
156
|
+
)
|
|
153
157
|
await self._update_core_data_checks(enriched_diff=enriched_diffs.diff_branch_diff)
|
|
154
158
|
log.info(f"Branch diff update complete for {base_branch.name} - {diff_branch.name}")
|
|
155
159
|
return enriched_diffs.diff_branch_diff
|
|
@@ -168,7 +172,7 @@ class DiffCoordinator:
|
|
|
168
172
|
)
|
|
169
173
|
async with self.lock_registry.get(name=general_lock_name, namespace=self.lock_namespace):
|
|
170
174
|
log.info(f"Acquired lock to run arbitrary diff update for {base_branch.name} - {diff_branch.name}")
|
|
171
|
-
enriched_diffs = await self._update_diffs(
|
|
175
|
+
enriched_diffs, node_identifiers_to_drop = await self._update_diffs(
|
|
172
176
|
base_branch=base_branch,
|
|
173
177
|
diff_branch=diff_branch,
|
|
174
178
|
from_time=from_time,
|
|
@@ -177,7 +181,9 @@ class DiffCoordinator:
|
|
|
177
181
|
force_branch_refresh=False,
|
|
178
182
|
)
|
|
179
183
|
|
|
180
|
-
await self.diff_repo.save(
|
|
184
|
+
await self.diff_repo.save(
|
|
185
|
+
enriched_diffs=enriched_diffs, node_identifiers_to_drop=list(node_identifiers_to_drop)
|
|
186
|
+
)
|
|
181
187
|
await self._update_core_data_checks(enriched_diff=enriched_diffs.diff_branch_diff)
|
|
182
188
|
log.info(f"Arbitrary diff update complete for {base_branch.name} - {diff_branch.name}")
|
|
183
189
|
return enriched_diffs.diff_branch_diff
|
|
@@ -205,7 +211,7 @@ class DiffCoordinator:
|
|
|
205
211
|
from_time = current_branch_diff.from_time
|
|
206
212
|
branched_from_time = Timestamp(diff_branch.get_branched_from())
|
|
207
213
|
from_time = max(from_time, branched_from_time)
|
|
208
|
-
enriched_diffs = await self._update_diffs(
|
|
214
|
+
enriched_diffs, _ = await self._update_diffs(
|
|
209
215
|
base_branch=base_branch,
|
|
210
216
|
diff_branch=diff_branch,
|
|
211
217
|
from_time=branched_from_time,
|
|
@@ -282,7 +288,7 @@ class DiffCoordinator:
|
|
|
282
288
|
to_time: Timestamp,
|
|
283
289
|
tracking_id: TrackingId,
|
|
284
290
|
force_branch_refresh: Literal[True] = ...,
|
|
285
|
-
) -> EnrichedDiffs: ...
|
|
291
|
+
) -> tuple[EnrichedDiffs, set[NodeIdentifier]]: ...
|
|
286
292
|
|
|
287
293
|
@overload
|
|
288
294
|
async def _update_diffs(
|
|
@@ -293,7 +299,7 @@ class DiffCoordinator:
|
|
|
293
299
|
to_time: Timestamp,
|
|
294
300
|
tracking_id: TrackingId,
|
|
295
301
|
force_branch_refresh: Literal[False] = ...,
|
|
296
|
-
) -> EnrichedDiffs | EnrichedDiffsMetadata: ...
|
|
302
|
+
) -> tuple[EnrichedDiffs | EnrichedDiffsMetadata, set[NodeIdentifier]]: ...
|
|
297
303
|
|
|
298
304
|
async def _update_diffs(
|
|
299
305
|
self,
|
|
@@ -303,7 +309,7 @@ class DiffCoordinator:
|
|
|
303
309
|
to_time: Timestamp,
|
|
304
310
|
tracking_id: TrackingId,
|
|
305
311
|
force_branch_refresh: bool = False,
|
|
306
|
-
) -> EnrichedDiffs | EnrichedDiffsMetadata:
|
|
312
|
+
) -> tuple[EnrichedDiffs | EnrichedDiffsMetadata, set[NodeIdentifier]]:
|
|
307
313
|
# start with empty diffs b/c we only care about their metadata for now, hydrate them with data as needed
|
|
308
314
|
diff_pairs_metadata = await self.diff_repo.get_diff_pairs_metadata(
|
|
309
315
|
base_branch_names=[base_branch.name],
|
|
@@ -312,7 +318,7 @@ class DiffCoordinator:
|
|
|
312
318
|
to_time=to_time,
|
|
313
319
|
tracking_id=tracking_id,
|
|
314
320
|
)
|
|
315
|
-
aggregated_enriched_diffs = await self._aggregate_enriched_diffs(
|
|
321
|
+
aggregated_enriched_diffs, node_identifiers_to_drop = await self._aggregate_enriched_diffs(
|
|
316
322
|
diff_request=EnrichedDiffRequest(
|
|
317
323
|
base_branch=base_branch,
|
|
318
324
|
diff_branch=diff_branch,
|
|
@@ -343,7 +349,7 @@ class DiffCoordinator:
|
|
|
343
349
|
# this is an EnrichedDiffsMetadata, so there are no nodes to enrich
|
|
344
350
|
if not isinstance(aggregated_enriched_diffs, EnrichedDiffs):
|
|
345
351
|
aggregated_enriched_diffs.update_metadata(from_time=from_time, to_time=to_time, tracking_id=tracking_id)
|
|
346
|
-
return aggregated_enriched_diffs
|
|
352
|
+
return aggregated_enriched_diffs, set()
|
|
347
353
|
|
|
348
354
|
await self.conflicts_enricher.add_conflicts_to_branch_diff(
|
|
349
355
|
base_diff_root=aggregated_enriched_diffs.base_branch_diff,
|
|
@@ -353,27 +359,27 @@ class DiffCoordinator:
|
|
|
353
359
|
enriched_diff_root=aggregated_enriched_diffs.diff_branch_diff, conflicts_only=True
|
|
354
360
|
)
|
|
355
361
|
|
|
356
|
-
return aggregated_enriched_diffs
|
|
362
|
+
return aggregated_enriched_diffs, node_identifiers_to_drop
|
|
357
363
|
|
|
358
364
|
@overload
|
|
359
365
|
async def _aggregate_enriched_diffs(
|
|
360
366
|
self,
|
|
361
367
|
diff_request: EnrichedDiffRequest,
|
|
362
368
|
partial_enriched_diffs: list[EnrichedDiffsMetadata],
|
|
363
|
-
) -> EnrichedDiffs | EnrichedDiffsMetadata: ...
|
|
369
|
+
) -> tuple[EnrichedDiffs | EnrichedDiffsMetadata, set[NodeIdentifier]]: ...
|
|
364
370
|
|
|
365
371
|
@overload
|
|
366
372
|
async def _aggregate_enriched_diffs(
|
|
367
373
|
self,
|
|
368
374
|
diff_request: EnrichedDiffRequest,
|
|
369
375
|
partial_enriched_diffs: None,
|
|
370
|
-
) -> EnrichedDiffs: ...
|
|
376
|
+
) -> tuple[EnrichedDiffs, set[NodeIdentifier]]: ...
|
|
371
377
|
|
|
372
378
|
async def _aggregate_enriched_diffs(
|
|
373
379
|
self,
|
|
374
380
|
diff_request: EnrichedDiffRequest,
|
|
375
381
|
partial_enriched_diffs: list[EnrichedDiffsMetadata] | None,
|
|
376
|
-
) -> EnrichedDiffs | EnrichedDiffsMetadata:
|
|
382
|
+
) -> tuple[EnrichedDiffs | EnrichedDiffsMetadata, set[NodeIdentifier]]:
|
|
377
383
|
"""
|
|
378
384
|
If return is an EnrichedDiffsMetadata, it acts as a pointer to a diff in the database that has all the
|
|
379
385
|
necessary data for this diff_request. Might have a different time range and/or tracking_id
|
|
@@ -385,6 +391,7 @@ class DiffCoordinator:
|
|
|
385
391
|
diff_request=diff_request, is_incremental_diff=False
|
|
386
392
|
)
|
|
387
393
|
|
|
394
|
+
node_identifiers_to_drop: set[NodeIdentifier] = set()
|
|
388
395
|
if partial_enriched_diffs is not None and not aggregated_enriched_diffs:
|
|
389
396
|
ordered_diffs = self._get_ordered_diff_pairs(diff_pairs=partial_enriched_diffs, allow_overlap=False)
|
|
390
397
|
ordered_diff_reprs = [repr(d) for d in ordered_diffs]
|
|
@@ -430,31 +437,31 @@ class DiffCoordinator:
|
|
|
430
437
|
)
|
|
431
438
|
current_time = end_time
|
|
432
439
|
|
|
433
|
-
aggregated_enriched_diffs = await self._concatenate_diffs_and_requests(
|
|
440
|
+
aggregated_enriched_diffs, node_identifiers_to_drop = await self._concatenate_diffs_and_requests(
|
|
434
441
|
diff_or_request_list=incremental_diffs_and_requests, full_diff_request=diff_request
|
|
435
442
|
)
|
|
436
443
|
|
|
437
444
|
# no changes during this time period, so generate an EnrichedDiffs with no nodes
|
|
438
445
|
if not aggregated_enriched_diffs:
|
|
439
|
-
return self._build_enriched_diffs_with_no_nodes(diff_request=diff_request)
|
|
446
|
+
return self._build_enriched_diffs_with_no_nodes(diff_request=diff_request), node_identifiers_to_drop
|
|
440
447
|
|
|
441
448
|
# metadata-only diff, means that a diff exists in the database that covers at least
|
|
442
449
|
# part of this time period, but it might need to have its start or end time extended
|
|
443
450
|
# to cover time ranges with no changes
|
|
444
451
|
if not isinstance(aggregated_enriched_diffs, EnrichedDiffs):
|
|
445
|
-
return aggregated_enriched_diffs
|
|
452
|
+
return aggregated_enriched_diffs, node_identifiers_to_drop
|
|
446
453
|
|
|
447
454
|
# a new diff (with nodes) covering the time period
|
|
448
455
|
aggregated_enriched_diffs.update_metadata(
|
|
449
456
|
from_time=diff_request.from_time, to_time=diff_request.to_time, tracking_id=diff_request.tracking_id
|
|
450
457
|
)
|
|
451
|
-
return aggregated_enriched_diffs
|
|
458
|
+
return aggregated_enriched_diffs, node_identifiers_to_drop
|
|
452
459
|
|
|
453
460
|
async def _concatenate_diffs_and_requests(
|
|
454
461
|
self,
|
|
455
462
|
diff_or_request_list: Sequence[EnrichedDiffsMetadata | EnrichedDiffRequest | None],
|
|
456
463
|
full_diff_request: EnrichedDiffRequest,
|
|
457
|
-
) -> EnrichedDiffs | EnrichedDiffsMetadata | None:
|
|
464
|
+
) -> tuple[EnrichedDiffs | EnrichedDiffsMetadata | None, set[NodeIdentifier]]:
|
|
458
465
|
"""
|
|
459
466
|
Returns None if diff_or_request_list is empty or all Nones
|
|
460
467
|
meaning there are no changes for the diff during this time period
|
|
@@ -464,7 +471,7 @@ class DiffCoordinator:
|
|
|
464
471
|
meaning multiple diffs (some that may have been freshly calculated) were combined
|
|
465
472
|
"""
|
|
466
473
|
previous_diff_pair: EnrichedDiffs | EnrichedDiffsMetadata | None = None
|
|
467
|
-
|
|
474
|
+
updated_node_identifiers: set[NodeIdentifier] = set()
|
|
468
475
|
for diff_or_request in diff_or_request_list:
|
|
469
476
|
if isinstance(diff_or_request, EnrichedDiffRequest):
|
|
470
477
|
if previous_diff_pair:
|
|
@@ -478,8 +485,8 @@ class DiffCoordinator:
|
|
|
478
485
|
calculated_diff = await self._calculate_enriched_diff(
|
|
479
486
|
diff_request=diff_or_request, is_incremental_diff=is_incremental_diff
|
|
480
487
|
)
|
|
481
|
-
|
|
482
|
-
|
|
488
|
+
updated_node_identifiers |= calculated_diff.base_node_identifiers
|
|
489
|
+
updated_node_identifiers |= calculated_diff.branch_node_identifiers
|
|
483
490
|
single_enriched_diffs: EnrichedDiffs | EnrichedDiffsMetadata = calculated_diff
|
|
484
491
|
|
|
485
492
|
elif isinstance(diff_or_request, EnrichedDiffsMetadata):
|
|
@@ -495,17 +502,22 @@ class DiffCoordinator:
|
|
|
495
502
|
previous_diff_pair = await self._combine_diffs(
|
|
496
503
|
earlier=previous_diff_pair,
|
|
497
504
|
later=single_enriched_diffs,
|
|
498
|
-
|
|
505
|
+
node_identifiers=updated_node_identifiers,
|
|
499
506
|
)
|
|
500
507
|
log.info("Diffs combined.")
|
|
501
508
|
|
|
502
|
-
|
|
509
|
+
node_identifiers_to_drop: set[NodeIdentifier] = set()
|
|
510
|
+
if isinstance(previous_diff_pair, EnrichedDiffs):
|
|
511
|
+
# nodes that were updated and that no longer exist on this diff have been removed
|
|
512
|
+
node_identifiers_to_drop = updated_node_identifiers - previous_diff_pair.branch_node_identifiers
|
|
513
|
+
|
|
514
|
+
return previous_diff_pair, node_identifiers_to_drop
|
|
503
515
|
|
|
504
516
|
async def _combine_diffs(
|
|
505
517
|
self,
|
|
506
518
|
earlier: EnrichedDiffs | EnrichedDiffsMetadata,
|
|
507
519
|
later: EnrichedDiffs | EnrichedDiffsMetadata,
|
|
508
|
-
|
|
520
|
+
node_identifiers: set[NodeIdentifier],
|
|
509
521
|
) -> EnrichedDiffs | EnrichedDiffsMetadata:
|
|
510
522
|
log.info(f"Earlier diff to combine: {earlier!r}")
|
|
511
523
|
log.info(f"Later diff to combine: {later!r}")
|
|
@@ -522,11 +534,15 @@ class DiffCoordinator:
|
|
|
522
534
|
# hydrate the diffs to combine, if necessary
|
|
523
535
|
if not isinstance(earlier, EnrichedDiffs):
|
|
524
536
|
log.info("Hydrating earlier diff...")
|
|
525
|
-
earlier = await self.diff_repo.hydrate_diff_pair(
|
|
537
|
+
earlier = await self.diff_repo.hydrate_diff_pair(
|
|
538
|
+
enriched_diffs_metadata=earlier, node_identifiers=node_identifiers
|
|
539
|
+
)
|
|
526
540
|
log.info("Earlier diff hydrated.")
|
|
527
541
|
if not isinstance(later, EnrichedDiffs):
|
|
528
542
|
log.info("Hydrating later diff...")
|
|
529
|
-
later = await self.diff_repo.hydrate_diff_pair(
|
|
543
|
+
later = await self.diff_repo.hydrate_diff_pair(
|
|
544
|
+
enriched_diffs_metadata=later, node_identifiers=node_identifiers
|
|
545
|
+
)
|
|
530
546
|
log.info("Later diff hydrated.")
|
|
531
547
|
|
|
532
548
|
return await self.diff_combiner.combine(earlier_diffs=earlier, later_diffs=later)
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
from enum import Enum
|
|
2
2
|
|
|
3
3
|
from infrahub.core.constants import BranchConflictKeep, InfrahubKind
|
|
4
|
+
from infrahub.core.diff.query.filters import EnrichedDiffQueryFilters
|
|
4
5
|
from infrahub.core.integrity.object_conflict.conflict_recorder import ObjectConflictValidatorRecorder
|
|
5
6
|
from infrahub.core.manager import NodeManager
|
|
6
7
|
from infrahub.core.node import Node
|
|
@@ -74,7 +75,7 @@ class DiffDataCheckSynchronizer:
|
|
|
74
75
|
retrieved_diff_conflicts_only = await self.diff_repository.get_one(
|
|
75
76
|
diff_branch_name=enriched_diff.diff_branch_name,
|
|
76
77
|
diff_id=enriched_diff.uuid,
|
|
77
|
-
filters=
|
|
78
|
+
filters=EnrichedDiffQueryFilters(only_conflicted=True),
|
|
78
79
|
)
|
|
79
80
|
enriched_diff_all_conflicts = retrieved_diff_conflicts_only
|
|
80
81
|
# if `enriched_diff` is an EnrichedDiffRootsMetadata, then there have been no changes to the diff and
|
|
@@ -116,7 +117,7 @@ class DiffDataCheckSynchronizer:
|
|
|
116
117
|
def _update_diff_conflicts(self, updated_diff: EnrichedDiffRoot, retrieved_diff: EnrichedDiffRoot) -> None:
|
|
117
118
|
for updated_node in updated_diff.nodes:
|
|
118
119
|
try:
|
|
119
|
-
retrieved_node = retrieved_diff.get_node(
|
|
120
|
+
retrieved_node = retrieved_diff.get_node(node_identifier=updated_node.identifier)
|
|
120
121
|
except ValueError:
|
|
121
122
|
retrieved_node = None
|
|
122
123
|
if not retrieved_node:
|