Skip to content

Commit c1772a7

Browse files
committed
update release information
1 parent d2cebef commit c1772a7

File tree

5 files changed

+146
-157
lines changed

5 files changed

+146
-157
lines changed

airbyte-integrations/connectors/source-s3/metadata.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ data:
1010
connectorSubtype: file
1111
connectorType: source
1212
definitionId: 69589781-7828-43c5-9f63-8925b1c1ccc2
13-
dockerImageTag: 4.12.2
13+
dockerImageTag: 4.12.3
1414
dockerRepository: airbyte/source-s3
1515
documentationUrl: https://docs.airbyte.com/integrations/sources/s3
1616
githubIssueLabel: source-s3

airbyte-integrations/connectors/source-s3/poetry.lock

+6-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

airbyte-integrations/connectors/source-s3/pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",]
33
build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
6-
version = "4.12.2"
6+
version = "4.12.3"
77
name = "source-s3"
88
description = "Source implementation for S3."
99
authors = [ "Airbyte <[email protected]>",]
@@ -22,7 +22,7 @@ wcmatch = "==10.0"
2222
dill = "==0.3.4"
2323
transformers = "4.38.2"
2424
urllib3 = "<2"
25-
airbyte-cdk = {extras = ["file-based"], version = "6.38.5dev0"}
25+
airbyte-cdk = {extras = ["file-based"], version = "^6"}
2626
pendulum = "^3.0.0"
2727

2828
[tool.poetry.scripts]

airbyte-integrations/connectors/source-s3/source_s3/v4/stream_reader.py

-14
Original file line numberDiff line numberDiff line change
@@ -33,20 +33,6 @@
3333

3434

3535
class SourceS3StreamReader(AbstractFileBasedStreamReader):
36-
def get_file_acl_permissions(self, file: RemoteFile, logger: logging.Logger) -> Dict[str, Any]:
37-
return {}
38-
39-
def load_identity_groups(self, logger: logging.Logger) -> Iterable[Dict[str, Any]]:
40-
return []
41-
42-
@property
43-
def file_permissions_schema(self) -> Dict[str, Any]:
44-
return {}
45-
46-
@property
47-
def identities_schema(self) -> Dict[str, Any]:
48-
return {}
49-
5036
FILE_SIZE_LIMIT = 1_500_000_000
5137

5238
def __init__(self):

0 commit comments

Comments
 (0)