From 62d34166e3218af9dfc6f9cdac41e581c0a6fa70 Mon Sep 17 00:00:00 2001 From: Stephane Burwash Date: Thu, 19 May 2022 13:38:26 -0400 Subject: [PATCH 1/4] Removed gitingore in secrets + added vscode in ide --- .gitignore | 1 + .secrets/.gitignore | 6 ------ 2 files changed, 1 insertion(+), 6 deletions(-) delete mode 100644 .secrets/.gitignore diff --git a/.gitignore b/.gitignore index 0dd67fcf..a6343c81 100644 --- a/.gitignore +++ b/.gitignore @@ -137,6 +137,7 @@ dmypy.json # IDE .idea/ +.vscode/ # Pyre type checker .pyre/ diff --git a/.secrets/.gitignore b/.secrets/.gitignore deleted file mode 100644 index e76051e7..00000000 --- a/.secrets/.gitignore +++ /dev/null @@ -1,6 +0,0 @@ -# IMPORTANT! This folder is hidden from git - if you need to store config files or other secrets, -# make sure those are never staged for commit into your git repo. You can store them here or another -# secure location. - -* -!.gitignore From 2e445f0da0fefa4a454eba5a35f2a74ba6a45307 Mon Sep 17 00:00:00 2001 From: Stephane Burwash Date: Thu, 19 May 2022 13:38:26 -0400 Subject: [PATCH 2/4] Removed gitingore in secrets + added vscode in ide --- .secrets/.gitignore | 6 ------ 1 file changed, 6 deletions(-) delete mode 100644 .secrets/.gitignore diff --git a/.secrets/.gitignore b/.secrets/.gitignore deleted file mode 100644 index e76051e7..00000000 --- a/.secrets/.gitignore +++ /dev/null @@ -1,6 +0,0 @@ -# IMPORTANT! This folder is hidden from git - if you need to store config files or other secrets, -# make sure those are never staged for commit into your git repo. You can store them here or another -# secure location. - -* -!.gitignore From 2b9b69c67b5485638afc2165f877714560accd90 Mon Sep 17 00:00:00 2001 From: Stephane Burwash Date: Tue, 14 Jun 2022 10:19:07 -0400 Subject: [PATCH 3/4] Cast DenpendenciesStream...url as String --- tap_github/repository_streams.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tap_github/repository_streams.py b/tap_github/repository_streams.py index 74c1b8cf..05059e55 100644 --- a/tap_github/repository_streams.py +++ b/tap_github/repository_streams.py @@ -1591,7 +1591,7 @@ def query(self) -> str: # Graphql id is equivalent to REST node_id. To keep the tap consistent, we rename "id" to "node_id". return """ query repositoryStargazers($repo: String! $org: String! $nextPageCursor_0: String) { - repository(name: $repo owner: $org) { + repository(name: $repo owner: $org) { stargazers(first: 100 orderBy: {field: STARRED_AT direction: DESC} after: $nextPageCursor_0) { pageInfo { hasNextPage_0: hasNextPage @@ -2124,7 +2124,7 @@ def query(self) -> str: th.Property("node_id", th.StringType), th.Property("id", th.IntegerType), th.Property("name_with_owner", th.StringType), - th.Property("url", th.IntegerType), + th.Property("url", th.StringType), th.Property( "owner", th.ObjectType( From 3c96d8870e20253f5f0fdd32d9ce7616c45aea13 Mon Sep 17 00:00:00 2001 From: Stephane Burwash Date: Tue, 14 Jun 2022 13:15:44 -0400 Subject: [PATCH 4/4] Reintroduced gitignore --- .secrets/.gitignore | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .secrets/.gitignore diff --git a/.secrets/.gitignore b/.secrets/.gitignore new file mode 100644 index 00000000..e76051e7 --- /dev/null +++ b/.secrets/.gitignore @@ -0,0 +1,6 @@ +# IMPORTANT! This folder is hidden from git - if you need to store config files or other secrets, +# make sure those are never staged for commit into your git repo. You can store them here or another +# secure location. + +* +!.gitignore