Skip to content

Commit

Permalink
airbyte-ci: fix bug in migrate-to-poetry (#37615)
Browse files Browse the repository at this point in the history
  • Loading branch information
alafanechere committed Apr 26, 2024
1 parent 6450612 commit f6aa938
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions airbyte-ci/connectors/pipelines/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -649,6 +649,7 @@ E.G.: running Poe tasks on the modified internal packages of the current branch:

| Version | PR | Description |
|---------| ---------------------------------------------------------- |----------------------------------------------------------------------------------------------------------------------------|
| 4.10.3 | [#37615](https://github.com/airbytehq/airbyte/pull/37615) | Fix `KeyError` when running `migrate-to-poetry` |
| 4.10.2 | [#37614](https://github.com/airbytehq/airbyte/pull/37614) | Fix `UnboundLocalError: local variable 'add_changelog_entry_result' referenced before assignment` in `migrate_to_base_image` |
| 4.10.1 | [#37622](https://github.com/airbytehq/airbyte/pull/37622) | Temporarily disable regression tests in CI |
| 4.10.0 | [#37616](https://github.com/airbytehq/airbyte/pull/37616) | Improve modified files comparison when the target branch is from a fork. |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -433,9 +433,9 @@ async def run_connector_migration_to_poetry_pipeline(context: ConnectorContext,
step=RegressionTest(context),
depends_on=[CONNECTOR_TEST_STEP_ID.BUILD],
args=lambda results: {
"new_connector_container": results["BUILD_CONNECTOR_IMAGE"].output[LOCAL_BUILD_PLATFORM],
"original_dependencies": results["POETRY_INIT"].output[0],
"original_dev_dependencies": results["POETRY_INIT"].output[1],
"new_connector_container": results[CONNECTOR_TEST_STEP_ID.BUILD].output[LOCAL_BUILD_PLATFORM],
"original_dependencies": results[CONNECTOR_TEST_STEP_ID.POETRY_INIT].output[0],
"original_dev_dependencies": results[CONNECTOR_TEST_STEP_ID.POETRY_INIT].output[1],
},
)
],
Expand Down
2 changes: 1 addition & 1 deletion airbyte-ci/connectors/pipelines/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "pipelines"
version = "4.10.2"
version = "4.10.3"
description = "Packaged maintained by the connector operations team to perform CI for connectors' pipelines"
authors = ["Airbyte <contact@airbyte.io>"]

Expand Down

0 comments on commit f6aa938

Please sign in to comment.