From 35431dee310ed01ed276803984936b5006c4cb27 Mon Sep 17 00:00:00 2001 From: Joao Amaral <7281460+joaopamaral@users.noreply.github.com> Date: Tue, 27 Jun 2023 11:52:03 -0300 Subject: [PATCH 1/4] Removing _sdc_repository field --- tap_github/schemas/releases.json | 3 --- 1 file changed, 3 deletions(-) diff --git a/tap_github/schemas/releases.json b/tap_github/schemas/releases.json index b903a026..e836aded 100644 --- a/tap_github/schemas/releases.json +++ b/tap_github/schemas/releases.json @@ -2,9 +2,6 @@ "type": ["null", "object"], "additionalProperties": false, "properties": { - "_sdc_repository": { - "type": ["string"] - }, "id": { "type": ["null", "string"] }, From 5a1981314ad9f76986c92b825624da09701e9083 Mon Sep 17 00:00:00 2001 From: Joao Amaral <7281460+joaopamaral@users.noreply.github.com> Date: Tue, 27 Jun 2023 11:58:10 -0300 Subject: [PATCH 2/4] fixing discussion_url schema --- tap_github/schemas/releases.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tap_github/schemas/releases.json b/tap_github/schemas/releases.json index e836aded..736122d8 100644 --- a/tap_github/schemas/releases.json +++ b/tap_github/schemas/releases.json @@ -183,8 +183,7 @@ "format": "date-time" }, "discussion_url": { - "type": ["null", "string"], - "format": "date-time" + "type": ["null", "string"] } } } \ No newline at end of file From 510a5a7b9e0c53572bc0b4c17b0e131ab07c5610 Mon Sep 17 00:00:00 2001 From: Joao Amaral <7281460+joaopamaral@users.noreply.github.com> Date: Tue, 27 Jun 2023 11:59:13 -0300 Subject: [PATCH 3/4] Bump version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b6c06fef..151dbf9c 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup, find_packages setup(name='tap-github', - version='2.0.0', + version='2.0.3', description='Singer.io tap for extracting data from the GitHub API', author='Stitch', url='http://singer.io', From 452f3644989b07875b5c5ef3570a17f1aab773ff Mon Sep 17 00:00:00 2001 From: Joao Amaral <7281460+joaopamaral@users.noreply.github.com> Date: Tue, 27 Jun 2023 12:04:25 -0300 Subject: [PATCH 4/4] Test reverting _sdc_repository --- tap_github/schemas/releases.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tap_github/schemas/releases.json b/tap_github/schemas/releases.json index 736122d8..fc97ced2 100644 --- a/tap_github/schemas/releases.json +++ b/tap_github/schemas/releases.json @@ -2,6 +2,9 @@ "type": ["null", "object"], "additionalProperties": false, "properties": { + "_sdc_repository": { + "type": ["string"] + }, "id": { "type": ["null", "string"] },