Skip to content
This repository has been archived by the owner on Oct 17, 2023. It is now read-only.

Commit

Permalink
Adaptor: Add MySQL (#515)
Browse files Browse the repository at this point in the history
Adds MySQL adaptor based on the Postgresql one.

See the PR and dev-add-mysql branch for full details since this is a squashed commit.

(As much as it pains me to have such a poor commit message)
  • Loading branch information
atomicules committed May 26, 2022
1 parent 631f9ad commit add7994
Show file tree
Hide file tree
Showing 20 changed files with 3,024 additions and 29 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
## v1.0.0 [TBD]
## v1.1.0 [2022-05-26]

### Features

- Adds MySQL Adaptor via [#515](https://github.com/compose/transporter/pull/515), thanks @atomicules!

## v1.0.0 [2021-12-01]

This release does not introduce any new functionalities, but catches up transporter with modern golang.
It also introduces a new standard way of running adaptor tests.
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ Below is a list of each adaptor and its support of the feature:
| file | | X |
| mongodb | X | X |
| postgresql | | X |
| mysql | | X |
| rabbitmq | X | |
| rethinkdb | | X |
+---------------+-------------+----------------+
Expand All @@ -64,6 +65,7 @@ Each adaptor has its own README page with details on configuration and capabilit
* [postgresql](./adaptor/postgres)
* [rabbitmq](./adaptor/rabbitmq)
* [rethinkdb](./adaptor/rethinkdb)
* [mysql](./adaptor/mysql)

Native Functions
----------------
Expand Down
1 change: 1 addition & 0 deletions adaptor/all/all.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import (
_ "github.com/compose/transporter/adaptor/file"
_ "github.com/compose/transporter/adaptor/mongodb"
_ "github.com/compose/transporter/adaptor/postgres"
_ "github.com/compose/transporter/adaptor/mysql"
_ "github.com/compose/transporter/adaptor/rabbitmq"
_ "github.com/compose/transporter/adaptor/rethinkdb"
)

0 comments on commit add7994

Please sign in to comment.