Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Moves Faros Destination to 0.4.69 #284

Merged
merged 1 commit into from
Feb 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
- destinationDefinitionId: "6c6366b8-11f9-419a-8cdc-9209def71e1f"
name: "Faros Destination"
dockerRepository: "farosai/airbyte-faros-destination"
dockerImageTag: "0.4.65"
dockerImageTag: "0.4.69"
documentationUrl: "https://docs.faros.ai"
spec:
documentationUrl: "https://docs.faros.ai"
Expand Down
2 changes: 1 addition & 1 deletion init/src/airbyte/init.ts
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ export class AirbyteInit {

async setupFarosDestinationDefinition(): Promise<void> {
// const version = await AirbyteInit.getLatestImageTag(FAROS_DEST_REPO);
const version = '0.4.65'; // tmp for product hunt launch
const version = '0.4.69'; // tmp for product hunt launch
const listResponse = await this.api.post('/destination_definitions/list');
const farosDestDef = find(
listResponse.data.destinationDefinitions as DestinationDefinition[],
Expand Down