Skip to content

Commit

Permalink
airbyte-ci: fix --use-cdk-ref (#51003)
Browse files Browse the repository at this point in the history
  • Loading branch information
alafanechere authored Jan 9, 2025
1 parent 7a196ae commit 4ceaba4
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
1 change: 1 addition & 0 deletions airbyte-ci/connectors/pipelines/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -854,6 +854,7 @@ airbyte-ci connectors --language=low-code migrate-to-manifest-only

| Version | PR | Description |
|---------|------------------------------------------------------------| ---------------------------------------------------------------------------------------------------------------------------- |
| 4.48.4 | [#51003](https://github.com/airbytehq/airbyte/pull/51003) | Install git in the build / test connector container when `--use-cdk-ref` is passed. |
| 4.48.3 | [#50988](https://github.com/airbytehq/airbyte/pull/50988) | Remove deprecated `--no-update` flag from poetry commands |
| 4.48.2 | [#50871](https://github.com/airbytehq/airbyte/pull/50871) | Speed up connector modification detection. |
| 4.48.1 | [#50410](https://github.com/airbytehq/airbyte/pull/50410) | Java connector build: give ownership of built artifacts to the current image user. |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,14 @@ def apply_python_development_overrides(context: ConnectorContext, connector_cont
# Install the airbyte-cdk package from provided ref
connector_container = (
connector_container.with_user("root")
.with_exec(
[
"apt-get",
"install",
"-y",
"git",
]
)
.with_exec(
[
"pip",
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.48.3"
version = "4.48.4"
description = "Packaged maintained by the connector operations team to perform CI for connectors' pipelines"
authors = ["Airbyte <[email protected]>"]

Expand Down

0 comments on commit 4ceaba4

Please sign in to comment.