-
Notifications
You must be signed in to change notification settings - Fork 276
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into minio-docker-pull-secret
- Loading branch information
Showing
723 changed files
with
24,381 additions
and
10,070 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,51 +1,82 @@ | ||
[bumpversion] | ||
current_version = 0.50.23 | ||
commit = False | ||
tag = False | ||
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-[a-z]+)? | ||
serialize = | ||
{major}.{minor}.{patch} | ||
|
||
[bumpversion:file:.bumpversion.cfg] | ||
|
||
[bumpversion:file:.env] | ||
search = VERSION=dev | ||
replace = VERSION={new_version} | ||
|
||
[bumpversion:file:airbyte-container-orchestrator/Dockerfile] | ||
search = ARG VERSION=dev | ||
replace = ARG VERSION={new_version} | ||
|
||
[bumpversion:file:airbyte-proxy/Dockerfile] | ||
search = ARG VERSION=dev | ||
replace = ARG VERSION={new_version} | ||
|
||
[bumpversion:file:airbyte-server/Dockerfile] | ||
search = ARG VERSION=dev | ||
replace = ARG VERSION={new_version} | ||
|
||
[bumpversion:file:airbyte-webapp/package.json] | ||
search = "version": "{current_version}" | ||
replace = "version": "{new_version}" | ||
[bumpversion:file:airbyte-connector-builder-server/Dockerfile] | ||
search = ARG VERSION=dev | ||
replace = ARG VERSION={new_version} | ||
|
||
[bumpversion:file:charts/airbyte-bootloader/Chart.yaml] | ||
search = appVersion: dev | ||
replace = appVersion: {new_version} | ||
|
||
[bumpversion:file:charts/airbyte-cron/Chart.yaml] | ||
search = appVersion: dev | ||
replace = appVersion: {new_version} | ||
|
||
[bumpversion:file:charts/airbyte-metrics/Chart.yaml] | ||
search = appVersion: dev | ||
replace = appVersion: {new_version} | ||
|
||
[bumpversion:file:charts/airbyte-pod-sweeper/Chart.yaml] | ||
search = appVersion: dev | ||
replace = appVersion: {new_version} | ||
|
||
[bumpversion:file:charts/airbyte-server/Chart.yaml] | ||
search = appVersion: dev | ||
replace = appVersion: {new_version} | ||
|
||
[bumpversion:file:charts/airbyte-temporal/Chart.yaml] | ||
search = appVersion: dev | ||
replace = appVersion: {new_version} | ||
|
||
[bumpversion:file:charts/airbyte-webapp/Chart.yaml] | ||
search = appVersion: dev | ||
replace = appVersion: {new_version} | ||
|
||
[bumpversion:file:charts/airbyte-worker/Chart.yaml] | ||
search = appVersion: dev | ||
replace = appVersion: {new_version} | ||
|
||
[bumpversion:file:charts/airbyte/Chart.yaml] | ||
search = appVersion: dev | ||
replace = appVersion: {new_version} | ||
|
||
[bumpversion:file:charts/airbyte-connector-builder-server/Chart.yaml] | ||
|
||
[bumpversion:file:charts/airbyte/README.md] | ||
|
||
[bumpversion:file:airbyte-connector-builder-server/Dockerfile] | ||
search = appVersion: dev | ||
replace = appVersion: {new_version} | ||
|
||
[bumpversion:file:charts/airbyte-keycloak/Chart.yaml] | ||
search = appVersion: dev | ||
replace = appVersion: {new_version} | ||
|
||
[bumpversion:file:charts/airbyte-keycloak-setup/Chart.yaml] | ||
search = appVersion: dev | ||
replace = appVersion: {new_version} | ||
|
||
[bumpversion:file:charts/airbyte-api-server/Chart.yaml] | ||
search = appVersion: dev | ||
replace = appVersion: {new_version} | ||
|
||
[bumpversion:file:charts/airbyte/README.md] | ||
search = ![appVersion: dev](https://img.shields.io/badge/AppVersion-dev-informational?style=flat-square) | ||
replace = ![appVersion: {new_version}](https://img.shields.io/badge/AppVersion-{new_version}-informational?style=flat-square) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
airbyte-api-server/src/main/kotlin/io/airbyte/api/server/apiTracking/TrackingClient.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/* | ||
* Copyright (c) 2023 Airbyte, Inc., all rights reserved. | ||
*/ | ||
package io.airbyte.api.server.apiTracking | ||
|
||
import io.airbyte.config.Configs | ||
import io.airbyte.config.EnvConfigs | ||
import jakarta.inject.Singleton | ||
|
||
/** | ||
* Used to track usage of the airbyte-api-server. | ||
*/ | ||
@Singleton | ||
class TrackingClient { | ||
val configs: Configs = EnvConfigs() | ||
|
||
init { | ||
setupTrackingClient(configs.airbyteVersion, configs.deploymentMode, configs.trackingStrategy, configs.workerEnvironment) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.