airbyte-internal-ops 0.4.2__tar.gz → 0.5.0__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.4.2 → airbyte_internal_ops-0.5.0}/.github/workflows/connector-regression-test.yml +97 -2
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/PKG-INFO +1 -1
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/conftest.py +1 -1
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/infra/sentry/Pulumi.prod.yaml +15 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/infra/sentry/__main__.py +59 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/pyproject.toml +5 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/ruff.toml +1 -2
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/cli/cloud.py +27 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/cloud_admin/api_client.py +473 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/cloud_admin/models.py +56 -0
- airbyte_internal_ops-0.5.0/src/airbyte_ops_mcp/mcp/cloud_connector_versions.py +903 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/mcp/prerelease.py +5 -44
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/regression_tests/ci_output.py +8 -4
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/regression_tests/http_metrics.py +21 -2
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/regression_tests/models.py +6 -0
- airbyte_internal_ops-0.5.0/src/airbyte_ops_mcp/telemetry.py +162 -0
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/.gitignore +0 -1
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/README.md +0 -420
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/__init__.py +0 -2
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/backends/__init__.py +0 -8
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/backends/base_backend.py +0 -16
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/backends/duckdb_backend.py +0 -87
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/backends/file_backend.py +0 -165
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/connection_objects_retrieval.py +0 -377
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/connector_runner.py +0 -247
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/errors.py +0 -7
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/evaluation_modes.py +0 -25
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/hacks.py +0 -23
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/json_schema_helper.py +0 -384
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/mitm_addons.py +0 -37
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/models.py +0 -595
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/proxy.py +0 -207
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/secret_access.py +0 -47
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/segment_tracking.py +0 -45
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/utils.py +0 -214
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/conftest.py.disabled +0 -751
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/consts.py +0 -4
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/poetry.lock +0 -4480
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/pytest.ini +0 -9
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/regression_tests/__init__.py +0 -1
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/regression_tests/test_check.py +0 -61
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/regression_tests/test_discover.py +0 -117
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/regression_tests/test_read.py +0 -627
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/regression_tests/test_spec.py +0 -43
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/report.py +0 -542
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/stash_keys.py +0 -38
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/templates/private_details.html.j2 +0 -305
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/templates/report.html.j2 +0 -515
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/utils.py +0 -187
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/validation_tests/test_check.py +0 -61
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/validation_tests/test_discover.py +0 -217
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/validation_tests/test_read.py +0 -177
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/validation_tests/test_spec.py +0 -631
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/mcp/cloud_connector_versions.py +0 -443
- airbyte_internal_ops-0.4.2/tests/legacy/airbyte_ci/connector_erd_generator/__init__.py +0 -1
- airbyte_internal_ops-0.4.2/tests/legacy/airbyte_ci/connector_live_tests/__init__.py +0 -1
- airbyte_internal_ops-0.4.2/tests/legacy/airbyte_ci/connector_live_tests/backends/test_file_backend.py +0 -74
- airbyte_internal_ops-0.4.2/tests/legacy/airbyte_ci/connector_live_tests/test_get_connection_objects_retrieval.py +0 -771
- airbyte_internal_ops-0.4.2/tests/legacy/airbyte_ci/connector_live_tests/test_json_schema_helper.py +0 -639
- airbyte_internal_ops-0.4.2/tests/legacy/airbyte_ci/connector_qa/unit_tests/__init__.py +0 -0
- airbyte_internal_ops-0.4.2/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/__init__.py +0 -0
- airbyte_internal_ops-0.4.2/tests/legacy/airbyte_ci/pipelines/test_helpers/test_execution/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/.env.template +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/.github/copilot-instructions.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/.github/dependabot.yml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/.github/pr-welcome-message.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/.github/release-drafter.yml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/.github/workflows/autofix-command.yml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/.github/workflows/format-check.yml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/.github/workflows/lint-check.yml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/.github/workflows/lock-command.yml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/.github/workflows/pdoc_preview.yml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/.github/workflows/pdoc_publish.yml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/.github/workflows/poe-command.yml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/.github/workflows/pr-welcome.yml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/.github/workflows/publish.yml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/.github/workflows/pytest-fast.yml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/.github/workflows/pytest-matrix.yml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/.github/workflows/regression-tests-ci.yml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/.github/workflows/release-drafter.yml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/.github/workflows/semantic-pr-check.yml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/.github/workflows/sentry-apply-command.yml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/.github/workflows/sentry-preview.yml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/.github/workflows/slash-command-dispatch.yml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/.github/workflows/tk-todo-check.yml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/.gitignore +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/.mcp.json.template +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/CONTRIBUTING.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/README.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/bin/test_mcp_tool.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/bin/test_mcp_tool_http.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/docs/.gitignore +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/docs/generate.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/docs/templates/custom.css +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/docs/templates/theme.css +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/infra/sentry/.gitignore +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/infra/sentry/CONTRIBUTING.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/infra/sentry/Pulumi.yaml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/infra/sentry/README.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/infra/sentry/requirements.txt +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/poe_tasks.toml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/pyrefly.toml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/pytest.ini +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_annotations.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/README.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_erd_generator/README.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_erd_generator/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_erd_generator/dbml_assembler.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_erd_generator/erd_service.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_erd_generator/relationships.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/README.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/cli.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/hacks.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/insights.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/models.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/pylint.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/pylint_plugins/cdk_deprecation_checkers.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/result_backends.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/utils.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_ops/README.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_ops/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_ops/utils.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/README.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/connector/hooks.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/connector/normalization.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/python/common.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/python/pipx.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/python/poetry.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/remote_storage.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/secrets.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/system/common.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/system/docker.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/containers/git.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/containers/internal_tools.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/containers/java.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/containers/python.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/cache_keys.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/cli.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/connectors/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/connectors/cdk_helpers.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/connectors/command.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/connectors/dagger_fs.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/connectors/format.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/connectors/modifed.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/connectors/yaml.py +0 -0
- {airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/templates → airbyte_internal_ops-0.5.0/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/execution}/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/execution/argument_parsing.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/execution/run_steps.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/gcs.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/git.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/github.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/pip.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/sentry_utils.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/slack.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/utils.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/README.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/build_image/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/build_image/commands.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/build_image/pipeline.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/build_image/steps/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/build_image/steps/build_customization.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/build_image/steps/common.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/build_image/steps/java_connectors.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/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.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/build_image/steps/normalization.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/build_image/steps/python_connectors.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/commands.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/consts.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/context.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/generate_erd/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/generate_erd/commands.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/generate_erd/pipeline.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/list/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/list/commands.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/migrate_to_inline_schemas/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/migrate_to_inline_schemas/commands.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/migrate_to_inline_schemas/pipeline.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/pipeline.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/pull_request/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/pull_request/commands.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/pull_request/pipeline.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/reports.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/test/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/test/commands.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/test/context.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/test/pipeline.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/test/steps/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/test/steps/common.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/test/steps/java_connectors.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/test/steps/manifest_only_connectors.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/test/steps/python_connectors.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/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.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/up_to_date/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/up_to_date/commands.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/up_to_date/pipeline.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/up_to_date/steps.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/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.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/upgrade_cdk/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/upgrade_cdk/commands.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/upgrade_cdk/pipeline.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/metadata/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/metadata/commands.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/metadata/pipeline.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/poetry/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/poetry/commands.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/steps/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/steps/base_image.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/steps/docker.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/steps/gradle.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/steps/no_op.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/steps/poetry.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/steps/pull_request.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/test/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/test/commands.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/test/models.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/test/pipeline.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/update/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/update/commands.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/airbyte_ci.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/auto_update.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/click_decorators.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/confirm_prompt.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/dagger_pipeline_command.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/dagger_run.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/ensure_repo_root.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/lazy_group.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/secrets.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/telemetry.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/consts.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/hacks.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/artifacts.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/ci_requirements.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/contexts/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/contexts/click_pipeline_context.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/contexts/pipeline_context.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/reports.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/secrets.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/singleton.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/steps.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/README.md +0 -0
- {airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/validation_tests → airbyte_internal_ops-0.5.0/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa}/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/assets.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/documentation/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/documentation/documentation.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/documentation/helpers.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/documentation/models.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/documentation/templates/documentation_headers_check_description.md.j2 +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/documentation/templates/section_content_description.md.j2 +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/documentation/templates/template.md.j2 +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/metadata.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/packaging.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/security.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/version.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/cli.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/consts.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/models.py +0 -0
- {airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/execution → airbyte_internal_ops-0.5.0/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/templates}/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/templates/qa_checks.md.j2 +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/utils.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/README.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/bin/bundle-schemas.js +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/bin/generate-metadata-models.sh +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ActorDefinitionResourceRequirements.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/AirbyteInternal.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/AllowedHosts.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorBreakingChanges.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorBuildOptions.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorIPCOptions.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorMetadataDefinitionV0.json +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorMetadataDefinitionV0.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorMetrics.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorPackageInfo.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorRegistryDestinationDefinition.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorRegistryReleases.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorRegistrySourceDefinition.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorRegistryV0.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorReleases.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorTestSuiteOptions.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/GeneratedFields.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/GitInfo.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/JobType.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/NormalizationDestinationDefinitionConfig.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/RegistryOverrides.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ReleaseStage.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/RemoteRegistries.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ResourceRequirements.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/RolloutConfiguration.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/Secret.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/SecretStore.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/SourceFileInfo.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/SuggestedStreams.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/SupportLevel.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/TestConnections.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/airbyte-connector-metadata-schema.json +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ActorDefinitionResourceRequirements.yaml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/AirbyteInternal.yaml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/AllowedHosts.yaml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorBreakingChanges.yaml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorBuildOptions.yaml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorIPCOptions.yaml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorMetadataDefinitionV0.yaml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorMetrics.yaml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorPackageInfo.yaml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorRegistryDestinationDefinition.yaml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorRegistryReleases.yaml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorRegistrySourceDefinition.yaml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorRegistryV0.yaml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorReleases.yaml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorTestSuiteOptions.yaml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/GeneratedFields.yaml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/GitInfo.yaml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/JobType.yaml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/NormalizationDestinationDefinitionConfig.yaml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/RegistryOverrides.yaml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ReleaseStage.yaml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/RemoteRegistries.yaml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ResourceRequirements.yaml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/RolloutConfiguration.yaml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/Secret.yaml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/SecretStore.yaml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/SourceFileInfo.yaml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/SuggestedStreams.yaml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/SupportLevel.yaml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/TestConnections.yaml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/package-lock.json +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/package.json +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/transform.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/README.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/commands.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/constants.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/docker_hub.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/docs/external_documentation_urls.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/gcs_upload.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/helpers/files.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/helpers/gcs.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/helpers/object_helpers.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/helpers/slack.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/.env.template +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/README.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/dagster_cloud.yaml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/assets/connector_metrics.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/assets/github.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/assets/metadata.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/assets/registry.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/assets/registry_entry.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/assets/registry_report.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/assets/slack.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/assets/specs_secrets_mask.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/config.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/fetcher/connector_cdk_version.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/hacks.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/jobs/registry.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/logging/publish_connector_lifecycle.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/logging/sentry.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/models/ci_report.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/models/metadata.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/ops/slack.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/resources/file_managers/local_file_manager.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/resources/gcp.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/resources/github.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/resources/local.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/sensors/gcs.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/sensors/github.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/sensors/registry.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/templates/base.html +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/templates/connector_registry_locations.html +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/templates/render.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/utils/blob_helpers.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/utils/dagster_helpers.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/utils/object_helpers.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/poetry.lock +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/conftest.py.disabled +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/fixtures/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/fixtures/cloud_registry.json +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/fixtures/oss_registry.json +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/test_connector_metrics.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/test_dagster_helpers.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/test_debug.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/test_partition_jobs.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/test_registry.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/test_specs_secrets_mask.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/registry.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/registry_entry.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/registry_report.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/sentry.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/spec_cache.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/specs_secrets_mask.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/stale_metadata_report.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/templates/base.html +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/templates/connector_registry_locations.html +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/templates/render.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/validators/metadata_validator.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/airbyte_repo/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/airbyte_repo/bump_version.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/airbyte_repo/list_connectors.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/airbyte_repo/utils.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/cli/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/cli/_base.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/cli/_shared.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/cli/app.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/cli/gh.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/cli/registry.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/cli/repo.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/cloud_admin/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/cloud_admin/auth.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/cloud_admin/connection_config.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/connection_config_retriever/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/connection_config_retriever/audit_logging.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/connection_config_retriever/retrieval.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/connection_config_retriever/secrets_resolution.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/constants.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/gcp_auth.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/gcp_logs/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/gcp_logs/error_lookup.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/github_actions.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/github_api.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/mcp/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/mcp/_guidance.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/mcp/_http_headers.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/mcp/_mcp_utils.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/mcp/connector_analysis.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/mcp/connector_qa.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/mcp/gcp_logs.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/mcp/github_actions.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/mcp/github_repo_ops.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/mcp/metadata.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/mcp/prod_db_queries.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/mcp/prompts.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/mcp/registry.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/mcp/regression_tests.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/mcp/server.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/mcp/server_info.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/prod_db_access/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/prod_db_access/db_engine.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/prod_db_access/py.typed +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/prod_db_access/queries.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/prod_db_access/sql.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/py.typed +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/registry/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/registry/models.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/registry/publish.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/regression_tests/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/regression_tests/cdk_secrets.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/regression_tests/commons/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/regression_tests/config.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/regression_tests/connection_fetcher.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/regression_tests/connection_secret_retriever.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/regression_tests/connector_runner.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/regression_tests/evaluation_modes.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/regression_tests/message_cache/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/regression_tests/message_cache/duckdb_cache.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/regression_tests/obfuscation.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/regression_tests/regression/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/regression_tests/regression/comparators.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/regression_tests/schema_generation.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/regression_tests/validation/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/regression_tests/validation/catalog_validators.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/src/airbyte_ops_mcp/regression_tests/validation/record_validators.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons → airbyte_internal_ops-0.5.0/tests/legacy/airbyte_ci/connector_erd_generator}/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/connector_erd_generator/builder.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/connector_erd_generator/test_dbml_assembler.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/connector_erd_generator/test_relationships.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/connector_ops/conftest.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/connector_ops/test_migration_files/bad-header.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/connector_ops/test_migration_files/bad-title.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/connector_ops/test_migration_files/extra-header.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/connector_ops/test_migration_files/missing-entry.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/connector_ops/test_migration_files/out-of-order.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/connector_ops/test_utils.py +0 -0
- {airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy → airbyte_internal_ops-0.5.0/tests/legacy}/airbyte_ci/connector_qa/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/connector_qa/conftest.py +0 -0
- {airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/templates → airbyte_internal_ops-0.5.0/tests/legacy/airbyte_ci/connector_qa/integration_tests}/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/connector_qa/integration_tests/test_documentation.py +0 -0
- {airbyte_internal_ops-0.4.2/tests/legacy/airbyte_ci/connector_live_tests/backends → airbyte_internal_ops-0.5.0/tests/legacy/airbyte_ci/connector_qa/unit_tests}/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2/tests/legacy/airbyte_ci/connector_qa → airbyte_internal_ops-0.5.0/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks}/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/data/docs/correct.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/data/docs/incorrect_not_all_structure.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/data/docs/invalid_links.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/test_assets.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/test_documentation.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/test_metadata.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/test_packaging.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/test_security.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/test_version.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_models.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/conftest.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_actions/test_environments.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_bases.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_build_image/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_build_image/dummy_build_customization.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_build_image/test_manifest_only_connectors.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_build_image/test_python_connectors.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_build_image/test_steps/test_common.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_changelog/initial_files/changelog_header_no_newline.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_changelog/initial_files/changelog_header_no_separator.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_changelog/initial_files/no_changelog_header.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_changelog/initial_files/valid_changelog_at_end.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_changelog/initial_files/valid_changelog_in_middle.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/changelog_header_no_newline.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/changelog_header_no_separator.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/dupicate_version_date_valid_changelog_at_end.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/dupicate_version_date_valid_changelog_in_middle.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/dupicate_versions_valid_changelog_at_end.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/dupicate_versions_valid_changelog_in_middle.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/duplicate_entry_valid_changelog_at_end.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/duplicate_entry_valid_changelog_in_middle.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/existing_entries_valid_changelog_at_end.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/existing_entries_valid_changelog_in_middle.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/no_changelog_header.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/single_insert_valid_changelog_at_end.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/single_insert_valid_changelog_in_middle.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_changelog.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_cli/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_cli/test_click_decorators.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_commands/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_commands/test_groups/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_commands/test_groups/test_connectors.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_dagger/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_dagger/test_actions/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_dagger/test_actions/test_python/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_dagger/test_actions/test_python/test_common.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_gradle.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_helpers/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2/tests/legacy/airbyte_ci/connector_qa/integration_tests → airbyte_internal_ops-0.5.0/tests/legacy/airbyte_ci/pipelines/test_helpers/test_execution}/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_helpers/test_execution/test_argument_parsing.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_helpers/test_execution/test_run_steps.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_helpers/test_pip.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_helpers/test_utils.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_models/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_models/test_click_pipeline_context.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_models/test_singleton.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_poetry/test_poetry_publish.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_publish.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_steps/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_steps/test_simple_docker_step.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_steps/test_version_check.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_tests/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_tests/test_common.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_tests/test_python_connectors.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/test_upgrade_java_cdk.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/legacy/airbyte_ci/pipelines/utils.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/test_airbyte_admin_mcp.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/test_bump_version.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/test_cli_registry.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/test_list_connectors.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/tests/test_prerelease.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.0}/uv.lock +0 -0
|
@@ -317,6 +317,93 @@ jobs:
|
|
|
317
317
|
path: /tmp/regression_test_artifacts/discover/
|
|
318
318
|
retention-days: 7
|
|
319
319
|
|
|
320
|
+
- name: Generate Configured Catalog from Discover Output
|
|
321
|
+
id: generate-catalog
|
|
322
|
+
if: inputs.skip_read_action != true && inputs.connection_id == ''
|
|
323
|
+
run: |
|
|
324
|
+
# When using GSM credentials (no connection_id), we need to generate a configured catalog
|
|
325
|
+
# from the discovered catalog for the READ step
|
|
326
|
+
echo "Generating configured catalog from discover output..."
|
|
327
|
+
|
|
328
|
+
# Define paths as variables for maintainability
|
|
329
|
+
DISCOVER_ARTIFACTS_DIR="/tmp/regression_test_artifacts/discover"
|
|
330
|
+
TARGET_CATALOG_PATH="$DISCOVER_ARTIFACTS_DIR/target/airbyte_messages/catalog.jsonl"
|
|
331
|
+
ROOT_CATALOG_PATH="$DISCOVER_ARTIFACTS_DIR/airbyte_messages/catalog.jsonl"
|
|
332
|
+
GENERATED_CATALOG_PATH="/tmp/regression_test_artifacts/generated_configured_catalog.json"
|
|
333
|
+
|
|
334
|
+
# Find the catalog file from discover output (check both target and root locations)
|
|
335
|
+
CATALOG_FILE=""
|
|
336
|
+
if [ -f "$TARGET_CATALOG_PATH" ]; then
|
|
337
|
+
CATALOG_FILE="$TARGET_CATALOG_PATH"
|
|
338
|
+
elif [ -f "$ROOT_CATALOG_PATH" ]; then
|
|
339
|
+
CATALOG_FILE="$ROOT_CATALOG_PATH"
|
|
340
|
+
fi
|
|
341
|
+
|
|
342
|
+
if [ -z "$CATALOG_FILE" ] || [ ! -f "$CATALOG_FILE" ]; then
|
|
343
|
+
echo "Warning: No catalog file found from discover output"
|
|
344
|
+
exit 0
|
|
345
|
+
fi
|
|
346
|
+
|
|
347
|
+
echo "Found catalog file: $CATALOG_FILE"
|
|
348
|
+
|
|
349
|
+
# Extract the catalog JSON from the JSONL file (it's an AirbyteMessage with type=CATALOG)
|
|
350
|
+
# and convert it to a ConfiguredAirbyteCatalog with all streams selected
|
|
351
|
+
python3 -c "
|
|
352
|
+
import json
|
|
353
|
+
import sys
|
|
354
|
+
|
|
355
|
+
catalog_file = '${CATALOG_FILE}'
|
|
356
|
+
output_file = '${GENERATED_CATALOG_PATH}'
|
|
357
|
+
|
|
358
|
+
# Read the catalog from the JSONL file
|
|
359
|
+
catalog = None
|
|
360
|
+
with open(catalog_file, 'r') as f:
|
|
361
|
+
for line in f:
|
|
362
|
+
line = line.strip()
|
|
363
|
+
if not line:
|
|
364
|
+
continue
|
|
365
|
+
msg = json.loads(line)
|
|
366
|
+
if msg.get('type') == 'CATALOG':
|
|
367
|
+
catalog = msg.get('catalog')
|
|
368
|
+
break
|
|
369
|
+
|
|
370
|
+
if not catalog:
|
|
371
|
+
print(f'No CATALOG message found in file: {catalog_file}')
|
|
372
|
+
sys.exit(0)
|
|
373
|
+
|
|
374
|
+
# Convert AirbyteCatalog to ConfiguredAirbyteCatalog
|
|
375
|
+
# Select all streams, choosing a sync mode supported by each stream
|
|
376
|
+
configured_streams = []
|
|
377
|
+
for stream in catalog.get('streams', []):
|
|
378
|
+
supported_sync_modes = stream.get('supported_sync_modes') or []
|
|
379
|
+
if not supported_sync_modes or 'full_refresh' in supported_sync_modes:
|
|
380
|
+
sync_mode = 'full_refresh'
|
|
381
|
+
else:
|
|
382
|
+
sync_mode = supported_sync_modes[0]
|
|
383
|
+
configured_stream = {
|
|
384
|
+
'stream': stream,
|
|
385
|
+
'sync_mode': sync_mode,
|
|
386
|
+
'destination_sync_mode': 'overwrite'
|
|
387
|
+
}
|
|
388
|
+
configured_streams.append(configured_stream)
|
|
389
|
+
|
|
390
|
+
configured_catalog = {
|
|
391
|
+
'streams': configured_streams
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
# Write the configured catalog to a file
|
|
395
|
+
with open(output_file, 'w') as f:
|
|
396
|
+
json.dump(configured_catalog, f, indent=2)
|
|
397
|
+
|
|
398
|
+
print(f'Generated configured catalog with {len(configured_streams)} streams')
|
|
399
|
+
"
|
|
400
|
+
|
|
401
|
+
if [ -f "$GENERATED_CATALOG_PATH" ]; then
|
|
402
|
+
echo "Successfully generated configured catalog"
|
|
403
|
+
else
|
|
404
|
+
echo "Warning: Failed to generate configured catalog"
|
|
405
|
+
fi
|
|
406
|
+
|
|
320
407
|
- name: Run READ
|
|
321
408
|
id: run-read
|
|
322
409
|
if: inputs.skip_read_action != true
|
|
@@ -327,8 +414,16 @@ jobs:
|
|
|
327
414
|
GCP_PROD_DB_ACCESS_CREDENTIALS: ${{ secrets.GCP_GSM_CREDENTIALS_FOR_TESTING_TOOL }}
|
|
328
415
|
USE_CONNECTION_SECRET_RETRIEVER: "true"
|
|
329
416
|
run: |
|
|
330
|
-
|
|
331
|
-
|
|
417
|
+
# Use generated catalog if available (when using GSM credentials without connection_id)
|
|
418
|
+
GENERATED_CATALOG_PATH="/tmp/regression_test_artifacts/generated_configured_catalog.json"
|
|
419
|
+
CATALOG_ARG=""
|
|
420
|
+
if [ -f "$GENERATED_CATALOG_PATH" ]; then
|
|
421
|
+
CATALOG_ARG="--catalog-path $GENERATED_CATALOG_PATH"
|
|
422
|
+
echo "Using generated catalog from discover output"
|
|
423
|
+
fi
|
|
424
|
+
|
|
425
|
+
echo "Running: uv run airbyte-ops cloud connector regression-test --command read ${{ steps.build-args.outputs.common_args }} ${CATALOG_ARG} --output-dir /tmp/regression_test_artifacts/read"
|
|
426
|
+
uv run airbyte-ops cloud connector regression-test --command read ${{ steps.build-args.outputs.common_args }} ${CATALOG_ARG} --output-dir /tmp/regression_test_artifacts/read
|
|
332
427
|
|
|
333
428
|
- name: Upload READ Artifacts
|
|
334
429
|
if: always() && inputs.skip_read_action != true
|
|
@@ -3,12 +3,12 @@
|
|
|
3
3
|
# Each legacy subproject has a corresponding GitHub issue for tracking its migration:
|
|
4
4
|
# - connector_erd_generator: https://github.com/airbytehq/airbyte-ops-mcp/issues/49
|
|
5
5
|
# - connector_insights: https://github.com/airbytehq/airbyte-ops-mcp/issues/50
|
|
6
|
-
# - connector_live_tests: https://github.com/airbytehq/airbyte-ops-mcp/issues/51
|
|
7
6
|
# - connector_ops: https://github.com/airbytehq/airbyte-ops-mcp/issues/52
|
|
8
7
|
# - connector_pipelines: https://github.com/airbytehq/airbyte-ops-mcp/issues/53
|
|
9
8
|
# - connector_qa: https://github.com/airbytehq/airbyte-ops-mcp/issues/54
|
|
10
9
|
# - metadata_models: https://github.com/airbytehq/airbyte-ops-mcp/issues/55
|
|
11
10
|
# - metadata_service: https://github.com/airbytehq/airbyte-ops-mcp/issues/56
|
|
11
|
+
# Note: connector_live_tests was migrated to regression_tests/ (issue #51 closed)
|
|
12
12
|
|
|
13
13
|
collect_ignore_glob = [
|
|
14
14
|
# Legacy airbyte_ci source modules (recursive)
|
|
@@ -60,6 +60,21 @@ config:
|
|
|
60
60
|
|
|
61
61
|
# Broken pipe errors - transient network interruptions
|
|
62
62
|
error.value:"Broken pipe*" -> broken-pipe
|
|
63
|
+
|
|
64
|
+
# Statement timeout errors - group by connector name
|
|
65
|
+
# These occur during T+D (typing/deduping) operations and vary by pg_temp_XX schema numbers
|
|
66
|
+
# and SQL statement content, causing many separate Sentry issues for the same root cause
|
|
67
|
+
error.value:"*canceling statement due to statement timeout*" -> statement-timeout, {{tags.connector_name}}
|
|
68
|
+
|
|
69
|
+
# PostgreSQL I/O errors - transient connection issues (EOF, connection reset, etc.)
|
|
70
|
+
# These vary by the specific operation being performed when the connection drops,
|
|
71
|
+
# causing separate Sentry issues for the same root cause
|
|
72
|
+
error.value:"*I/O error occurred while sending to the backend*" -> postgres-io-error, {{tags.connector_name}}
|
|
73
|
+
|
|
74
|
+
# State checksum mismatch errors - group by connector name
|
|
75
|
+
# These occur when source state record counts don't match platform tracked counts,
|
|
76
|
+
# varying by specific record counts and stream names, causing many separate issues
|
|
77
|
+
error.value:"*state record count*does not equal platform tracked record count*" -> state-checksum-mismatch, {{tags.connector_name}}
|
|
63
78
|
# Grouping enhancements (imported from Sentry 2025-12-22)
|
|
64
79
|
grouping_enhancements: |-
|
|
65
80
|
# java: mark everything from io.airbyte.* as in-app
|
|
@@ -542,6 +542,65 @@ def define_connector_incidents_alert_rules(
|
|
|
542
542
|
import_=f"{ORGANIZATION}/{CONNECTOR_INCIDENTS_PROJECT_ID}/11478402",
|
|
543
543
|
),
|
|
544
544
|
),
|
|
545
|
+
# Alert: New or Escalating Destination Issues (Slack notification only)
|
|
546
|
+
# Re-enabled per team-move request to receive alerts for destination issues
|
|
547
|
+
# without workspace threshold - triggers on new/escalating issues
|
|
548
|
+
sentry.IssueAlert(
|
|
549
|
+
"alert-destination-issues-slack",
|
|
550
|
+
organization=ORGANIZATION,
|
|
551
|
+
project=CONNECTOR_INCIDENTS_PROJECT_ID,
|
|
552
|
+
name="Alert on New or Escalating Destination Issues",
|
|
553
|
+
action_match="any",
|
|
554
|
+
filter_match="all",
|
|
555
|
+
frequency=5, # Minimum allowed value (5 minutes)
|
|
556
|
+
environment="production", # Only trigger for production environment
|
|
557
|
+
owner="team:1199001", # team-move
|
|
558
|
+
conditions_v2s=[
|
|
559
|
+
sentry.IssueAlertConditionsV2Args(
|
|
560
|
+
first_seen_event=sentry.IssueAlertConditionsV2FirstSeenEventArgs(),
|
|
561
|
+
),
|
|
562
|
+
sentry.IssueAlertConditionsV2Args(
|
|
563
|
+
regression_event=sentry.IssueAlertConditionsV2RegressionEventArgs(),
|
|
564
|
+
),
|
|
565
|
+
sentry.IssueAlertConditionsV2Args(
|
|
566
|
+
reappeared_event=sentry.IssueAlertConditionsV2ReappearedEventArgs(),
|
|
567
|
+
),
|
|
568
|
+
],
|
|
569
|
+
filters_v2s=[
|
|
570
|
+
sentry.IssueAlertFiltersV2Args(
|
|
571
|
+
tagged_event=sentry.IssueAlertFiltersV2TaggedEventArgs(
|
|
572
|
+
key="connector_release_stage",
|
|
573
|
+
match="CONTAINS",
|
|
574
|
+
value="generally_available",
|
|
575
|
+
),
|
|
576
|
+
),
|
|
577
|
+
sentry.IssueAlertFiltersV2Args(
|
|
578
|
+
assigned_to=sentry.IssueAlertFiltersV2AssignedToArgs(
|
|
579
|
+
target_type="Team",
|
|
580
|
+
target_identifier="1838479", # team-move
|
|
581
|
+
),
|
|
582
|
+
),
|
|
583
|
+
sentry.IssueAlertFiltersV2Args(
|
|
584
|
+
tagged_event=sentry.IssueAlertFiltersV2TaggedEventArgs(
|
|
585
|
+
key="failure_origin",
|
|
586
|
+
match="CONTAINS",
|
|
587
|
+
value="destination",
|
|
588
|
+
),
|
|
589
|
+
),
|
|
590
|
+
],
|
|
591
|
+
actions_v2s=[
|
|
592
|
+
sentry.IssueAlertActionsV2Args(
|
|
593
|
+
slack_notify_service=sentry.IssueAlertActionsV2SlackNotifyServiceArgs(
|
|
594
|
+
channel="#dev-platform-move-alerts",
|
|
595
|
+
workspace="139867",
|
|
596
|
+
# Note: channel_id is read-only and auto-resolved by Sentry from channel name
|
|
597
|
+
),
|
|
598
|
+
),
|
|
599
|
+
],
|
|
600
|
+
opts=pulumi.ResourceOptions(
|
|
601
|
+
protect=False, # New resource, not imported - allow modifications
|
|
602
|
+
),
|
|
603
|
+
),
|
|
545
604
|
]
|
|
546
605
|
|
|
547
606
|
|
|
@@ -181,3 +181,8 @@ known_first_party = [
|
|
|
181
181
|
# DEP002: Temporarily ignore unused dependencies - many are only used in legacy modules
|
|
182
182
|
# which are excluded during the migration. See GitHub issues #49-#56 for tracking.
|
|
183
183
|
ignore = ["DEP004", "DEP002"]
|
|
184
|
+
|
|
185
|
+
# Per-rule ignores for optional dependencies that are imported conditionally
|
|
186
|
+
[tool.deptry.per_rule_ignores]
|
|
187
|
+
# segment-analytics-python is an optional dependency in the live-tests group
|
|
188
|
+
DEP001 = ["segment"]
|
|
@@ -11,7 +11,6 @@ exclude = [
|
|
|
11
11
|
# Legacy airbyte_ci subprojects - see linked issues for each domain
|
|
12
12
|
"src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_erd_generator/*", # https://github.com/airbytehq/airbyte-ops-mcp/issues/49
|
|
13
13
|
"src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/*", # https://github.com/airbytehq/airbyte-ops-mcp/issues/50
|
|
14
|
-
"src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/*", # https://github.com/airbytehq/airbyte-ops-mcp/issues/51
|
|
15
14
|
"src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_ops/*", # https://github.com/airbytehq/airbyte-ops-mcp/issues/52
|
|
16
15
|
"src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/*", # https://github.com/airbytehq/airbyte-ops-mcp/issues/53
|
|
17
16
|
"src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/*", # https://github.com/airbytehq/airbyte-ops-mcp/issues/54
|
|
@@ -19,9 +18,9 @@ exclude = [
|
|
|
19
18
|
"src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/*", # https://github.com/airbytehq/airbyte-ops-mcp/issues/56
|
|
20
19
|
# Legacy tests for the above subprojects
|
|
21
20
|
"tests/legacy/airbyte_ci/connector_erd_generator/*", # https://github.com/airbytehq/airbyte-ops-mcp/issues/49
|
|
22
|
-
"tests/legacy/airbyte_ci/connector_live_tests/*", # https://github.com/airbytehq/airbyte-ops-mcp/issues/51
|
|
23
21
|
"tests/legacy/airbyte_ci/connector_ops/*", # https://github.com/airbytehq/airbyte-ops-mcp/issues/52
|
|
24
22
|
"tests/legacy/airbyte_ci/pipelines/*", # https://github.com/airbytehq/airbyte-ops-mcp/issues/53
|
|
23
|
+
# Note: connector_live_tests was migrated to regression_tests/ (issue #51 closed)
|
|
25
24
|
]
|
|
26
25
|
|
|
27
26
|
[lint]
|
|
@@ -82,6 +82,7 @@ from airbyte_ops_mcp.regression_tests.models import (
|
|
|
82
82
|
ExecutionInputs,
|
|
83
83
|
TargetOrControl,
|
|
84
84
|
)
|
|
85
|
+
from airbyte_ops_mcp.telemetry import track_regression_test
|
|
85
86
|
|
|
86
87
|
# Path to connectors directory within the airbyte repo
|
|
87
88
|
CONNECTORS_SUBDIR = Path("airbyte-integrations") / "connectors"
|
|
@@ -953,6 +954,32 @@ def regression_test(
|
|
|
953
954
|
f"Failed to pull control connector image: {resolved_control_image}"
|
|
954
955
|
)
|
|
955
956
|
|
|
957
|
+
# Track telemetry for the regression test
|
|
958
|
+
# Extract version from image tag (e.g., "airbyte/source-github:1.0.0" -> "1.0.0")
|
|
959
|
+
target_version = (
|
|
960
|
+
resolved_test_image.rsplit(":", 1)[-1]
|
|
961
|
+
if ":" in resolved_test_image
|
|
962
|
+
else "unknown"
|
|
963
|
+
)
|
|
964
|
+
control_version = None
|
|
965
|
+
if resolved_control_image and ":" in resolved_control_image:
|
|
966
|
+
control_version = resolved_control_image.rsplit(":", 1)[-1]
|
|
967
|
+
|
|
968
|
+
# Get tester identity from environment (GitHub Actions sets GITHUB_ACTOR)
|
|
969
|
+
tester = os.getenv("GITHUB_ACTOR") or os.getenv("USER")
|
|
970
|
+
|
|
971
|
+
track_regression_test(
|
|
972
|
+
user_id=tester,
|
|
973
|
+
connector_image=resolved_test_image,
|
|
974
|
+
command=command,
|
|
975
|
+
target_version=target_version,
|
|
976
|
+
control_version=control_version,
|
|
977
|
+
additional_properties={
|
|
978
|
+
"connection_id": connection_id,
|
|
979
|
+
"skip_compare": skip_compare,
|
|
980
|
+
},
|
|
981
|
+
)
|
|
982
|
+
|
|
956
983
|
# Execute the appropriate mode
|
|
957
984
|
if skip_compare:
|
|
958
985
|
# Single-version mode: run only the connector image
|