1
0
mirror of synced 2025-12-19 18:14:56 -05:00

chore: move dest-dev-null to new non-dagger flow. (#59759)

Prep to transition dev-null onto the new flow set up in #59716 .
This commit is contained in:
Davin Chia
2025-05-09 14:47:21 -07:00
committed by GitHub
parent 3586ebda23
commit ad538f4bab
4 changed files with 6 additions and 2 deletions

View File

@@ -1,6 +1,8 @@
plugins {
id 'application'
id 'airbyte-bulk-connector'
id "io.airbyte.gradle.docker"
id 'airbyte-connector-docker-convention'
}
airbyteBulkConnector {

View File

@@ -11,7 +11,7 @@ data:
- suite: integrationTests
connectorType: destination
definitionId: a7bcc9d8-13b3-4e49-b80d-d020b90045e3
dockerImageTag: 0.7.21
dockerImageTag: 0.7.22
dockerRepository: airbyte/destination-dev-null
documentationUrl: https://docs.airbyte.com/integrations/destinations/dev-null
githubIssueLabel: destination-dev-null

View File

@@ -40,7 +40,8 @@ class AirbyteConnectorDockerConventionPlugin implements Plugin<Project> {
* The core plugins dockerCopyDockerfile task will copy
* it into build/airbyte/docker/Dockerfile automatically.
* ------------------------------------------------------------ */
if (!dockerExt.dockerfile.present) {
def userFile = dockerExt.dockerfile.get().asFile
if (!userFile.exists()) {
dockerExt.dockerfile.set(project.rootProject.file(SHARED_DOCKERFILE))
}

View File

@@ -49,6 +49,7 @@ The OSS and Cloud variants have the same version number starting from version `0
| Version | Date | Pull Request | Subject |
|:------------|:-----------|:---------------------------------------------------------|:---------------------------------------------------------------------------------------------|
| 0.7.22 | 2025-05-09 | [59759](https://github.com/airbytehq/airbyte/pull/59759) | Migrate to new flow. |
| 0.7.21 | 2025-05-07 | [59710](https://github.com/airbytehq/airbyte/pull/59710) | CDK: bugfixes |
| 0.7.20 | 2025-03-21 | [55906](https://github.com/airbytehq/airbyte/pull/55906) | CDK: Pass DestinationRecordRaw around instead of DestinationRecordAirbyteValue |
| 0.7.19 | 2025-03-13 | [55737](https://github.com/airbytehq/airbyte/pull/55737) | CDK: Pass DestinationRecordRaw around instead of DestinationRecordAirbyteValue |