File tree 4 files changed +27
-5
lines changed
4 files changed +27
-5
lines changed Original file line number Diff line number Diff line change 210
210
* Enhance Data Integrity with Binlog Event Checksum Verification
211
211
* Fix Bug table map event read null_bitmask packet
212
212
* Fix Timestamp conversion to return UTC instead of local timezone
213
- * Optimize Handler_read_rnd by removing ORDER BY clause
213
+ * Optimize Handler_read_rnd by removing ORDER BY clause
214
+
215
+ 0.45.0 02/10/2023
216
+ * Fix Json object, Array parse Error
217
+
218
+ 1.0.0 02/10/2023
219
+ * remove column schema
220
+ * Mysql 8.0.14 version support Table map Event optional metaData extraction
221
+ * Sync Column from optional metaData
222
+ * Fix parsing of incorrect bytes in 'extradata' for 'rows event'
223
+ * Fix remove duplicate Affected columns output
224
+ * Enhance Code Quality with Ruff, Black, and Pre-commit
225
+ * Enhance Testing with MySQL8 & Update GitHub Actions
226
+ * Add Logging when fake rotate event occured
227
+ * update logo
Original file line number Diff line number Diff line change @@ -43,10 +43,13 @@ Project status
43
43
================
44
44
45
45
The project is test with:
46
- * MySQL 5.5, 5.6 and 5.7
46
+ * MySQL 5.5, 5.6 and 5.7 (v0.1 ~ v0.45)
47
+ * MySQL 8.0.14 (v1.0 ~ )
47
48
* Python 3.3, 3.4, 3.5 and 3.6 (3.2 is not supported)
48
49
* PyPy (really faster than the standard Python interpreter)
49
50
51
+ MySQL version 8.0.14 and later Set global variable binlog_row_metadata='FULL' and binlog_row_image='FULL'
52
+
50
53
The project is used in production for critical stuff in some
51
54
medium internet corporations. But all use case as not
52
55
been perfectly test in the real world.
@@ -310,6 +313,11 @@ Major contributor:
310
313
* bjoernhaeuser for his bugs fixing, improvements and community support https://github.com/bjoernhaeuser
311
314
* Arthur Gautier gtid, slave report... https://github.com/baloo
312
315
316
+ Maintainer:
317
+ * Julien Duponchelle Original author https://github.com/noplay
318
+ * Sean-k1 https://github.com/sean-k1
319
+ * dongwook-chan https://github.com/dongwook-chan
320
+
313
321
Other contributors:
314
322
* Dvir Volk for bug fix https://github.com/dvirsky
315
323
* Lior Sion code cleanup and improvements https://github.com/liorsion
Original file line number Diff line number Diff line change 47
47
# built documents.
48
48
#
49
49
# The short X.Y version.
50
- version = "0.44 "
50
+ version = "1.0 "
51
51
# The full version, including alpha/beta/rc tags.
52
- release = "0.44 "
52
+ release = "1.0 "
53
53
54
54
# The language for content autogenerated by Sphinx. Refer to documentation
55
55
# for a list of supported languages.
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ def run(self):
28
28
unittest .main (tests , argv = sys .argv [:1 ])
29
29
30
30
31
- version = "0.44 .0"
31
+ version = "1.0 .0"
32
32
33
33
this_directory = Path (__file__ ).parent
34
34
long_description = (this_directory / "README.md" ).read_text ()
You can’t perform that action at this time.
0 commit comments