Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Bump CDK consumers #3368

Merged
merged 7 commits into from
May 11, 2021
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 @@ -110,7 +110,6 @@ def test_next_page_token_is_input_to_other_methods(mocker):

assert expected == records


class StubBadUrlHttpStream(StubBasicReadHttpStream):
url_base = "bad_url"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"sourceDefinitionId": "ef69ef6e-aa7f-4af1-a01d-ef775033524e",
"name": "GitHub",
"dockerRepository": "airbyte/source-github-singer",
"dockerImageTag": "0.2.5",
"dockerImageTag": "0.2.6",
"documentationUrl": "https://hub.docker.com/r/airbyte/source-github-singer",
"icon": "github.svg"
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
- sourceDefinitionId: ef69ef6e-aa7f-4af1-a01d-ef775033524e
name: GitHub
dockerRepository: airbyte/source-github-singer
dockerImageTag: 0.2.5
dockerImageTag: 0.2.6
documentationUrl: https://hub.docker.com/r/airbyte/source-github-singer
icon: github.svg
- sourceDefinitionId: b5ea17b1-f170-46dc-bc31-cc744ca984c1
Expand Down
2 changes: 1 addition & 1 deletion airbyte-integrations/bases/source-acceptance-test/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import setuptools

MAIN_REQUIREMENTS = [
"airbyte-cdk==0.1.1",
"airbyte-cdk==0.1.2",
"docker==4.4.4",
"PyYAML==5.4.0",
"inflection==0.5.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ RUN pip install .

ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]

LABEL io.airbyte.version=0.1.4
LABEL io.airbyte.version=0.1.5
LABEL io.airbyte.name=airbyte/source-exchange-rates
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@
author_email="[email protected]",
packages=find_packages(),
package_data={"": ["*.json", "schemas/*.json"]},
install_requires=["airbyte-cdk==0.1.1", "pendulum>=2,<3"],
install_requires=["airbyte-cdk==0.1.2", "pendulum>=2,<3"],
)
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ RUN pip install .

ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]

LABEL io.airbyte.version=0.2.5
LABEL io.airbyte.version=0.2.6
LABEL io.airbyte.name=airbyte/source-github-singer

WORKDIR /airbyte
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
install_requires=[
"tap-github @ https://github.com/airbytehq/tap-github/tarball/v1.9.4-airbyte",
"requests==2.20.0",
"airbyte-cdk==0.1.1",
"airbyte-cdk==0.1.2",
],
package_data={"": ["*.json"]},
)
2 changes: 1 addition & 1 deletion airbyte-integrations/connectors/source-slack/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ RUN pip install .

ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]

LABEL io.airbyte.version=0.1.3
LABEL io.airbyte.version=0.1.4
LABEL io.airbyte.name=airbyte/source-slack
2 changes: 1 addition & 1 deletion airbyte-integrations/connectors/source-slack/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@
author="Airbyte",
author_email="[email protected]",
packages=find_packages(),
install_requires=["airbyte-cdk==0.1.1", "pytest==6.1.2", "slack_sdk==3.4.2", "pendulum>=2,<3"],
install_requires=["airbyte-cdk==0.1.2", "pytest==6.1.2", "slack_sdk==3.4.2", "pendulum>=2,<3"],
package_data={"": ["*.json"]},
)
2 changes: 1 addition & 1 deletion airbyte-integrations/connectors/source-stripe/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ RUN pip install .

ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]

LABEL io.airbyte.version=0.1.7
LABEL io.airbyte.version=0.1.8
LABEL io.airbyte.name=airbyte/source-stripe
2 changes: 1 addition & 1 deletion airbyte-integrations/connectors/source-stripe/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@
author_email="[email protected]",
packages=find_packages(),
package_data={"": ["*.json", "schemas/*.json", "schemas/shared/*.json"]},
install_requires=["airbyte-cdk==0.1.1", "stripe"],
install_requires=["airbyte-cdk==0.1.2", "stripe"],
)