Skip to content

Commit 0c69d8e

Browse files
committed
Version 0.6.3.
* Support for MariaDB 11.5.
1 parent 49e484a commit 0c69d8e

File tree

8 files changed

+11
-10
lines changed

8 files changed

+11
-10
lines changed

README.ja.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ MariaDBの同一ホスト内の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
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
1313

1414
### コマンド
1515

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Get diff and sync between two databases in same host created by MariaDB.
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
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
1313

1414
### Usage by cli
1515

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.6.2</version>
8+
<version>0.6.3</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
@@ -51,8 +51,9 @@ public static MdOutputAbstract execute(MdInputAbstract input) throws Exception {
5151
|| version.contains("11.1.")
5252
|| version.contains("11.2.")
5353
|| version.contains("11.3.")
54-
|| version.contains("11.4."))) {
55-
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 is required.");
54+
|| version.contains("11.4.")
55+
|| version.contains("11.5."))) {
56+
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 is required.");
5657
}
5758

5859
// create database `magentadesk`.

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ services:
1414
mysql:
1515
build: ./docker/mysql
1616
container_name: magentadesk-mysql
17-
image: magentadesk-mysql:0.1.0
17+
image: magentadesk-mysql:0.1.1
1818
ports:
1919
- 13306:3306
2020
environment:

docker/mysql/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mariadb:11.4
1+
FROM mariadb:11.5
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.6.2</version>
8+
<version>0.6.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.6.2</version>
9+
<version>0.6.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.6.2</version>
20+
<version>0.6.3</version>
2121
</dependency>
2222
<!-- sqlite -->
2323
<dependency>

0 commit comments

Comments
 (0)