File tree 5 files changed +5
-4
lines changed
airbyte-ci/connectors/pipelines
pipelines/airbyte_ci/connectors
5 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -649,6 +649,7 @@ E.G.: running Poe tasks on the modified internal packages of the current branch:
649
649
650
650
| Version | PR | Description |
651
651
| ------- | ---------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- |
652
+ | 4.6.5 | [#36722](https://github.com/airbytehq/airbyte/pull/36527) | Fix incorrect pipeline names |
652
653
| 4.6.4 | [#36480](https://github.com/airbytehq/airbyte/pull/36480) | Burst the Gradle Task cache if a new CDK version was released |
653
654
| 4.6.3 | [#36527](https://github.com/airbytehq/airbyte/pull/36527) | Handle extras as well as groups in `airbyte ci test` [poetry packages] |
654
655
| 4.6.2 | [#36220](https://github.com/airbytehq/airbyte/pull/36220) | Allow using `migrate-to-base-image` without PULL_REQUEST_NUMBER |
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ async def bump_version(
24
24
25
25
connectors_contexts = [
26
26
ConnectorContext (
27
- pipeline_name = f"Upgrade base image versions of connector { connector .technical_name } " ,
27
+ pipeline_name = f"Bump version of connector { connector .technical_name } " ,
28
28
connector = connector ,
29
29
is_local = ctx .obj ["is_local" ],
30
30
git_branch = ctx .obj ["git_branch" ],
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ async def _run(self) -> StepResult:
82
82
83
83
class BumpDockerImageTagInMetadata (Step ):
84
84
context : ConnectorContext
85
- title = "Upgrade the dockerImageTag to the latest version in metadata.yaml"
85
+ title = "Upgrade the dockerImageTag to the new version in metadata.yaml"
86
86
87
87
def __init__ (
88
88
self ,
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ async def migrate_to_base_image(
30
30
31
31
connectors_contexts = [
32
32
ConnectorContext (
33
- pipeline_name = f"Upgrade base image versions of connector { connector .technical_name } " ,
33
+ pipeline_name = f"Upgrade connector { connector .technical_name } to use our base image " ,
34
34
connector = connector ,
35
35
is_local = ctx .obj ["is_local" ],
36
36
git_branch = ctx .obj ["git_branch" ],
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 = " pipelines"
7
- version = " 4.6.4 "
7
+ version = " 4.6.5 "
8
8
description = " Packaged maintained by the connector operations team to perform CI for connectors' pipelines"
9
9
authors = [
" Airbyte <[email protected] >" ]
10
10
You can’t perform that action at this time.
0 commit comments