apache-airflow-providers-amazon 8.26.0rc1__py3-none-any.whl → 8.27.0__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.
Files changed (32) hide show
  1. airflow/providers/amazon/__init__.py +1 -1
  2. airflow/providers/amazon/aws/auth_manager/aws_auth_manager.py +10 -0
  3. airflow/providers/amazon/aws/datasets/__init__.py +16 -0
  4. airflow/providers/amazon/aws/datasets/s3.py +45 -0
  5. airflow/providers/amazon/aws/executors/batch/batch_executor.py +27 -17
  6. airflow/providers/amazon/aws/executors/ecs/ecs_executor.py +31 -13
  7. airflow/providers/amazon/aws/hooks/kinesis_analytics.py +65 -0
  8. airflow/providers/amazon/aws/hooks/rds.py +3 -3
  9. airflow/providers/amazon/aws/hooks/s3.py +26 -1
  10. airflow/providers/amazon/aws/hooks/step_function.py +18 -0
  11. airflow/providers/amazon/aws/operators/athena.py +16 -17
  12. airflow/providers/amazon/aws/operators/emr.py +23 -23
  13. airflow/providers/amazon/aws/operators/kinesis_analytics.py +348 -0
  14. airflow/providers/amazon/aws/operators/rds.py +17 -20
  15. airflow/providers/amazon/aws/operators/redshift_cluster.py +71 -53
  16. airflow/providers/amazon/aws/operators/s3.py +18 -12
  17. airflow/providers/amazon/aws/operators/sagemaker.py +12 -27
  18. airflow/providers/amazon/aws/operators/step_function.py +12 -2
  19. airflow/providers/amazon/aws/sensors/kinesis_analytics.py +234 -0
  20. airflow/providers/amazon/aws/sensors/s3.py +11 -5
  21. airflow/providers/amazon/aws/transfers/redshift_to_s3.py +1 -0
  22. airflow/providers/amazon/aws/transfers/s3_to_redshift.py +1 -0
  23. airflow/providers/amazon/aws/triggers/emr.py +3 -1
  24. airflow/providers/amazon/aws/triggers/kinesis_analytics.py +69 -0
  25. airflow/providers/amazon/aws/triggers/sagemaker.py +9 -1
  26. airflow/providers/amazon/aws/waiters/kinesisanalyticsv2.json +151 -0
  27. airflow/providers/amazon/aws/waiters/rds.json +253 -0
  28. airflow/providers/amazon/get_provider_info.py +35 -2
  29. {apache_airflow_providers_amazon-8.26.0rc1.dist-info → apache_airflow_providers_amazon-8.27.0.dist-info}/METADATA +32 -25
  30. {apache_airflow_providers_amazon-8.26.0rc1.dist-info → apache_airflow_providers_amazon-8.27.0.dist-info}/RECORD +32 -24
  31. {apache_airflow_providers_amazon-8.26.0rc1.dist-info → apache_airflow_providers_amazon-8.27.0.dist-info}/WHEEL +0 -0
  32. {apache_airflow_providers_amazon-8.26.0rc1.dist-info → apache_airflow_providers_amazon-8.27.0.dist-info}/entry_points.txt +0 -0
@@ -0,0 +1,151 @@
1
+ {
2
+ "version": 2,
3
+ "waiters": {
4
+ "application_start_complete": {
5
+ "delay": 120,
6
+ "maxAttempts": 75,
7
+ "operation": "DescribeApplication",
8
+ "acceptors": [
9
+ {
10
+ "matcher": "path",
11
+ "argument": "ApplicationDetail.ApplicationStatus",
12
+ "expected": "STARTING",
13
+ "state": "retry"
14
+ },
15
+ {
16
+ "matcher": "path",
17
+ "argument": "ApplicationDetail.ApplicationStatus",
18
+ "expected": "UPDATING",
19
+ "state": "retry"
20
+ },
21
+ {
22
+ "matcher": "path",
23
+ "argument": "ApplicationDetail.ApplicationStatus",
24
+ "expected": "AUTOSCALING",
25
+ "state": "retry"
26
+ },
27
+ {
28
+ "matcher": "path",
29
+ "argument": "ApplicationDetail.ApplicationStatus",
30
+ "expected": "DELETING",
31
+ "state": "failure"
32
+ },
33
+ {
34
+ "matcher": "path",
35
+ "argument": "ApplicationDetail.ApplicationStatus",
36
+ "expected": "STOPPING",
37
+ "state": "failure"
38
+ },
39
+ {
40
+ "matcher": "path",
41
+ "argument": "ApplicationDetail.ApplicationStatus",
42
+ "expected": "READY",
43
+ "state": "failure"
44
+ },
45
+ {
46
+ "matcher": "path",
47
+ "argument": "ApplicationDetail.ApplicationStatus",
48
+ "expected": "FORCE_STOPPING",
49
+ "state": "failure"
50
+ },
51
+ {
52
+ "matcher": "path",
53
+ "argument": "ApplicationDetail.ApplicationStatus",
54
+ "expected": "ROLLING_BACK",
55
+ "state": "failure"
56
+ },
57
+ {
58
+ "matcher": "path",
59
+ "argument": "ApplicationDetail.ApplicationStatus",
60
+ "expected": "MAINTENANCE",
61
+ "state": "failure"
62
+ },
63
+ {
64
+ "matcher": "path",
65
+ "argument": "ApplicationDetail.ApplicationStatus",
66
+ "expected": "ROLLED_BACK",
67
+ "state": "failure"
68
+ },
69
+ {
70
+ "matcher": "path",
71
+ "argument": "ApplicationDetail.ApplicationStatus",
72
+ "expected": "RUNNING",
73
+ "state": "success"
74
+ }
75
+ ]
76
+ },
77
+ "application_stop_complete": {
78
+ "delay": 120,
79
+ "maxAttempts": 75,
80
+ "operation": "DescribeApplication",
81
+ "acceptors": [
82
+ {
83
+ "matcher": "path",
84
+ "argument": "ApplicationDetail.ApplicationStatus",
85
+ "expected": "STARTING",
86
+ "state": "retry"
87
+ },
88
+ {
89
+ "matcher": "path",
90
+ "argument": "ApplicationDetail.ApplicationStatus",
91
+ "expected": "UPDATING",
92
+ "state": "retry"
93
+ },
94
+ {
95
+ "matcher": "path",
96
+ "argument": "ApplicationDetail.ApplicationStatus",
97
+ "expected": "AUTOSCALING",
98
+ "state": "retry"
99
+ },
100
+ {
101
+ "matcher": "path",
102
+ "argument": "ApplicationDetail.ApplicationStatus",
103
+ "expected": "RUNNING",
104
+ "state": "retry"
105
+ },
106
+ {
107
+ "matcher": "path",
108
+ "argument": "ApplicationDetail.ApplicationStatus",
109
+ "expected": "STOPPING",
110
+ "state": "retry"
111
+ },
112
+ {
113
+ "matcher": "path",
114
+ "argument": "ApplicationDetail.ApplicationStatus",
115
+ "expected": "FORCE_STOPPING",
116
+ "state": "retry"
117
+ },
118
+ {
119
+ "matcher": "path",
120
+ "argument": "ApplicationDetail.ApplicationStatus",
121
+ "expected": "DELETING",
122
+ "state": "failure"
123
+ },
124
+ {
125
+ "matcher": "path",
126
+ "argument": "ApplicationDetail.ApplicationStatus",
127
+ "expected": "ROLLING_BACK",
128
+ "state": "failure"
129
+ },
130
+ {
131
+ "matcher": "path",
132
+ "argument": "ApplicationDetail.ApplicationStatus",
133
+ "expected": "MAINTENANCE",
134
+ "state": "failure"
135
+ },
136
+ {
137
+ "matcher": "path",
138
+ "argument": "ApplicationDetail.ApplicationStatus",
139
+ "expected": "ROLLED_BACK",
140
+ "state": "failure"
141
+ },
142
+ {
143
+ "matcher": "path",
144
+ "argument": "ApplicationDetail.ApplicationStatus",
145
+ "expected": "READY",
146
+ "state": "success"
147
+ }
148
+ ]
149
+ }
150
+ }
151
+ }
@@ -0,0 +1,253 @@
1
+ {
2
+ "version": 2,
3
+ "waiters": {
4
+ "db_instance_stopped": {
5
+ "operation": "DescribeDBInstances",
6
+ "delay": 30,
7
+ "maxAttempts": 60,
8
+ "acceptors": [
9
+ {
10
+ "matcher": "pathAll",
11
+ "argument": "DBInstances[].DBInstanceStatus",
12
+ "expected": "stopped",
13
+ "state": "success"
14
+ },
15
+ {
16
+ "matcher": "pathAll",
17
+ "argument": "DBInstances[].DBInstanceStatus",
18
+ "expected": "available",
19
+ "state": "failure"
20
+ },
21
+ {
22
+ "matcher": "pathAll",
23
+ "argument": "DBInstances[].DBInstanceStatus",
24
+ "expected": "backing-up",
25
+ "state": "retry"
26
+ },
27
+ {
28
+ "matcher": "pathAll",
29
+ "argument": "DBInstances[].DBInstanceStatus",
30
+ "expected": "creating",
31
+ "state": "retry"
32
+ },
33
+ {
34
+ "matcher": "pathAll",
35
+ "argument": "DBInstances[].DBInstanceStatus",
36
+ "expected": "delete-precheck",
37
+ "state": "failure"
38
+ },
39
+ {
40
+ "matcher": "pathAll",
41
+ "argument": "DBInstances[].DBInstanceStatus",
42
+ "expected": "deleting",
43
+ "state": "failure"
44
+ },
45
+ {
46
+ "matcher": "pathAll",
47
+ "argument": "DBInstances[].DBInstanceStatus",
48
+ "expected": "failed",
49
+ "state": "failure"
50
+ },
51
+ {
52
+ "matcher": "pathAll",
53
+ "argument": "DBInstances[].DBInstanceStatus",
54
+ "expected": "inaccessible-encryption-credentials",
55
+ "state": "failure"
56
+ },
57
+ {
58
+ "matcher": "pathAll",
59
+ "argument": "DBInstances[].DBInstanceStatus",
60
+ "expected": "inaccessible-encryption-credentials-recoverable",
61
+ "state": "failure"
62
+ },
63
+ {
64
+ "matcher": "pathAll",
65
+ "argument": "DBInstances[].DBInstanceStatus",
66
+ "expected": "incompatible-network",
67
+ "state": "failure"
68
+ },
69
+ {
70
+ "matcher": "pathAll",
71
+ "argument": "DBInstances[].DBInstanceStatus",
72
+ "expected": "incompatible-option-group",
73
+ "state": "failure"
74
+ },
75
+ {
76
+ "matcher": "pathAll",
77
+ "argument": "DBInstances[].DBInstanceStatus",
78
+ "expected": "incompatible-parameters",
79
+ "state": "failure"
80
+ },
81
+ {
82
+ "matcher": "pathAll",
83
+ "argument": "DBInstances[].DBInstanceStatus",
84
+ "expected": "incompatible-restore",
85
+ "state": "failure"
86
+ },
87
+ {
88
+ "matcher": "pathAll",
89
+ "argument": "DBInstances[].DBInstanceStatus",
90
+ "expected": "insufficient-capacity",
91
+ "state": "failure"
92
+ },
93
+ {
94
+ "matcher": "pathAll",
95
+ "argument": "DBInstances[].DBInstanceStatus",
96
+ "expected": "maintenance",
97
+ "state": "retry"
98
+ },
99
+ {
100
+ "matcher": "pathAll",
101
+ "argument": "DBInstances[].DBInstanceStatus",
102
+ "expected": "modifying",
103
+ "state": "retry"
104
+ },
105
+ {
106
+ "matcher": "pathAll",
107
+ "argument": "DBInstances[].DBInstanceStatus",
108
+ "expected": "rebooting",
109
+ "state": "retry"
110
+ },
111
+ {
112
+ "matcher": "pathAll",
113
+ "argument": "DBInstances[].DBInstanceStatus",
114
+ "expected": "renaming",
115
+ "state": "retry"
116
+ },
117
+ {
118
+ "matcher": "pathAll",
119
+ "argument": "DBInstances[].DBInstanceStatus",
120
+ "expected": "restore-error",
121
+ "state": "failure"
122
+ },
123
+ {
124
+ "matcher": "pathAll",
125
+ "argument": "DBInstances[].DBInstanceStatus",
126
+ "expected": "starting",
127
+ "state": "retry"
128
+ },
129
+ {
130
+ "matcher": "pathAll",
131
+ "argument": "DBInstances[].DBInstanceStatus",
132
+ "expected": "stopping",
133
+ "state": "retry"
134
+ },
135
+ {
136
+ "matcher": "pathAll",
137
+ "argument": "DBInstances[].DBInstanceStatus",
138
+ "expected": "storage-full",
139
+ "state": "failure"
140
+ },
141
+ {
142
+ "matcher": "pathAll",
143
+ "argument": "DBInstances[].DBInstanceStatus",
144
+ "expected": "upgrading",
145
+ "state": "retry"
146
+ }
147
+ ]
148
+ },
149
+ "db_cluster_stopped": {
150
+ "operation": "DescribeDBClusters",
151
+ "delay": 30,
152
+ "maxAttempts": 60,
153
+ "acceptors": [
154
+ {
155
+ "matcher": "pathAll",
156
+ "argument": "DBClusters[].Status",
157
+ "expected": "stopped",
158
+ "state": "success"
159
+ },
160
+ {
161
+ "matcher": "pathAll",
162
+ "argument": "DBInstances[].DBInstanceStatus",
163
+ "expected": "available",
164
+ "state": "failure"
165
+ },
166
+ {
167
+ "matcher": "pathAll",
168
+ "argument": "DBInstances[].DBInstanceStatus",
169
+ "expected": "backing-up",
170
+ "state": "retry"
171
+ },
172
+ {
173
+ "matcher": "pathAll",
174
+ "argument": "DBInstances[].DBInstanceStatus",
175
+ "expected": "cloning-failed",
176
+ "state": "retry"
177
+ },
178
+ {
179
+ "matcher": "pathAll",
180
+ "argument": "DBInstances[].DBInstanceStatus",
181
+ "expected": "creating",
182
+ "state": "retry"
183
+ },
184
+ {
185
+ "matcher": "pathAll",
186
+ "argument": "DBInstances[].DBInstanceStatus",
187
+ "expected": "deleting",
188
+ "state": "failure"
189
+ },
190
+ {
191
+ "matcher": "pathAll",
192
+ "argument": "DBInstances[].DBInstanceStatus",
193
+ "expected": "failing-over",
194
+ "state": "failure"
195
+ },
196
+ {
197
+ "matcher": "pathAll",
198
+ "argument": "DBInstances[].DBInstanceStatus",
199
+ "expected": "inaccessible-encryption-credentials",
200
+ "state": "failure"
201
+ },
202
+ {
203
+ "matcher": "pathAll",
204
+ "argument": "DBInstances[].DBInstanceStatus",
205
+ "expected": "inaccessible-encryption-credentials-recoverable",
206
+ "state": "failure"
207
+ },
208
+ {
209
+ "matcher": "pathAll",
210
+ "argument": "DBInstances[].DBInstanceStatus",
211
+ "expected": "maintenance",
212
+ "state": "retry"
213
+ },
214
+ {
215
+ "matcher": "pathAll",
216
+ "argument": "DBInstances[].DBInstanceStatus",
217
+ "expected": "migrating",
218
+ "state": "retry"
219
+ },
220
+ {
221
+ "matcher": "pathAll",
222
+ "argument": "DBInstances[].DBInstanceStatus",
223
+ "expected": "migration-failed",
224
+ "state": "failure"
225
+ },
226
+ {
227
+ "matcher": "pathAll",
228
+ "argument": "DBInstances[].DBInstanceStatus",
229
+ "expected": "modifying",
230
+ "state": "retry"
231
+ },
232
+ {
233
+ "matcher": "pathAll",
234
+ "argument": "DBInstances[].DBInstanceStatus",
235
+ "expected": "renaming",
236
+ "state": "retry"
237
+ },
238
+ {
239
+ "matcher": "pathAll",
240
+ "argument": "DBInstances[].DBInstanceStatus",
241
+ "expected": "starting",
242
+ "state": "retry"
243
+ },
244
+ {
245
+ "matcher": "pathAll",
246
+ "argument": "DBInstances[].DBInstanceStatus",
247
+ "expected": "stopping",
248
+ "state": "retry"
249
+ }
250
+ ]
251
+ }
252
+ }
253
+ }
@@ -28,8 +28,9 @@ def get_provider_info():
28
28
  "name": "Amazon",
29
29
  "description": "Amazon integration (including `Amazon Web Services (AWS) <https://aws.amazon.com/>`__).\n",
30
30
  "state": "ready",
31
- "source-date-epoch": 1720288090,
31
+ "source-date-epoch": 1722145222,
32
32
  "versions": [
33
+ "8.27.0",
33
34
  "8.26.0",
34
35
  "8.25.0",
35
36
  "8.24.0",
@@ -94,8 +95,10 @@ def get_provider_info():
94
95
  ],
95
96
  "dependencies": [
96
97
  "apache-airflow>=2.7.0",
98
+ "apache-airflow-providers-common-compat>=1.1.0",
97
99
  "apache-airflow-providers-common-sql>=1.3.1",
98
100
  "apache-airflow-providers-http",
101
+ "apache-airflow-providers-common-compat>=1.1.0",
99
102
  "boto3>=1.34.90",
100
103
  "botocore>=1.34.90",
101
104
  "inflection>=0.5.1",
@@ -262,6 +265,13 @@ def get_provider_info():
262
265
  "logo": "/integration-logos/aws/Amazon-Kinesis-Data-Firehose_light-bg@4x.png",
263
266
  "tags": ["aws"],
264
267
  },
268
+ {
269
+ "integration-name": "Amazon Managed Service for Apache Flink",
270
+ "how-to-guide": ["/docs/apache-airflow-providers-amazon/operators/kinesis_analytics.rst"],
271
+ "external-doc-url": "https://aws.amazon.com/managed-service-apache-flink/",
272
+ "logo": "/integration-logos/aws/Amazon-Kinesis-Analytics_light-bg@4x.png",
273
+ "tags": ["aws"],
274
+ },
265
275
  {
266
276
  "integration-name": "Amazon OpenSearch Serverless",
267
277
  "how-to-guide": ["/docs/apache-airflow-providers-amazon/operators/opensearchserverless.rst"],
@@ -502,6 +512,10 @@ def get_provider_info():
502
512
  "integration-name": "AWS Lambda",
503
513
  "python-modules": ["airflow.providers.amazon.aws.operators.lambda_function"],
504
514
  },
515
+ {
516
+ "integration-name": "Amazon Managed Service for Apache Flink",
517
+ "python-modules": ["airflow.providers.amazon.aws.operators.kinesis_analytics"],
518
+ },
505
519
  {
506
520
  "integration-name": "Amazon Simple Storage Service (S3)",
507
521
  "python-modules": ["airflow.providers.amazon.aws.operators.s3"],
@@ -619,6 +633,10 @@ def get_provider_info():
619
633
  "integration-name": "AWS Lambda",
620
634
  "python-modules": ["airflow.providers.amazon.aws.sensors.lambda_function"],
621
635
  },
636
+ {
637
+ "integration-name": "Amazon Managed Service for Apache Flink",
638
+ "python-modules": ["airflow.providers.amazon.aws.sensors.kinesis_analytics"],
639
+ },
622
640
  {
623
641
  "integration-name": "Amazon OpenSearch Serverless",
624
642
  "python-modules": ["airflow.providers.amazon.aws.sensors.opensearch_serverless"],
@@ -652,7 +670,14 @@ def get_provider_info():
652
670
  "python-modules": ["airflow.providers.amazon.aws.sensors.quicksight"],
653
671
  },
654
672
  ],
655
- "dataset-uris": [{"schemes": ["s3"], "handler": None}],
673
+ "dataset-uris": [
674
+ {
675
+ "schemes": ["s3"],
676
+ "handler": "airflow.providers.amazon.aws.datasets.s3.sanitize_uri",
677
+ "to_openlineage_converter": "airflow.providers.amazon.aws.datasets.s3.convert_dataset_to_openlineage",
678
+ "factory": "airflow.providers.amazon.aws.datasets.s3.create_dataset",
679
+ }
680
+ ],
656
681
  "filesystems": ["airflow.providers.amazon.aws.fs.s3"],
657
682
  "hooks": [
658
683
  {
@@ -744,6 +769,10 @@ def get_provider_info():
744
769
  "integration-name": "AWS Lambda",
745
770
  "python-modules": ["airflow.providers.amazon.aws.hooks.lambda_function"],
746
771
  },
772
+ {
773
+ "integration-name": "Amazon Managed Service for Apache Flink",
774
+ "python-modules": ["airflow.providers.amazon.aws.hooks.kinesis_analytics"],
775
+ },
747
776
  {
748
777
  "integration-name": "Amazon CloudWatch Logs",
749
778
  "python-modules": ["airflow.providers.amazon.aws.hooks.logs"],
@@ -847,6 +876,10 @@ def get_provider_info():
847
876
  "integration-name": "AWS Lambda",
848
877
  "python-modules": ["airflow.providers.amazon.aws.triggers.lambda_function"],
849
878
  },
879
+ {
880
+ "integration-name": "Amazon Managed Service for Apache Flink",
881
+ "python-modules": ["airflow.providers.amazon.aws.triggers.kinesis_analytics"],
882
+ },
850
883
  {
851
884
  "integration-name": "Amazon OpenSearch Serverless",
852
885
  "python-modules": ["airflow.providers.amazon.aws.triggers.opensearch_serverless"],
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: apache-airflow-providers-amazon
3
- Version: 8.26.0rc1
3
+ Version: 8.27.0
4
4
  Summary: Provider package apache-airflow-providers-amazon for Apache Airflow
5
5
  Keywords: airflow-provider,amazon,airflow,integration
6
6
  Author-email: Apache Software Foundation <dev@airflow.apache.org>
@@ -22,9 +22,11 @@ Classifier: Programming Language :: Python :: 3.11
22
22
  Classifier: Programming Language :: Python :: 3.12
23
23
  Classifier: Topic :: System :: Monitoring
24
24
  Requires-Dist: PyAthena>=3.0.10
25
- Requires-Dist: apache-airflow-providers-common-sql>=1.3.1rc0
25
+ Requires-Dist: apache-airflow-providers-common-compat>=1.1.0
26
+ Requires-Dist: apache-airflow-providers-common-compat>=1.1.0
27
+ Requires-Dist: apache-airflow-providers-common-sql>=1.3.1
26
28
  Requires-Dist: apache-airflow-providers-http
27
- Requires-Dist: apache-airflow>=2.7.0rc0
29
+ Requires-Dist: apache-airflow>=2.7.0
28
30
  Requires-Dist: asgiref>=2.3.0
29
31
  Requires-Dist: boto3>=1.34.90
30
32
  Requires-Dist: botocore>=1.34.90
@@ -36,7 +38,8 @@ Requires-Dist: sqlalchemy_redshift>=0.8.6
36
38
  Requires-Dist: watchtower>=3.0.0,<4
37
39
  Requires-Dist: aiobotocore[boto3]>=2.13.0 ; extra == "aiobotocore"
38
40
  Requires-Dist: apache-airflow-providers-apache-hive ; extra == "apache.hive"
39
- Requires-Dist: apache-airflow-providers-cncf-kubernetes>=7.2.0rc0 ; extra == "cncf.kubernetes"
41
+ Requires-Dist: apache-airflow-providers-cncf-kubernetes>=7.2.0 ; extra == "cncf.kubernetes"
42
+ Requires-Dist: apache-airflow-providers-common-compat ; extra == "common.compat"
40
43
  Requires-Dist: apache-airflow-providers-common-sql ; extra == "common.sql"
41
44
  Requires-Dist: apache-airflow-providers-exasol ; extra == "exasol"
42
45
  Requires-Dist: apache-airflow-providers-ftp ; extra == "ftp"
@@ -53,8 +56,8 @@ Requires-Dist: s3fs>=2023.10.0 ; extra == "s3fs"
53
56
  Requires-Dist: apache-airflow-providers-salesforce ; extra == "salesforce"
54
57
  Requires-Dist: apache-airflow-providers-ssh ; extra == "ssh"
55
58
  Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
56
- Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-amazon/8.26.0/changelog.html
57
- Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-amazon/8.26.0
59
+ Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-amazon/8.27.0/changelog.html
60
+ Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-amazon/8.27.0
58
61
  Project-URL: Slack Chat, https://s.apache.org/airflow-slack
59
62
  Project-URL: Source Code, https://github.com/apache/airflow
60
63
  Project-URL: Twitter, https://twitter.com/ApacheAirflow
@@ -62,6 +65,7 @@ Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
62
65
  Provides-Extra: aiobotocore
63
66
  Provides-Extra: apache.hive
64
67
  Provides-Extra: cncf.kubernetes
68
+ Provides-Extra: common.compat
65
69
  Provides-Extra: common.sql
66
70
  Provides-Extra: exasol
67
71
  Provides-Extra: ftp
@@ -121,7 +125,7 @@ Provides-Extra: ssh
121
125
 
122
126
  Package ``apache-airflow-providers-amazon``
123
127
 
124
- Release: ``8.26.0.rc1``
128
+ Release: ``8.27.0``
125
129
 
126
130
 
127
131
  Amazon integration (including `Amazon Web Services (AWS) <https://aws.amazon.com/>`__).
@@ -134,7 +138,7 @@ This is a provider package for ``amazon`` provider. All classes for this provide
134
138
  are in ``airflow.providers.amazon`` python package.
135
139
 
136
140
  You can find package information and changelog for the provider
137
- in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-amazon/8.26.0/>`_.
141
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-amazon/8.27.0/>`_.
138
142
 
139
143
  Installation
140
144
  ------------
@@ -148,23 +152,25 @@ The package supports the following python versions: 3.8,3.9,3.10,3.11,3.12
148
152
  Requirements
149
153
  ------------
150
154
 
151
- ======================================= ==================
152
- PIP package Version required
153
- ======================================= ==================
154
- ``apache-airflow`` ``>=2.7.0``
155
- ``apache-airflow-providers-common-sql`` ``>=1.3.1``
155
+ ========================================== ==================
156
+ PIP package Version required
157
+ ========================================== ==================
158
+ ``apache-airflow`` ``>=2.7.0``
159
+ ``apache-airflow-providers-common-compat`` ``>=1.1.0``
160
+ ``apache-airflow-providers-common-sql`` ``>=1.3.1``
156
161
  ``apache-airflow-providers-http``
157
- ``boto3`` ``>=1.34.90``
158
- ``botocore`` ``>=1.34.90``
159
- ``inflection`` ``>=0.5.1``
160
- ``watchtower`` ``>=3.0.0,<4``
161
- ``jsonpath_ng`` ``>=1.5.3``
162
- ``redshift_connector`` ``>=2.0.918``
163
- ``sqlalchemy_redshift`` ``>=0.8.6``
164
- ``asgiref`` ``>=2.3.0``
165
- ``PyAthena`` ``>=3.0.10``
166
- ``jmespath`` ``>=0.7.0``
167
- ======================================= ==================
162
+ ``apache-airflow-providers-common-compat`` ``>=1.1.0``
163
+ ``boto3`` ``>=1.34.90``
164
+ ``botocore`` ``>=1.34.90``
165
+ ``inflection`` ``>=0.5.1``
166
+ ``watchtower`` ``>=3.0.0,<4``
167
+ ``jsonpath_ng`` ``>=1.5.3``
168
+ ``redshift_connector`` ``>=2.0.918``
169
+ ``sqlalchemy_redshift`` ``>=0.8.6``
170
+ ``asgiref`` ``>=2.3.0``
171
+ ``PyAthena`` ``>=3.0.10``
172
+ ``jmespath`` ``>=0.7.0``
173
+ ========================================== ==================
168
174
 
169
175
  Cross provider package dependencies
170
176
  -----------------------------------
@@ -184,6 +190,7 @@ Dependent package
184
190
  ====================================================================================================================== ===================
185
191
  `apache-airflow-providers-apache-hive <https://airflow.apache.org/docs/apache-airflow-providers-apache-hive>`_ ``apache.hive``
186
192
  `apache-airflow-providers-cncf-kubernetes <https://airflow.apache.org/docs/apache-airflow-providers-cncf-kubernetes>`_ ``cncf.kubernetes``
193
+ `apache-airflow-providers-common-compat <https://airflow.apache.org/docs/apache-airflow-providers-common-compat>`_ ``common.compat``
187
194
  `apache-airflow-providers-common-sql <https://airflow.apache.org/docs/apache-airflow-providers-common-sql>`_ ``common.sql``
188
195
  `apache-airflow-providers-exasol <https://airflow.apache.org/docs/apache-airflow-providers-exasol>`_ ``exasol``
189
196
  `apache-airflow-providers-ftp <https://airflow.apache.org/docs/apache-airflow-providers-ftp>`_ ``ftp``
@@ -198,4 +205,4 @@ Dependent package
198
205
  ====================================================================================================================== ===================
199
206
 
200
207
  The changelog for the provider package can be found in the
201
- `changelog <https://airflow.apache.org/docs/apache-airflow-providers-amazon/8.26.0/changelog.html>`_.
208
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-amazon/8.27.0/changelog.html>`_.