apache-airflow-providers-telegram 4.7.2__tar.gz → 4.8.0rc1__tar.gz

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 (33) hide show
  1. {apache_airflow_providers_telegram-4.7.2 → apache_airflow_providers_telegram-4.8.0rc1}/PKG-INFO +9 -9
  2. {apache_airflow_providers_telegram-4.7.2 → apache_airflow_providers_telegram-4.8.0rc1}/README.rst +4 -4
  3. apache_airflow_providers_telegram-4.8.0rc1/docs/.latest-doc-only-change.txt +1 -0
  4. apache_airflow_providers_telegram-4.8.0rc1/docs/changelog.rst +431 -0
  5. apache_airflow_providers_telegram-4.8.0rc1/docs/commits.rst +35 -0
  6. apache_airflow_providers_telegram-4.8.0rc1/docs/conf.py +27 -0
  7. apache_airflow_providers_telegram-4.8.0rc1/docs/connections.rst +39 -0
  8. apache_airflow_providers_telegram-4.8.0rc1/docs/index.rst +105 -0
  9. apache_airflow_providers_telegram-4.8.0rc1/docs/installing-providers-from-sources.rst +18 -0
  10. apache_airflow_providers_telegram-4.8.0rc1/docs/integration-logos/Telegram.png +0 -0
  11. apache_airflow_providers_telegram-4.8.0rc1/docs/operators.rst +59 -0
  12. apache_airflow_providers_telegram-4.8.0rc1/docs/security.rst +18 -0
  13. apache_airflow_providers_telegram-4.8.0rc1/provider.yaml +78 -0
  14. {apache_airflow_providers_telegram-4.7.2 → apache_airflow_providers_telegram-4.8.0rc1}/pyproject.toml +22 -7
  15. apache_airflow_providers_telegram-4.8.0rc1/src/airflow/__init__.py +17 -0
  16. apache_airflow_providers_telegram-4.8.0rc1/src/airflow/providers/__init__.py +17 -0
  17. {apache_airflow_providers_telegram-4.7.2 → apache_airflow_providers_telegram-4.8.0rc1}/src/airflow/providers/telegram/__init__.py +3 -3
  18. {apache_airflow_providers_telegram-4.7.2 → apache_airflow_providers_telegram-4.8.0rc1}/src/airflow/providers/telegram/get_provider_info.py +0 -31
  19. apache_airflow_providers_telegram-4.8.0rc1/tests/conftest.py +19 -0
  20. apache_airflow_providers_telegram-4.8.0rc1/tests/system/__init__.py +17 -0
  21. apache_airflow_providers_telegram-4.8.0rc1/tests/system/telegram/__init__.py +16 -0
  22. apache_airflow_providers_telegram-4.8.0rc1/tests/system/telegram/example_telegram.py +51 -0
  23. apache_airflow_providers_telegram-4.8.0rc1/tests/unit/__init__.py +17 -0
  24. apache_airflow_providers_telegram-4.8.0rc1/tests/unit/telegram/__init__.py +17 -0
  25. apache_airflow_providers_telegram-4.8.0rc1/tests/unit/telegram/hooks/__init__.py +17 -0
  26. apache_airflow_providers_telegram-4.8.0rc1/tests/unit/telegram/hooks/test_telegram.py +304 -0
  27. apache_airflow_providers_telegram-4.8.0rc1/tests/unit/telegram/operators/__init__.py +17 -0
  28. apache_airflow_providers_telegram-4.8.0rc1/tests/unit/telegram/operators/test_telegram.py +178 -0
  29. {apache_airflow_providers_telegram-4.7.2 → apache_airflow_providers_telegram-4.8.0rc1}/src/airflow/providers/telegram/LICENSE +0 -0
  30. {apache_airflow_providers_telegram-4.7.2 → apache_airflow_providers_telegram-4.8.0rc1}/src/airflow/providers/telegram/hooks/__init__.py +0 -0
  31. {apache_airflow_providers_telegram-4.7.2 → apache_airflow_providers_telegram-4.8.0rc1}/src/airflow/providers/telegram/hooks/telegram.py +0 -0
  32. {apache_airflow_providers_telegram-4.7.2 → apache_airflow_providers_telegram-4.8.0rc1}/src/airflow/providers/telegram/operators/__init__.py +0 -0
  33. {apache_airflow_providers_telegram-4.7.2 → apache_airflow_providers_telegram-4.8.0rc1}/src/airflow/providers/telegram/operators/telegram.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: apache-airflow-providers-telegram
3
- Version: 4.7.2
3
+ Version: 4.8.0rc1
4
4
  Summary: Provider package apache-airflow-providers-telegram for Apache Airflow
5
5
  Keywords: airflow-provider,telegram,airflow,integration
6
6
  Author-email: Apache Software Foundation <dev@airflow.apache.org>
@@ -20,14 +20,14 @@ Classifier: Programming Language :: Python :: 3.10
20
20
  Classifier: Programming Language :: Python :: 3.11
21
21
  Classifier: Programming Language :: Python :: 3.12
22
22
  Classifier: Topic :: System :: Monitoring
23
- Requires-Dist: apache-airflow>=2.9.0
23
+ Requires-Dist: apache-airflow>=2.10.0rc1
24
24
  Requires-Dist: python-telegram-bot>=20.2
25
25
  Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
26
- Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-telegram/4.7.2/changelog.html
27
- Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-telegram/4.7.2
26
+ Project-URL: Changelog, https://airflow.staged.apache.org/docs/apache-airflow-providers-telegram/4.8.0/changelog.html
27
+ Project-URL: Documentation, https://airflow.staged.apache.org/docs/apache-airflow-providers-telegram/4.8.0
28
+ Project-URL: Mastodon, https://fosstodon.org/@airflow
28
29
  Project-URL: Slack Chat, https://s.apache.org/airflow-slack
29
30
  Project-URL: Source Code, https://github.com/apache/airflow
30
- Project-URL: Twitter, https://x.com/ApacheAirflow
31
31
  Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
32
32
 
33
33
 
@@ -55,7 +55,7 @@ Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
55
55
 
56
56
  Package ``apache-airflow-providers-telegram``
57
57
 
58
- Release: ``4.7.2``
58
+ Release: ``4.8.0``
59
59
 
60
60
 
61
61
  `Telegram <https://telegram.org/>`__
@@ -68,7 +68,7 @@ This is a provider package for ``telegram`` provider. All classes for this provi
68
68
  are in ``airflow.providers.telegram`` python package.
69
69
 
70
70
  You can find package information and changelog for the provider
71
- in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-telegram/4.7.2/>`_.
71
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-telegram/4.8.0/>`_.
72
72
 
73
73
  Installation
74
74
  ------------
@@ -85,10 +85,10 @@ Requirements
85
85
  ======================= ==================
86
86
  PIP package Version required
87
87
  ======================= ==================
88
- ``apache-airflow`` ``>=2.9.0``
88
+ ``apache-airflow`` ``>=2.10.0``
89
89
  ``python-telegram-bot`` ``>=20.2``
90
90
  ======================= ==================
91
91
 
92
92
  The changelog for the provider package can be found in the
93
- `changelog <https://airflow.apache.org/docs/apache-airflow-providers-telegram/4.7.2/changelog.html>`_.
93
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-telegram/4.8.0/changelog.html>`_.
94
94
 
@@ -23,7 +23,7 @@
23
23
 
24
24
  Package ``apache-airflow-providers-telegram``
25
25
 
26
- Release: ``4.7.2``
26
+ Release: ``4.8.0``
27
27
 
28
28
 
29
29
  `Telegram <https://telegram.org/>`__
@@ -36,7 +36,7 @@ This is a provider package for ``telegram`` provider. All classes for this provi
36
36
  are in ``airflow.providers.telegram`` python package.
37
37
 
38
38
  You can find package information and changelog for the provider
39
- in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-telegram/4.7.2/>`_.
39
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-telegram/4.8.0/>`_.
40
40
 
41
41
  Installation
42
42
  ------------
@@ -53,9 +53,9 @@ Requirements
53
53
  ======================= ==================
54
54
  PIP package Version required
55
55
  ======================= ==================
56
- ``apache-airflow`` ``>=2.9.0``
56
+ ``apache-airflow`` ``>=2.10.0``
57
57
  ``python-telegram-bot`` ``>=20.2``
58
58
  ======================= ==================
59
59
 
60
60
  The changelog for the provider package can be found in the
61
- `changelog <https://airflow.apache.org/docs/apache-airflow-providers-telegram/4.7.2/changelog.html>`_.
61
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-telegram/4.8.0/changelog.html>`_.
@@ -0,0 +1 @@
1
+ 7b2ec33c7ad4998d9c9735b79593fcdcd3b9dd1f
@@ -0,0 +1,431 @@
1
+ .. Licensed to the Apache Software Foundation (ASF) under one
2
+ or more contributor license agreements. See the NOTICE file
3
+ distributed with this work for additional information
4
+ regarding copyright ownership. The ASF licenses this file
5
+ to you under the Apache License, Version 2.0 (the
6
+ "License"); you may not use this file except in compliance
7
+ with the License. You may obtain a copy of the License at
8
+
9
+ .. http://www.apache.org/licenses/LICENSE-2.0
10
+
11
+ .. Unless required by applicable law or agreed to in writing,
12
+ software distributed under the License is distributed on an
13
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ KIND, either express or implied. See the License for the
15
+ specific language governing permissions and limitations
16
+ under the License.
17
+
18
+
19
+ .. NOTE TO CONTRIBUTORS:
20
+ Please, only add notes to the Changelog just below the "Changelog" header when there are some breaking changes
21
+ and you want to add an explanation to the users on how they are supposed to deal with them.
22
+ The changelog is updated and maintained semi-automatically by release manager.
23
+
24
+ ``apache-airflow-providers-telegram``
25
+
26
+
27
+ Changelog
28
+ ---------
29
+
30
+ 4.8.0
31
+ .....
32
+
33
+ .. note::
34
+ This release of provider is only available for Airflow 2.10+ as explained in the
35
+ Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>_.
36
+
37
+ Misc
38
+ ~~~~
39
+
40
+ * ``Bump min Airflow version in providers to 2.10 (#49843)``
41
+
42
+ .. Below changes are excluded from the changelog. Move them to
43
+ appropriate section above if needed. Do not delete the lines(!):
44
+ * ``Update description of provider.yaml dependencies (#50231)``
45
+ * ``Avoid committing history for providers (#49907)``
46
+ * ``Prepare docs for Apr 2nd wave of providers (#49051)``
47
+ * ``Remove unnecessary entries in get_provider_info and update the schema (#48849)``
48
+ * ``Remove fab from preinstalled providers (#48457)``
49
+ * ``Improve documentation building iteration (#48760)``
50
+ * ``Prepare docs for Apr 1st wave of providers (#48828)``
51
+ * ``Simplify tooling by switching completely to uv (#48223)``
52
+ * ``Prepare docs for Mar 2nd wave of providers (#48383)``
53
+ * ``Upgrade providers flit build requirements to 3.12.0 (#48362)``
54
+ * ``Move airflow sources to airflow-core package (#47798)``
55
+ * ``Remove links to x/twitter.com (#47801)``
56
+
57
+ 4.7.2
58
+ .....
59
+
60
+ Misc
61
+ ~~~~
62
+
63
+ * ``Upgrade flit to 3.11.0 (#46938)``
64
+
65
+ .. Below changes are excluded from the changelog. Move them to
66
+ appropriate section above if needed. Do not delete the lines(!):
67
+ * ``Move tests_common package to devel-common project (#47281)``
68
+ * ``Improve documentation for updating provider dependencies (#47203)``
69
+ * ``Add legacy namespace packages to airflow.providers (#47064)``
70
+ * ``Remove extra whitespace in provider readme template (#46975)``
71
+
72
+ 4.7.1
73
+ .....
74
+
75
+ Misc
76
+ ~~~~
77
+
78
+ * ``AIP-72: Support better type-hinting for Context dict in SDK (#45583)``
79
+
80
+ .. Below changes are excluded from the changelog. Move them to
81
+ appropriate section above if needed. Do not delete the lines(!):
82
+ * ``Move provider_tests to unit folder in provider tests (#46800)``
83
+ * ``Removed the unused provider's distribution (#46608)``
84
+ * ``Fix doc issues found with recent moves (#46372)``
85
+ * ``move telegram (#46079)``
86
+
87
+ 4.7.0
88
+ .....
89
+
90
+ .. note::
91
+ This release of provider is only available for Airflow 2.9+ as explained in the
92
+ `Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
93
+
94
+ Features
95
+ ~~~~~~~~
96
+
97
+ * ``Add telegram send file Operator and Hook (#44040)``
98
+
99
+ Misc
100
+ ~~~~
101
+
102
+ * ``Bump minimum Airflow version in providers to Airflow 2.9.0 (#44956)``
103
+ * ``Update DAG example links in multiple providers documents (#44034)``
104
+
105
+ .. Below changes are excluded from the changelog. Move them to
106
+ appropriate section above if needed. Do not delete the lines(!):
107
+ * ``Use Python 3.9 as target version for Ruff & Black rules (#44298)``
108
+ * ``Prepare docs for Nov 1st wave of providers (#44011)``
109
+ * ``Split providers out of the main "airflow/" tree into a UV workspace project (#42505)``
110
+
111
+ .. Review and move the new changes to one of the sections above:
112
+ * ``Update path of example dags in docs (#45069)``
113
+
114
+ 4.6.0
115
+ .....
116
+
117
+ .. note::
118
+ This release of provider is only available for Airflow 2.8+ as explained in the
119
+ `Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
120
+
121
+ Misc
122
+ ~~~~
123
+
124
+ * ``Bump minimum Airflow version in providers to Airflow 2.8.0 (#41396)``
125
+
126
+ 4.5.2
127
+ .....
128
+
129
+ Bug Fixes
130
+ ~~~~~~~~~
131
+
132
+ * ``Fix for typing in telegram provider (#40258)``
133
+ * ``Fix typing in telegram provider (#40255)``
134
+
135
+ 4.5.1
136
+ .....
137
+
138
+ Misc
139
+ ~~~~
140
+
141
+ * ``Faster 'airflow_version' imports (#39552)``
142
+ * ``Simplify 'airflow_version' imports (#39497)``
143
+
144
+ .. Below changes are excluded from the changelog. Move them to
145
+ appropriate section above if needed. Do not delete the lines(!):
146
+ * ``Reapply templates for all providers (#39554)``
147
+
148
+ 4.5.0
149
+ .....
150
+
151
+ .. note::
152
+ This release of provider is only available for Airflow 2.7+ as explained in the
153
+ `Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
154
+
155
+ Misc
156
+ ~~~~
157
+
158
+ * ``Bump minimum Airflow version in providers to Airflow 2.7.0 (#39240)``
159
+
160
+ .. Below changes are excluded from the changelog. Move them to
161
+ appropriate section above if needed. Do not delete the lines(!):
162
+ * ``Prepare docs 1st wave (RC1) April 2024 (#38863)``
163
+ * ``Bump ruff to 0.3.3 (#38240)``
164
+
165
+ 4.4.0
166
+ .....
167
+
168
+ Features
169
+ ~~~~~~~~
170
+
171
+ * ``Add telegram connection with documentation (#37515)``
172
+
173
+ .. Below changes are excluded from the changelog. Move them to
174
+ appropriate section above if needed. Do not delete the lines(!):
175
+ * ``Add comment about versions updated by release manager (#37488)``
176
+ * ``Fix remaining D401 checks (#37434)``
177
+
178
+ 4.3.1
179
+ .....
180
+
181
+ Misc
182
+ ~~~~
183
+
184
+ * ``Bump min telegram-bot version (#36670)``
185
+
186
+ .. Below changes are excluded from the changelog. Move them to
187
+ appropriate section above if needed. Do not delete the lines(!):
188
+ * ``Add documentation for 3rd wave of providers in Deember (#36464)``
189
+ * ``Prepare docs 1st wave of Providers January 2024 (#36640)``
190
+ * ``Speed up autocompletion of Breeze by simplifying provider state (#36499)``
191
+ * ``Re-apply updated version numbers to 2nd wave of providers in December (#36380)``
192
+ * ``Provide the logger_name param in providers hooks in order to override the logger name (#36675)``
193
+ * ``Revert "Provide the logger_name param in providers hooks in order to override the logger name (#36675)" (#37015)``
194
+ * ``Prepare docs 2nd wave of Providers January 2024 (#36945)``
195
+
196
+ 4.3.0
197
+ .....
198
+
199
+ .. note::
200
+ This release of provider is only available for Airflow 2.6+ as explained in the
201
+ `Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
202
+
203
+ Misc
204
+ ~~~~
205
+
206
+ * ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)``
207
+
208
+ .. Below changes are excluded from the changelog. Move them to
209
+ appropriate section above if needed. Do not delete the lines(!):
210
+ * ``Fix and reapply templates for provider documentation (#35686)``
211
+ * ``Prepare docs 3rd wave of Providers October 2023 - FIX (#35233)``
212
+ * ``Prepare docs 2nd wave of Providers November 2023 (#35836)``
213
+ * ``Use reproducible builds for providers (#35693)``
214
+ * ``Prepare docs 1st wave of Providers November 2023 (#35537)``
215
+ * ``Prepare docs 3rd wave of Providers October 2023 (#35187)``
216
+ * ``Pre-upgrade 'ruff==0.0.292' changes in providers (#35053)``
217
+
218
+ 4.2.0
219
+ .....
220
+
221
+ .. note::
222
+ This release of provider is only available for Airflow 2.5+ as explained in the
223
+ `Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
224
+
225
+ Misc
226
+ ~~~~
227
+
228
+ * ``Bump min airflow version of providers (#34728)``
229
+
230
+
231
+ .. Below changes are excluded from the changelog. Move them to
232
+ appropriate section above if needed. Do not delete the lines(!):
233
+ * ``Prepare docs for 09 2023 - 1st wave of Providers (#34201)``
234
+ * ``Prepare docs for Aug 2023 3rd wave of Providers (#33730)``
235
+ * ``Prepare docs for Aug 2023 2nd wave of Providers (#33291)``
236
+ * ``D205 Support - Providers: Snowflake to Zendesk (inclusive) (#32359)``
237
+ * ``Prepare docs for July 2023 wave of Providers (RC2) (#32381)``
238
+ * ``Remove spurious headers for provider changelogs (#32373)``
239
+ * ``Prepare docs for July 2023 wave of Providers (#32298)``
240
+ * ``Improve provider documentation and README structure (#32125)``
241
+
242
+ 4.1.1
243
+ .....
244
+
245
+ .. note::
246
+ This release dropped support for Python 3.7
247
+
248
+ Misc
249
+ ~~~~
250
+
251
+ * ``Add note about dropping Python 3.7 for providers (#32015)``
252
+
253
+ .. Below changes are excluded from the changelog. Move them to
254
+ appropriate section above if needed. Do not delete the lines(!):
255
+ * ``Add D400 pydocstyle check - Providers (#31427)``
256
+
257
+ 4.1.0
258
+ .....
259
+
260
+ .. note::
261
+ This release of provider is only available for Airflow 2.4+ as explained in the
262
+ `Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
263
+
264
+ Misc
265
+ ~~~~
266
+
267
+ * ``Bump minimum Airflow version in providers (#30917)``
268
+
269
+ .. Below changes are excluded from the changelog. Move them to
270
+ appropriate section above if needed. Do not delete the lines(!):
271
+ * ``Add full automation for min Airflow version for providers (#30994)``
272
+ * ``Add mechanism to suspend providers (#30422)``
273
+ * ``Use '__version__' in providers not 'version' (#31393)``
274
+ * ``Fixing circular import error in providers caused by airflow version check (#31379)``
275
+ * ``Prepare docs for May 2023 wave of Providers (#31252)``
276
+
277
+ 4.0.0
278
+ .....
279
+
280
+ Breaking changes
281
+ ~~~~~~~~~~~~~~~~
282
+
283
+ In this version, we upgraded the ``python-telegram-bot`` to ``20.0.0`` and above.
284
+ All remains the same except that now the ``get_conn()`` method in ``TelegramHook`` is a coroutine function.
285
+ Refer to `python-telegram-bot transition guide <https://github.com/python-telegram-bot/python-telegram-bot/wiki/Transition-guide-to-Version-20.0#asyncio>`_ for more details.
286
+
287
+ * ``Updated Telegram Provider to ensure compatibility with >=20.0.0 (#28953)``
288
+
289
+ 3.1.1
290
+ .....
291
+
292
+ Misc
293
+ ~~~~
294
+ * ``Limit Telegram to < 20.0.0 (#28671)``
295
+
296
+ .. Below changes are excluded from the changelog. Move them to
297
+ appropriate section above if needed. Do not delete the lines(!):
298
+
299
+
300
+ 3.1.0
301
+ .....
302
+
303
+ .. note::
304
+ This release of provider is only available for Airflow 2.3+ as explained in the
305
+ `Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
306
+
307
+ Misc
308
+ ~~~~
309
+
310
+ * ``Move min airflow version to 2.3.0 for all providers (#27196)``
311
+
312
+ .. Below changes are excluded from the changelog. Move them to
313
+ appropriate section above if needed. Do not delete the lines(!):
314
+ * ``Add documentation for July 2022 Provider's release (#25030)``
315
+ * ``Update old style typing (#26872)``
316
+ * ``Enable string normalization in python formatting - providers (#27205)``
317
+ * ``Update docs for September Provider's release (#26731)``
318
+ * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)``
319
+ * ``Prepare docs for new providers release (August 2022) (#25618)``
320
+ * ``Move provider dependencies to inside provider folders (#24672)``
321
+
322
+ 3.0.0
323
+ .....
324
+
325
+ Breaking changes
326
+ ~~~~~~~~~~~~~~~~
327
+
328
+ .. note::
329
+ This release of provider is only available for Airflow 2.2+ as explained in the
330
+ `Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
331
+
332
+ .. Below changes are excluded from the changelog. Move them to
333
+ appropriate section above if needed. Do not delete the lines(!):
334
+ * ``Migrate Telegram example DAGs to new design #22468 (#24126)``
335
+ * ``Add explanatory note for contributors about updating Changelog (#24229)``
336
+ * ``Prepare docs for May 2022 provider's release (#24231)``
337
+ * ``Update package description to remove double min-airflow specification (#24292)``
338
+
339
+ 2.0.4
340
+ .....
341
+
342
+ Bug Fixes
343
+ ~~~~~~~~~
344
+
345
+ * ``Fix mistakenly added install_requires for all providers (#22382)``
346
+
347
+ 2.0.3
348
+ .....
349
+
350
+ Misc
351
+ ~~~~~
352
+
353
+ * ``Add Trove classifiers in PyPI (Framework :: Apache Airflow :: Provider)``
354
+
355
+ 2.0.2
356
+ .....
357
+
358
+ Misc
359
+ ~~~~
360
+
361
+ * ``Support for Python 3.10``
362
+
363
+
364
+ .. Below changes are excluded from the changelog. Move them to
365
+ appropriate section above if needed. Do not delete the lines(!):
366
+ * ``Fixed changelog for January 2022 (delayed) provider's release (#21439)``
367
+ * ``Fix K8S changelog to be PyPI-compatible (#20614)``
368
+ * ``Fix template_fields type to have MyPy friendly Sequence type (#20571)``
369
+ * ``Fix mypy providers (#20190)``
370
+ * ``Add documentation for January 2021 providers release (#21257)``
371
+ * ``Remove ':type' lines now sphinx-autoapi supports typehints (#20951)``
372
+ * ``Update documentation for provider December 2021 release (#20523)``
373
+ * ``Use typed Context EVERYWHERE (#20565)``
374
+ * ``Update documentation for November 2021 provider's release (#19882)``
375
+ * ``Prepare documentation for October Provider's release (#19321)``
376
+ * ``Update documentation for September providers release (#18613)``
377
+ * ``Static start_date and default arg cleanup for misc. provider example DAGs (#18597)``
378
+
379
+ 2.0.1
380
+ .....
381
+
382
+ Misc
383
+ ~~~~
384
+
385
+ * ``Optimise connection importing for Airflow 2.2.0``
386
+
387
+ .. Below changes are excluded from the changelog. Move them to
388
+ appropriate section above if needed. Do not delete the lines(!):
389
+ * ``Prepares docs for Rc2 release of July providers (#17116)``
390
+ * ``Remove/refactor default_args pattern for miscellaneous providers (#16872)``
391
+
392
+ 2.0.0
393
+ .....
394
+
395
+ Breaking changes
396
+ ~~~~~~~~~~~~~~~~
397
+
398
+ * ``Auto-apply apply_default decorator (#15667)``
399
+
400
+ .. warning:: Due to apply_default decorator removal, this version of the provider requires Airflow 2.1.0+.
401
+ If your Airflow version is < 2.1.0, and you want to install this provider version, first upgrade
402
+ Airflow to at least version 2.1.0. Otherwise your Airflow package version will be upgraded
403
+ automatically and you will have to manually run ``airflow upgrade db`` to complete the migration.
404
+
405
+ .. Below changes are excluded from the changelog. Move them to
406
+ appropriate section above if needed. Do not delete the lines(!):
407
+ * ``Adds interactivity when generating provider documentation. (#15518)``
408
+ * ``Check synctatic correctness for code-snippets (#16005)``
409
+ * ``Prepares provider release after PIP 21 compatibility (#15576)``
410
+ * ``Remove Backport Providers (#14886)``
411
+ * ``Updated documentation for June 2021 provider release (#16294)``
412
+ * ``More documentation update for June providers release (#16405)``
413
+ * ``Synchronizes updated changelog after buggfix release (#16464)``
414
+
415
+ 1.0.2
416
+ .....
417
+
418
+ Bug fixes
419
+ ~~~~~~~~~
420
+
421
+ * ``Fix the AttributeError with text field in TelegramOperator (#13990)``
422
+
423
+ 1.0.1
424
+ .....
425
+
426
+ Updated documentation and readme files.
427
+
428
+ 1.0.0
429
+ .....
430
+
431
+ Initial version of the provider.
@@ -0,0 +1,35 @@
1
+
2
+ .. Licensed to the Apache Software Foundation (ASF) under one
3
+ or more contributor license agreements. See the NOTICE file
4
+ distributed with this work for additional information
5
+ regarding copyright ownership. The ASF licenses this file
6
+ to you under the Apache License, Version 2.0 (the
7
+ "License"); you may not use this file except in compliance
8
+ with the License. You may obtain a copy of the License at
9
+
10
+ .. http://www.apache.org/licenses/LICENSE-2.0
11
+
12
+ .. Unless required by applicable law or agreed to in writing,
13
+ software distributed under the License is distributed on an
14
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15
+ KIND, either express or implied. See the License for the
16
+ specific language governing permissions and limitations
17
+ under the License.
18
+
19
+ .. NOTE! THIS FILE IS AUTOMATICALLY GENERATED AND WILL BE OVERWRITTEN!
20
+
21
+ .. IF YOU WANT TO MODIFY THIS FILE, YOU SHOULD MODIFY THE TEMPLATE
22
+ `PROVIDER_COMMITS_TEMPLATE.rst.jinja2` IN the `dev/breeze/src/airflow_breeze/templates` DIRECTORY
23
+
24
+ .. THE REMAINDER OF THE FILE IS AUTOMATICALLY GENERATED. IT WILL BE OVERWRITTEN!
25
+
26
+ Package apache-airflow-providers-telegram
27
+ ------------------------------------------------------
28
+
29
+ `Telegram <https://telegram.org/>`__
30
+
31
+
32
+ This is detailed commit list of changes for versions provider package: ``telegram``.
33
+ For high-level changelog, see :doc:`package information including changelog <index>`.
34
+
35
+ .. airflow-providers-commits::
@@ -0,0 +1,27 @@
1
+ # Disable Flake8 because of all the sphinx imports
2
+ #
3
+ # Licensed to the Apache Software Foundation (ASF) under one
4
+ # or more contributor license agreements. See the NOTICE file
5
+ # distributed with this work for additional information
6
+ # regarding copyright ownership. The ASF licenses this file
7
+ # to you under the Apache License, Version 2.0 (the
8
+ # "License"); you may not use this file except in compliance
9
+ # with the License. You may obtain a copy of the License at
10
+ #
11
+ # http://www.apache.org/licenses/LICENSE-2.0
12
+ #
13
+ # Unless required by applicable law or agreed to in writing,
14
+ # software distributed under the License is distributed on an
15
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16
+ # KIND, either express or implied. See the License for the
17
+ # specific language governing permissions and limitations
18
+ # under the License.
19
+ """Configuration of Providers docs building."""
20
+
21
+ from __future__ import annotations
22
+
23
+ import os
24
+
25
+ os.environ["AIRFLOW_PACKAGE_NAME"] = "apache-airflow-providers-telegram"
26
+
27
+ from docs.provider_conf import * # noqa: F403
@@ -0,0 +1,39 @@
1
+ .. Licensed to the Apache Software Foundation (ASF) under one
2
+ or more contributor license agreements. See the NOTICE file
3
+ distributed with this work for additional information
4
+ regarding copyright ownership. The ASF licenses this file
5
+ to you under the Apache License, Version 2.0 (the
6
+ "License"); you may not use this file except in compliance
7
+ with the License. You may obtain a copy of the License at
8
+
9
+ .. http://www.apache.org/licenses/LICENSE-2.0
10
+
11
+ .. Unless required by applicable law or agreed to in writing,
12
+ software distributed under the License is distributed on an
13
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ KIND, either express or implied. See the License for the
15
+ specific language governing permissions and limitations
16
+ under the License.
17
+
18
+ .. _howto/connection:telegram:
19
+
20
+ Connecting to Telegram
21
+ ======================
22
+
23
+ The Telegram connection type enable connection to Telegram that allows you to post messages to Telegram using the telegram python-telegram-bot library.
24
+
25
+ After installing the Telegram provider in your Airflow environment, the corresponding connection type of ``telegram`` will be made available.
26
+
27
+ Default Connection IDs
28
+ ----------------------
29
+
30
+ Telegram Hook uses the parameter ``telegram_conn_id`` for Connection IDs and the value of the parameter as ``telegram_default`` by default. You can create multiple connections in case you want to switch between environments.
31
+
32
+ Configuring the Connection
33
+ --------------------------
34
+
35
+ Password (optional)
36
+ The Telegram API token
37
+
38
+ Host (optional)
39
+ The Chat ID of the telegram chat/channel/group