From 2d049f18cfd0e2f44a242303387db7415f8e9140 Mon Sep 17 00:00:00 2001 From: Evan Tahler Date: Tue, 11 Oct 2022 10:32:57 -0700 Subject: [PATCH] Use locally-installed qemu rather than docker-installed version (#17848) * Use locally-installed qemu rather than docker-installed version * Bump faker for test * Update docs/integrations/sources/faker.md Co-authored-by: Pedro S. Lopez * auto-bump connector version [ci skip] Co-authored-by: Pedro S. Lopez Co-authored-by: Octavia Squidington III --- .../init/src/main/resources/seed/source_definitions.yaml | 2 +- airbyte-config/init/src/main/resources/seed/source_specs.yaml | 2 +- airbyte-integrations/connectors/source-faker/Dockerfile | 2 +- docs/integrations/sources/faker.md | 3 ++- tools/integrations/manage.sh | 2 +- 5 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-config/init/src/main/resources/seed/source_definitions.yaml b/airbyte-config/init/src/main/resources/seed/source_definitions.yaml index 077d3e164de9..8b50b86ceeec 100644 --- a/airbyte-config/init/src/main/resources/seed/source_definitions.yaml +++ b/airbyte-config/init/src/main/resources/seed/source_definitions.yaml @@ -295,7 +295,7 @@ - name: Faker sourceDefinitionId: dfd88b22-b603-4c3d-aad7-3701784586b1 dockerRepository: airbyte/source-faker - dockerImageTag: 0.1.6 + dockerImageTag: 0.1.7 documentationUrl: https://docs.airbyte.com/integrations/sources/faker sourceType: api releaseStage: alpha diff --git a/airbyte-config/init/src/main/resources/seed/source_specs.yaml b/airbyte-config/init/src/main/resources/seed/source_specs.yaml index b734bd35b586..4bfb004a986d 100644 --- a/airbyte-config/init/src/main/resources/seed/source_specs.yaml +++ b/airbyte-config/init/src/main/resources/seed/source_specs.yaml @@ -2949,7 +2949,7 @@ oauthFlowInitParameters: [] oauthFlowOutputParameters: - - "access_token" -- dockerImage: "airbyte/source-faker:0.1.6" +- dockerImage: "airbyte/source-faker:0.1.7" spec: documentationUrl: "https://docs.airbyte.com/integrations/sources/faker" connectionSpecification: diff --git a/airbyte-integrations/connectors/source-faker/Dockerfile b/airbyte-integrations/connectors/source-faker/Dockerfile index 4f217b1e4d41..05fea6d1438c 100644 --- a/airbyte-integrations/connectors/source-faker/Dockerfile +++ b/airbyte-integrations/connectors/source-faker/Dockerfile @@ -34,5 +34,5 @@ COPY source_faker ./source_faker ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py" ENTRYPOINT ["python", "/airbyte/integration_code/main.py"] -LABEL io.airbyte.version=0.1.6 +LABEL io.airbyte.version=0.1.7 LABEL io.airbyte.name=airbyte/source-faker diff --git a/docs/integrations/sources/faker.md b/docs/integrations/sources/faker.md index f3f1b1879b70..5afaaf181154 100644 --- a/docs/integrations/sources/faker.md +++ b/docs/integrations/sources/faker.md @@ -40,7 +40,8 @@ N/A ## Changelog | Version | Date | Pull Request | Subject | -|:--------| :--------- | :------------------------------------------------------- | :-------------------------------------------------------- | +| :------ | :--------- | :------------------------------------------------------- | :-------------------------------------------------------- | +| 0.1.7 | 2022-10-11 | [17848](https://github.com/airbytehq/airbyte/pull/17848) | Bump to test publish command | | 0.1.6 | 2022-09-07 | [16418](https://github.com/airbytehq/airbyte/pull/16418) | Log start of each stream | | 0.1.5 | 2022-06-10 | [13695](https://github.com/airbytehq/airbyte/pull/13695) | Emit timestamps in the proper ISO format | | 0.1.4 | 2022-05-27 | [13298](https://github.com/airbytehq/airbyte/pull/13298) | Test publication flow | diff --git a/tools/integrations/manage.sh b/tools/integrations/manage.sh index a9f2875b9024..bd74a75edf38 100755 --- a/tools/integrations/manage.sh +++ b/tools/integrations/manage.sh @@ -220,7 +220,7 @@ cmd_publish() { # Install docker emulators # TODO: Don't run this command on M1 macs locally (it won't work and isn't needed) - docker run --rm --privileged multiarch/qemu-user-static --reset -p yes + apt-get install -y qemu-user-static # log into docker if test -z "${DOCKER_HUB_USERNAME}"; then