Skip to content

Commit

Permalink
🐛 Source Github: Bugfix exception when parsing null date values, use …
Browse files Browse the repository at this point in the history
…`created_at` as cursor value for issue_milestones (#3314)
  • Loading branch information
grebessi committed May 21, 2021
1 parent 86d6640 commit 9e3bfee
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
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.6",
"dockerImageTag": "0.2.7",
"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.6
dockerImageTag: 0.2.7
documentationUrl: https://hub.docker.com/r/airbyte/source-github-singer
icon: github.svg
- sourceDefinitionId: b5ea17b1-f170-46dc-bc31-cc744ca984c1
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Changelog

## 0.2.7
- Fix a bug with `due_on` on milestone being converted to a date while null
- Change milestone incremental field to `created_at`
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.6
LABEL io.airbyte.version=0.2.7
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 @@
author_email="contact@airbyte.io",
packages=find_packages(),
install_requires=[
"tap-github @ https://github.com/airbytehq/tap-github/tarball/v1.9.4-airbyte",
"tap-github @ https://github.com/airbytehq/tap-github/tarball/v1.9.5-airbyte",
"requests==2.20.0",
"airbyte-cdk==0.1.2",
],
Expand Down

0 comments on commit 9e3bfee

Please sign in to comment.