airbyte-internal-ops 0.1.11__tar.gz → 0.2.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (557) hide show
  1. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/.github/workflows/connector-regression-test.yml +104 -78
  2. airbyte_internal_ops-0.1.11/.github/workflows/live-tests-ci.yml → airbyte_internal_ops-0.2.1/.github/workflows/regression-tests-ci.yml +7 -6
  3. airbyte_internal_ops-0.2.1/.github/workflows/sentry-apply-command.yml +301 -0
  4. airbyte_internal_ops-0.2.1/.github/workflows/sentry-preview.yml +156 -0
  5. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/.github/workflows/slash-command-dispatch.yml +1 -0
  6. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/.github/workflows/test-connection-retriever.yml +1 -1
  7. airbyte_internal_ops-0.2.1/.github/workflows/tk-todo-check.yml +45 -0
  8. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/PKG-INFO +2 -2
  9. airbyte_internal_ops-0.2.1/bin/test_mcp_tool_http.py +110 -0
  10. airbyte_internal_ops-0.2.1/infra/sentry/.gitignore +31 -0
  11. airbyte_internal_ops-0.2.1/infra/sentry/Pulumi.prod.yaml +75 -0
  12. airbyte_internal_ops-0.2.1/infra/sentry/Pulumi.yaml +29 -0
  13. airbyte_internal_ops-0.2.1/infra/sentry/README.md +230 -0
  14. airbyte_internal_ops-0.2.1/infra/sentry/__main__.py +347 -0
  15. airbyte_internal_ops-0.2.1/infra/sentry/docs/CONTRIBUTING.md +229 -0
  16. airbyte_internal_ops-0.2.1/infra/sentry/requirements.txt +11 -0
  17. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/poe_tasks.toml +4 -0
  18. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/pyproject.toml +4 -1
  19. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/__init__.py +2 -2
  20. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/cli/cloud.py +264 -301
  21. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/cloud_admin/api_client.py +51 -26
  22. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/cloud_admin/auth.py +32 -0
  23. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/cloud_admin/connection_config.py +2 -2
  24. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/constants.py +18 -0
  25. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/github_actions.py +94 -5
  26. airbyte_internal_ops-0.2.1/src/airbyte_ops_mcp/mcp/_http_headers.py +254 -0
  27. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/mcp/_mcp_utils.py +2 -2
  28. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/mcp/cloud_connector_versions.py +162 -52
  29. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/mcp/github.py +34 -1
  30. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/mcp/prod_db_queries.py +67 -24
  31. airbyte_internal_ops-0.1.11/src/airbyte_ops_mcp/mcp/live_tests.py → airbyte_internal_ops-0.2.1/src/airbyte_ops_mcp/mcp/regression_tests.py +165 -152
  32. airbyte_internal_ops-0.2.1/src/airbyte_ops_mcp/mcp/server.py +156 -0
  33. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/prod_db_access/db_engine.py +15 -11
  34. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/prod_db_access/queries.py +27 -15
  35. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/prod_db_access/sql.py +17 -16
  36. {airbyte_internal_ops-0.1.11/src/airbyte_ops_mcp/live_tests → airbyte_internal_ops-0.2.1/src/airbyte_ops_mcp/regression_tests}/__init__.py +3 -3
  37. {airbyte_internal_ops-0.1.11/src/airbyte_ops_mcp/live_tests → airbyte_internal_ops-0.2.1/src/airbyte_ops_mcp/regression_tests}/cdk_secrets.py +1 -1
  38. {airbyte_internal_ops-0.1.11/src/airbyte_ops_mcp/live_tests → airbyte_internal_ops-0.2.1/src/airbyte_ops_mcp/regression_tests}/connection_secret_retriever.py +3 -3
  39. {airbyte_internal_ops-0.1.11/src/airbyte_ops_mcp/live_tests → airbyte_internal_ops-0.2.1/src/airbyte_ops_mcp/regression_tests}/connector_runner.py +1 -1
  40. {airbyte_internal_ops-0.1.11/src/airbyte_ops_mcp/live_tests → airbyte_internal_ops-0.2.1/src/airbyte_ops_mcp/regression_tests}/message_cache/__init__.py +3 -1
  41. {airbyte_internal_ops-0.1.11/src/airbyte_ops_mcp/live_tests → airbyte_internal_ops-0.2.1/src/airbyte_ops_mcp/regression_tests}/regression/__init__.py +1 -1
  42. {airbyte_internal_ops-0.1.11/src/airbyte_ops_mcp/live_tests → airbyte_internal_ops-0.2.1/src/airbyte_ops_mcp/regression_tests}/schema_generation.py +3 -1
  43. {airbyte_internal_ops-0.1.11/src/airbyte_ops_mcp/live_tests → airbyte_internal_ops-0.2.1/src/airbyte_ops_mcp/regression_tests}/validation/__init__.py +2 -2
  44. {airbyte_internal_ops-0.1.11/src/airbyte_ops_mcp/live_tests → airbyte_internal_ops-0.2.1/src/airbyte_ops_mcp/regression_tests}/validation/record_validators.py +4 -2
  45. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/uv.lock +1659 -1651
  46. airbyte_internal_ops-0.1.11/.github/workflows/connector-live-test.yml +0 -117
  47. airbyte_internal_ops-0.1.11/src/airbyte_ops_mcp/mcp/server.py +0 -83
  48. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/.env.template +0 -0
  49. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/.github/copilot-instructions.md +0 -0
  50. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/.github/dependabot.yml +0 -0
  51. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/.github/pr-welcome-message.md +0 -0
  52. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/.github/release-drafter.yml +0 -0
  53. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/.github/workflows/autofix-command.yml +0 -0
  54. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/.github/workflows/format-check.yml +0 -0
  55. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/.github/workflows/lint-check.yml +0 -0
  56. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/.github/workflows/lock-command.yml +0 -0
  57. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/.github/workflows/pdoc_preview.yml +0 -0
  58. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/.github/workflows/pdoc_publish.yml +0 -0
  59. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/.github/workflows/poe-command.yml +0 -0
  60. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/.github/workflows/pr-welcome.yml +0 -0
  61. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/.github/workflows/publish.yml +0 -0
  62. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/.github/workflows/pytest-fast.yml +0 -0
  63. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/.github/workflows/pytest-matrix.yml +0 -0
  64. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/.github/workflows/release-drafter.yml +0 -0
  65. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/.gitignore +0 -0
  66. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/.mcp.json.template +0 -0
  67. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/CONTRIBUTING.md +0 -0
  68. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/README.md +0 -0
  69. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/bin/test_mcp_tool.py +0 -0
  70. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/conftest.py +0 -0
  71. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/docs/.gitignore +0 -0
  72. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/docs/generate.py +0 -0
  73. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/docs/templates/custom.css +0 -0
  74. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/docs/templates/theme.css +0 -0
  75. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/pyrefly.toml +0 -0
  76. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/pytest.ini +0 -0
  77. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/ruff.toml +0 -0
  78. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_annotations.py +0 -0
  79. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/__init__.py +0 -0
  80. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/README.md +0 -0
  81. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_erd_generator/README.md +0 -0
  82. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_erd_generator/__init__.py +0 -0
  83. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_erd_generator/dbml_assembler.py +0 -0
  84. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_erd_generator/erd_service.py +0 -0
  85. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_erd_generator/relationships.py +0 -0
  86. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/README.md +0 -0
  87. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/__init__.py +0 -0
  88. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/cli.py +0 -0
  89. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/hacks.py +0 -0
  90. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/insights.py +0 -0
  91. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/models.py +0 -0
  92. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/pylint.py +0 -0
  93. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/pylint_plugins/cdk_deprecation_checkers.py +0 -0
  94. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/result_backends.py +0 -0
  95. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/utils.py +0 -0
  96. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/.gitignore +0 -0
  97. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/README.md +0 -0
  98. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/__init__.py +0 -0
  99. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/__init__.py +0 -0
  100. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/backends/__init__.py +0 -0
  101. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/backends/base_backend.py +0 -0
  102. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/backends/duckdb_backend.py +0 -0
  103. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/backends/file_backend.py +0 -0
  104. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/connection_objects_retrieval.py +0 -0
  105. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/connector_runner.py +0 -0
  106. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/errors.py +0 -0
  107. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/evaluation_modes.py +0 -0
  108. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/hacks.py +0 -0
  109. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/json_schema_helper.py +0 -0
  110. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/mitm_addons.py +0 -0
  111. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/models.py +0 -0
  112. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/proxy.py +0 -0
  113. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/secret_access.py +0 -0
  114. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/segment_tracking.py +0 -0
  115. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/utils.py +0 -0
  116. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/conftest.py.disabled +0 -0
  117. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/consts.py +0 -0
  118. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/poetry.lock +0 -0
  119. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/pytest.ini +0 -0
  120. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/regression_tests/__init__.py +0 -0
  121. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/regression_tests/test_check.py +0 -0
  122. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/regression_tests/test_discover.py +0 -0
  123. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/regression_tests/test_read.py +0 -0
  124. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/regression_tests/test_spec.py +0 -0
  125. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/report.py +0 -0
  126. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/stash_keys.py +0 -0
  127. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/templates/__init__.py +0 -0
  128. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/templates/private_details.html.j2 +0 -0
  129. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/templates/report.html.j2 +0 -0
  130. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/utils.py +0 -0
  131. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/validation_tests/__init__.py +0 -0
  132. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/validation_tests/test_check.py +0 -0
  133. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/validation_tests/test_discover.py +0 -0
  134. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/validation_tests/test_read.py +0 -0
  135. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/validation_tests/test_spec.py +0 -0
  136. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_ops/README.md +0 -0
  137. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_ops/__init__.py +0 -0
  138. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_ops/utils.py +0 -0
  139. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/README.md +0 -0
  140. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/__init__.py +0 -0
  141. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/connector/hooks.py +0 -0
  142. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/connector/normalization.py +0 -0
  143. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/python/common.py +0 -0
  144. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/python/pipx.py +0 -0
  145. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/python/poetry.py +0 -0
  146. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/remote_storage.py +0 -0
  147. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/secrets.py +0 -0
  148. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/system/common.py +0 -0
  149. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/system/docker.py +0 -0
  150. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/containers/git.py +0 -0
  151. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/containers/internal_tools.py +0 -0
  152. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/containers/java.py +0 -0
  153. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/containers/python.py +0 -0
  154. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/__init__.py +0 -0
  155. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/cache_keys.py +0 -0
  156. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/cli.py +0 -0
  157. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/connectors/__init__.py +0 -0
  158. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/connectors/cdk_helpers.py +0 -0
  159. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/connectors/command.py +0 -0
  160. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/connectors/dagger_fs.py +0 -0
  161. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/connectors/format.py +0 -0
  162. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/connectors/modifed.py +0 -0
  163. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/connectors/yaml.py +0 -0
  164. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/execution/__init__.py +0 -0
  165. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/execution/argument_parsing.py +0 -0
  166. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/execution/run_steps.py +0 -0
  167. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/gcs.py +0 -0
  168. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/git.py +0 -0
  169. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/github.py +0 -0
  170. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/pip.py +0 -0
  171. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/sentry_utils.py +0 -0
  172. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/slack.py +0 -0
  173. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/utils.py +0 -0
  174. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/README.md +0 -0
  175. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/__init__.py +0 -0
  176. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/__init__.py +0 -0
  177. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/__init__.py +0 -0
  178. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/build_image/__init__.py +0 -0
  179. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/build_image/commands.py +0 -0
  180. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/build_image/pipeline.py +0 -0
  181. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/build_image/steps/__init__.py +0 -0
  182. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/build_image/steps/build_customization.py +0 -0
  183. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/build_image/steps/common.py +0 -0
  184. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/build_image/steps/java_connectors.py +0 -0
  185. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/build_image/steps/manifest_only_connectors.py +0 -0
  186. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/build_image/steps/normalization.py +0 -0
  187. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/build_image/steps/python_connectors.py +0 -0
  188. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/commands.py +0 -0
  189. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/consts.py +0 -0
  190. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/context.py +0 -0
  191. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/generate_erd/__init__.py +0 -0
  192. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/generate_erd/commands.py +0 -0
  193. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/generate_erd/pipeline.py +0 -0
  194. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/list/__init__.py +0 -0
  195. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/list/commands.py +0 -0
  196. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/migrate_to_inline_schemas/__init__.py +0 -0
  197. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/migrate_to_inline_schemas/commands.py +0 -0
  198. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/migrate_to_inline_schemas/pipeline.py +0 -0
  199. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/pipeline.py +0 -0
  200. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/pull_request/__init__.py +0 -0
  201. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/pull_request/commands.py +0 -0
  202. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/pull_request/pipeline.py +0 -0
  203. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/reports.py +0 -0
  204. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/test/__init__.py +0 -0
  205. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/test/commands.py +0 -0
  206. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/test/context.py +0 -0
  207. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/test/pipeline.py +0 -0
  208. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/test/steps/__init__.py +0 -0
  209. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/test/steps/common.py +0 -0
  210. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/test/steps/java_connectors.py +0 -0
  211. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/test/steps/manifest_only_connectors.py +0 -0
  212. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/test/steps/python_connectors.py +0 -0
  213. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/test/steps/templates/test_report.html.j2 +0 -0
  214. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/up_to_date/__init__.py +0 -0
  215. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/up_to_date/commands.py +0 -0
  216. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/up_to_date/pipeline.py +0 -0
  217. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/up_to_date/steps.py +0 -0
  218. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/up_to_date/templates/up_to_date_pr_body.md.j2 +0 -0
  219. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/upgrade_cdk/__init__.py +0 -0
  220. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/upgrade_cdk/commands.py +0 -0
  221. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/upgrade_cdk/pipeline.py +0 -0
  222. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/metadata/__init__.py +0 -0
  223. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/metadata/commands.py +0 -0
  224. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/metadata/pipeline.py +0 -0
  225. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/poetry/__init__.py +0 -0
  226. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/poetry/commands.py +0 -0
  227. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/steps/__init__.py +0 -0
  228. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/steps/base_image.py +0 -0
  229. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/steps/docker.py +0 -0
  230. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/steps/gradle.py +0 -0
  231. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/steps/no_op.py +0 -0
  232. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/steps/poetry.py +0 -0
  233. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/steps/pull_request.py +0 -0
  234. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/test/__init__.py +0 -0
  235. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/test/commands.py +0 -0
  236. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/test/models.py +0 -0
  237. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/test/pipeline.py +0 -0
  238. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/update/__init__.py +0 -0
  239. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/update/commands.py +0 -0
  240. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/airbyte_ci.py +0 -0
  241. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/auto_update.py +0 -0
  242. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/click_decorators.py +0 -0
  243. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/confirm_prompt.py +0 -0
  244. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/dagger_pipeline_command.py +0 -0
  245. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/dagger_run.py +0 -0
  246. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/ensure_repo_root.py +0 -0
  247. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/lazy_group.py +0 -0
  248. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/secrets.py +0 -0
  249. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/telemetry.py +0 -0
  250. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/consts.py +0 -0
  251. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/hacks.py +0 -0
  252. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/__init__.py +0 -0
  253. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/artifacts.py +0 -0
  254. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/ci_requirements.py +0 -0
  255. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/contexts/__init__.py +0 -0
  256. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/contexts/click_pipeline_context.py +0 -0
  257. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/contexts/pipeline_context.py +0 -0
  258. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/reports.py +0 -0
  259. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/secrets.py +0 -0
  260. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/singleton.py +0 -0
  261. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/steps.py +0 -0
  262. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/README.md +0 -0
  263. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/__init__.py +0 -0
  264. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/__init__.py +0 -0
  265. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/assets.py +0 -0
  266. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/documentation/__init__.py +0 -0
  267. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/documentation/documentation.py +0 -0
  268. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/documentation/helpers.py +0 -0
  269. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/documentation/models.py +0 -0
  270. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/documentation/templates/documentation_headers_check_description.md.j2 +0 -0
  271. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/documentation/templates/section_content_description.md.j2 +0 -0
  272. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/documentation/templates/template.md.j2 +0 -0
  273. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/metadata.py +0 -0
  274. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/packaging.py +0 -0
  275. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/security.py +0 -0
  276. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/version.py +0 -0
  277. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/cli.py +0 -0
  278. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/consts.py +0 -0
  279. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/models.py +0 -0
  280. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/templates/__init__.py +0 -0
  281. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/templates/qa_checks.md.j2 +0 -0
  282. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/utils.py +0 -0
  283. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/README.md +0 -0
  284. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/bin/bundle-schemas.js +0 -0
  285. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/bin/generate-metadata-models.sh +0 -0
  286. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ActorDefinitionResourceRequirements.py +0 -0
  287. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/AirbyteInternal.py +0 -0
  288. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/AllowedHosts.py +0 -0
  289. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorBreakingChanges.py +0 -0
  290. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorBuildOptions.py +0 -0
  291. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorIPCOptions.py +0 -0
  292. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorMetadataDefinitionV0.json +0 -0
  293. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorMetadataDefinitionV0.py +0 -0
  294. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorMetrics.py +0 -0
  295. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorPackageInfo.py +0 -0
  296. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorRegistryDestinationDefinition.py +0 -0
  297. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorRegistryReleases.py +0 -0
  298. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorRegistrySourceDefinition.py +0 -0
  299. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorRegistryV0.py +0 -0
  300. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorReleases.py +0 -0
  301. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorTestSuiteOptions.py +0 -0
  302. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/GeneratedFields.py +0 -0
  303. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/GitInfo.py +0 -0
  304. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/JobType.py +0 -0
  305. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/NormalizationDestinationDefinitionConfig.py +0 -0
  306. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/RegistryOverrides.py +0 -0
  307. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ReleaseStage.py +0 -0
  308. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/RemoteRegistries.py +0 -0
  309. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ResourceRequirements.py +0 -0
  310. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/RolloutConfiguration.py +0 -0
  311. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/Secret.py +0 -0
  312. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/SecretStore.py +0 -0
  313. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/SourceFileInfo.py +0 -0
  314. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/SuggestedStreams.py +0 -0
  315. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/SupportLevel.py +0 -0
  316. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/TestConnections.py +0 -0
  317. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/__init__.py +0 -0
  318. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/airbyte-connector-metadata-schema.json +0 -0
  319. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ActorDefinitionResourceRequirements.yaml +0 -0
  320. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/AirbyteInternal.yaml +0 -0
  321. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/AllowedHosts.yaml +0 -0
  322. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorBreakingChanges.yaml +0 -0
  323. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorBuildOptions.yaml +0 -0
  324. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorIPCOptions.yaml +0 -0
  325. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorMetadataDefinitionV0.yaml +0 -0
  326. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorMetrics.yaml +0 -0
  327. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorPackageInfo.yaml +0 -0
  328. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorRegistryDestinationDefinition.yaml +0 -0
  329. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorRegistryReleases.yaml +0 -0
  330. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorRegistrySourceDefinition.yaml +0 -0
  331. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorRegistryV0.yaml +0 -0
  332. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorReleases.yaml +0 -0
  333. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorTestSuiteOptions.yaml +0 -0
  334. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/GeneratedFields.yaml +0 -0
  335. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/GitInfo.yaml +0 -0
  336. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/JobType.yaml +0 -0
  337. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/NormalizationDestinationDefinitionConfig.yaml +0 -0
  338. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/RegistryOverrides.yaml +0 -0
  339. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ReleaseStage.yaml +0 -0
  340. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/RemoteRegistries.yaml +0 -0
  341. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ResourceRequirements.yaml +0 -0
  342. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/RolloutConfiguration.yaml +0 -0
  343. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/Secret.yaml +0 -0
  344. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/SecretStore.yaml +0 -0
  345. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/SourceFileInfo.yaml +0 -0
  346. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/SuggestedStreams.yaml +0 -0
  347. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/SupportLevel.yaml +0 -0
  348. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/TestConnections.yaml +0 -0
  349. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/package-lock.json +0 -0
  350. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/package.json +0 -0
  351. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/transform.py +0 -0
  352. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/README.md +0 -0
  353. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/commands.py +0 -0
  354. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/constants.py +0 -0
  355. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/docker_hub.py +0 -0
  356. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/docs/external_documentation_urls.md +0 -0
  357. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/gcs_upload.py +0 -0
  358. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/helpers/files.py +0 -0
  359. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/helpers/gcs.py +0 -0
  360. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/helpers/object_helpers.py +0 -0
  361. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/helpers/slack.py +0 -0
  362. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/.env.template +0 -0
  363. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/README.md +0 -0
  364. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/dagster_cloud.yaml +0 -0
  365. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/__init__.py +0 -0
  366. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/assets/connector_metrics.py +0 -0
  367. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/assets/github.py +0 -0
  368. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/assets/metadata.py +0 -0
  369. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/assets/registry.py +0 -0
  370. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/assets/registry_entry.py +0 -0
  371. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/assets/registry_report.py +0 -0
  372. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/assets/slack.py +0 -0
  373. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/assets/specs_secrets_mask.py +0 -0
  374. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/config.py +0 -0
  375. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/fetcher/connector_cdk_version.py +0 -0
  376. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/hacks.py +0 -0
  377. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/jobs/registry.py +0 -0
  378. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/logging/publish_connector_lifecycle.py +0 -0
  379. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/logging/sentry.py +0 -0
  380. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/models/ci_report.py +0 -0
  381. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/models/metadata.py +0 -0
  382. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/ops/slack.py +0 -0
  383. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/resources/file_managers/local_file_manager.py +0 -0
  384. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/resources/gcp.py +0 -0
  385. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/resources/github.py +0 -0
  386. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/resources/local.py +0 -0
  387. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/sensors/gcs.py +0 -0
  388. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/sensors/github.py +0 -0
  389. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/sensors/registry.py +0 -0
  390. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/templates/base.html +0 -0
  391. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/templates/connector_registry_locations.html +0 -0
  392. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/templates/render.py +0 -0
  393. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/utils/blob_helpers.py +0 -0
  394. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/utils/dagster_helpers.py +0 -0
  395. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/utils/object_helpers.py +0 -0
  396. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/poetry.lock +0 -0
  397. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/__init__.py +0 -0
  398. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/conftest.py.disabled +0 -0
  399. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/fixtures/__init__.py +0 -0
  400. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/fixtures/cloud_registry.json +0 -0
  401. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/fixtures/oss_registry.json +0 -0
  402. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/test_connector_metrics.py +0 -0
  403. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/test_dagster_helpers.py +0 -0
  404. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/test_debug.py +0 -0
  405. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/test_partition_jobs.py +0 -0
  406. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/test_registry.py +0 -0
  407. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/test_specs_secrets_mask.py +0 -0
  408. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/registry.py +0 -0
  409. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/registry_entry.py +0 -0
  410. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/registry_report.py +0 -0
  411. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/sentry.py +0 -0
  412. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/spec_cache.py +0 -0
  413. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/specs_secrets_mask.py +0 -0
  414. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/stale_metadata_report.py +0 -0
  415. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/templates/base.html +0 -0
  416. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/templates/connector_registry_locations.html +0 -0
  417. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/templates/render.py +0 -0
  418. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/validators/metadata_validator.py +0 -0
  419. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/airbyte_repo/__init__.py +0 -0
  420. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/airbyte_repo/bump_version.py +0 -0
  421. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/airbyte_repo/list_connectors.py +0 -0
  422. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/airbyte_repo/utils.py +0 -0
  423. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/cli/__init__.py +0 -0
  424. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/cli/_base.py +0 -0
  425. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/cli/_shared.py +0 -0
  426. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/cli/app.py +0 -0
  427. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/cli/gh.py +0 -0
  428. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/cli/registry.py +0 -0
  429. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/cli/repo.py +0 -0
  430. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/cloud_admin/__init__.py +0 -0
  431. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/cloud_admin/models.py +0 -0
  432. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/connection_config_retriever/__init__.py +0 -0
  433. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/connection_config_retriever/audit_logging.py +0 -0
  434. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/connection_config_retriever/retrieval.py +0 -0
  435. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/connection_config_retriever/secrets_resolution.py +0 -0
  436. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/gcp_auth.py +0 -0
  437. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/mcp/__init__.py +0 -0
  438. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/mcp/_guidance.py +0 -0
  439. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/mcp/connector_analysis.py +0 -0
  440. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/mcp/connector_qa.py +0 -0
  441. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/mcp/github_repo_ops.py +0 -0
  442. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/mcp/metadata.py +0 -0
  443. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/mcp/prerelease.py +0 -0
  444. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/mcp/prompts.py +0 -0
  445. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/mcp/registry.py +0 -0
  446. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/mcp/server_info.py +0 -0
  447. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/prod_db_access/__init__.py +0 -0
  448. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/prod_db_access/py.typed +0 -0
  449. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/py.typed +0 -0
  450. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/registry/__init__.py +0 -0
  451. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/registry/models.py +0 -0
  452. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/src/airbyte_ops_mcp/registry/publish.py +0 -0
  453. {airbyte_internal_ops-0.1.11/src/airbyte_ops_mcp/live_tests → airbyte_internal_ops-0.2.1/src/airbyte_ops_mcp/regression_tests}/ci_output.py +0 -0
  454. {airbyte_internal_ops-0.1.11/src/airbyte_ops_mcp/live_tests → airbyte_internal_ops-0.2.1/src/airbyte_ops_mcp/regression_tests}/commons/__init__.py +0 -0
  455. {airbyte_internal_ops-0.1.11/src/airbyte_ops_mcp/live_tests → airbyte_internal_ops-0.2.1/src/airbyte_ops_mcp/regression_tests}/config.py +0 -0
  456. {airbyte_internal_ops-0.1.11/src/airbyte_ops_mcp/live_tests → airbyte_internal_ops-0.2.1/src/airbyte_ops_mcp/regression_tests}/connection_fetcher.py +0 -0
  457. {airbyte_internal_ops-0.1.11/src/airbyte_ops_mcp/live_tests → airbyte_internal_ops-0.2.1/src/airbyte_ops_mcp/regression_tests}/evaluation_modes.py +0 -0
  458. {airbyte_internal_ops-0.1.11/src/airbyte_ops_mcp/live_tests → airbyte_internal_ops-0.2.1/src/airbyte_ops_mcp/regression_tests}/http_metrics.py +0 -0
  459. {airbyte_internal_ops-0.1.11/src/airbyte_ops_mcp/live_tests → airbyte_internal_ops-0.2.1/src/airbyte_ops_mcp/regression_tests}/message_cache/duckdb_cache.py +0 -0
  460. {airbyte_internal_ops-0.1.11/src/airbyte_ops_mcp/live_tests → airbyte_internal_ops-0.2.1/src/airbyte_ops_mcp/regression_tests}/models.py +0 -0
  461. {airbyte_internal_ops-0.1.11/src/airbyte_ops_mcp/live_tests → airbyte_internal_ops-0.2.1/src/airbyte_ops_mcp/regression_tests}/obfuscation.py +0 -0
  462. {airbyte_internal_ops-0.1.11/src/airbyte_ops_mcp/live_tests → airbyte_internal_ops-0.2.1/src/airbyte_ops_mcp/regression_tests}/regression/comparators.py +0 -0
  463. {airbyte_internal_ops-0.1.11/src/airbyte_ops_mcp/live_tests → airbyte_internal_ops-0.2.1/src/airbyte_ops_mcp/regression_tests}/validation/catalog_validators.py +0 -0
  464. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/__init__.py +0 -0
  465. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_erd_generator/__init__.py +0 -0
  466. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_erd_generator/builder.py +0 -0
  467. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_erd_generator/test_dbml_assembler.py +0 -0
  468. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_erd_generator/test_relationships.py +0 -0
  469. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_live_tests/__init__.py +0 -0
  470. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_live_tests/backends/__init__.py +0 -0
  471. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_live_tests/backends/test_file_backend.py +0 -0
  472. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_live_tests/test_get_connection_objects_retrieval.py +0 -0
  473. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_live_tests/test_json_schema_helper.py +0 -0
  474. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_ops/conftest.py +0 -0
  475. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_ops/test_migration_files/bad-header.md +0 -0
  476. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_ops/test_migration_files/bad-title.md +0 -0
  477. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_ops/test_migration_files/extra-header.md +0 -0
  478. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_ops/test_migration_files/missing-entry.md +0 -0
  479. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_ops/test_migration_files/out-of-order.md +0 -0
  480. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_ops/test_utils.py +0 -0
  481. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_qa/__init__.py +0 -0
  482. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_qa/conftest.py +0 -0
  483. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_qa/integration_tests/__init__.py +0 -0
  484. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_qa/integration_tests/test_documentation.py +0 -0
  485. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_qa/unit_tests/__init__.py +0 -0
  486. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/__init__.py +0 -0
  487. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/data/docs/correct.md +0 -0
  488. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/data/docs/incorrect_not_all_structure.md +0 -0
  489. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/data/docs/invalid_links.md +0 -0
  490. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/test_assets.py +0 -0
  491. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/test_documentation.py +0 -0
  492. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/test_metadata.py +0 -0
  493. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/test_packaging.py +0 -0
  494. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/test_security.py +0 -0
  495. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/test_version.py +0 -0
  496. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_models.py +0 -0
  497. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/__init__.py +0 -0
  498. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/conftest.py +0 -0
  499. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_actions/test_environments.py +0 -0
  500. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_bases.py +0 -0
  501. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_build_image/__init__.py +0 -0
  502. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_build_image/dummy_build_customization.py +0 -0
  503. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_build_image/test_manifest_only_connectors.py +0 -0
  504. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_build_image/test_python_connectors.py +0 -0
  505. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_build_image/test_steps/test_common.py +0 -0
  506. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/initial_files/changelog_header_no_newline.md +0 -0
  507. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/initial_files/changelog_header_no_separator.md +0 -0
  508. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/initial_files/no_changelog_header.md +0 -0
  509. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/initial_files/valid_changelog_at_end.md +0 -0
  510. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/initial_files/valid_changelog_in_middle.md +0 -0
  511. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/changelog_header_no_newline.md +0 -0
  512. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/changelog_header_no_separator.md +0 -0
  513. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/dupicate_version_date_valid_changelog_at_end.md +0 -0
  514. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/dupicate_version_date_valid_changelog_in_middle.md +0 -0
  515. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/dupicate_versions_valid_changelog_at_end.md +0 -0
  516. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/dupicate_versions_valid_changelog_in_middle.md +0 -0
  517. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/duplicate_entry_valid_changelog_at_end.md +0 -0
  518. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/duplicate_entry_valid_changelog_in_middle.md +0 -0
  519. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/existing_entries_valid_changelog_at_end.md +0 -0
  520. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/existing_entries_valid_changelog_in_middle.md +0 -0
  521. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/no_changelog_header.md +0 -0
  522. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/single_insert_valid_changelog_at_end.md +0 -0
  523. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/single_insert_valid_changelog_in_middle.md +0 -0
  524. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_changelog.py +0 -0
  525. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_cli/__init__.py +0 -0
  526. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_cli/test_click_decorators.py +0 -0
  527. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_commands/__init__.py +0 -0
  528. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_commands/test_groups/__init__.py +0 -0
  529. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_commands/test_groups/test_connectors.py +0 -0
  530. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_dagger/__init__.py +0 -0
  531. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_dagger/test_actions/__init__.py +0 -0
  532. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_dagger/test_actions/test_python/__init__.py +0 -0
  533. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_dagger/test_actions/test_python/test_common.py +0 -0
  534. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_gradle.py +0 -0
  535. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_helpers/__init__.py +0 -0
  536. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_helpers/test_execution/__init__.py +0 -0
  537. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_helpers/test_execution/test_argument_parsing.py +0 -0
  538. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_helpers/test_execution/test_run_steps.py +0 -0
  539. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_helpers/test_pip.py +0 -0
  540. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_helpers/test_utils.py +0 -0
  541. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_models/__init__.py +0 -0
  542. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_models/test_click_pipeline_context.py +0 -0
  543. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_models/test_singleton.py +0 -0
  544. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_poetry/test_poetry_publish.py +0 -0
  545. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_publish.py +0 -0
  546. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_steps/__init__.py +0 -0
  547. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_steps/test_simple_docker_step.py +0 -0
  548. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_steps/test_version_check.py +0 -0
  549. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_tests/__init__.py +0 -0
  550. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_tests/test_common.py +0 -0
  551. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_tests/test_python_connectors.py +0 -0
  552. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/test_upgrade_java_cdk.py +0 -0
  553. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/legacy/airbyte_ci/pipelines/utils.py +0 -0
  554. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/test_airbyte_admin_mcp.py +0 -0
  555. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/test_bump_version.py +0 -0
  556. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/test_cli_registry.py +0 -0
  557. {airbyte_internal_ops-0.1.11 → airbyte_internal_ops-0.2.1}/tests/test_list_connectors.py +0 -0
@@ -6,72 +6,67 @@ permissions:
6
6
  on:
7
7
  workflow_dispatch:
8
8
  inputs:
9
- target_image:
10
- description: "Target connector image (new version) with tag (e.g., airbyte/source-github:2.0.0). Optional if connector_name is provided."
11
- required: false
9
+ connector_name:
10
+ description: "Connector name to build from source (e.g., 'source-pokeapi')."
11
+ required: true
12
12
  type: string
13
- control_image:
14
- description: "Control connector image (baseline version) with tag (e.g., airbyte/source-github:1.0.0). Optional if connection_id is provided (auto-detected)."
15
- required: false
13
+ pr:
14
+ description: "PR number from the airbyte repo to checkout and build from (e.g., 70847)."
15
+ required: true
16
16
  type: string
17
- connector_name:
18
- description: "Connector name to build target image from source (e.g., 'source-pokeapi'). If provided, builds the target image locally."
17
+ connection_id:
18
+ description: "Airbyte Cloud connection ID to fetch config/catalog from."
19
19
  required: false
20
20
  type: string
21
- airbyte_ref:
22
- description: "Git ref or PR number to checkout from airbyte repo (e.g., 'master', '70847', 'refs/pull/70847/head'). Only used when connector_name is provided."
21
+ skip_compare:
22
+ description: "If true, skip comparison and run single-version tests only. If false (default), run comparison tests (target vs control)."
23
23
  required: false
24
- type: string
25
- default: "master"
26
- command:
27
- description: "Airbyte command to run"
24
+ type: boolean
25
+ default: false
26
+ skip_read_action:
27
+ description: "If true, skip the read action (run only spec, check, discover)."
28
28
  required: false
29
- type: choice
30
- options:
31
- - spec
32
- - check
33
- - discover
34
- - read
35
- default: check
36
- connection_id:
37
- description: "Airbyte Cloud connection ID to fetch config/catalog from. If provided, control_image can be auto-detected."
29
+ type: boolean
30
+ default: false
31
+ override_test_image:
32
+ description: "Override test connector image with tag (e.g., airbyte/source-github:1.0.0). Ignored if skip_compare=false."
38
33
  required: false
39
34
  type: string
40
- state_path:
41
- description: "Path to state JSON file (optional for read)"
35
+ override_control_image:
36
+ description: "Override control connector image (baseline version) with tag. Ignored if skip_compare=true."
42
37
  required: false
43
38
  type: string
44
39
 
45
40
  workflow_call:
46
41
  inputs:
47
- target_image:
48
- description: "Target connector image (new version) with tag. Optional if connector_name is provided."
49
- required: false
42
+ connector_name:
43
+ description: "Connector name to build from source (e.g., 'source-pokeapi')."
44
+ required: true
50
45
  type: string
51
- control_image:
52
- description: "Control connector image (baseline version) with tag. Optional if connection_id is provided."
53
- required: false
46
+ pr:
47
+ description: "PR number from the airbyte repo to checkout and build from."
48
+ required: true
54
49
  type: string
55
- connector_name:
56
- description: "Connector name to build target image from source (e.g., 'source-pokeapi')."
50
+ connection_id:
51
+ description: "Airbyte Cloud connection ID to fetch config/catalog from."
57
52
  required: false
58
53
  type: string
59
- airbyte_ref:
60
- description: "Git ref or PR number to checkout from airbyte repo. Only used when connector_name is provided."
54
+ skip_compare:
55
+ description: "If true, skip comparison and run single-version tests only. If false (default), run comparison tests (target vs control)."
61
56
  required: false
62
- type: string
63
- default: "master"
64
- command:
65
- description: "Airbyte command to run (spec, check, discover, read)"
57
+ type: boolean
58
+ default: false
59
+ skip_read_action:
60
+ description: "If true, skip the read action (run only spec, check, discover)."
66
61
  required: false
67
- type: string
68
- default: check
69
- connection_id:
70
- description: "Airbyte Cloud connection ID to fetch config/catalog from. If provided, control_image can be auto-detected."
62
+ type: boolean
63
+ default: false
64
+ override_test_image:
65
+ description: "Override test connector image with tag. Ignored if skip_compare=false."
71
66
  required: false
72
67
  type: string
73
- state_path:
74
- description: "Path to state JSON file (optional for read)"
68
+ override_control_image:
69
+ description: "Override control connector image (baseline version) with tag. Ignored if skip_compare=true."
75
70
  required: false
76
71
  type: string
77
72
  outputs:
@@ -93,9 +88,32 @@ on:
93
88
  required: false
94
89
 
95
90
  jobs:
91
+ # Determine which commands to run based on inputs
92
+ prepare:
93
+ name: Prepare Test Matrix
94
+ runs-on: ubuntu-latest
95
+ outputs:
96
+ commands: ${{ steps.set-commands.outputs.commands }}
97
+ steps:
98
+ - name: Determine commands to run
99
+ id: set-commands
100
+ run: |
101
+ SKIP_READ="${{ inputs.skip_read_action }}"
102
+
103
+ if [ "$SKIP_READ" = "true" ]; then
104
+ echo 'commands=["spec", "check", "discover"]' >> "$GITHUB_OUTPUT"
105
+ else
106
+ echo 'commands=["spec", "check", "discover", "read"]' >> "$GITHUB_OUTPUT"
107
+ fi
108
+
96
109
  regression-test:
97
- name: Run Regression Test
110
+ name: Run Regression Test (${{ matrix.command }})
111
+ needs: prepare
98
112
  runs-on: ubuntu-latest
113
+ strategy:
114
+ fail-fast: false
115
+ matrix:
116
+ command: ${{ fromJson(needs.prepare.outputs.commands) }}
99
117
  outputs:
100
118
  success: ${{ steps.regression-test.outputs.success }}
101
119
  summary_url: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
@@ -118,21 +136,12 @@ jobs:
118
136
  run: uv sync --group dev
119
137
 
120
138
  - name: Resolve Airbyte ref
121
- if: ${{ inputs.connector_name != '' }}
122
139
  id: resolve-airbyte-ref
123
140
  run: |
124
- REF="${{ inputs.airbyte_ref }}"
125
- # If the input is all digits, treat it as a PR number
126
- if [[ "$REF" =~ ^[0-9]+$ ]]; then
127
- echo "resolved_ref=refs/pull/${REF}/head" >> "$GITHUB_OUTPUT"
128
- echo "Resolved PR number $REF to refs/pull/${REF}/head"
129
- else
130
- echo "resolved_ref=$REF" >> "$GITHUB_OUTPUT"
131
- echo "Using ref as-is: $REF"
132
- fi
141
+ echo "resolved_ref=refs/pull/${{ inputs.pr }}/head" >> "$GITHUB_OUTPUT"
142
+ echo "Using PR ${{ inputs.pr }} -> refs/pull/${{ inputs.pr }}/head"
133
143
 
134
144
  - name: Checkout Airbyte repo
135
- if: ${{ inputs.connector_name != '' }}
136
145
  uses: actions/checkout@v6
137
146
  with:
138
147
  repository: airbytehq/airbyte
@@ -146,28 +155,33 @@ jobs:
146
155
  AIRBYTE_CLOUD_CLIENT_ID: ${{ secrets.AIRBYTE_CLOUD_CLIENT_ID }}
147
156
  AIRBYTE_CLOUD_CLIENT_SECRET: ${{ secrets.AIRBYTE_CLOUD_CLIENT_SECRET }}
148
157
  GCP_GSM_CREDENTIALS: ${{ secrets.GCP_GSM_CREDENTIALS }}
158
+ GCP_PROD_DB_ACCESS_CREDENTIALS: ${{ secrets.GCP_GSM_CREDENTIALS_FOR_TESTING_TOOL }}
159
+ USE_CONNECTION_SECRET_RETRIEVER: "true"
149
160
  run: |
150
- ARGS=(--command "${{ inputs.command }}")
151
-
152
- if [ -n "${{ inputs.target_image }}" ]; then
153
- ARGS+=(--target-image "${{ inputs.target_image }}")
154
- fi
155
-
156
- if [ -n "${{ inputs.control_image }}" ]; then
157
- ARGS+=(--control-image "${{ inputs.control_image }}")
158
- fi
161
+ SKIP_COMPARE="${{ inputs.skip_compare }}"
162
+ ARGS=(--command "${{ matrix.command }}")
159
163
 
160
- if [ -n "${{ inputs.connector_name }}" ]; then
161
- ARGS+=(--connector-name "${{ inputs.connector_name }}")
162
- ARGS+=(--repo-root "${{ github.workspace }}/airbyte")
163
- fi
164
+ # Always add connector_name and repo-root (both are required)
165
+ ARGS+=(--connector-name "${{ inputs.connector_name }}")
166
+ ARGS+=(--repo-root "${{ github.workspace }}/airbyte")
164
167
 
168
+ # Add connection_id if provided
165
169
  if [ -n "${{ inputs.connection_id }}" ]; then
166
170
  ARGS+=(--connection-id "${{ inputs.connection_id }}")
167
171
  fi
168
172
 
169
- if [ -n "${{ inputs.state_path }}" ]; then
170
- ARGS+=(--state-path "${{ inputs.state_path }}")
173
+ if [ "$SKIP_COMPARE" = "true" ]; then
174
+ # Single-version mode: use --skip-compare flag
175
+ ARGS+=(--skip-compare)
176
+
177
+ if [ -n "${{ inputs.override_test_image }}" ]; then
178
+ ARGS+=(--connector-image "${{ inputs.override_test_image }}")
179
+ fi
180
+ else
181
+ # Comparison mode (default): run target vs control
182
+ if [ -n "${{ inputs.override_control_image }}" ]; then
183
+ ARGS+=(--control-image "${{ inputs.override_control_image }}")
184
+ fi
171
185
  fi
172
186
 
173
187
  uv run airbyte-ops cloud connector regression-test "${ARGS[@]}"
@@ -180,14 +194,26 @@ jobs:
180
194
  script: |
181
195
  const fs = require('fs');
182
196
  const reportPath = '/tmp/regression_test_artifacts/report.md';
183
-
197
+
184
198
  let reportContent = 'Report not generated';
185
199
  if (fs.existsSync(reportPath)) {
186
200
  reportContent = fs.readFileSync(reportPath, 'utf8');
187
201
  }
188
-
202
+
189
203
  const conclusion = '${{ steps.regression-test.outcome }}' === 'success' ? 'success' : 'failure';
190
-
204
+
205
+ const skipCompare = '${{ inputs.skip_compare }}' === 'true';
206
+ const connectorName = '${{ inputs.connector_name }}';
207
+ const prNumber = '${{ inputs.pr }}';
208
+ let summary;
209
+ if (skipCompare) {
210
+ const image = '${{ inputs.override_test_image }}' || `(built from ${connectorName} PR #${prNumber})`;
211
+ summary = `Single-version regression test: \`${image}\` using \`${{ matrix.command }}\` command.`;
212
+ } else {
213
+ const controlImage = '${{ inputs.override_control_image }}' || '(auto-detected)';
214
+ summary = `Comparison regression test: \`${connectorName}\` (PR #${prNumber}) vs \`${controlImage}\` using \`${{ matrix.command }}\` command.`;
215
+ }
216
+
191
217
  const check = await github.rest.checks.create({
192
218
  owner: context.repo.owner,
193
219
  repo: context.repo.repo,
@@ -197,11 +223,11 @@ jobs:
197
223
  conclusion: conclusion,
198
224
  output: {
199
225
  title: 'Regression Test Report',
200
- summary: `Regression test comparing \`${{ inputs.target_image }}\` vs \`${{ inputs.control_image }}\` using \`${{ inputs.command }}\` command.`,
226
+ summary: summary,
201
227
  text: reportContent
202
228
  }
203
229
  });
204
-
230
+
205
231
  core.setOutput('report_url', check.data.html_url);
206
232
 
207
233
  - name: Add Report Link to Summary
@@ -220,6 +246,6 @@ jobs:
220
246
  if: always()
221
247
  uses: actions/upload-artifact@v5
222
248
  with:
223
- name: regression-test-artifacts-${{ github.run_id }}
249
+ name: regression-test-artifacts-${{ matrix.command }}-${{ github.run_id }}
224
250
  path: /tmp/regression_test_artifacts/
225
251
  retention-days: 7
@@ -1,6 +1,6 @@
1
- # CI smoke test for live_tests code changes
2
- # Runs a lightweight regression test to validate live_tests code works correctly
3
- name: Live Tests CI
1
+ # CI smoke test for regression tests code changes
2
+ # Runs a lightweight regression test to validate regression tests code works correctly
3
+ name: Regression Tests CI
4
4
 
5
5
  permissions:
6
6
  contents: read
@@ -9,8 +9,9 @@ permissions:
9
9
  on:
10
10
  pull_request:
11
11
  paths:
12
- - 'src/airbyte_ops_mcp/live_tests/**'
13
- - '.github/workflows/live-tests-ci.yml'
12
+ - 'src/airbyte_ops_mcp/regression_tests/**'
13
+ - 'src/airbyte_ops_mcp/mcp/regression_tests.py'
14
+ - '.github/workflows/regression-tests-ci.yml'
14
15
  - '.github/workflows/connector-regression-test.yml'
15
16
 
16
17
  # Allow manual triggering for testing
@@ -22,7 +23,7 @@ concurrency:
22
23
 
23
24
  jobs:
24
25
  smoke-test:
25
- name: Live Tests Smoke Test
26
+ name: Regression Tests Smoke Test
26
27
  uses: ./.github/workflows/connector-regression-test.yml
27
28
  with:
28
29
  # Use source-pokeapi as a stable, public connector for smoke testing
@@ -0,0 +1,301 @@
1
+ name: Sentry Apply
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - main
7
+ paths:
8
+ - 'infra/sentry/**'
9
+ - '.github/workflows/sentry-apply-command.yml'
10
+ workflow_dispatch:
11
+ inputs:
12
+ pr:
13
+ description: 'PR Number (for slash command)'
14
+ type: string
15
+ required: false
16
+ comment-id:
17
+ description: 'Comment ID (for slash command)'
18
+ type: string
19
+ required: false
20
+
21
+ permissions:
22
+ contents: read
23
+ actions: read
24
+ pull-requests: write
25
+
26
+ env:
27
+ STATE_ARTIFACT_NAME: pulumi-sentry-state
28
+ WORKING_DIRECTORY: infra/sentry
29
+ # Directory where Pulumi stores stack state (for artifact-based state storage)
30
+ # Note: This is the backend storage location, NOT PULUMI_HOME (which is for CLI config)
31
+ PULUMI_BACKEND_DIR: ${{ github.workspace }}/infra/sentry/.pulumi-state
32
+
33
+ # Ensure only one Sentry apply runs at a time to prevent state conflicts
34
+ concurrency:
35
+ group: sentry-prod-deploy
36
+ cancel-in-progress: false # Queue instead of cancel to avoid losing deployments
37
+
38
+ jobs:
39
+ sentry-apply:
40
+ name: Sentry Apply
41
+ runs-on: ubuntu-latest
42
+ # Use environment for applies to enable approval gates
43
+ environment:
44
+ name: Sentry (Prod)
45
+ url: https://airbytehq.sentry.io/settings/projects/
46
+ defaults:
47
+ run:
48
+ working-directory: ${{ env.WORKING_DIRECTORY }}
49
+ steps:
50
+ - name: Resolve trigger context
51
+ id: context
52
+ run: |
53
+ # Determine trigger type and set appropriate variables
54
+ if [ "${{ github.event_name }}" = "push" ]; then
55
+ echo "trigger=push-to-main" >> $GITHUB_OUTPUT
56
+ echo "ref=${{ github.ref }}" >> $GITHUB_OUTPUT
57
+ echo "sha=${{ github.sha }}" >> $GITHUB_OUTPUT
58
+ echo "has_pr=false" >> $GITHUB_OUTPUT
59
+ echo "Triggered by push to main branch"
60
+ else
61
+ # workflow_dispatch - could be slash command or manual
62
+ if [ -n "${{ github.event.inputs.pr }}" ]; then
63
+ echo "trigger=slash-command" >> $GITHUB_OUTPUT
64
+ echo "has_pr=true" >> $GITHUB_OUTPUT
65
+ echo "Triggered by slash command on PR #${{ github.event.inputs.pr }}"
66
+ else
67
+ echo "trigger=manual" >> $GITHUB_OUTPUT
68
+ echo "ref=${{ github.ref }}" >> $GITHUB_OUTPUT
69
+ echo "sha=${{ github.sha }}" >> $GITHUB_OUTPUT
70
+ echo "has_pr=false" >> $GITHUB_OUTPUT
71
+ echo "Triggered by manual workflow dispatch"
72
+ fi
73
+ fi
74
+ working-directory: .
75
+
76
+ - name: Authenticate as GitHub App (if available)
77
+ uses: actions/create-github-app-token@v2
78
+ id: get-app-token
79
+ continue-on-error: true
80
+ with:
81
+ app-id: ${{ secrets.OCTAVIA_BOT_APP_ID }}
82
+ private-key: ${{ secrets.OCTAVIA_BOT_PRIVATE_KEY }}
83
+
84
+ - name: Get PR info (slash command only)
85
+ if: steps.context.outputs.has_pr == 'true'
86
+ id: pr-info
87
+ uses: actions/github-script@v7
88
+ with:
89
+ script: |
90
+ const { data: pr } = await github.rest.pulls.get({
91
+ owner: context.repo.owner,
92
+ repo: context.repo.repo,
93
+ pull_number: ${{ github.event.inputs.pr || 0 }}
94
+ });
95
+
96
+ // Security: Only allow on non-forked PRs
97
+ const isFork = pr.head.repo.full_name !== pr.base.repo.full_name;
98
+ if (isFork) {
99
+ core.setFailed('Security: /sentry-apply is not allowed on PRs from forks');
100
+ return;
101
+ }
102
+
103
+ core.setOutput('ref', pr.head.ref);
104
+ core.setOutput('sha', pr.head.sha);
105
+ core.info(`PR #${{ github.event.inputs.pr }} from branch: ${pr.head.ref}`);
106
+
107
+ - name: Checkout code
108
+ uses: actions/checkout@v4
109
+ with:
110
+ ref: ${{ steps.pr-info.outputs.ref || github.ref }}
111
+ token: ${{ steps.get-app-token.outputs.token || secrets.GITHUB_TOKEN }}
112
+
113
+ - name: Append comment with job run link
114
+ if: github.event.inputs.comment-id
115
+ uses: peter-evans/create-or-update-comment@v5
116
+ with:
117
+ comment-id: ${{ github.event.inputs.comment-id }}
118
+ body: |
119
+ > **Sentry Apply Job Info**
120
+ >
121
+ > Running `pulumi up` to apply Sentry IaC changes from this PR.
122
+ > This will update the Sentry configuration and save state.
123
+
124
+ > Job started... [Check job output.](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }})
125
+
126
+ - name: Set up Python
127
+ uses: actions/setup-python@v5
128
+ with:
129
+ python-version: '3.11'
130
+
131
+ - name: Install Pulumi CLI
132
+ uses: pulumi/setup-pulumi@v2
133
+
134
+ - name: Install base Pulumi dependency
135
+ run: |
136
+ pip install "pulumi>=3.147.0,<4.0.0"
137
+
138
+ - name: Generate Sentry provider SDK
139
+ run: |
140
+ pulumi package add terraform-provider jianyuan/sentry 0.14.5
141
+
142
+ - name: Install generated SDK
143
+ run: |
144
+ pip install sdks/sentry
145
+
146
+ - name: Download state artifact
147
+ id: download-state
148
+ continue-on-error: true
149
+ uses: dawidd6/action-download-artifact@v6
150
+ with:
151
+ name: ${{ env.STATE_ARTIFACT_NAME }}
152
+ path: ${{ env.PULUMI_BACKEND_DIR }}
153
+ # Download from this workflow's previous successful runs on main
154
+ workflow: sentry-apply-command.yml
155
+ branch: main
156
+ workflow_conclusion: success
157
+ search_artifacts: true
158
+ if_no_artifact_found: warn
159
+
160
+ - name: Initialize local backend
161
+ env:
162
+ PULUMI_CONFIG_PASSPHRASE: ${{ secrets.PULUMI_CONFIG_PASSPHRASE }}
163
+ run: |
164
+ # Ensure backend directory exists
165
+ mkdir -p "$PULUMI_BACKEND_DIR"
166
+
167
+ # Login to local filesystem backend at specific directory
168
+ # Note: file:// URL tells Pulumi WHERE to store state (not --local which uses ~/.pulumi)
169
+ pulumi login "file://$PULUMI_BACKEND_DIR"
170
+
171
+ # Verify backend location
172
+ echo "Backend URL: $(pulumi whoami -v 2>/dev/null | grep -i backend || echo 'file://$PULUMI_BACKEND_DIR')"
173
+
174
+ if [ -d "$PULUMI_BACKEND_DIR/.pulumi/stacks" ]; then
175
+ echo "State restored from artifact"
176
+ ls -la "$PULUMI_BACKEND_DIR/.pulumi/stacks/" || true
177
+ else
178
+ echo "No existing state found, starting fresh"
179
+ fi
180
+
181
+ - name: Select stack
182
+ env:
183
+ PULUMI_CONFIG_PASSPHRASE: ${{ secrets.PULUMI_CONFIG_PASSPHRASE }}
184
+ run: |
185
+ pulumi stack select prod --create
186
+
187
+ - name: Pulumi Preview (Summary)
188
+ id: preview
189
+ shell: bash
190
+ env:
191
+ PULUMI_CONFIG_PASSPHRASE: ${{ secrets.PULUMI_CONFIG_PASSPHRASE }}
192
+ SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN_READWRITE }}
193
+ run: |
194
+ set -o pipefail
195
+
196
+ # Run preview before apply for audit trail (summary view)
197
+ echo "=== Pre-apply Preview (Summary) ==="
198
+ set +e
199
+ pulumi preview --stack prod 2>&1 | tee /tmp/pulumi-preview.txt
200
+ pulumi_exit=${PIPESTATUS[0]}
201
+ set -e
202
+
203
+ echo "preview_output<<EOF" >> "$GITHUB_OUTPUT"
204
+ cat /tmp/pulumi-preview.txt >> "$GITHUB_OUTPUT"
205
+ echo "EOF" >> "$GITHUB_OUTPUT"
206
+
207
+ exit "$pulumi_exit"
208
+
209
+ - name: Pulumi Preview (Detailed Diff)
210
+ id: preview_diff
211
+ shell: bash
212
+ env:
213
+ PULUMI_CONFIG_PASSPHRASE: ${{ secrets.PULUMI_CONFIG_PASSPHRASE }}
214
+ SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN_READWRITE }}
215
+ run: |
216
+ set -o pipefail
217
+
218
+ # Run preview with --diff for detailed property-level changes
219
+ echo "=== Pre-apply Preview (Detailed Diff) ==="
220
+ set +e
221
+ pulumi preview --stack prod --diff 2>&1 | tee /tmp/pulumi-preview-diff.txt
222
+ pulumi_exit=${PIPESTATUS[0]}
223
+ set -e
224
+
225
+ echo "preview_diff_output<<EOF" >> "$GITHUB_OUTPUT"
226
+ cat /tmp/pulumi-preview-diff.txt >> "$GITHUB_OUTPUT"
227
+ echo "EOF" >> "$GITHUB_OUTPUT"
228
+
229
+ exit "$pulumi_exit"
230
+
231
+ - name: Pulumi Up (Apply)
232
+ id: pulumi-up
233
+ shell: bash
234
+ env:
235
+ PULUMI_CONFIG_PASSPHRASE: ${{ secrets.PULUMI_CONFIG_PASSPHRASE }}
236
+ SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN_READWRITE }}
237
+ run: |
238
+ set -o pipefail
239
+
240
+ set +e
241
+ pulumi up --stack prod --yes 2>&1 | tee /tmp/pulumi-up.txt
242
+ pulumi_exit=${PIPESTATUS[0]}
243
+ set -e
244
+
245
+ echo "output<<EOF" >> "$GITHUB_OUTPUT"
246
+ cat /tmp/pulumi-up.txt >> "$GITHUB_OUTPUT"
247
+ echo "EOF" >> "$GITHUB_OUTPUT"
248
+
249
+ exit "$pulumi_exit"
250
+
251
+ - name: Upload state artifact
252
+ if: always()
253
+ uses: actions/upload-artifact@v4
254
+ with:
255
+ name: ${{ env.STATE_ARTIFACT_NAME }}
256
+ path: ${{ env.PULUMI_BACKEND_DIR }}
257
+ retention-days: 90
258
+ overwrite: true
259
+ include-hidden-files: true # Required to include .pulumi directory
260
+
261
+ - name: Append success comment
262
+ if: success() && github.event.inputs.comment-id
263
+ uses: peter-evans/create-or-update-comment@v5
264
+ with:
265
+ comment-id: ${{ github.event.inputs.comment-id }}
266
+ reactions: hooray
267
+ body: |
268
+ > Pulumi up completed successfully.
269
+
270
+ <details><summary>Preview Summary (before apply)</summary>
271
+
272
+ ```
273
+ ${{ steps.preview.outputs.preview_output }}
274
+ ```
275
+
276
+ </details>
277
+
278
+ <details><summary>Preview Detailed Diff (before apply)</summary>
279
+
280
+ ```diff
281
+ ${{ steps.preview_diff.outputs.preview_diff_output }}
282
+ ```
283
+
284
+ </details>
285
+
286
+ <details><summary>Apply Output</summary>
287
+
288
+ ```
289
+ ${{ steps.pulumi-up.outputs.output }}
290
+ ```
291
+
292
+ </details>
293
+
294
+ - name: Append failure comment
295
+ if: failure() && github.event.inputs.comment-id
296
+ uses: peter-evans/create-or-update-comment@v5
297
+ with:
298
+ comment-id: ${{ github.event.inputs.comment-id }}
299
+ reactions: confused
300
+ body: |
301
+ > Pulumi up failed. Check the [job output](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}) for details.