File tree 3 files changed +3
-2
lines changed
airbyte-ci/connectors/connector_ops
3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ poetry run pytest
37
37
```
38
38
39
39
## Changelog
40
+ - 0.8.1: Gradle dependency discovery logic supports the Bulk CDK.
40
41
- 0.8.0: Add a ` sbom_url ` property to ` Connector `
41
42
- 0.7.0: Added required reviewers for manifest-only connector changes/additions.
42
43
- 0.6.1: Simplified gradle dependency discovery logic.
Original file line number Diff line number Diff line change @@ -697,7 +697,7 @@ def __repr__(self) -> str:
697
697
def get_local_dependency_paths (self , with_test_dependencies : bool = True ) -> Set [Path ]:
698
698
dependencies_paths = []
699
699
if self .language == ConnectorLanguage .JAVA :
700
- dependencies_paths += [Path ("./airbyte-cdk/java/airbyte-cdk" )]
700
+ dependencies_paths += [Path ("./airbyte-cdk/java/airbyte-cdk" ), Path ( "./airbyte-cdk/bulk" ) ]
701
701
dependencies_paths += get_all_gradle_dependencies (
702
702
self .code_directory / "build.gradle" , with_test_dependencies = with_test_dependencies
703
703
)
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
4
4
5
5
[tool .poetry ]
6
6
name = " connector_ops"
7
- version = " 0.8.0 "
7
+ version = " 0.8.1 "
8
8
description = " Packaged maintained by the connector operations team to perform CI for connectors"
9
9
authors = [
" Airbyte <[email protected] >" ]
10
10
You can’t perform that action at this time.
0 commit comments