Skip to content

Commit ded5e80

Browse files
Merge shyiko/master into fivetran/master
2 parents 17d09db + 1b195f9 commit ded5e80

File tree

4 files changed

+266
-243
lines changed

4 files changed

+266
-243
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## [0.21.0](https://github.com/shyiko/mysql-binlog-connector-java/compare/0.20.1...0.21.0) - 2020-06-08
6+
7+
### Fixed
8+
- Potential deadlock when keepAlive is on ([#321](https://github.com/shyiko/mysql-binlog-connector-java/issues/321)).
9+
10+
### Changed
11+
- `BinaryLogClient.LifecycleListener::onConnect()` order relative to keepAlive thread `start()`.
12+
Calling `disconnect()` inside `onConnect()` is now guaranteed to terminate keepAlive thread ([#213](https://github.com/shyiko/mysql-binlog-connector-java/pull/213),
13+
[260](https://github.com/shyiko/mysql-binlog-connector-java/pull/260)).
14+
A side effect of this change is that throwing RuntimeException inside `onConnect()` will no longer prevent keepAlive thread from starting.
15+
516
## [0.20.1](https://github.com/shyiko/mysql-binlog-connector-java/compare/0.20.0...0.20.1) - 2019-05-12
617

718
### Added

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# mysql-binlog-connector-java [![Build Status](https://travis-ci.org/shyiko/mysql-binlog-connector-java.svg?branch=master)](https://travis-ci.org/shyiko/mysql-binlog-connector-java) [![Coverage Status](https://coveralls.io/repos/shyiko/mysql-binlog-connector-java/badge.svg?branch=master)](https://coveralls.io/r/shyiko/mysql-binlog-connector-java?branch=master) [![Maven Central](https://img.shields.io/maven-central/v/com.github.shyiko/mysql-binlog-connector-java.svg)](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.github.shyiko%22%20AND%20a%3A%22mysql-binlog-connector-java%22)
22

3+
## ATTENTION: This repository is no longer maintained. I recommend migrating to [osheroff/mysql-binlog-connector-java](https://github.com/osheroff/mysql-binlog-connector-java).
4+
35
MySQL Binary Log connector.
46

57
Initially project was started as a fork of [open-replicator](https://code.google.com/p/open-replicator),
@@ -28,7 +30,7 @@ Get the latest JAR(s) from [here](http://search.maven.org/#search%7Cga%7C1%7Cg%3
2830
<dependency>
2931
<groupId>com.github.shyiko</groupId>
3032
<artifactId>mysql-binlog-connector-java</artifactId>
31-
<version>0.18.1</version>
33+
<version>0.21.0</version>
3234
</dependency>
3335
```
3436

0 commit comments

Comments
 (0)