airbyte-internal-ops 0.4.2__tar.gz → 0.5.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/.github/workflows/connector-regression-test.yml +115 -28
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/.github/workflows/sentry-apply-command.yml +1 -1
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/.github/workflows/sentry-preview.yml +1 -1
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/PKG-INFO +2 -1
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/conftest.py +1 -1
- airbyte_internal_ops-0.5.1/infra/sentry/Pulumi.prod.yaml +9 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/infra/sentry/Pulumi.yaml +4 -3
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/infra/sentry/README.md +2 -2
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/infra/sentry/__main__.py +296 -106
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/pyproject.toml +6 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/ruff.toml +1 -3
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/cli/cloud.py +31 -2
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/cloud_admin/api_client.py +506 -33
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/cloud_admin/models.py +56 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/constants.py +58 -0
- {airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service → airbyte_internal_ops-0.5.1/src/airbyte_ops_mcp}/docker_hub.py +16 -10
- airbyte_internal_ops-0.5.1/src/airbyte_ops_mcp/mcp/cloud_connector_versions.py +924 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/mcp/prerelease.py +5 -44
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/mcp/prod_db_queries.py +128 -4
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/mcp/regression_tests.py +10 -5
- {airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/validators → airbyte_internal_ops-0.5.1/src/airbyte_ops_mcp}/metadata_validator.py +18 -12
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/prod_db_access/queries.py +51 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/prod_db_access/sql.py +76 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/regression_tests/ci_output.py +8 -4
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/regression_tests/connection_fetcher.py +16 -5
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/regression_tests/http_metrics.py +21 -2
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/regression_tests/models.py +7 -1
- airbyte_internal_ops-0.5.1/src/airbyte_ops_mcp/telemetry.py +162 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/uv.lock +1685 -1660
- airbyte_internal_ops-0.4.2/infra/sentry/Pulumi.prod.yaml +0 -90
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/.gitignore +0 -1
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/README.md +0 -420
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/__init__.py +0 -2
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/backends/__init__.py +0 -8
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/backends/base_backend.py +0 -16
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/backends/duckdb_backend.py +0 -87
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/backends/file_backend.py +0 -165
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/connection_objects_retrieval.py +0 -377
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/connector_runner.py +0 -247
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/errors.py +0 -7
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/evaluation_modes.py +0 -25
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/hacks.py +0 -23
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/json_schema_helper.py +0 -384
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/mitm_addons.py +0 -37
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/models.py +0 -595
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/proxy.py +0 -207
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/secret_access.py +0 -47
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/segment_tracking.py +0 -45
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/utils.py +0 -214
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/conftest.py.disabled +0 -751
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/consts.py +0 -4
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/poetry.lock +0 -4480
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/pytest.ini +0 -9
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/regression_tests/__init__.py +0 -1
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/regression_tests/test_check.py +0 -61
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/regression_tests/test_discover.py +0 -117
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/regression_tests/test_read.py +0 -627
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/regression_tests/test_spec.py +0 -43
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/report.py +0 -542
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/stash_keys.py +0 -38
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/templates/private_details.html.j2 +0 -305
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/templates/report.html.j2 +0 -515
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/utils.py +0 -187
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/validation_tests/test_check.py +0 -61
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/validation_tests/test_discover.py +0 -217
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/validation_tests/test_read.py +0 -177
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/validation_tests/test_spec.py +0 -631
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/README.md +0 -91
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/bin/bundle-schemas.js +0 -48
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/bin/generate-metadata-models.sh +0 -36
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ActorDefinitionResourceRequirements.py +0 -54
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/AirbyteInternal.py +0 -22
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/AllowedHosts.py +0 -18
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorBreakingChanges.py +0 -65
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorBuildOptions.py +0 -15
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorIPCOptions.py +0 -25
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorMetadataDefinitionV0.json +0 -897
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorMetadataDefinitionV0.py +0 -478
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorMetrics.py +0 -24
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorPackageInfo.py +0 -12
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorRegistryDestinationDefinition.py +0 -407
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorRegistryReleases.py +0 -406
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorRegistrySourceDefinition.py +0 -407
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorRegistryV0.py +0 -413
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorReleases.py +0 -98
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorTestSuiteOptions.py +0 -58
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/GeneratedFields.py +0 -62
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/GitInfo.py +0 -31
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/JobType.py +0 -23
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/NormalizationDestinationDefinitionConfig.py +0 -24
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/RegistryOverrides.py +0 -111
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ReleaseStage.py +0 -15
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/RemoteRegistries.py +0 -23
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ResourceRequirements.py +0 -18
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/RolloutConfiguration.py +0 -29
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/Secret.py +0 -34
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/SecretStore.py +0 -22
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/SourceFileInfo.py +0 -16
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/SuggestedStreams.py +0 -18
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/SupportLevel.py +0 -15
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/TestConnections.py +0 -14
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/__init__.py +0 -31
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/airbyte-connector-metadata-schema.json +0 -0
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ActorDefinitionResourceRequirements.yaml +0 -30
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/AirbyteInternal.yaml +0 -32
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/AllowedHosts.yaml +0 -13
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorBreakingChanges.yaml +0 -65
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorBuildOptions.yaml +0 -10
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorIPCOptions.yaml +0 -29
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorMetadataDefinitionV0.yaml +0 -172
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorMetrics.yaml +0 -30
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorPackageInfo.yaml +0 -9
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorRegistryDestinationDefinition.yaml +0 -90
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorRegistryReleases.yaml +0 -35
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorRegistrySourceDefinition.yaml +0 -92
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorRegistryV0.yaml +0 -18
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorReleases.yaml +0 -16
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorTestSuiteOptions.yaml +0 -28
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/GeneratedFields.yaml +0 -16
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/GitInfo.yaml +0 -21
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/JobType.yaml +0 -14
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/NormalizationDestinationDefinitionConfig.yaml +0 -21
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/RegistryOverrides.yaml +0 -38
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ReleaseStage.yaml +0 -11
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/RemoteRegistries.yaml +0 -25
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ResourceRequirements.yaml +0 -16
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/RolloutConfiguration.yaml +0 -29
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/Secret.yaml +0 -19
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/SecretStore.yaml +0 -16
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/SourceFileInfo.yaml +0 -17
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/SuggestedStreams.yaml +0 -13
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/SupportLevel.yaml +0 -10
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/TestConnections.yaml +0 -17
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/package-lock.json +0 -62
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/package.json +0 -12
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/transform.py +0 -71
- airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/mcp/cloud_connector_versions.py +0 -443
- airbyte_internal_ops-0.4.2/tests/legacy/airbyte_ci/connector_erd_generator/__init__.py +0 -1
- airbyte_internal_ops-0.4.2/tests/legacy/airbyte_ci/connector_live_tests/__init__.py +0 -1
- airbyte_internal_ops-0.4.2/tests/legacy/airbyte_ci/connector_live_tests/backends/test_file_backend.py +0 -74
- airbyte_internal_ops-0.4.2/tests/legacy/airbyte_ci/connector_live_tests/test_get_connection_objects_retrieval.py +0 -771
- airbyte_internal_ops-0.4.2/tests/legacy/airbyte_ci/connector_live_tests/test_json_schema_helper.py +0 -639
- airbyte_internal_ops-0.4.2/tests/legacy/airbyte_ci/connector_qa/unit_tests/__init__.py +0 -0
- airbyte_internal_ops-0.4.2/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/__init__.py +0 -0
- airbyte_internal_ops-0.4.2/tests/legacy/airbyte_ci/pipelines/test_helpers/test_execution/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/.env.template +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/.github/copilot-instructions.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/.github/dependabot.yml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/.github/pr-welcome-message.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/.github/release-drafter.yml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/.github/workflows/autofix-command.yml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/.github/workflows/format-check.yml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/.github/workflows/lint-check.yml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/.github/workflows/lock-command.yml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/.github/workflows/pdoc_preview.yml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/.github/workflows/pdoc_publish.yml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/.github/workflows/poe-command.yml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/.github/workflows/pr-welcome.yml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/.github/workflows/publish.yml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/.github/workflows/pytest-fast.yml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/.github/workflows/pytest-matrix.yml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/.github/workflows/regression-tests-ci.yml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/.github/workflows/release-drafter.yml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/.github/workflows/semantic-pr-check.yml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/.github/workflows/slash-command-dispatch.yml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/.github/workflows/tk-todo-check.yml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/.gitignore +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/.mcp.json.template +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/CONTRIBUTING.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/README.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/bin/test_mcp_tool.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/bin/test_mcp_tool_http.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/docs/.gitignore +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/docs/generate.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/docs/templates/custom.css +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/docs/templates/theme.css +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/infra/sentry/.gitignore +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/infra/sentry/CONTRIBUTING.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/infra/sentry/requirements.txt +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/poe_tasks.toml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/pyrefly.toml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/pytest.ini +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_annotations.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/README.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_erd_generator/README.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_erd_generator/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_erd_generator/dbml_assembler.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_erd_generator/erd_service.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_erd_generator/relationships.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/README.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/cli.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/hacks.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/insights.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/models.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/pylint.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/pylint_plugins/cdk_deprecation_checkers.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/result_backends.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/utils.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_ops/README.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_ops/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_ops/utils.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/README.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/connector/hooks.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/connector/normalization.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/python/common.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/python/pipx.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/python/poetry.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/remote_storage.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/secrets.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/system/common.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/system/docker.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/containers/git.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/containers/internal_tools.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/containers/java.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/containers/python.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/cache_keys.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/cli.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/connectors/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/connectors/cdk_helpers.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/connectors/command.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/connectors/dagger_fs.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/connectors/format.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/connectors/modifed.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/connectors/yaml.py +0 -0
- {airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/templates → airbyte_internal_ops-0.5.1/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/execution}/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/execution/argument_parsing.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/execution/run_steps.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/gcs.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/git.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/github.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/pip.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/sentry_utils.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/slack.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/utils.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/README.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/build_image/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/build_image/commands.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/build_image/pipeline.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/build_image/steps/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/build_image/steps/build_customization.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/build_image/steps/common.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/build_image/steps/java_connectors.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/build_image/steps/manifest_only_connectors.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/build_image/steps/normalization.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/build_image/steps/python_connectors.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/commands.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/consts.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/context.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/generate_erd/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/generate_erd/commands.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/generate_erd/pipeline.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/list/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/list/commands.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/migrate_to_inline_schemas/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/migrate_to_inline_schemas/commands.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/migrate_to_inline_schemas/pipeline.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/pipeline.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/pull_request/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/pull_request/commands.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/pull_request/pipeline.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/reports.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/test/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/test/commands.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/test/context.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/test/pipeline.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/test/steps/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/test/steps/common.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/test/steps/java_connectors.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/test/steps/manifest_only_connectors.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/test/steps/python_connectors.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/test/steps/templates/test_report.html.j2 +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/up_to_date/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/up_to_date/commands.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/up_to_date/pipeline.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/up_to_date/steps.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/up_to_date/templates/up_to_date_pr_body.md.j2 +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/upgrade_cdk/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/upgrade_cdk/commands.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/upgrade_cdk/pipeline.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/metadata/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/metadata/commands.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/metadata/pipeline.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/poetry/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/poetry/commands.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/steps/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/steps/base_image.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/steps/docker.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/steps/gradle.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/steps/no_op.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/steps/poetry.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/steps/pull_request.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/test/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/test/commands.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/test/models.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/test/pipeline.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/update/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/update/commands.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/airbyte_ci.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/auto_update.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/click_decorators.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/confirm_prompt.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/dagger_pipeline_command.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/dagger_run.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/ensure_repo_root.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/lazy_group.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/secrets.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/telemetry.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/consts.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/hacks.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/artifacts.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/ci_requirements.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/contexts/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/contexts/click_pipeline_context.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/contexts/pipeline_context.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/reports.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/secrets.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/singleton.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/steps.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/README.md +0 -0
- {airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/validation_tests → airbyte_internal_ops-0.5.1/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa}/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/assets.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/documentation/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/documentation/documentation.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/documentation/helpers.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/documentation/models.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/documentation/templates/documentation_headers_check_description.md.j2 +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/documentation/templates/section_content_description.md.j2 +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/documentation/templates/template.md.j2 +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/metadata.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/packaging.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/security.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/version.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/cli.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/consts.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/models.py +0 -0
- {airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/execution → airbyte_internal_ops-0.5.1/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/templates}/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/templates/qa_checks.md.j2 +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/utils.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/README.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/commands.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/constants.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/docs/external_documentation_urls.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/gcs_upload.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/helpers/files.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/helpers/gcs.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/helpers/object_helpers.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/helpers/slack.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/.env.template +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/README.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/dagster_cloud.yaml +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/assets/connector_metrics.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/assets/github.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/assets/metadata.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/assets/registry.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/assets/registry_entry.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/assets/registry_report.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/assets/slack.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/assets/specs_secrets_mask.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/config.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/fetcher/connector_cdk_version.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/hacks.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/jobs/registry.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/logging/publish_connector_lifecycle.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/logging/sentry.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/models/ci_report.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/models/metadata.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/ops/slack.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/resources/file_managers/local_file_manager.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/resources/gcp.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/resources/github.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/resources/local.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/sensors/gcs.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/sensors/github.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/sensors/registry.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/templates/base.html +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/templates/connector_registry_locations.html +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/templates/render.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/utils/blob_helpers.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/utils/dagster_helpers.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/utils/object_helpers.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/poetry.lock +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/conftest.py.disabled +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/fixtures/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/fixtures/cloud_registry.json +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/fixtures/oss_registry.json +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/test_connector_metrics.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/test_dagster_helpers.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/test_debug.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/test_partition_jobs.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/test_registry.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/test_specs_secrets_mask.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/registry.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/registry_entry.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/registry_report.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/sentry.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/spec_cache.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/specs_secrets_mask.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/stale_metadata_report.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/templates/base.html +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/templates/connector_registry_locations.html +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/templates/render.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/airbyte_repo/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/airbyte_repo/bump_version.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/airbyte_repo/list_connectors.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/airbyte_repo/utils.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/cli/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/cli/_base.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/cli/_shared.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/cli/app.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/cli/gh.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/cli/registry.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/cli/repo.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/cloud_admin/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/cloud_admin/auth.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/cloud_admin/connection_config.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/connection_config_retriever/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/connection_config_retriever/audit_logging.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/connection_config_retriever/retrieval.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/connection_config_retriever/secrets_resolution.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/gcp_auth.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/gcp_logs/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/gcp_logs/error_lookup.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/github_actions.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/github_api.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/mcp/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/mcp/_guidance.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/mcp/_http_headers.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/mcp/_mcp_utils.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/mcp/connector_analysis.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/mcp/connector_qa.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/mcp/gcp_logs.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/mcp/github_actions.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/mcp/github_repo_ops.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/mcp/metadata.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/mcp/prompts.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/mcp/registry.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/mcp/server.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/mcp/server_info.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/prod_db_access/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/prod_db_access/db_engine.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/prod_db_access/py.typed +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/py.typed +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/registry/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/registry/models.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/registry/publish.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/regression_tests/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/regression_tests/cdk_secrets.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/regression_tests/commons/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/regression_tests/config.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/regression_tests/connection_secret_retriever.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/regression_tests/connector_runner.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/regression_tests/evaluation_modes.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/regression_tests/message_cache/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/regression_tests/message_cache/duckdb_cache.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/regression_tests/obfuscation.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/regression_tests/regression/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/regression_tests/regression/comparators.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/regression_tests/schema_generation.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/regression_tests/validation/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/regression_tests/validation/catalog_validators.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/src/airbyte_ops_mcp/regression_tests/validation/record_validators.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons → airbyte_internal_ops-0.5.1/tests/legacy/airbyte_ci/connector_erd_generator}/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/connector_erd_generator/builder.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/connector_erd_generator/test_dbml_assembler.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/connector_erd_generator/test_relationships.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/connector_ops/conftest.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/connector_ops/test_migration_files/bad-header.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/connector_ops/test_migration_files/bad-title.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/connector_ops/test_migration_files/extra-header.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/connector_ops/test_migration_files/missing-entry.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/connector_ops/test_migration_files/out-of-order.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/connector_ops/test_utils.py +0 -0
- {airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy → airbyte_internal_ops-0.5.1/tests/legacy}/airbyte_ci/connector_qa/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/connector_qa/conftest.py +0 -0
- {airbyte_internal_ops-0.4.2/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/templates → airbyte_internal_ops-0.5.1/tests/legacy/airbyte_ci/connector_qa/integration_tests}/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/connector_qa/integration_tests/test_documentation.py +0 -0
- {airbyte_internal_ops-0.4.2/tests/legacy/airbyte_ci/connector_live_tests/backends → airbyte_internal_ops-0.5.1/tests/legacy/airbyte_ci/connector_qa/unit_tests}/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2/tests/legacy/airbyte_ci/connector_qa → airbyte_internal_ops-0.5.1/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks}/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/data/docs/correct.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/data/docs/incorrect_not_all_structure.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/data/docs/invalid_links.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/test_assets.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/test_documentation.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/test_metadata.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/test_packaging.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/test_security.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/test_version.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_models.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/conftest.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_actions/test_environments.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_bases.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_build_image/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_build_image/dummy_build_customization.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_build_image/test_manifest_only_connectors.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_build_image/test_python_connectors.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_build_image/test_steps/test_common.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/initial_files/changelog_header_no_newline.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/initial_files/changelog_header_no_separator.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/initial_files/no_changelog_header.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/initial_files/valid_changelog_at_end.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/initial_files/valid_changelog_in_middle.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/changelog_header_no_newline.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/changelog_header_no_separator.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/dupicate_version_date_valid_changelog_at_end.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/dupicate_version_date_valid_changelog_in_middle.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/dupicate_versions_valid_changelog_at_end.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/dupicate_versions_valid_changelog_in_middle.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/duplicate_entry_valid_changelog_at_end.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/duplicate_entry_valid_changelog_in_middle.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/existing_entries_valid_changelog_at_end.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/existing_entries_valid_changelog_in_middle.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/no_changelog_header.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/single_insert_valid_changelog_at_end.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/single_insert_valid_changelog_in_middle.md +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_changelog.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_cli/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_cli/test_click_decorators.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_commands/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_commands/test_groups/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_commands/test_groups/test_connectors.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_dagger/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_dagger/test_actions/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_dagger/test_actions/test_python/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_dagger/test_actions/test_python/test_common.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_gradle.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_helpers/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2/tests/legacy/airbyte_ci/connector_qa/integration_tests → airbyte_internal_ops-0.5.1/tests/legacy/airbyte_ci/pipelines/test_helpers/test_execution}/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_helpers/test_execution/test_argument_parsing.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_helpers/test_execution/test_run_steps.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_helpers/test_pip.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_helpers/test_utils.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_models/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_models/test_click_pipeline_context.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_models/test_singleton.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_poetry/test_poetry_publish.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_publish.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_steps/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_steps/test_simple_docker_step.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_steps/test_version_check.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_tests/__init__.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_tests/test_common.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_tests/test_python_connectors.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/test_upgrade_java_cdk.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/legacy/airbyte_ci/pipelines/utils.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/test_airbyte_admin_mcp.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/test_bump_version.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/test_cli_registry.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/test_list_connectors.py +0 -0
- {airbyte_internal_ops-0.4.2 → airbyte_internal_ops-0.5.1}/tests/test_prerelease.py +0 -0
|
@@ -186,36 +186,88 @@ jobs:
|
|
|
186
186
|
exit 1
|
|
187
187
|
fi
|
|
188
188
|
|
|
189
|
-
- name:
|
|
190
|
-
id:
|
|
189
|
+
- name: Setup paths and args
|
|
190
|
+
id: setup
|
|
191
191
|
run: |
|
|
192
|
+
echo "=========================================="
|
|
193
|
+
echo "SETUP: Calculating all paths and args upfront"
|
|
194
|
+
echo "=========================================="
|
|
195
|
+
|
|
196
|
+
# Define all artifact paths upfront
|
|
197
|
+
ARTIFACTS_DIR="/tmp/regression_test_artifacts"
|
|
198
|
+
SPEC_OUTPUT_DIR="$ARTIFACTS_DIR/spec"
|
|
199
|
+
CHECK_OUTPUT_DIR="$ARTIFACTS_DIR/check"
|
|
200
|
+
DISCOVER_OUTPUT_DIR="$ARTIFACTS_DIR/discover"
|
|
201
|
+
READ_OUTPUT_DIR="$ARTIFACTS_DIR/read"
|
|
202
|
+
|
|
203
|
+
# Deterministic path for configured catalog (used by both GSM and connection_id modes)
|
|
204
|
+
CONFIGURED_CATALOG_PATH="$ARTIFACTS_DIR/configured_catalog.json"
|
|
205
|
+
|
|
206
|
+
# Discover output paths (where catalog.jsonl might be found)
|
|
207
|
+
DISCOVER_TARGET_CATALOG="$DISCOVER_OUTPUT_DIR/target/airbyte_messages/catalog.jsonl"
|
|
208
|
+
DISCOVER_ROOT_CATALOG="$DISCOVER_OUTPUT_DIR/airbyte_messages/catalog.jsonl"
|
|
209
|
+
|
|
210
|
+
echo "--- Artifact Paths ---"
|
|
211
|
+
echo "ARTIFACTS_DIR=$ARTIFACTS_DIR"
|
|
212
|
+
echo "SPEC_OUTPUT_DIR=$SPEC_OUTPUT_DIR"
|
|
213
|
+
echo "CHECK_OUTPUT_DIR=$CHECK_OUTPUT_DIR"
|
|
214
|
+
echo "DISCOVER_OUTPUT_DIR=$DISCOVER_OUTPUT_DIR"
|
|
215
|
+
echo "READ_OUTPUT_DIR=$READ_OUTPUT_DIR"
|
|
216
|
+
echo "CONFIGURED_CATALOG_PATH=$CONFIGURED_CATALOG_PATH"
|
|
217
|
+
echo "DISCOVER_TARGET_CATALOG=$DISCOVER_TARGET_CATALOG"
|
|
218
|
+
echo "DISCOVER_ROOT_CATALOG=$DISCOVER_ROOT_CATALOG"
|
|
219
|
+
|
|
220
|
+
# Determine catalog mode
|
|
221
|
+
CONNECTION_ID="${{ inputs.connection_id }}"
|
|
222
|
+
if [ -n "$CONNECTION_ID" ]; then
|
|
223
|
+
CATALOG_MODE="connection_id"
|
|
224
|
+
echo "--- Catalog Mode: connection_id ---"
|
|
225
|
+
echo "Catalog will be fetched from Airbyte Cloud connection: $CONNECTION_ID"
|
|
226
|
+
else
|
|
227
|
+
CATALOG_MODE="gsm"
|
|
228
|
+
echo "--- Catalog Mode: gsm ---"
|
|
229
|
+
echo "Catalog will be generated from discover output"
|
|
230
|
+
fi
|
|
231
|
+
|
|
232
|
+
# Build common args
|
|
192
233
|
SKIP_COMPARE="${{ inputs.skip_compare }}"
|
|
193
234
|
ARGS=""
|
|
194
|
-
|
|
195
|
-
# Always add connector_name and repo-root (both are required)
|
|
196
235
|
ARGS+=" --connector-name ${{ inputs.connector_name }}"
|
|
197
236
|
ARGS+=" --repo-root ${{ github.workspace }}/connector-repo"
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
ARGS+=" --connection-id ${{ inputs.connection_id }}"
|
|
237
|
+
|
|
238
|
+
if [ -n "$CONNECTION_ID" ]; then
|
|
239
|
+
ARGS+=" --connection-id $CONNECTION_ID"
|
|
202
240
|
fi
|
|
203
|
-
|
|
241
|
+
|
|
204
242
|
if [ "$SKIP_COMPARE" = "true" ]; then
|
|
205
|
-
# Single-version mode: use --skip-compare flag
|
|
206
243
|
ARGS+=" --skip-compare"
|
|
207
|
-
|
|
208
244
|
if [ -n "${{ inputs.override_test_image }}" ]; then
|
|
209
245
|
ARGS+=" --test-image ${{ inputs.override_test_image }}"
|
|
210
246
|
fi
|
|
211
247
|
else
|
|
212
|
-
# Comparison mode (default): run target vs control
|
|
213
248
|
if [ -n "${{ inputs.override_control_image }}" ]; then
|
|
214
249
|
ARGS+=" --control-image ${{ inputs.override_control_image }}"
|
|
215
250
|
fi
|
|
216
251
|
fi
|
|
217
|
-
|
|
252
|
+
|
|
253
|
+
echo "--- Common Args ---"
|
|
254
|
+
echo "ARGS=$ARGS"
|
|
255
|
+
|
|
256
|
+
# Output all values for use in subsequent steps
|
|
257
|
+
echo "artifacts_dir=$ARTIFACTS_DIR" >> "$GITHUB_OUTPUT"
|
|
258
|
+
echo "spec_output_dir=$SPEC_OUTPUT_DIR" >> "$GITHUB_OUTPUT"
|
|
259
|
+
echo "check_output_dir=$CHECK_OUTPUT_DIR" >> "$GITHUB_OUTPUT"
|
|
260
|
+
echo "discover_output_dir=$DISCOVER_OUTPUT_DIR" >> "$GITHUB_OUTPUT"
|
|
261
|
+
echo "read_output_dir=$READ_OUTPUT_DIR" >> "$GITHUB_OUTPUT"
|
|
262
|
+
echo "configured_catalog_path=$CONFIGURED_CATALOG_PATH" >> "$GITHUB_OUTPUT"
|
|
263
|
+
echo "discover_target_catalog=$DISCOVER_TARGET_CATALOG" >> "$GITHUB_OUTPUT"
|
|
264
|
+
echo "discover_root_catalog=$DISCOVER_ROOT_CATALOG" >> "$GITHUB_OUTPUT"
|
|
265
|
+
echo "catalog_mode=$CATALOG_MODE" >> "$GITHUB_OUTPUT"
|
|
218
266
|
echo "common_args=$ARGS" >> "$GITHUB_OUTPUT"
|
|
267
|
+
|
|
268
|
+
echo "=========================================="
|
|
269
|
+
echo "SETUP COMPLETE"
|
|
270
|
+
echo "=========================================="
|
|
219
271
|
|
|
220
272
|
- name: Run SPEC
|
|
221
273
|
id: run-spec
|
|
@@ -225,16 +277,14 @@ jobs:
|
|
|
225
277
|
GCP_GSM_CREDENTIALS: ${{ secrets.GCP_GSM_CREDENTIALS }}
|
|
226
278
|
GCP_PROD_DB_ACCESS_CREDENTIALS: ${{ secrets.GCP_GSM_CREDENTIALS_FOR_TESTING_TOOL }}
|
|
227
279
|
USE_CONNECTION_SECRET_RETRIEVER: "true"
|
|
228
|
-
run:
|
|
229
|
-
echo "Running: uv run airbyte-ops cloud connector regression-test --command spec ${{ steps.build-args.outputs.common_args }} --output-dir /tmp/regression_test_artifacts/spec"
|
|
230
|
-
uv run airbyte-ops cloud connector regression-test --command spec ${{ steps.build-args.outputs.common_args }} --output-dir /tmp/regression_test_artifacts/spec
|
|
280
|
+
run: uv run airbyte-ops cloud connector regression-test --command spec ${{ steps.setup.outputs.common_args }} --output-dir ${{ steps.setup.outputs.spec_output_dir }}
|
|
231
281
|
|
|
232
282
|
- name: Upload SPEC Artifacts
|
|
233
283
|
if: always()
|
|
234
284
|
uses: actions/upload-artifact@v6
|
|
235
285
|
with:
|
|
236
286
|
name: regression-test-artifacts-spec-${{ github.run_id }}
|
|
237
|
-
path: /
|
|
287
|
+
path: ${{ steps.setup.outputs.spec_output_dir }}/
|
|
238
288
|
retention-days: 7
|
|
239
289
|
|
|
240
290
|
- name: Write Context Block to Summary
|
|
@@ -259,6 +309,13 @@ jobs:
|
|
|
259
309
|
fi
|
|
260
310
|
fi
|
|
261
311
|
|
|
312
|
+
# Determine PR URL based on repo input
|
|
313
|
+
REPO="${{ inputs.repo }}"
|
|
314
|
+
if [ -z "$REPO" ]; then
|
|
315
|
+
REPO="airbyte"
|
|
316
|
+
fi
|
|
317
|
+
PR_URL="https://github.com/airbytehq/${REPO}/pull/${{ inputs.pr }}"
|
|
318
|
+
|
|
262
319
|
# Write Context block
|
|
263
320
|
{
|
|
264
321
|
echo "# Regression Test Report"
|
|
@@ -267,6 +324,7 @@ jobs:
|
|
|
267
324
|
echo ""
|
|
268
325
|
echo "- **Test Date:** $(date -u '+%Y-%m-%d %H:%M:%S') UTC"
|
|
269
326
|
echo "- **Connector:** \`${{ inputs.connector_name }}\`"
|
|
327
|
+
echo "- **PR Under Test:** [#${{ inputs.pr }}](${PR_URL})"
|
|
270
328
|
if [ "${{ inputs.skip_compare }}" != "true" ]; then
|
|
271
329
|
echo "- **Control Version:** \`$CONTROL_IMAGE\`"
|
|
272
330
|
echo "- **Target Version:** \`$TARGET_IMAGE\`"
|
|
@@ -285,16 +343,14 @@ jobs:
|
|
|
285
343
|
GCP_GSM_CREDENTIALS: ${{ secrets.GCP_GSM_CREDENTIALS }}
|
|
286
344
|
GCP_PROD_DB_ACCESS_CREDENTIALS: ${{ secrets.GCP_GSM_CREDENTIALS_FOR_TESTING_TOOL }}
|
|
287
345
|
USE_CONNECTION_SECRET_RETRIEVER: "true"
|
|
288
|
-
run:
|
|
289
|
-
echo "Running: uv run airbyte-ops cloud connector regression-test --command check ${{ steps.build-args.outputs.common_args }} --output-dir /tmp/regression_test_artifacts/check"
|
|
290
|
-
uv run airbyte-ops cloud connector regression-test --command check ${{ steps.build-args.outputs.common_args }} --output-dir /tmp/regression_test_artifacts/check
|
|
346
|
+
run: uv run airbyte-ops cloud connector regression-test --command check ${{ steps.setup.outputs.common_args }} --output-dir ${{ steps.setup.outputs.check_output_dir }}
|
|
291
347
|
|
|
292
348
|
- name: Upload CHECK Artifacts
|
|
293
349
|
if: always()
|
|
294
350
|
uses: actions/upload-artifact@v6
|
|
295
351
|
with:
|
|
296
352
|
name: regression-test-artifacts-check-${{ github.run_id }}
|
|
297
|
-
path: /
|
|
353
|
+
path: ${{ steps.setup.outputs.check_output_dir }}/
|
|
298
354
|
retention-days: 7
|
|
299
355
|
|
|
300
356
|
- name: Run DISCOVER
|
|
@@ -305,18 +361,46 @@ jobs:
|
|
|
305
361
|
GCP_GSM_CREDENTIALS: ${{ secrets.GCP_GSM_CREDENTIALS }}
|
|
306
362
|
GCP_PROD_DB_ACCESS_CREDENTIALS: ${{ secrets.GCP_GSM_CREDENTIALS_FOR_TESTING_TOOL }}
|
|
307
363
|
USE_CONNECTION_SECRET_RETRIEVER: "true"
|
|
308
|
-
run:
|
|
309
|
-
echo "Running: uv run airbyte-ops cloud connector regression-test --command discover ${{ steps.build-args.outputs.common_args }} --output-dir /tmp/regression_test_artifacts/discover"
|
|
310
|
-
uv run airbyte-ops cloud connector regression-test --command discover ${{ steps.build-args.outputs.common_args }} --output-dir /tmp/regression_test_artifacts/discover
|
|
364
|
+
run: uv run airbyte-ops cloud connector regression-test --command discover ${{ steps.setup.outputs.common_args }} --output-dir ${{ steps.setup.outputs.discover_output_dir }}
|
|
311
365
|
|
|
312
366
|
- name: Upload DISCOVER Artifacts
|
|
313
367
|
if: always()
|
|
314
368
|
uses: actions/upload-artifact@v6
|
|
315
369
|
with:
|
|
316
370
|
name: regression-test-artifacts-discover-${{ github.run_id }}
|
|
317
|
-
path: /
|
|
371
|
+
path: ${{ steps.setup.outputs.discover_output_dir }}/
|
|
318
372
|
retention-days: 7
|
|
319
373
|
|
|
374
|
+
- name: Generate Configured Catalog from Discover Output
|
|
375
|
+
id: generate-catalog
|
|
376
|
+
if: inputs.skip_read_action != true && inputs.connection_id == ''
|
|
377
|
+
run: |
|
|
378
|
+
# Find catalog file from discover output
|
|
379
|
+
if [ -f "${{ steps.setup.outputs.discover_target_catalog }}" ]; then
|
|
380
|
+
CATALOG_FILE="${{ steps.setup.outputs.discover_target_catalog }}"
|
|
381
|
+
elif [ -f "${{ steps.setup.outputs.discover_root_catalog }}" ]; then
|
|
382
|
+
CATALOG_FILE="${{ steps.setup.outputs.discover_root_catalog }}"
|
|
383
|
+
else
|
|
384
|
+
echo "No catalog file found"; exit 0
|
|
385
|
+
fi
|
|
386
|
+
|
|
387
|
+
# Generate configured catalog
|
|
388
|
+
python3 -c "
|
|
389
|
+
import json, sys
|
|
390
|
+
with open('${CATALOG_FILE}') as f:
|
|
391
|
+
for line in f:
|
|
392
|
+
msg = json.loads(line.strip()) if line.strip() else {}
|
|
393
|
+
if msg.get('type') == 'CATALOG':
|
|
394
|
+
catalog = msg['catalog']
|
|
395
|
+
break
|
|
396
|
+
else:
|
|
397
|
+
sys.exit('No CATALOG message found')
|
|
398
|
+
streams = [{'stream': s, 'sync_mode': 'full_refresh' if not s.get('supported_sync_modes') or 'full_refresh' in s.get('supported_sync_modes', []) else s['supported_sync_modes'][0], 'destination_sync_mode': 'overwrite'} for s in catalog.get('streams', [])]
|
|
399
|
+
with open('${{ steps.setup.outputs.configured_catalog_path }}', 'w') as f:
|
|
400
|
+
json.dump({'streams': streams}, f, indent=2)
|
|
401
|
+
print(f'Generated {len(streams)} streams')
|
|
402
|
+
"
|
|
403
|
+
|
|
320
404
|
- name: Run READ
|
|
321
405
|
id: run-read
|
|
322
406
|
if: inputs.skip_read_action != true
|
|
@@ -327,15 +411,18 @@ jobs:
|
|
|
327
411
|
GCP_PROD_DB_ACCESS_CREDENTIALS: ${{ secrets.GCP_GSM_CREDENTIALS_FOR_TESTING_TOOL }}
|
|
328
412
|
USE_CONNECTION_SECRET_RETRIEVER: "true"
|
|
329
413
|
run: |
|
|
330
|
-
|
|
331
|
-
|
|
414
|
+
CATALOG_ARG=""
|
|
415
|
+
if [ "${{ steps.setup.outputs.catalog_mode }}" = "gsm" ] && [ -f "${{ steps.setup.outputs.configured_catalog_path }}" ]; then
|
|
416
|
+
CATALOG_ARG="--catalog-path ${{ steps.setup.outputs.configured_catalog_path }}"
|
|
417
|
+
fi
|
|
418
|
+
uv run airbyte-ops cloud connector regression-test --command read ${{ steps.setup.outputs.common_args }} $CATALOG_ARG --output-dir ${{ steps.setup.outputs.read_output_dir }}
|
|
332
419
|
|
|
333
420
|
- name: Upload READ Artifacts
|
|
334
421
|
if: always() && inputs.skip_read_action != true
|
|
335
422
|
uses: actions/upload-artifact@v6
|
|
336
423
|
with:
|
|
337
424
|
name: regression-test-artifacts-read-${{ github.run_id }}
|
|
338
|
-
path: /
|
|
425
|
+
path: ${{ steps.setup.outputs.read_output_dir }}/
|
|
339
426
|
retention-days: 7
|
|
340
427
|
|
|
341
428
|
- name: Append READ Skipped Message to Summary
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: airbyte-internal-ops
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.5.1
|
|
4
4
|
Summary: MCP and API interfaces that let the agents do the admin work
|
|
5
5
|
Author-email: Aaron Steers <aj@airbyte.io>
|
|
6
6
|
Keywords: admin,airbyte,api,mcp
|
|
@@ -12,6 +12,7 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
12
12
|
Classifier: Programming Language :: Python :: 3.12
|
|
13
13
|
Requires-Python: <3.13,>=3.11
|
|
14
14
|
Requires-Dist: airbyte-cdk<8.0,>=7.3.9
|
|
15
|
+
Requires-Dist: airbyte-connector-models<1.0,>=0.1.3
|
|
15
16
|
Requires-Dist: airbyte-protocol-models-pdv2>=0.13.0
|
|
16
17
|
Requires-Dist: airbyte==0.35.4
|
|
17
18
|
Requires-Dist: asyncer<1.0,>=0.0.4
|
|
@@ -3,12 +3,12 @@
|
|
|
3
3
|
# Each legacy subproject has a corresponding GitHub issue for tracking its migration:
|
|
4
4
|
# - connector_erd_generator: https://github.com/airbytehq/airbyte-ops-mcp/issues/49
|
|
5
5
|
# - connector_insights: https://github.com/airbytehq/airbyte-ops-mcp/issues/50
|
|
6
|
-
# - connector_live_tests: https://github.com/airbytehq/airbyte-ops-mcp/issues/51
|
|
7
6
|
# - connector_ops: https://github.com/airbytehq/airbyte-ops-mcp/issues/52
|
|
8
7
|
# - connector_pipelines: https://github.com/airbytehq/airbyte-ops-mcp/issues/53
|
|
9
8
|
# - connector_qa: https://github.com/airbytehq/airbyte-ops-mcp/issues/54
|
|
10
9
|
# - metadata_models: https://github.com/airbytehq/airbyte-ops-mcp/issues/55
|
|
11
10
|
# - metadata_service: https://github.com/airbytehq/airbyte-ops-mcp/issues/56
|
|
11
|
+
# Note: connector_live_tests was migrated to regression_tests/ (issue #51 closed)
|
|
12
12
|
|
|
13
13
|
collect_ignore_glob = [
|
|
14
14
|
# Legacy airbyte_ci source modules (recursive)
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# Production stack configuration for Airbyte Sentry
|
|
2
|
+
#
|
|
3
|
+
# This stack manages multiple Sentry projects for Airbyte.
|
|
4
|
+
#
|
|
5
|
+
# Authentication:
|
|
6
|
+
# The Sentry auth token is provided via SENTRY_AUTH_TOKEN environment variable
|
|
7
|
+
# (configured as GitHub secrets: SENTRY_AUTH_TOKEN_READONLY, SENTRY_AUTH_TOKEN_READWRITE)
|
|
8
|
+
#
|
|
9
|
+
# See: https://docs.sentry.io/product/integrations/integration-platform/internal-integration/#auth-tokens
|
|
@@ -12,12 +12,13 @@ description: |
|
|
|
12
12
|
- Dashboard configurations
|
|
13
13
|
- Organization settings
|
|
14
14
|
- Fingerprint rules and stack trace grouping rules
|
|
15
|
+
- Ownership rules for alert routing
|
|
15
16
|
|
|
16
17
|
SETUP: Before running `pulumi up`, generate the Sentry provider SDK:
|
|
17
18
|
pulumi package add terraform-provider jianyuan/sentry
|
|
18
19
|
|
|
19
|
-
This uses the Terraform Sentry provider directly (v0.14.
|
|
20
|
-
fingerprinting_rules and
|
|
20
|
+
This uses the Terraform Sentry provider directly (v0.14.8) which supports
|
|
21
|
+
fingerprinting_rules, grouping_enhancements, and project_ownership on Project resources.
|
|
21
22
|
|
|
22
23
|
The SDK is generated locally in sdks/sentry/ and is gitignored.
|
|
23
24
|
packages:
|
|
@@ -26,4 +27,4 @@ packages:
|
|
|
26
27
|
version: 1.0.2
|
|
27
28
|
parameters:
|
|
28
29
|
- jianyuan/sentry
|
|
29
|
-
- 0.14.
|
|
30
|
+
- 0.14.8
|
|
@@ -182,14 +182,14 @@ Sentry configuration can be managed as Infrastructure as Code using Pulumi. The
|
|
|
182
182
|
- **Metric Alerts** - Metric-based alert rules
|
|
183
183
|
- **Dashboards** - Custom dashboards
|
|
184
184
|
- **Keys** - DSN keys
|
|
185
|
+
- **Ownership Rules** - Team assignment rules for alert routing (see [Ownership Rules](#ownership-rules))
|
|
186
|
+
- **Inbound Filters** - Event filtering before ingestion
|
|
185
187
|
|
|
186
188
|
### What Is Managed via Sentry UI
|
|
187
189
|
|
|
188
190
|
These are managed directly in the [Sentry UI](https://sentry.io/settings/airbytehq/):
|
|
189
191
|
|
|
190
192
|
- **Teams** - Team membership and permissions (referenced by slug in Pulumi, but managed in UI)
|
|
191
|
-
- **Ownership Rules** - Team assignment rules for alert routing
|
|
192
|
-
- **Inbound Filters** - Event filtering before ingestion
|
|
193
193
|
|
|
194
194
|
### Getting Started with Pulumi
|
|
195
195
|
|