airbyte-source-github 1.8.30__py3-none-any.whl → 1.8.31.dev202506242333__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.30
3
+ Version: 1.8.31.dev202506242333
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=oL91L04kf0NANfdAJbXghvg2G-InAfjOFFqKF7rDb2s,77308
59
+ source_github/streams.py,sha256=3hpjs3tBnCkoA7b0rTdHu1TPkO_hrEuFjAIR7s88z8c,77488
60
60
  source_github/utils.py,sha256=Ztd8VWwzTNUg_A96_8R9XSKorIcBa8wJ6aYUqygRkyk,5492
61
- airbyte_source_github-1.8.30.dist-info/METADATA,sha256=fPAyQptYaKucJVXST2mOKhgPy6HzV7gkSNxsifexG0c,5202
62
- airbyte_source_github-1.8.30.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
63
- airbyte_source_github-1.8.30.dist-info/entry_points.txt,sha256=gYhqVrTAZvMwuYByg0b_-o115yUFLLcfNxMrLZmiW9k,55
64
- airbyte_source_github-1.8.30.dist-info/RECORD,,
61
+ airbyte_source_github-1.8.31.dev202506242333.dist-info/METADATA,sha256=R53O8BAwpsKqG1OUfXh7mqFVsA2lMqoFci1pETvVV6U,5218
62
+ airbyte_source_github-1.8.31.dev202506242333.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
63
+ airbyte_source_github-1.8.31.dev202506242333.dist-info/entry_points.txt,sha256=gYhqVrTAZvMwuYByg0b_-o115yUFLLcfNxMrLZmiW9k,55
64
+ airbyte_source_github-1.8.31.dev202506242333.dist-info/RECORD,,
source_github/streams.py CHANGED
@@ -1633,7 +1633,11 @@ class ContributorActivity(GithubStream):
1633
1633
 
1634
1634
  def transform(self, record: MutableMapping[str, Any], stream_slice: Mapping[str, Any]) -> MutableMapping[str, Any]:
1635
1635
  record["repository"] = stream_slice["repository"]
1636
- record.update(record.pop("author"))
1636
+ try:
1637
+ record.update(record.pop("author"))
1638
+ except Exception as ex:
1639
+ self.logger.info(f'Failed to extract author from repo {stream_slice["repository"]}. Error: {ex}')
1640
+ raise ex
1637
1641
  return record
1638
1642
 
1639
1643
  def get_error_handler(self) -> Optional[ErrorHandler]: