Skip to content

Commit 22fe931

Browse files
authored
Merge pull request #500 from 23-OSSCA-python-mysql-replication/v1.0-version
V 1.0 version
2 parents 8d003d2 + 09a2cf5 commit 22fe931

File tree

4 files changed

+27
-5
lines changed

4 files changed

+27
-5
lines changed

CHANGELOG

+15-1
Original file line numberDiff line numberDiff line change
@@ -210,4 +210,18 @@
210210
* Enhance Data Integrity with Binlog Event Checksum Verification
211211
* Fix Bug table map event read null_bitmask packet
212212
* 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

README.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,13 @@ Project status
4343
================
4444

4545
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 ~)
4748
* Python 3.3, 3.4, 3.5 and 3.6 (3.2 is not supported)
4849
* PyPy (really faster than the standard Python interpreter)
4950

51+
MySQL version 8.0.14 and later Set global variable binlog_row_metadata='FULL' and binlog_row_image='FULL'
52+
5053
The project is used in production for critical stuff in some
5154
medium internet corporations. But all use case as not
5255
been perfectly test in the real world.
@@ -310,6 +313,11 @@ Major contributor:
310313
* bjoernhaeuser for his bugs fixing, improvements and community support https://github.com/bjoernhaeuser
311314
* Arthur Gautier gtid, slave report... https://github.com/baloo
312315

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+
313321
Other contributors:
314322
* Dvir Volk for bug fix https://github.com/dvirsky
315323
* Lior Sion code cleanup and improvements https://github.com/liorsion

docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@
4747
# built documents.
4848
#
4949
# The short X.Y version.
50-
version = "0.44"
50+
version = "1.0"
5151
# The full version, including alpha/beta/rc tags.
52-
release = "0.44"
52+
release = "1.0"
5353

5454
# The language for content autogenerated by Sphinx. Refer to documentation
5555
# for a list of supported languages.

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def run(self):
2828
unittest.main(tests, argv=sys.argv[:1])
2929

3030

31-
version = "0.44.0"
31+
version = "1.0.0"
3232

3333
this_directory = Path(__file__).parent
3434
long_description = (this_directory / "README.md").read_text()

0 commit comments

Comments
 (0)