airbyte-source-s3 4.14.0.dev202504191948__py3-none-any.whl → 4.14.0rc1__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.

Potentially problematic release.


This version of airbyte-source-s3 might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: airbyte-source-s3
3
- Version: 4.14.0.dev202504191948
3
+ Version: 4.14.0rc1
4
4
  Summary: Source implementation for S3.
5
5
  License: ELv2
6
6
  Author: Airbyte
@@ -10,7 +10,7 @@ Classifier: License :: Other/Proprietary License
10
10
  Classifier: Programming Language :: Python :: 3
11
11
  Classifier: Programming Language :: Python :: 3.10
12
12
  Classifier: Programming Language :: Python :: 3.11
13
- Requires-Dist: airbyte-cdk[file-based] (==6.45.4.post14.dev14544463167)
13
+ Requires-Dist: airbyte-cdk[file-based] (>=6,<7)
14
14
  Requires-Dist: dill (>=0.3.4,<0.4.0)
15
15
  Requires-Dist: pendulum (>=3.0.0,<4.0.0)
16
16
  Requires-Dist: pytz (>=2024.2,<2025.0)
@@ -17,9 +17,9 @@ source_s3/v4/config.py,sha256=v9upt0VvzRT2m50Ym8yS2E1F0hNzP21m3zzo7cAG0Wk,4271
17
17
  source_s3/v4/cursor.py,sha256=kZj_6Wtl2yVAVeKZW67XyYQOk2XtbYazTgswEgGfKnI,7298
18
18
  source_s3/v4/legacy_config_transformer.py,sha256=OjKwGBYPHZvhZRKGO1LOAR7-cAT-9KvDRQY-G93eoic,7840
19
19
  source_s3/v4/source.py,sha256=jugIY53C_G9QhQRwKWBPcXXUgYKF_RESSaewzF_HXhc,8967
20
- source_s3/v4/stream_reader.py,sha256=moJTzT-gZI5X4LmRfDe8Ek5ekbKxjiZxiaHUyk6e-w4,16836
20
+ source_s3/v4/stream_reader.py,sha256=7AhFnOkkynZpAec3SD6c9pT-sCS7eeH8oKpDpgz8sCA,16837
21
21
  source_s3/v4/zip_reader.py,sha256=5Atoxu3Si0w5fNT6l_qQ-C1ZlKYt2DgV4Lxf8tTU5hw,14608
22
- airbyte_source_s3-4.14.0.dev202504191948.dist-info/METADATA,sha256=5FDgV4IhErJiv9bxZyls0xBaA5tJWCEE3V99a7qod4o,5415
23
- airbyte_source_s3-4.14.0.dev202504191948.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
24
- airbyte_source_s3-4.14.0.dev202504191948.dist-info/entry_points.txt,sha256=1ndXy1aXftjfCR82yLKg797X8-O5mD95tz6rNKA_1dE,47
25
- airbyte_source_s3-4.14.0.dev202504191948.dist-info/RECORD,,
22
+ airbyte_source_s3-4.14.0rc1.dist-info/METADATA,sha256=Rf7PArgnqHu3uJK1Ed75C02BL4z9gCnEjW7DmPkrh9U,5378
23
+ airbyte_source_s3-4.14.0rc1.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
24
+ airbyte_source_s3-4.14.0rc1.dist-info/entry_points.txt,sha256=1ndXy1aXftjfCR82yLKg797X8-O5mD95tz6rNKA_1dE,47
25
+ airbyte_source_s3-4.14.0rc1.dist-info/RECORD,,
@@ -276,7 +276,7 @@ class SourceS3StreamReader(AbstractFileBasedStreamReader):
276
276
 
277
277
  file_record_data = FileRecordData(
278
278
  folder=file_paths[self.FILE_FOLDER],
279
- filename=file_name,
279
+ file_name=file_name,
280
280
  bytes=file_size,
281
281
  updated_at=file.last_modified.strftime("%Y-%m-%dT%H:%M:%S.%fZ"),
282
282
  source_uri=self._construct_s3_uri(file),