airbyte-source-gitlab 4.3.2__py3-none-any.whl → 4.3.4__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,8 +1,7 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.3
2
2
  Name: airbyte-source-gitlab
3
- Version: 4.3.2
3
+ Version: 4.3.4
4
4
  Summary: Source implementation for GitLab.
5
- Home-page: https://airbyte.com
6
5
  License: MIT
7
6
  Author: Airbyte
8
7
  Author-email: contact@airbyte.io
@@ -14,6 +13,7 @@ Classifier: Programming Language :: Python :: 3.11
14
13
  Requires-Dist: airbyte-cdk (>=4,<5)
15
14
  Requires-Dist: vcrpy (==4.1.1)
16
15
  Project-URL: Documentation, https://docs.airbyte.com/integrations/sources/gitlab
16
+ Project-URL: Homepage, https://airbyte.com
17
17
  Project-URL: Repository, https://github.com/airbytehq/airbyte
18
18
  Description-Content-Type: text/markdown
19
19
 
@@ -1,6 +1,6 @@
1
1
  source_gitlab/__init__.py,sha256=Bip0P3F1yGxbb0nNwdTE8i98KtkuTT_MzZbMeSxziBM,1134
2
2
  source_gitlab/components/partition_routers.py,sha256=tu8gl2FoBCic6xohSbZr1YTdOAEyczQyZqMSBomhEG8,2054
3
- source_gitlab/config_migrations.py,sha256=K6Bg8zh4Zz1U9QlilRyAC1oy8RQJOOsVhh62jVIPTrY,3816
3
+ source_gitlab/config_migrations.py,sha256=EcZNVytEfsQyD5eK9ShNiqlOPsT_YZvSl9DWZm69mY8,3801
4
4
  source_gitlab/manifest.yaml,sha256=n0a-CfKB9OmsKD9fCYYGW8S8tt5nfg2VfebMPQbw9fM,20615
5
5
  source_gitlab/run.py,sha256=opjAlKxINNpsekbyOYAAxh25DxI7gTKg5ohJmDwe0q0,403
6
6
  source_gitlab/schemas/branches.json,sha256=FmpYj-ulEwBsvYLe5RUm_vGfT-llg1iektjtNAy-s7g,1654
@@ -29,7 +29,7 @@ source_gitlab/schemas/users.json,sha256=u-HDhMqyFHAH53_ekgW0ulAQPIJ57jEP7FjHYILd
29
29
  source_gitlab/source.py,sha256=Gc17C7D_cazqOdnVEIUNwRYYucDzNXrsGXqXnZy8CN8,1093
30
30
  source_gitlab/spec.json,sha256=0eit0zD-6kdcaNhJ1sAf0ABgIUwnlPV87Sbu3A4JvG0,6132
31
31
  source_gitlab/utils.py,sha256=idtKZiT-ILRRtpO0rxPJ1wim-mWN6ewzN_KgLCmogBs,456
32
- airbyte_source_gitlab-4.3.2.dist-info/METADATA,sha256=D4TlmwS37247PnsgE0VjDHLRr-dBn1eUz8y8M1zGOzg,5195
33
- airbyte_source_gitlab-4.3.2.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
34
- airbyte_source_gitlab-4.3.2.dist-info/entry_points.txt,sha256=sbp4881P3oluHtnFDy4ZCVHDfL5fIkVQhJ7vka_qzTc,55
35
- airbyte_source_gitlab-4.3.2.dist-info/RECORD,,
32
+ airbyte_source_gitlab-4.3.4.dist-info/METADATA,sha256=_dxwwsd1lMtm_-BViXQYC8yQva9Fqq1YAY3hoO17zno,5207
33
+ airbyte_source_gitlab-4.3.4.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
34
+ airbyte_source_gitlab-4.3.4.dist-info/entry_points.txt,sha256=sbp4881P3oluHtnFDy4ZCVHDfL5fIkVQhJ7vka_qzTc,55
35
+ airbyte_source_gitlab-4.3.4.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 1.9.0
2
+ Generator: poetry-core 2.0.1
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -12,6 +12,7 @@ from airbyte_cdk.sources.message import InMemoryMessageRepository, MessageReposi
12
12
 
13
13
  from .source import SourceGitlab
14
14
 
15
+
15
16
  logger = logging.getLogger("airbyte_logger")
16
17
 
17
18
 
@@ -30,13 +31,11 @@ class MigrateStringToArray(ABC):
30
31
 
31
32
  @property
32
33
  @abc.abstractmethod
33
- def migrate_from_key(self) -> str:
34
- ...
34
+ def migrate_from_key(self) -> str: ...
35
35
 
36
36
  @property
37
37
  @abc.abstractmethod
38
- def migrate_to_key(self) -> str:
39
- ...
38
+ def migrate_to_key(self) -> str: ...
40
39
 
41
40
  @classmethod
42
41
  def _should_migrate(cls, config: Mapping[str, Any]) -> bool: