Skip to content

Commit 2e6b9ea

Browse files
committed
升级ApiBoot 2.0.8.RELEASE
1 parent 6291a2c commit 2e6b9ea

File tree

60 files changed

+81
-81
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+81
-81
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
<dependency>
7575
<groupId>org.minbox.framework</groupId>
7676
<artifactId>api-boot-dependencies</artifactId>
77-
<version>2.0.8.RC1</version>
77+
<version>2.0.8.RELEASE</version>
7878
<type>pom</type>
7979
<scope>import</scope>
8080
</dependency>

api-boot-project/api-boot-autoconfigure/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>api-boot-parent</artifactId>
77
<groupId>org.minbox.framework</groupId>
8-
<version>2.0.8.RC1</version>
8+
<version>2.0.8.RELEASE</version>
99
<relativePath>../api-boot-parent</relativePath>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>

api-boot-project/api-boot-autoconfigure/src/main/java/org/minbox/framework/api/boot/autoconfigure/ratelimiter/ApiBootRateLimiterAutoConfiguration.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
import org.minbox.framework.api.boot.plugin.rate.limiter.aop.interceptor.ApiBootRateLimiterMethodInterceptor;
2323
import org.minbox.framework.api.boot.plugin.rate.limiter.centre.RateLimiterConfigCentre;
2424
import org.minbox.framework.api.boot.plugin.rate.limiter.centre.support.DefaultRateLimiterConfigCentre;
25-
import org.minbox.framework.api.boot.plugin.rate.limiter.result.RateLimiterOverFlowRequest;
25+
import org.minbox.framework.api.boot.plugin.rate.limiter.result.RateLimiterOverFlowResponse;
2626
import org.minbox.framework.api.boot.plugin.rate.limiter.support.GoogleGuavaRateLimiter;
2727
import org.springframework.beans.factory.ObjectProvider;
2828
import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -59,11 +59,11 @@ public class ApiBootRateLimiterAutoConfiguration {
5959
/**
6060
* RateLimiter OverFlow Request
6161
*/
62-
private RateLimiterOverFlowRequest rateLimiterOverFlowRequest;
62+
private RateLimiterOverFlowResponse rateLimiterOverFlowResponse;
6363

64-
public ApiBootRateLimiterAutoConfiguration(ApiBootRateLimiterProperties apiBootRateLimiterProperties, ObjectProvider<RateLimiterOverFlowRequest> rateLimiterOverFlowRequestObjectProvider) {
64+
public ApiBootRateLimiterAutoConfiguration(ApiBootRateLimiterProperties apiBootRateLimiterProperties, ObjectProvider<RateLimiterOverFlowResponse> rateLimiterOverFlowRequestObjectProvider) {
6565
this.apiBootRateLimiterProperties = apiBootRateLimiterProperties;
66-
this.rateLimiterOverFlowRequest = rateLimiterOverFlowRequestObjectProvider.getIfAvailable();
66+
this.rateLimiterOverFlowResponse = rateLimiterOverFlowRequestObjectProvider.getIfAvailable();
6767
}
6868

6969
/**
@@ -113,6 +113,6 @@ ApiBootRateLimiterAdvisor rateLimiterAdvisor(ApiBootRateLimiterMethodInterceptor
113113
@Bean
114114
@ConditionalOnMissingBean
115115
ApiBootRateLimiterMethodInterceptor rateLimiterMethodInterceptor(ApiBootRateLimiter apiBootRateLimiter) {
116-
return new ApiBootRateLimiterMethodInterceptor(apiBootRateLimiter, rateLimiterOverFlowRequest);
116+
return new ApiBootRateLimiterMethodInterceptor(apiBootRateLimiter, rateLimiterOverFlowResponse);
117117
}
118118
}

api-boot-project/api-boot-autoconfigure/src/main/java/org/minbox/framework/api/boot/autoconfigure/swagger/SwaggerProperties.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public class SwaggerProperties {
4545
/**
4646
* 文档版本号
4747
*/
48-
private String version = "2.0.8.RC1";
48+
private String version = "2.0.8.RELEASE";
4949
/**
5050
* 文档版权
5151
*/

api-boot-project/api-boot-autoconfigure/src/main/resources/banner.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
|
77
'
88
:: Based On SpringBoot Version : ${spring-boot.formatted-version} ::
9-
:: ApiBoot Version : v2.0.8.RC1 ::
9+
:: ApiBoot Version : v2.0.8.RELEASE ::

api-boot-project/api-boot-common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>api-boot-parent</artifactId>
77
<groupId>org.minbox.framework</groupId>
8-
<version>2.0.8.RC1</version>
8+
<version>2.0.8.RELEASE</version>
99
<relativePath>../api-boot-parent</relativePath>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>

api-boot-project/api-boot-dependencies/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>api-boot</artifactId>
77
<groupId>org.minbox.framework</groupId>
8-
<version>2.0.8.RC1</version>
8+
<version>2.0.8.RELEASE</version>
99
<relativePath>../..</relativePath>
1010
</parent>
1111
<packaging>pom</packaging>
@@ -15,7 +15,7 @@
1515
<properties>
1616
<main.basedir>${basedir}/../..</main.basedir>
1717
<spring.boot.version>2.1.5.RELEASE</spring.boot.version>
18-
<api.boot.version>2.0.8.RC1</api.boot.version>
18+
<api.boot.version>2.0.8.RELEASE</api.boot.version>
1919
<druid.version>1.1.14</druid.version>
2020
<druid.starter.version>1.1.14</druid.starter.version>
2121
<fastjson.version>1.2.56</fastjson.version>

api-boot-project/api-boot-maven-plugins/api-boot-maven-plugin-code-builder/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<artifactId>api-boot-maven-plugins</artifactId>
2424
<groupId>org.minbox.framework</groupId>
25-
<version>2.0.8.RC1</version>
25+
<version>2.0.8.RELEASE</version>
2626
</parent>
2727
<modelVersion>4.0.0</modelVersion>
2828
<packaging>maven-plugin</packaging>

api-boot-project/api-boot-maven-plugins/api-boot-mybatis-enhance-maven-codegen/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<artifactId>api-boot-maven-plugins</artifactId>
2424
<groupId>org.minbox.framework</groupId>
25-
<version>2.0.8.RC1</version>
25+
<version>2.0.8.RELEASE</version>
2626
</parent>
2727
<modelVersion>4.0.0</modelVersion>
2828
<packaging>maven-plugin</packaging>

api-boot-project/api-boot-maven-plugins/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<artifactId>api-boot-parent</artifactId>
2424
<groupId>org.minbox.framework</groupId>
25-
<version>2.0.8.RC1</version>
25+
<version>2.0.8.RELEASE</version>
2626
<relativePath>../api-boot-parent</relativePath>
2727
</parent>
2828
<modelVersion>4.0.0</modelVersion>

0 commit comments

Comments
 (0)