r2dbc-mysql icon indicating copy to clipboard operation
r2dbc-mysql copied to clipboard

NEW FORK announcement(+Message from Original Owner 'MirroMutth')

Open jchrys opened this issue 2 years ago • 4 comments

⚠️ Deprecation Notice ⚠️

Recently, there have been concerns about the maintenance of the R2DBC-MySQL project as the original repository appears to be abandoned.

However, we have been fortunate to receive a response from the original owner, Mirro Mutth, who has kindly granted permission for us to take over the project, as long as it remains open source.

In his response, Mirro Mutth explained that he is unable to maintain the project due to his busy schedule in the real world, and he would be happy if we took over the project. We are grateful for his contribution to the project and his willingness to keep it open source.

We Have Created a New Fork

You can find the new forked repository here: https://github.com/asyncer-io/r2dbc-mysql 👈

We've already resolved various bugs and updated dependencies to their latest versions. As a result, on April 3, 2023, we have released version ~~0.9.3~~v1.0.2 which supports the latest r2dbc-spi.

We've also implemented new features to improve the usability of the project. Our team is committed to maintaining and updating the project going forward.

We welcome anyone who is interested in contributing to this project, whether by fixing bugs, adding new features, or improving documentation. You can visit the repository today to try out the updated version of the project.

If you encounter any issues or have suggestions for improvements, please create an issue on the GitHub repository or submit a pull request. We look forward to collaborating with you on this project!

TL;DR

  • A new fork of this project has been created at https://github.com/asyncer-io/r2dbc-mysql
  • Version 1.0.1 has been released which compiles with latest r2dbc-spi and works seemlessly with the latest version of spring-data r2dbc.
  • See below for instructions on how to use the new version.

Maven


<dependency>
  <groupId>io.asyncer</groupId>
  <artifactId>r2dbc-mysql</artifactId>
  <version>1.0.2</version>
</dependency>

Gradle

Groovy DSL

dependencies {
    // Maybe should to use `compile` instead of `implementation` on the lower version of Gradle.
    implementation 'io.asyncer:r2dbc-mysql:1.0.2'
}

Kotlin DSL

dependencies {
    // Maybe should to use `compile` instead of `implementation` on the lower version of Gradle.
    implementation("io.asyncer:r2dbc-mysql:1.0.2")
}

jchrys avatar Mar 12 '23 21:03 jchrys

Awesome news. Thanks a lot for taking over the maintenance of this project.

@mirromutth can you pin this issue for improved visibility to the top of the issue tracker?

mp911de avatar Mar 14 '23 14:03 mp911de

Thanks @mirromutth for pinning this issue. 😄

jchrys avatar Mar 18 '23 07:03 jchrys

🎉We've just released the v1.0.2 of r2dbc-mysql. (v0.9.3 for r2dbc-spi:0.9.1.RELEASE as well) This version fully supports the latest r2dbc-spi, providing improved performance and stability. Please check out our repository: https://github.com/asyncer-io/r2dbc-mysql

jchrys avatar Apr 02 '23 16:04 jchrys

good job

zeje avatar May 17 '23 14:05 zeje