Skip to content

Commit 169a5b8

Browse files
committed
Version 0.8.2.
* Support for MariaDB 12.1 and MySQL 8.0.44.
1 parent d755dde commit 169a5b8

File tree

8 files changed

+14
-13
lines changed

8 files changed

+14
-13
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 17 以上
12-
* MariaDB 10.6, 10.11, 11.4, 11.8, 12.0
13-
* MySQL 8.0.31 - 8.0.43
12+
* MariaDB 10.6, 10.11, 11.4, 11.8, 12.0, 12.1
13+
* MySQL 8.0.31 - 8.0.44
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 the same host created by MariaDB or M
99
### System Required
1010

1111
* over JDK 17
12-
* MariaDB 10.6, 10.11, 11.4, 11.8, 12.0
13-
* MySQL 8.0.31 - 8.0.43
12+
* MariaDB 10.6, 10.11, 11.4, 11.8, 12.0, 12.1
13+
* MySQL 8.0.31 - 8.0.44
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.8.1</version>
8+
<version>0.8.2</version>
99
</parent>
1010
<artifactId>cli</artifactId>
1111
<packaging>jar</packaging>

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,10 @@ public static MdOutputAbstract execute(MdInputAbstract input) throws Exception {
7272
|| version.contains("10.11.")
7373
|| version.contains("11.4.")
7474
|| version.contains("11.8.")
75-
|| version.contains("12.0."))) {
75+
|| version.contains("12.0.")
76+
|| version.contains("12.1."))) {
7677
throw new MdExceptionInvalidVersion(
77-
"MariaDB 10.6, 10.11, 11.4, 11.8, 12.0 is required.");
78+
"MariaDB 10.6, 10.11, 11.4, 11.8, 12.0, 12.1 is required.");
7879
}
7980
}
8081

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.2
17+
image: magentadesk-mariadb:0.2.3
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.4
25+
image: magentadesk-mysql:0.1.5
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:12.0
1+
FROM mariadb:12.1
22

33
# copy configuration
44
COPY ./mariadb.conf.d/server.cnf /etc/mysql/mariadb.conf.d/server.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.8.1</version>
8+
<version>0.8.2</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.8.1</version>
9+
<version>0.8.2</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.8.1</version>
20+
<version>0.8.2</version>
2121
</dependency>
2222
<!-- sqlite -->
2323
<dependency>

0 commit comments

Comments
 (0)