airbyte-source-github 1.8.29.dev202506231501__py3-none-any.whl → 1.8.29.dev202506231532__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: airbyte-source-github
3
- Version: 1.8.29.dev202506231501
3
+ Version: 1.8.29.dev202506231532
4
4
  Summary: Source implementation for GitHub.
5
5
  License: MIT
6
6
  Author: Airbyte
@@ -56,9 +56,9 @@ source_github/schemas/workflow_runs.json,sha256=XDmIsjtzka-ItEonImD3ZATZjxRNkbFo
56
56
  source_github/schemas/workflows.json,sha256=gSNw8WZaVKbX4AL97PbjZHzvxcOltXqv9Ao1RNQOFXM,1470
57
57
  source_github/source.py,sha256=1o8eayigi4xSUeNHdCd-mhNswGUq_XQrVk2eihTjm1o,14246
58
58
  source_github/spec.json,sha256=7LOQm01fP_RvPF-HifhNPJ7i0AxT2LTNPaLAA3uOfNY,7443
59
- source_github/streams.py,sha256=4Ucz_iCmF-Y9TfK9csIY1MpGCje_PhqhFgJOao-vNNM,77090
59
+ source_github/streams.py,sha256=oL91L04kf0NANfdAJbXghvg2G-InAfjOFFqKF7rDb2s,77308
60
60
  source_github/utils.py,sha256=Ztd8VWwzTNUg_A96_8R9XSKorIcBa8wJ6aYUqygRkyk,5492
61
- airbyte_source_github-1.8.29.dev202506231501.dist-info/METADATA,sha256=QplCsH7P37Yw2Gv6eAUwM5cghofrdg7QDCnKVC76h-g,5218
62
- airbyte_source_github-1.8.29.dev202506231501.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
63
- airbyte_source_github-1.8.29.dev202506231501.dist-info/entry_points.txt,sha256=gYhqVrTAZvMwuYByg0b_-o115yUFLLcfNxMrLZmiW9k,55
64
- airbyte_source_github-1.8.29.dev202506231501.dist-info/RECORD,,
61
+ airbyte_source_github-1.8.29.dev202506231532.dist-info/METADATA,sha256=RA_9qGWOu4OBbHUkqhr67po9hEFHCvUPZ-m7QIIiKNA,5218
62
+ airbyte_source_github-1.8.29.dev202506231532.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
63
+ airbyte_source_github-1.8.29.dev202506231532.dist-info/entry_points.txt,sha256=gYhqVrTAZvMwuYByg0b_-o115yUFLLcfNxMrLZmiW9k,55
64
+ airbyte_source_github-1.8.29.dev202506231532.dist-info/RECORD,,
source_github/streams.py CHANGED
@@ -226,6 +226,8 @@ class GithubStream(GithubStreamABC):
226
226
  next_page_token: Mapping[str, Any] = None,
227
227
  ) -> Iterable[Mapping]:
228
228
  if is_conflict_with_empty_repository(response):
229
+ # I would expect that this should be handled (skipped) by the error handler, but it seems like
230
+ # ignored this error but continue to processing records. This may be fixed in latest CDK versions.
229
231
  return
230
232
  yield from super().parse_response(
231
233
  response=response,