Skip to content

Commit c58aff2

Browse files
Fix issue 83, projects.json and pull_request_reviews.json (singer-io#87)
* Fix issue 83: projects.json Fix [issue 83](singer-io#83) by removing `format: date-time` from `html_url` field in `projects.json`. * Fix pull_request_reviews.json format Fix format: date-time from pull_request_url and href fields in pul_request_reviews.json
1 parent b1663b2 commit c58aff2

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
# 1.8.2
4+
* Fix [issue 83](https://github.com/singer-io/tap-github/issues/83) by removing `format: date-time` from `html_url` field in `projects.json`.
5+
36
# 1.8.1
47
* Add stream `pr_commits` back in [#81](https://github.com/singer-io/tap-github/pull/81)
58

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from setuptools import setup, find_packages
44

55
setup(name='tap-github',
6-
version='1.8.1',
6+
version='1.8.2',
77
description='Singer.io tap for extracting data from the GitHub API',
88
author='Stitch',
99
url='http://singer.io',

tap_github/projects.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@
2020
"type": [
2121
"null",
2222
"string"
23-
],
24-
"format": "date-time"
23+
]
2524
},
2625
"columns_url": {
2726
"type": [

tap_github/pull_request_reviews.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -167,8 +167,7 @@
167167
"type": [
168168
"null",
169169
"string"
170-
],
171-
"format": "date-time"
170+
]
172171
},
173172
"_links": {
174173
"type": [
@@ -200,8 +199,7 @@
200199
"type": [
201200
"null",
202201
"string"
203-
],
204-
"format": "date-time"
202+
]
205203
}
206204
}
207205
}

0 commit comments

Comments
 (0)