Commit fa2bcf68 authored by terrymanu's avatar terrymanu
Browse files

Merge tag '2.0.0.M3'

parents 072437e9 07caf4a4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -52,7 +52,7 @@ Sharding-JDBC is a JDBC extension, provides distributed features such as shardin

# Architecture

![Architecture](http://ovfotjrsi.bkt.clouddn.com/docs/img/architecture_en.png)
![Architecture](http://ovfotjrsi.bkt.clouddn.com/docs/img/architecture_en_v2.png)

# [Release Notes](https://github.com/shardingjdbc/sharding-jdbc/releases)

+1 −1
Original line number Diff line number Diff line
@@ -51,7 +51,7 @@ Sharding-JDBC定位为轻量级java框架,使用客户端直连数据库,以

# Architecture

![Architecture](http://ovfotjrsi.bkt.clouddn.com/docs/img/architecture.png)
![Architecture](http://ovfotjrsi.bkt.clouddn.com/docs/img/architecture_v2.png)

# [Release Notes](https://github.com/shardingjdbc/sharding-jdbc/releases)

+12 −0
Original line number Diff line number Diff line
## 2.0.0.M3

### 里程碑

1. 读写分离从库治理,可以禁用从库的访问
1. ConfigMap支持,可以在分片和读写分离策略中获取预定义的元数据

### 缺陷修正

1. [ISSUE #436](https://github.com/shardingjdbc/sharding-jdbc/issues/436) 读写分离多从库配置RoundRobin算法并使用MyBatis时,只能路由到同一从库
1. [ISSUE #452](https://github.com/shardingjdbc/sharding-jdbc/issues/452) DDL语句分片至多个表会造成连接泄漏的问题

## 2.0.0.M2

### 里程碑
+2 −2
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
    <modelVersion>4.0.0</modelVersion>
    <groupId>io.shardingjdbc</groupId>
    <artifactId>sharding-jdbc</artifactId>
    <version>2.0.0.M2</version>
    <version>2.0.0.M3</version>
    <packaging>pom</packaging>
    <name>${project.artifactId}</name>
    
@@ -515,7 +515,7 @@
                <artifactId>maven-checkstyle-plugin</artifactId>
                <version>${maven-checkstyle-plugin.version}</version>
                <configuration>
                    <configLocation>src/main/resources/dd_checks.xml</configLocation>
                    <configLocation>src/resources/dd_checks.xml</configLocation>
                </configuration>
            </plugin>
            <plugin>
+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@
    <parent>
        <groupId>io.shardingjdbc</groupId>
        <artifactId>sharding-jdbc</artifactId>
        <version>2.0.0.M2</version>
        <version>2.0.0.M3</version>
    </parent>
    <artifactId>sharding-jdbc-core</artifactId>
    <name>${project.artifactId}</name>
Loading