Commit acbd8c2 1 parent 0178178 commit acbd8c2 Copy full SHA for acbd8c2
File tree 2 files changed +16
-1
lines changed
2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+
4
+ ## 2.7.0 (2019-03-05)
5
+
6
+ - Make event handlers configurable: this allows for e.g. adding your own notifier for specific events
7
+ - Switch slack to use events for notifications of interactive pipeline runs
8
+ - Fix an edge case bug where reverting a commit after an error in the table creation for an incremental load
9
+ job would not recreate the original tables leading to a failed load
10
+ - Fix an edge case bug where crashing during a triggered (code change, TRUNCATE) full load of an
11
+ incremental load job after the table was already loaded would not rerun the full load
12
+ leading to missing data
13
+ - Optimize how we set the spawning method in multiprocessing
14
+
15
+
3
16
## 2.6.1 (2019-02-20)
17
+
4
18
- Fix for Python 3.7 ("RuntimeError: context has already been set")
5
19
20
+
6
21
## 2.6.0 (2019-02-12)
7
22
8
23
- Python 3.8 compatibility (explicitly set process spawning method to 'fork')
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ def get_long_description():
7
7
8
8
setup (
9
9
name = 'data-integration' ,
10
- version = '2.6.1 ' ,
10
+ version = '2.7.0 ' ,
11
11
12
12
description = 'Opinionated lightweight ETL pipeline framework' ,
13
13
You can’t perform that action at this time.
0 commit comments