File tree Expand file tree Collapse file tree 6 files changed +15
-6
lines changed
src/airflow/providers/standard Expand file tree Collapse file tree 6 files changed +15
-6
lines changed Original file line number Diff line number Diff line change 23
23
24
24
Package ``apache-airflow-providers-standard ``
25
25
26
- Release: ``1.4.0 ``
26
+ Release: ``1.4.1 ``
27
27
28
28
29
29
Airflow Standard Provider
Original file line number Diff line number Diff line change 35
35
Changelog
36
36
---------
37
37
38
+ 1.4.1
39
+ .....
40
+
41
+ Bug Fixes
42
+ ~~~~~~~~~
43
+
44
+ * ``Fix sensor skipping in Airflow 3.x branching operators (#53455) ``
45
+
38
46
1.4.0
39
47
.....
40
48
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ apache-airflow-providers-standard package
66
66
Airflow Standard Provider
67
67
68
68
69
- Release: 1.4.0
69
+ Release: 1.4.1
70
70
71
71
Provider package
72
72
----------------
Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ source-date-epoch: 1751474457
27
27
# In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have
28
28
# to be done in the same PR
29
29
versions :
30
+ - 1.4.1
30
31
- 1.4.0
31
32
- 1.3.0
32
33
- 1.2.0
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi"
25
25
26
26
[project ]
27
27
name = " apache-airflow-providers-standard"
28
- version = " 1.4.0 "
28
+ version = " 1.4.1 "
29
29
description = " Provider package apache-airflow-providers-standard for Apache Airflow"
30
30
readme = " README.rst"
31
31
authors = [
@@ -94,8 +94,8 @@ apache-airflow-providers-common-sql = {workspace = true}
94
94
apache-airflow-providers-standard = {workspace = true }
95
95
96
96
[project .urls ]
97
- "Documentation" = " https://airflow.apache.org/docs/apache-airflow-providers-standard/1.4.0 "
98
- "Changelog" = " https://airflow.apache.org/docs/apache-airflow-providers-standard/1.4.0 /changelog.html"
97
+ "Documentation" = " https://airflow.apache.org/docs/apache-airflow-providers-standard/1.4.1 "
98
+ "Changelog" = " https://airflow.apache.org/docs/apache-airflow-providers-standard/1.4.1 /changelog.html"
99
99
"Bug Tracker" = " https://github.com/apache/airflow/issues"
100
100
"Source Code" = " https://github.com/apache/airflow"
101
101
"Slack Chat" = " https://s.apache.org/airflow-slack"
Original file line number Diff line number Diff line change 29
29
30
30
__all__ = ["__version__" ]
31
31
32
- __version__ = "1.4.0 "
32
+ __version__ = "1.4.1 "
33
33
34
34
if packaging .version .parse (packaging .version .parse (airflow_version ).base_version ) < packaging .version .parse (
35
35
"2.10.0"
You can’t perform that action at this time.
0 commit comments