Skip to content

Commit

Permalink
发布了 v2.3.6 版本
Browse files Browse the repository at this point in the history
  • Loading branch information
blinkfox committed Aug 26, 2020
1 parent 4f13ce8 commit 8940be8
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 10 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<div align="center"><img style="display: block; margin: 0 auto;" src="https://blinkfox.github.io/fenix/assets/images/logo.png" alt="fenix logo" /></div>

[![Build Status](https://secure.travis-ci.org/blinkfox/fenix.svg)](https://travis-ci.org/blinkfox/fenix) [![HitCount](http://hits.dwyl.io/blinkfox/fenix.svg)](http://hits.dwyl.io/blinkfox/fenix) [![Javadocs](http://www.javadoc.io/badge/com.blinkfox/fenix.svg)](http://www.javadoc.io/doc/com.blinkfox/fenix) [![GitHub license](https://img.shields.io/github/license/blinkfox/fenix.svg)](https://github.com/blinkfox/fenix/blob/develop/LICENSE) [![fenix](https://img.shields.io/badge/fenix-v2.3.5-blue)](https://search.maven.org/artifact/com.blinkfox/fenix/2.3.5/jar) [![fenix starter](https://img.shields.io/badge/fenix%20spring%20boot%20starter-v2.3.5-blue)](https://search.maven.org/artifact/com.blinkfox/fenix-spring-boot-starter/2.3.5/jar) [![codecov](https://codecov.io/gh/blinkfox/fenix/branch/develop/graph/badge.svg)](https://codecov.io/gh/blinkfox/fenix)
[![Build Status](https://secure.travis-ci.org/blinkfox/fenix.svg)](https://travis-ci.org/blinkfox/fenix) [![HitCount](http://hits.dwyl.io/blinkfox/fenix.svg)](http://hits.dwyl.io/blinkfox/fenix) [![Javadocs](http://www.javadoc.io/badge/com.blinkfox/fenix.svg)](http://www.javadoc.io/doc/com.blinkfox/fenix) [![GitHub license](https://img.shields.io/github/license/blinkfox/fenix.svg)](https://github.com/blinkfox/fenix/blob/develop/LICENSE) [![fenix](https://img.shields.io/badge/fenix-v2.3.6-blue)](https://search.maven.org/artifact/com.blinkfox/fenix/2.3.6/jar) [![fenix starter](https://img.shields.io/badge/fenix%20spring%20boot%20starter-v2.3.6-blue)](https://search.maven.org/artifact/com.blinkfox/fenix-spring-boot-starter/2.3.6/jar) [![codecov](https://codecov.io/gh/blinkfox/fenix/branch/develop/graph/badge.svg)](https://codecov.io/gh/blinkfox/fenix)

> [Fenix](https://github.com/blinkfox/fenix)(菲尼克斯)是一个为了解决复杂动态 SQL (`JPQL`) 而生的 `Spring Data JPA` 扩展库,目的是辅助开发者更方便快捷的书写复杂、动态且易于维护的 SQL,支持 `XML`、Java 链式 `API` 和动态条件注解等四种方式来书写动态 SQL。
Expand Down Expand Up @@ -38,14 +38,14 @@
<dependency>
<groupId>com.blinkfox</groupId>
<artifactId>fenix-spring-boot-starter</artifactId>
<version>2.3.5</version>
<version>2.3.6</version>
</dependency>
```

### Gradle

```bash
compile 'com.blinkfox:fenix-spring-boot-starter:2.3.5'
compile 'com.blinkfox:fenix-spring-boot-starter:2.3.6'
```

### 激活 Fenix (@EnableFenix)
Expand Down
5 changes: 5 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## v2.3.6 小功能改进版本 (2020-08-27)

- 新增了 `@EnableFenix` 注解中更多的配置信息,与 `@EnableJpaRepositories` 注解相对应;
- 修改了求 `COUNT` 的 SQL 不支持 `DISTINCT` 的问题;

## v2.3.5 修复了在老版本 JPA 中某些情况下的 bug (2020-07-31)

- 修复了在老版本 JPA 中,某些情况下出现 Javaassist 的 `ClassNotFoundException` 的问题;
Expand Down
2 changes: 1 addition & 1 deletion docs/_coverpage.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
![logo](assets/images/logo.png)

# Fenix <small>2.3.5</small>
# Fenix <small>2.3.6</small>

> 为解决复杂动态 SQL 而生的 Spring Data JPA 扩展库
Expand Down
8 changes: 4 additions & 4 deletions docs/quick-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@
<dependency>
<groupId>com.blinkfox</groupId>
<artifactId>fenix-spring-boot-starter</artifactId>
<version>2.3.5</version>
<version>2.3.6</version>
</dependency>
```

### Gradle

```bash
compile 'com.blinkfox:fenix-spring-boot-starter:2.3.5'
compile 'com.blinkfox:fenix-spring-boot-starter:2.3.6'
```

### 激活 Fenix (@EnableFenix)
Expand Down Expand Up @@ -92,14 +92,14 @@ fenix:
<dependency>
<groupId>com.blinkfox</groupId>
<artifactId>fenix</artifactId>
<version>2.3.5</version>
<version>2.3.6</version>
</dependency>
```

### Gradle

```bash
compile 'com.blinkfox:fenix:2.3.5'
compile 'com.blinkfox:fenix:2.3.6'
```

### 激活 Fenix
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.blinkfox</groupId>
<artifactId>fenix</artifactId>
<version>2.3.5</version>
<version>2.3.6</version>
<packaging>jar</packaging>

<name>fenix</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,12 @@

/**
* {@link EnableFenix} 启用的注册器.
*
* @author yangwenpeng
* @since v2.3.5
* @since v2.3.6
*/
public class FenixJpaRepositoriesRegistrar extends RepositoryBeanDefinitionRegistrarSupport {

@Override
protected Class<? extends Annotation> getAnnotation() {
return EnableFenix.class;
Expand All @@ -20,4 +22,5 @@ protected Class<? extends Annotation> getAnnotation() {
protected RepositoryConfigurationExtension getExtension() {
return new JpaRepositoryConfigExtension();
}

}

0 comments on commit 8940be8

Please sign in to comment.