Skip to content

Commit 498882b

Browse files
committed
Version 0.7.3.
* Support for MariaDB 11.7. * Support from MySQL 8.0.41.
1 parent 0f7da73 commit 498882b

File tree

9 files changed

+18
-16
lines changed

9 files changed

+18
-16
lines changed

README.ja.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ MariaDBまたはMySQLの同一ホスト内の2つのデータベースの差分
99
### システム要件
1010

1111
* JDK 1.8 以上
12-
* MariaDB 10.3, 10.4, 10.5, 10.6, 10.7, 10.8, 10.9, 10.10, 10.11, 11.0, 11.1, 11.2, 11.3, 11.4, 11.5, 11.6
13-
* MySQL 8.0.31, 8.0.32, 8.0.33, 8.0.34, 8.0.35, 8.0.36, 8.0.37, 8.0.38, 8.0.39, 8.0.40
12+
* MariaDB 10.3, 10.4, 10.5, 10.6, 10.7, 10.8, 10.9, 10.10, 10.11, 11.0, 11.1, 11.2, 11.3, 11.4, 11.5, 11.6, 11.7
13+
* MySQL 8.0.31, 8.0.32, 8.0.33, 8.0.34, 8.0.35, 8.0.36, 8.0.37, 8.0.38, 8.0.39, 8.0.40, 8.0.41
1414

1515
### コマンド
1616

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ Get diff and sync between two databases in same host created by MariaDB or MySQL
99
### System Required
1010

1111
* over JDK 1.8
12-
* MariaDB 10.3, 10.4, 10.5, 10.6, 10.7, 10.8, 10.9, 10.10, 10.11, 11.0, 11.1, 11.2, 11.3, 11.4, 11.5, 11.6
13-
* MySQL 8.0.31, 8.0.32, 8.0.33, 8.0.34, 8.0.35, 8.0.36, 8.0.37, 8.0.38, 8.0.39, 8.0.40
12+
* MariaDB 10.3, 10.4, 10.5, 10.6, 10.7, 10.8, 10.9, 10.10, 10.11, 11.0, 11.1, 11.2, 11.3, 11.4, 11.5, 11.6, 11.7
13+
* MySQL 8.0.31, 8.0.32, 8.0.33, 8.0.34, 8.0.35, 8.0.36, 8.0.37, 8.0.38, 8.0.39, 8.0.40, 8.0.41
1414

1515
### Usage by cli
1616

cli/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.walksocket</groupId>
77
<artifactId>magentadesk</artifactId>
8-
<version>0.7.2</version>
8+
<version>0.7.3</version>
99
</parent>
1010
<artifactId>cli</artifactId>
1111
<packaging>jar</packaging>

cli/src/main/java/com/walksocket/md/MdExecute.java

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,9 @@ public static MdOutputAbstract execute(MdInputAbstract input) throws Exception {
4949
|| version.contains("8.0.37")
5050
|| version.contains("8.0.38")
5151
|| version.contains("8.0.39")
52-
|| version.contains("8.0.40"))) {
53-
throw new MdExceptionInvalidVersion("MySQL 8.0.31, 8.0.32, 8.0.33, 8.0.34, 8.0.35, 8.0.36, 8.0.37, 8.0.38, 8.0.39, 8.0.40 is required.");
52+
|| version.contains("8.0.40")
53+
|| version.contains("8.0.41"))) {
54+
throw new MdExceptionInvalidVersion("MySQL 8.0.31, 8.0.32, 8.0.33, 8.0.34, 8.0.35, 8.0.36, 8.0.37, 8.0.38, 8.0.39, 8.0.40, 8.0.41 is required.");
5455
}
5556
} else {
5657
// check version
@@ -78,8 +79,9 @@ public static MdOutputAbstract execute(MdInputAbstract input) throws Exception {
7879
|| version.contains("11.3.")
7980
|| version.contains("11.4.")
8081
|| version.contains("11.5.")
81-
|| version.contains("11.6."))) {
82-
throw new MdExceptionInvalidVersion("MariaDB 10.3, 10.4, 10.5, 10.6, 10.7, 10.8, 10.9, 10.10, 10.11, 11.0, 11.1, 11.2, 11.3, 11.4, 11.5, 11.6 is required.");
82+
|| version.contains("11.6.")
83+
|| version.contains("11.7."))) {
84+
throw new MdExceptionInvalidVersion("MariaDB 10.3, 10.4, 10.5, 10.6, 10.7, 10.8, 10.9, 10.10, 10.11, 11.0, 11.1, 11.2, 11.3, 11.4, 11.5, 11.6, 11.7 is required.");
8385
}
8486
}
8587

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ services:
1414
mariadb:
1515
build: ./docker/mariadb
1616
container_name: magentadesk-mariadb
17-
image: magentadesk-mariadb:0.2.0
17+
image: magentadesk-mariadb:0.2.1
1818
ports:
1919
- 13306:3306
2020
environment:
2121
- MYSQL_ROOT_PASSWORD=pass
2222
mysql:
2323
build: ./docker/mysql
2424
container_name: magentadesk-mysql
25-
image: magentadesk-mysql:0.1.0
25+
image: magentadesk-mysql:0.1.1
2626
ports:
2727
- 23306:3306
2828
environment:

docker/mariadb/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mariadb:11.6
1+
FROM mariadb:11.7
22

33
# copy configuration
44
COPY ./mariadb.conf.d/server.cnf /etc/mysql/mariadb.conf.d/server.cnf

docker/mysql/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mysql:8.0.40
1+
FROM mysql:8.0.41
22

33
# copy configuration
44
COPY ./conf.d/my.cnf /etc/mysql/conf.d/my.cnf

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>com.walksocket</groupId>
77
<artifactId>magentadesk</artifactId>
8-
<version>0.7.2</version>
8+
<version>0.7.3</version>
99
<modules>
1010
<module>cli</module>
1111
<module>web</module>

web/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.walksocket</groupId>
88
<artifactId>magentadesk</artifactId>
9-
<version>0.7.2</version>
9+
<version>0.7.3</version>
1010
</parent>
1111
<artifactId>web</artifactId>
1212
<packaging>jar</packaging>
@@ -17,7 +17,7 @@
1717
<dependency>
1818
<groupId>com.walksocket</groupId>
1919
<artifactId>cli</artifactId>
20-
<version>0.7.2</version>
20+
<version>0.7.3</version>
2121
</dependency>
2222
<!-- sqlite -->
2323
<dependency>

0 commit comments

Comments
 (0)