airbyte-internal-ops 0.2.0__tar.gz → 0.2.1__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.
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/.github/workflows/connector-regression-test.yml +98 -70
- airbyte_internal_ops-0.2.0/.github/workflows/live-tests-ci.yml → airbyte_internal_ops-0.2.1/.github/workflows/regression-tests-ci.yml +7 -6
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/.github/workflows/sentry-apply-command.yml +9 -1
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/.github/workflows/sentry-preview.yml +4 -1
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/.github/workflows/test-connection-retriever.yml +1 -1
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/PKG-INFO +2 -2
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/infra/sentry/Pulumi.prod.yaml +4 -1
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/infra/sentry/Pulumi.yaml +2 -2
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/infra/sentry/__main__.py +3 -3
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/pyproject.toml +1 -1
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/__init__.py +2 -2
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/cli/cloud.py +207 -306
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/cloud_admin/api_client.py +51 -26
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/cloud_admin/connection_config.py +2 -2
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/github_actions.py +69 -1
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/mcp/_http_headers.py +56 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/mcp/_mcp_utils.py +2 -2
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/mcp/cloud_connector_versions.py +57 -43
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/mcp/github.py +34 -1
- airbyte_internal_ops-0.2.0/src/airbyte_ops_mcp/mcp/live_tests.py → airbyte_internal_ops-0.2.1/src/airbyte_ops_mcp/mcp/regression_tests.py +158 -147
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/mcp/server.py +3 -3
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/prod_db_access/db_engine.py +7 -11
- {airbyte_internal_ops-0.2.0/src/airbyte_ops_mcp/live_tests → airbyte_internal_ops-0.2.1/src/airbyte_ops_mcp/regression_tests}/__init__.py +3 -3
- {airbyte_internal_ops-0.2.0/src/airbyte_ops_mcp/live_tests → airbyte_internal_ops-0.2.1/src/airbyte_ops_mcp/regression_tests}/cdk_secrets.py +1 -1
- {airbyte_internal_ops-0.2.0/src/airbyte_ops_mcp/live_tests → airbyte_internal_ops-0.2.1/src/airbyte_ops_mcp/regression_tests}/connection_secret_retriever.py +3 -3
- {airbyte_internal_ops-0.2.0/src/airbyte_ops_mcp/live_tests → airbyte_internal_ops-0.2.1/src/airbyte_ops_mcp/regression_tests}/connector_runner.py +1 -1
- {airbyte_internal_ops-0.2.0/src/airbyte_ops_mcp/live_tests → airbyte_internal_ops-0.2.1/src/airbyte_ops_mcp/regression_tests}/message_cache/__init__.py +3 -1
- {airbyte_internal_ops-0.2.0/src/airbyte_ops_mcp/live_tests → airbyte_internal_ops-0.2.1/src/airbyte_ops_mcp/regression_tests}/regression/__init__.py +1 -1
- {airbyte_internal_ops-0.2.0/src/airbyte_ops_mcp/live_tests → airbyte_internal_ops-0.2.1/src/airbyte_ops_mcp/regression_tests}/schema_generation.py +3 -1
- {airbyte_internal_ops-0.2.0/src/airbyte_ops_mcp/live_tests → airbyte_internal_ops-0.2.1/src/airbyte_ops_mcp/regression_tests}/validation/__init__.py +2 -2
- {airbyte_internal_ops-0.2.0/src/airbyte_ops_mcp/live_tests → airbyte_internal_ops-0.2.1/src/airbyte_ops_mcp/regression_tests}/validation/record_validators.py +4 -2
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/uv.lock +1659 -1651
- airbyte_internal_ops-0.2.0/.github/workflows/connector-live-test.yml +0 -114
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/.env.template +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/.github/copilot-instructions.md +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/.github/dependabot.yml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/.github/pr-welcome-message.md +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/.github/release-drafter.yml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/.github/workflows/autofix-command.yml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/.github/workflows/format-check.yml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/.github/workflows/lint-check.yml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/.github/workflows/lock-command.yml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/.github/workflows/pdoc_preview.yml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/.github/workflows/pdoc_publish.yml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/.github/workflows/poe-command.yml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/.github/workflows/pr-welcome.yml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/.github/workflows/publish.yml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/.github/workflows/pytest-fast.yml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/.github/workflows/pytest-matrix.yml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/.github/workflows/release-drafter.yml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/.github/workflows/slash-command-dispatch.yml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/.github/workflows/tk-todo-check.yml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/.gitignore +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/.mcp.json.template +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/CONTRIBUTING.md +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/README.md +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/bin/test_mcp_tool.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/bin/test_mcp_tool_http.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/conftest.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/docs/.gitignore +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/docs/generate.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/docs/templates/custom.css +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/docs/templates/theme.css +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/infra/sentry/.gitignore +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/infra/sentry/README.md +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/infra/sentry/docs/CONTRIBUTING.md +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/infra/sentry/requirements.txt +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/poe_tasks.toml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/pyrefly.toml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/pytest.ini +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/ruff.toml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_annotations.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/README.md +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_erd_generator/README.md +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_erd_generator/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_erd_generator/dbml_assembler.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_erd_generator/erd_service.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_erd_generator/relationships.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/README.md +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/cli.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/hacks.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/insights.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/models.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/pylint.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/pylint_plugins/cdk_deprecation_checkers.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/result_backends.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/utils.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/.gitignore +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/README.md +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/backends/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/backends/base_backend.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/backends/duckdb_backend.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/backends/file_backend.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/connection_objects_retrieval.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/connector_runner.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/errors.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/evaluation_modes.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/hacks.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/json_schema_helper.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/mitm_addons.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/models.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/proxy.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/secret_access.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/segment_tracking.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/utils.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/conftest.py.disabled +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/consts.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/poetry.lock +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/pytest.ini +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/regression_tests/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/regression_tests/test_check.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/regression_tests/test_discover.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/regression_tests/test_read.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/regression_tests/test_spec.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/report.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/stash_keys.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/templates/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/templates/private_details.html.j2 +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/templates/report.html.j2 +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/utils.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/validation_tests/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/validation_tests/test_check.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/validation_tests/test_discover.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/validation_tests/test_read.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/validation_tests/test_spec.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_ops/README.md +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_ops/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_ops/utils.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/README.md +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/connector/hooks.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/connector/normalization.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/python/common.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/python/pipx.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/python/poetry.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/remote_storage.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/secrets.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/system/common.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/system/docker.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/containers/git.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/containers/internal_tools.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/containers/java.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/containers/python.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/cache_keys.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/cli.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/connectors/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/connectors/cdk_helpers.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/connectors/command.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/connectors/dagger_fs.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/connectors/format.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/connectors/modifed.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/connectors/yaml.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/execution/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/execution/argument_parsing.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/execution/run_steps.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/gcs.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/git.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/github.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/pip.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/sentry_utils.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/slack.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/utils.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/README.md +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/build_image/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/build_image/commands.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/build_image/pipeline.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/build_image/steps/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/build_image/steps/build_customization.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/build_image/steps/common.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/build_image/steps/java_connectors.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/build_image/steps/manifest_only_connectors.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/build_image/steps/normalization.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/build_image/steps/python_connectors.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/commands.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/consts.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/context.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/generate_erd/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/generate_erd/commands.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/generate_erd/pipeline.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/list/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/list/commands.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/migrate_to_inline_schemas/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/migrate_to_inline_schemas/commands.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/migrate_to_inline_schemas/pipeline.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/pipeline.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/pull_request/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/pull_request/commands.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/pull_request/pipeline.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/reports.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/test/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/test/commands.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/test/context.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/test/pipeline.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/test/steps/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/test/steps/common.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/test/steps/java_connectors.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/test/steps/manifest_only_connectors.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/test/steps/python_connectors.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/test/steps/templates/test_report.html.j2 +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/up_to_date/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/up_to_date/commands.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/up_to_date/pipeline.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/up_to_date/steps.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/up_to_date/templates/up_to_date_pr_body.md.j2 +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/upgrade_cdk/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/upgrade_cdk/commands.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/upgrade_cdk/pipeline.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/metadata/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/metadata/commands.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/metadata/pipeline.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/poetry/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/poetry/commands.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/steps/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/steps/base_image.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/steps/docker.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/steps/gradle.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/steps/no_op.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/steps/poetry.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/steps/pull_request.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/test/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/test/commands.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/test/models.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/test/pipeline.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/update/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/update/commands.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/airbyte_ci.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/auto_update.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/click_decorators.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/confirm_prompt.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/dagger_pipeline_command.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/dagger_run.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/ensure_repo_root.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/lazy_group.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/secrets.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/telemetry.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/consts.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/hacks.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/artifacts.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/ci_requirements.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/contexts/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/contexts/click_pipeline_context.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/contexts/pipeline_context.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/reports.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/secrets.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/singleton.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/steps.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/README.md +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/assets.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/documentation/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/documentation/documentation.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/documentation/helpers.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/documentation/models.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/documentation/templates/documentation_headers_check_description.md.j2 +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/documentation/templates/section_content_description.md.j2 +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/documentation/templates/template.md.j2 +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/metadata.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/packaging.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/security.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/version.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/cli.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/consts.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/models.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/templates/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/templates/qa_checks.md.j2 +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/utils.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/README.md +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/bin/bundle-schemas.js +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/bin/generate-metadata-models.sh +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ActorDefinitionResourceRequirements.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/AirbyteInternal.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/AllowedHosts.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorBreakingChanges.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorBuildOptions.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorIPCOptions.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorMetadataDefinitionV0.json +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorMetadataDefinitionV0.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorMetrics.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorPackageInfo.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorRegistryDestinationDefinition.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorRegistryReleases.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorRegistrySourceDefinition.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorRegistryV0.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorReleases.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorTestSuiteOptions.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/GeneratedFields.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/GitInfo.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/JobType.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/NormalizationDestinationDefinitionConfig.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/RegistryOverrides.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ReleaseStage.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/RemoteRegistries.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ResourceRequirements.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/RolloutConfiguration.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/Secret.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/SecretStore.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/SourceFileInfo.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/SuggestedStreams.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/SupportLevel.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/TestConnections.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/airbyte-connector-metadata-schema.json +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ActorDefinitionResourceRequirements.yaml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/AirbyteInternal.yaml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/AllowedHosts.yaml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorBreakingChanges.yaml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorBuildOptions.yaml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorIPCOptions.yaml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorMetadataDefinitionV0.yaml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorMetrics.yaml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorPackageInfo.yaml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorRegistryDestinationDefinition.yaml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorRegistryReleases.yaml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorRegistrySourceDefinition.yaml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorRegistryV0.yaml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorReleases.yaml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorTestSuiteOptions.yaml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/GeneratedFields.yaml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/GitInfo.yaml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/JobType.yaml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/NormalizationDestinationDefinitionConfig.yaml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/RegistryOverrides.yaml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ReleaseStage.yaml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/RemoteRegistries.yaml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ResourceRequirements.yaml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/RolloutConfiguration.yaml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/Secret.yaml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/SecretStore.yaml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/SourceFileInfo.yaml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/SuggestedStreams.yaml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/SupportLevel.yaml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/TestConnections.yaml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/package-lock.json +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/package.json +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/transform.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/README.md +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/commands.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/constants.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/docker_hub.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/docs/external_documentation_urls.md +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/gcs_upload.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/helpers/files.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/helpers/gcs.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/helpers/object_helpers.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/helpers/slack.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/.env.template +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/README.md +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/dagster_cloud.yaml +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/assets/connector_metrics.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/assets/github.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/assets/metadata.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/assets/registry.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/assets/registry_entry.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/assets/registry_report.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/assets/slack.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/assets/specs_secrets_mask.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/config.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/fetcher/connector_cdk_version.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/hacks.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/jobs/registry.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/logging/publish_connector_lifecycle.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/logging/sentry.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/models/ci_report.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/models/metadata.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/ops/slack.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/resources/file_managers/local_file_manager.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/resources/gcp.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/resources/github.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/resources/local.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/sensors/gcs.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/sensors/github.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/sensors/registry.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/templates/base.html +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/templates/connector_registry_locations.html +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/templates/render.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/utils/blob_helpers.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/utils/dagster_helpers.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/utils/object_helpers.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/poetry.lock +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/conftest.py.disabled +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/fixtures/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/fixtures/cloud_registry.json +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/fixtures/oss_registry.json +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/test_connector_metrics.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/test_dagster_helpers.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/test_debug.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/test_partition_jobs.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/test_registry.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/test_specs_secrets_mask.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/registry.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/registry_entry.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/registry_report.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/sentry.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/spec_cache.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/specs_secrets_mask.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/stale_metadata_report.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/templates/base.html +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/templates/connector_registry_locations.html +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/templates/render.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/validators/metadata_validator.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/airbyte_repo/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/airbyte_repo/bump_version.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/airbyte_repo/list_connectors.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/airbyte_repo/utils.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/cli/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/cli/_base.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/cli/_shared.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/cli/app.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/cli/gh.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/cli/registry.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/cli/repo.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/cloud_admin/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/cloud_admin/auth.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/cloud_admin/models.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/connection_config_retriever/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/connection_config_retriever/audit_logging.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/connection_config_retriever/retrieval.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/connection_config_retriever/secrets_resolution.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/constants.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/gcp_auth.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/mcp/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/mcp/_guidance.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/mcp/connector_analysis.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/mcp/connector_qa.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/mcp/github_repo_ops.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/mcp/metadata.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/mcp/prerelease.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/mcp/prod_db_queries.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/mcp/prompts.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/mcp/registry.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/mcp/server_info.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/prod_db_access/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/prod_db_access/py.typed +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/prod_db_access/queries.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/prod_db_access/sql.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/py.typed +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/registry/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/registry/models.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/registry/publish.py +0 -0
- {airbyte_internal_ops-0.2.0/src/airbyte_ops_mcp/live_tests → airbyte_internal_ops-0.2.1/src/airbyte_ops_mcp/regression_tests}/ci_output.py +0 -0
- {airbyte_internal_ops-0.2.0/src/airbyte_ops_mcp/live_tests → airbyte_internal_ops-0.2.1/src/airbyte_ops_mcp/regression_tests}/commons/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0/src/airbyte_ops_mcp/live_tests → airbyte_internal_ops-0.2.1/src/airbyte_ops_mcp/regression_tests}/config.py +0 -0
- {airbyte_internal_ops-0.2.0/src/airbyte_ops_mcp/live_tests → airbyte_internal_ops-0.2.1/src/airbyte_ops_mcp/regression_tests}/connection_fetcher.py +0 -0
- {airbyte_internal_ops-0.2.0/src/airbyte_ops_mcp/live_tests → airbyte_internal_ops-0.2.1/src/airbyte_ops_mcp/regression_tests}/evaluation_modes.py +0 -0
- {airbyte_internal_ops-0.2.0/src/airbyte_ops_mcp/live_tests → airbyte_internal_ops-0.2.1/src/airbyte_ops_mcp/regression_tests}/http_metrics.py +0 -0
- {airbyte_internal_ops-0.2.0/src/airbyte_ops_mcp/live_tests → airbyte_internal_ops-0.2.1/src/airbyte_ops_mcp/regression_tests}/message_cache/duckdb_cache.py +0 -0
- {airbyte_internal_ops-0.2.0/src/airbyte_ops_mcp/live_tests → airbyte_internal_ops-0.2.1/src/airbyte_ops_mcp/regression_tests}/models.py +0 -0
- {airbyte_internal_ops-0.2.0/src/airbyte_ops_mcp/live_tests → airbyte_internal_ops-0.2.1/src/airbyte_ops_mcp/regression_tests}/obfuscation.py +0 -0
- {airbyte_internal_ops-0.2.0/src/airbyte_ops_mcp/live_tests → airbyte_internal_ops-0.2.1/src/airbyte_ops_mcp/regression_tests}/regression/comparators.py +0 -0
- {airbyte_internal_ops-0.2.0/src/airbyte_ops_mcp/live_tests → airbyte_internal_ops-0.2.1/src/airbyte_ops_mcp/regression_tests}/validation/catalog_validators.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_erd_generator/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_erd_generator/builder.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_erd_generator/test_dbml_assembler.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_erd_generator/test_relationships.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_live_tests/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_live_tests/backends/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_live_tests/backends/test_file_backend.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_live_tests/test_get_connection_objects_retrieval.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_live_tests/test_json_schema_helper.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_ops/conftest.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_ops/test_migration_files/bad-header.md +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_ops/test_migration_files/bad-title.md +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_ops/test_migration_files/extra-header.md +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_ops/test_migration_files/missing-entry.md +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_ops/test_migration_files/out-of-order.md +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_ops/test_utils.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_qa/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_qa/conftest.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_qa/integration_tests/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_qa/integration_tests/test_documentation.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_qa/unit_tests/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/data/docs/correct.md +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/data/docs/incorrect_not_all_structure.md +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/data/docs/invalid_links.md +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/test_assets.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/test_documentation.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/test_metadata.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/test_packaging.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/test_security.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/test_version.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_models.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/conftest.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_actions/test_environments.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_bases.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_build_image/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_build_image/dummy_build_customization.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_build_image/test_manifest_only_connectors.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_build_image/test_python_connectors.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_build_image/test_steps/test_common.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/initial_files/changelog_header_no_newline.md +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/initial_files/changelog_header_no_separator.md +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/initial_files/no_changelog_header.md +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/initial_files/valid_changelog_at_end.md +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/initial_files/valid_changelog_in_middle.md +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/changelog_header_no_newline.md +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/changelog_header_no_separator.md +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/dupicate_version_date_valid_changelog_at_end.md +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/dupicate_version_date_valid_changelog_in_middle.md +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/dupicate_versions_valid_changelog_at_end.md +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/dupicate_versions_valid_changelog_in_middle.md +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/duplicate_entry_valid_changelog_at_end.md +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/duplicate_entry_valid_changelog_in_middle.md +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/existing_entries_valid_changelog_at_end.md +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/existing_entries_valid_changelog_in_middle.md +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/no_changelog_header.md +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/single_insert_valid_changelog_at_end.md +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/single_insert_valid_changelog_in_middle.md +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_changelog.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_cli/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_cli/test_click_decorators.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_commands/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_commands/test_groups/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_commands/test_groups/test_connectors.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_dagger/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_dagger/test_actions/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_dagger/test_actions/test_python/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_dagger/test_actions/test_python/test_common.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_gradle.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_helpers/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_helpers/test_execution/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_helpers/test_execution/test_argument_parsing.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_helpers/test_execution/test_run_steps.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_helpers/test_pip.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_helpers/test_utils.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_models/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_models/test_click_pipeline_context.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_models/test_singleton.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_poetry/test_poetry_publish.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_publish.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_steps/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_steps/test_simple_docker_step.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_steps/test_version_check.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_tests/__init__.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_tests/test_common.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_tests/test_python_connectors.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_upgrade_java_cdk.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/utils.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/test_airbyte_admin_mcp.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/test_bump_version.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/test_cli_registry.py +0 -0
- {airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/tests/test_list_connectors.py +0 -0
|
@@ -6,70 +6,67 @@ permissions:
|
|
|
6
6
|
on:
|
|
7
7
|
workflow_dispatch:
|
|
8
8
|
inputs:
|
|
9
|
-
target_image:
|
|
10
|
-
description: "Target connector image (new version) with tag (e.g., airbyte/source-github:2.0.0). Optional if connector_name is provided."
|
|
11
|
-
required: false
|
|
12
|
-
type: string
|
|
13
|
-
control_image:
|
|
14
|
-
description: "Control connector image (baseline version) with tag (e.g., airbyte/source-github:1.0.0). Optional if connection_id is provided (auto-detected)."
|
|
15
|
-
required: false
|
|
16
|
-
type: string
|
|
17
9
|
connector_name:
|
|
18
|
-
description: "Connector name to build
|
|
19
|
-
required:
|
|
10
|
+
description: "Connector name to build from source (e.g., 'source-pokeapi')."
|
|
11
|
+
required: true
|
|
20
12
|
type: string
|
|
21
13
|
pr:
|
|
22
|
-
description: "PR number from the airbyte repo to checkout and build from (e.g., 70847).
|
|
14
|
+
description: "PR number from the airbyte repo to checkout and build from (e.g., 70847)."
|
|
15
|
+
required: true
|
|
16
|
+
type: string
|
|
17
|
+
connection_id:
|
|
18
|
+
description: "Airbyte Cloud connection ID to fetch config/catalog from."
|
|
23
19
|
required: false
|
|
24
20
|
type: string
|
|
25
|
-
|
|
26
|
-
description: "
|
|
21
|
+
skip_compare:
|
|
22
|
+
description: "If true, skip comparison and run single-version tests only. If false (default), run comparison tests (target vs control)."
|
|
27
23
|
required: false
|
|
28
|
-
type:
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
default:
|
|
35
|
-
|
|
36
|
-
description: "
|
|
24
|
+
type: boolean
|
|
25
|
+
default: false
|
|
26
|
+
skip_read_action:
|
|
27
|
+
description: "If true, skip the read action (run only spec, check, discover)."
|
|
28
|
+
required: false
|
|
29
|
+
type: boolean
|
|
30
|
+
default: false
|
|
31
|
+
override_test_image:
|
|
32
|
+
description: "Override test connector image with tag (e.g., airbyte/source-github:1.0.0). Ignored if skip_compare=false."
|
|
37
33
|
required: false
|
|
38
34
|
type: string
|
|
39
|
-
|
|
40
|
-
description: "
|
|
35
|
+
override_control_image:
|
|
36
|
+
description: "Override control connector image (baseline version) with tag. Ignored if skip_compare=true."
|
|
41
37
|
required: false
|
|
42
38
|
type: string
|
|
43
39
|
|
|
44
40
|
workflow_call:
|
|
45
41
|
inputs:
|
|
46
|
-
target_image:
|
|
47
|
-
description: "Target connector image (new version) with tag. Optional if connector_name is provided."
|
|
48
|
-
required: false
|
|
49
|
-
type: string
|
|
50
|
-
control_image:
|
|
51
|
-
description: "Control connector image (baseline version) with tag. Optional if connection_id is provided."
|
|
52
|
-
required: false
|
|
53
|
-
type: string
|
|
54
42
|
connector_name:
|
|
55
|
-
description: "Connector name to build
|
|
56
|
-
required:
|
|
43
|
+
description: "Connector name to build from source (e.g., 'source-pokeapi')."
|
|
44
|
+
required: true
|
|
57
45
|
type: string
|
|
58
46
|
pr:
|
|
59
|
-
description: "PR number from the airbyte repo to checkout and build from.
|
|
60
|
-
required:
|
|
47
|
+
description: "PR number from the airbyte repo to checkout and build from."
|
|
48
|
+
required: true
|
|
61
49
|
type: string
|
|
62
|
-
|
|
63
|
-
description: "Airbyte
|
|
50
|
+
connection_id:
|
|
51
|
+
description: "Airbyte Cloud connection ID to fetch config/catalog from."
|
|
64
52
|
required: false
|
|
65
53
|
type: string
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
54
|
+
skip_compare:
|
|
55
|
+
description: "If true, skip comparison and run single-version tests only. If false (default), run comparison tests (target vs control)."
|
|
56
|
+
required: false
|
|
57
|
+
type: boolean
|
|
58
|
+
default: false
|
|
59
|
+
skip_read_action:
|
|
60
|
+
description: "If true, skip the read action (run only spec, check, discover)."
|
|
61
|
+
required: false
|
|
62
|
+
type: boolean
|
|
63
|
+
default: false
|
|
64
|
+
override_test_image:
|
|
65
|
+
description: "Override test connector image with tag. Ignored if skip_compare=false."
|
|
69
66
|
required: false
|
|
70
67
|
type: string
|
|
71
|
-
|
|
72
|
-
description: "
|
|
68
|
+
override_control_image:
|
|
69
|
+
description: "Override control connector image (baseline version) with tag. Ignored if skip_compare=true."
|
|
73
70
|
required: false
|
|
74
71
|
type: string
|
|
75
72
|
outputs:
|
|
@@ -91,9 +88,32 @@ on:
|
|
|
91
88
|
required: false
|
|
92
89
|
|
|
93
90
|
jobs:
|
|
91
|
+
# Determine which commands to run based on inputs
|
|
92
|
+
prepare:
|
|
93
|
+
name: Prepare Test Matrix
|
|
94
|
+
runs-on: ubuntu-latest
|
|
95
|
+
outputs:
|
|
96
|
+
commands: ${{ steps.set-commands.outputs.commands }}
|
|
97
|
+
steps:
|
|
98
|
+
- name: Determine commands to run
|
|
99
|
+
id: set-commands
|
|
100
|
+
run: |
|
|
101
|
+
SKIP_READ="${{ inputs.skip_read_action }}"
|
|
102
|
+
|
|
103
|
+
if [ "$SKIP_READ" = "true" ]; then
|
|
104
|
+
echo 'commands=["spec", "check", "discover"]' >> "$GITHUB_OUTPUT"
|
|
105
|
+
else
|
|
106
|
+
echo 'commands=["spec", "check", "discover", "read"]' >> "$GITHUB_OUTPUT"
|
|
107
|
+
fi
|
|
108
|
+
|
|
94
109
|
regression-test:
|
|
95
|
-
name: Run Regression Test
|
|
110
|
+
name: Run Regression Test (${{ matrix.command }})
|
|
111
|
+
needs: prepare
|
|
96
112
|
runs-on: ubuntu-latest
|
|
113
|
+
strategy:
|
|
114
|
+
fail-fast: false
|
|
115
|
+
matrix:
|
|
116
|
+
command: ${{ fromJson(needs.prepare.outputs.commands) }}
|
|
97
117
|
outputs:
|
|
98
118
|
success: ${{ steps.regression-test.outputs.success }}
|
|
99
119
|
summary_url: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
|
|
@@ -116,19 +136,12 @@ jobs:
|
|
|
116
136
|
run: uv sync --group dev
|
|
117
137
|
|
|
118
138
|
- name: Resolve Airbyte ref
|
|
119
|
-
if: ${{ inputs.connector_name != '' }}
|
|
120
139
|
id: resolve-airbyte-ref
|
|
121
140
|
run: |
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
echo "Using PR ${{ inputs.pr }} -> refs/pull/${{ inputs.pr }}/head"
|
|
125
|
-
else
|
|
126
|
-
echo "resolved_ref=master" >> "$GITHUB_OUTPUT"
|
|
127
|
-
echo "No PR specified, using master"
|
|
128
|
-
fi
|
|
141
|
+
echo "resolved_ref=refs/pull/${{ inputs.pr }}/head" >> "$GITHUB_OUTPUT"
|
|
142
|
+
echo "Using PR ${{ inputs.pr }} -> refs/pull/${{ inputs.pr }}/head"
|
|
129
143
|
|
|
130
144
|
- name: Checkout Airbyte repo
|
|
131
|
-
if: ${{ inputs.connector_name != '' }}
|
|
132
145
|
uses: actions/checkout@v6
|
|
133
146
|
with:
|
|
134
147
|
repository: airbytehq/airbyte
|
|
@@ -145,27 +158,30 @@ jobs:
|
|
|
145
158
|
GCP_PROD_DB_ACCESS_CREDENTIALS: ${{ secrets.GCP_GSM_CREDENTIALS_FOR_TESTING_TOOL }}
|
|
146
159
|
USE_CONNECTION_SECRET_RETRIEVER: "true"
|
|
147
160
|
run: |
|
|
148
|
-
|
|
161
|
+
SKIP_COMPARE="${{ inputs.skip_compare }}"
|
|
162
|
+
ARGS=(--command "${{ matrix.command }}")
|
|
149
163
|
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
if [ -n "${{ inputs.control_image }}" ]; then
|
|
155
|
-
ARGS+=(--control-image "${{ inputs.control_image }}")
|
|
156
|
-
fi
|
|
157
|
-
|
|
158
|
-
if [ -n "${{ inputs.connector_name }}" ]; then
|
|
159
|
-
ARGS+=(--connector-name "${{ inputs.connector_name }}")
|
|
160
|
-
ARGS+=(--repo-root "${{ github.workspace }}/airbyte")
|
|
161
|
-
fi
|
|
164
|
+
# Always add connector_name and repo-root (both are required)
|
|
165
|
+
ARGS+=(--connector-name "${{ inputs.connector_name }}")
|
|
166
|
+
ARGS+=(--repo-root "${{ github.workspace }}/airbyte")
|
|
162
167
|
|
|
168
|
+
# Add connection_id if provided
|
|
163
169
|
if [ -n "${{ inputs.connection_id }}" ]; then
|
|
164
170
|
ARGS+=(--connection-id "${{ inputs.connection_id }}")
|
|
165
171
|
fi
|
|
166
172
|
|
|
167
|
-
if [
|
|
168
|
-
|
|
173
|
+
if [ "$SKIP_COMPARE" = "true" ]; then
|
|
174
|
+
# Single-version mode: use --skip-compare flag
|
|
175
|
+
ARGS+=(--skip-compare)
|
|
176
|
+
|
|
177
|
+
if [ -n "${{ inputs.override_test_image }}" ]; then
|
|
178
|
+
ARGS+=(--connector-image "${{ inputs.override_test_image }}")
|
|
179
|
+
fi
|
|
180
|
+
else
|
|
181
|
+
# Comparison mode (default): run target vs control
|
|
182
|
+
if [ -n "${{ inputs.override_control_image }}" ]; then
|
|
183
|
+
ARGS+=(--control-image "${{ inputs.override_control_image }}")
|
|
184
|
+
fi
|
|
169
185
|
fi
|
|
170
186
|
|
|
171
187
|
uv run airbyte-ops cloud connector regression-test "${ARGS[@]}"
|
|
@@ -186,6 +202,18 @@ jobs:
|
|
|
186
202
|
|
|
187
203
|
const conclusion = '${{ steps.regression-test.outcome }}' === 'success' ? 'success' : 'failure';
|
|
188
204
|
|
|
205
|
+
const skipCompare = '${{ inputs.skip_compare }}' === 'true';
|
|
206
|
+
const connectorName = '${{ inputs.connector_name }}';
|
|
207
|
+
const prNumber = '${{ inputs.pr }}';
|
|
208
|
+
let summary;
|
|
209
|
+
if (skipCompare) {
|
|
210
|
+
const image = '${{ inputs.override_test_image }}' || `(built from ${connectorName} PR #${prNumber})`;
|
|
211
|
+
summary = `Single-version regression test: \`${image}\` using \`${{ matrix.command }}\` command.`;
|
|
212
|
+
} else {
|
|
213
|
+
const controlImage = '${{ inputs.override_control_image }}' || '(auto-detected)';
|
|
214
|
+
summary = `Comparison regression test: \`${connectorName}\` (PR #${prNumber}) vs \`${controlImage}\` using \`${{ matrix.command }}\` command.`;
|
|
215
|
+
}
|
|
216
|
+
|
|
189
217
|
const check = await github.rest.checks.create({
|
|
190
218
|
owner: context.repo.owner,
|
|
191
219
|
repo: context.repo.repo,
|
|
@@ -195,7 +223,7 @@ jobs:
|
|
|
195
223
|
conclusion: conclusion,
|
|
196
224
|
output: {
|
|
197
225
|
title: 'Regression Test Report',
|
|
198
|
-
summary:
|
|
226
|
+
summary: summary,
|
|
199
227
|
text: reportContent
|
|
200
228
|
}
|
|
201
229
|
});
|
|
@@ -218,6 +246,6 @@ jobs:
|
|
|
218
246
|
if: always()
|
|
219
247
|
uses: actions/upload-artifact@v5
|
|
220
248
|
with:
|
|
221
|
-
name: regression-test-artifacts-${{ github.run_id }}
|
|
249
|
+
name: regression-test-artifacts-${{ matrix.command }}-${{ github.run_id }}
|
|
222
250
|
path: /tmp/regression_test_artifacts/
|
|
223
251
|
retention-days: 7
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# CI smoke test for
|
|
2
|
-
# Runs a lightweight regression test to validate
|
|
3
|
-
name:
|
|
1
|
+
# CI smoke test for regression tests code changes
|
|
2
|
+
# Runs a lightweight regression test to validate regression tests code works correctly
|
|
3
|
+
name: Regression Tests CI
|
|
4
4
|
|
|
5
5
|
permissions:
|
|
6
6
|
contents: read
|
|
@@ -9,8 +9,9 @@ permissions:
|
|
|
9
9
|
on:
|
|
10
10
|
pull_request:
|
|
11
11
|
paths:
|
|
12
|
-
- 'src/airbyte_ops_mcp/
|
|
13
|
-
- '
|
|
12
|
+
- 'src/airbyte_ops_mcp/regression_tests/**'
|
|
13
|
+
- 'src/airbyte_ops_mcp/mcp/regression_tests.py'
|
|
14
|
+
- '.github/workflows/regression-tests-ci.yml'
|
|
14
15
|
- '.github/workflows/connector-regression-test.yml'
|
|
15
16
|
|
|
16
17
|
# Allow manual triggering for testing
|
|
@@ -22,7 +23,7 @@ concurrency:
|
|
|
22
23
|
|
|
23
24
|
jobs:
|
|
24
25
|
smoke-test:
|
|
25
|
-
name:
|
|
26
|
+
name: Regression Tests Smoke Test
|
|
26
27
|
uses: ./.github/workflows/connector-regression-test.yml
|
|
27
28
|
with:
|
|
28
29
|
# Use source-pokeapi as a stable, public connector for smoke testing
|
{airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/.github/workflows/sentry-apply-command.yml
RENAMED
|
@@ -30,6 +30,11 @@ env:
|
|
|
30
30
|
# Note: This is the backend storage location, NOT PULUMI_HOME (which is for CLI config)
|
|
31
31
|
PULUMI_BACKEND_DIR: ${{ github.workspace }}/infra/sentry/.pulumi-state
|
|
32
32
|
|
|
33
|
+
# Ensure only one Sentry apply runs at a time to prevent state conflicts
|
|
34
|
+
concurrency:
|
|
35
|
+
group: sentry-prod-deploy
|
|
36
|
+
cancel-in-progress: false # Queue instead of cancel to avoid losing deployments
|
|
37
|
+
|
|
33
38
|
jobs:
|
|
34
39
|
sentry-apply:
|
|
35
40
|
name: Sentry Apply
|
|
@@ -132,7 +137,7 @@ jobs:
|
|
|
132
137
|
|
|
133
138
|
- name: Generate Sentry provider SDK
|
|
134
139
|
run: |
|
|
135
|
-
pulumi package add terraform-provider jianyuan/sentry 0.14.
|
|
140
|
+
pulumi package add terraform-provider jianyuan/sentry 0.14.5
|
|
136
141
|
|
|
137
142
|
- name: Install generated SDK
|
|
138
143
|
run: |
|
|
@@ -145,6 +150,9 @@ jobs:
|
|
|
145
150
|
with:
|
|
146
151
|
name: ${{ env.STATE_ARTIFACT_NAME }}
|
|
147
152
|
path: ${{ env.PULUMI_BACKEND_DIR }}
|
|
153
|
+
# Download from this workflow's previous successful runs on main
|
|
154
|
+
workflow: sentry-apply-command.yml
|
|
155
|
+
branch: main
|
|
148
156
|
workflow_conclusion: success
|
|
149
157
|
search_artifacts: true
|
|
150
158
|
if_no_artifact_found: warn
|
{airbyte_internal_ops-0.2.0 → airbyte_internal_ops-0.2.1}/.github/workflows/sentry-preview.yml
RENAMED
|
@@ -43,7 +43,7 @@ jobs:
|
|
|
43
43
|
|
|
44
44
|
- name: Generate Sentry provider SDK
|
|
45
45
|
run: |
|
|
46
|
-
pulumi package add terraform-provider jianyuan/sentry 0.14.
|
|
46
|
+
pulumi package add terraform-provider jianyuan/sentry 0.14.5
|
|
47
47
|
|
|
48
48
|
- name: Install generated SDK
|
|
49
49
|
run: |
|
|
@@ -56,6 +56,9 @@ jobs:
|
|
|
56
56
|
with:
|
|
57
57
|
name: ${{ env.STATE_ARTIFACT_NAME }}
|
|
58
58
|
path: ${{ env.PULUMI_BACKEND_DIR }}
|
|
59
|
+
# Must specify the Apply workflow to get state from production deploys
|
|
60
|
+
workflow: sentry-apply-command.yml
|
|
61
|
+
branch: main
|
|
59
62
|
workflow_conclusion: success
|
|
60
63
|
search_artifacts: true
|
|
61
64
|
if_no_artifact_found: warn
|
|
@@ -59,7 +59,7 @@ jobs:
|
|
|
59
59
|
|
|
60
60
|
# Run the test
|
|
61
61
|
uv run python -c "
|
|
62
|
-
from airbyte_ops_mcp.
|
|
62
|
+
from airbyte_ops_mcp.regression_tests.connection_secret_retriever import retrieve_unmasked_config
|
|
63
63
|
import os
|
|
64
64
|
|
|
65
65
|
connection_id = os.environ['CONNECTION_ID']
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: airbyte-internal-ops
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Summary: MCP and API interfaces that let the agents do the admin work
|
|
5
5
|
Author-email: Aaron Steers <aj@airbyte.io>
|
|
6
6
|
Keywords: admin,airbyte,api,mcp
|
|
@@ -13,7 +13,7 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
13
13
|
Requires-Python: <3.13,>=3.11
|
|
14
14
|
Requires-Dist: airbyte-cdk<8.0,>=7.3.9
|
|
15
15
|
Requires-Dist: airbyte-protocol-models-pdv2>=0.13.0
|
|
16
|
-
Requires-Dist: airbyte
|
|
16
|
+
Requires-Dist: airbyte==0.35.4
|
|
17
17
|
Requires-Dist: asyncer<1.0,>=0.0.4
|
|
18
18
|
Requires-Dist: click<9.0,>=8.1.3
|
|
19
19
|
Requires-Dist: cloud-sql-python-connector[pg8000]<2.0,>=1.7.0
|
|
@@ -41,7 +41,10 @@ config:
|
|
|
41
41
|
# Alert time window (hours)
|
|
42
42
|
alert_time_window_hours: 24
|
|
43
43
|
# Fingerprint rules
|
|
44
|
-
fingerprinting_rules:
|
|
44
|
+
fingerprinting_rules: |-
|
|
45
|
+
# User-side BigQuery quota errors (e.g. BigQuery free tier)
|
|
46
|
+
# No action on us, so we group and ignore these:
|
|
47
|
+
message:"Quota exceeded: Your project exceeded quota*" -> user-bigquery-storage-quota-exceeded
|
|
45
48
|
# Grouping enhancements (imported from Sentry 2025-12-22)
|
|
46
49
|
grouping_enhancements: |-
|
|
47
50
|
# java: mark everything from io.airbyte.* as in-app
|
|
@@ -16,7 +16,7 @@ description: |
|
|
|
16
16
|
SETUP: Before running `pulumi up`, generate the Sentry provider SDK:
|
|
17
17
|
pulumi package add terraform-provider jianyuan/sentry
|
|
18
18
|
|
|
19
|
-
This uses the Terraform Sentry provider directly (v0.14.
|
|
19
|
+
This uses the Terraform Sentry provider directly (v0.14.5) which supports
|
|
20
20
|
fingerprinting_rules and grouping_enhancements on Project resources.
|
|
21
21
|
|
|
22
22
|
The SDK is generated locally in sdks/sentry/ and is gitignored.
|
|
@@ -26,4 +26,4 @@ packages:
|
|
|
26
26
|
version: 1.0.2
|
|
27
27
|
parameters:
|
|
28
28
|
- jianyuan/sentry
|
|
29
|
-
- 0.14.
|
|
29
|
+
- 0.14.5
|
|
@@ -9,7 +9,7 @@ SETUP:
|
|
|
9
9
|
Before running `pulumi up`, generate the Sentry provider SDK:
|
|
10
10
|
pulumi package add terraform-provider jianyuan/sentry
|
|
11
11
|
|
|
12
|
-
This uses the Terraform Sentry provider directly (v0.14.
|
|
12
|
+
This uses the Terraform Sentry provider directly (v0.14.5) which supports
|
|
13
13
|
fingerprinting_rules and grouping_enhancements on SentryProject resources.
|
|
14
14
|
|
|
15
15
|
CONFIGURATION:
|
|
@@ -123,7 +123,7 @@ def define_connector_incidents_project() -> tuple[sentry.Project, OutputVarsMap]
|
|
|
123
123
|
platform=cfg["platform"],
|
|
124
124
|
teams=cfg["teams"],
|
|
125
125
|
# Note: digests_max_delay and digests_min_delay are not set here because
|
|
126
|
-
# provider
|
|
126
|
+
# the provider doesn't read them during import, causing spurious diffs.
|
|
127
127
|
# These settings are managed via Sentry UI instead.
|
|
128
128
|
fingerprinting_rules=cfg["fingerprinting_rules"],
|
|
129
129
|
grouping_enhancements=cfg["grouping_enhancements"],
|
|
@@ -179,7 +179,7 @@ def define_connector_ci_project() -> tuple[sentry.Project, OutputVarsMap]:
|
|
|
179
179
|
platform=cfg["platform"],
|
|
180
180
|
teams=cfg["teams"],
|
|
181
181
|
# Note: digests_max_delay and digests_min_delay are not set here because
|
|
182
|
-
# provider
|
|
182
|
+
# the provider doesn't read them during import, causing spurious diffs.
|
|
183
183
|
# These settings are managed via Sentry UI instead.
|
|
184
184
|
fingerprinting_rules=cfg["fingerprinting_rules"],
|
|
185
185
|
grouping_enhancements=cfg["grouping_enhancements"],
|
|
@@ -9,10 +9,10 @@ from airbyte_ops_mcp import (
|
|
|
9
9
|
cloud_admin,
|
|
10
10
|
connection_config_retriever,
|
|
11
11
|
constants,
|
|
12
|
-
live_tests,
|
|
13
12
|
mcp,
|
|
14
13
|
prod_db_access,
|
|
15
14
|
registry,
|
|
15
|
+
regression_tests,
|
|
16
16
|
)
|
|
17
17
|
|
|
18
18
|
__version__ = "0.1.0"
|
|
@@ -37,8 +37,8 @@ __all__ = [
|
|
|
37
37
|
"constants",
|
|
38
38
|
"get_version",
|
|
39
39
|
"hello",
|
|
40
|
-
"live_tests",
|
|
41
40
|
"mcp",
|
|
42
41
|
"prod_db_access",
|
|
43
42
|
"registry",
|
|
43
|
+
"regression_tests",
|
|
44
44
|
]
|