Skip to content

Commit

Permalink
Merge branch 'apolloconfig:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
klboke authored Mar 13, 2023
2 parents 0c7c63f + ee028dd commit 312abaa
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 10 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ Apollo 2.2.0
* [[Multi-Database Support] Introduce h2 postgre profile properties to let user config database config](https://github.com/apolloconfig/apollo/pull/4766)
* [[Multi-Database Support] Optimize column define case sensitivity](https://github.com/apolloconfig/apollo/pull/4776)
* [[Multi-Database Support][pg] Where clause need escape, otherwise will request postgre use lowwer case](https://github.com/apolloconfig/apollo/pull/4780)
* [Misc dependency updates](https://github.com/apolloconfig/apollo/pull/4784)

------------------
All issues and pull requests are [here](https://github.com/apolloconfig/apollo/milestone/13?closed=1)
2 changes: 2 additions & 0 deletions docs/en/deployment/distributed-deployment-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -1494,6 +1494,8 @@ The default is false. Please evaluate the total configuration size and adjust th

> Ensure that the app.id of the configuration in the application is in the correct case when caching is enabled, otherwise it will not fetch the correct configuration
> `config-service.cache.enabled` configuration adjustment requires a restart of the config service to take effect
### 3.2.4 `item.key.length.limit`- Maximum length limit for configuration item key

The default configuration is 128.
Expand Down
2 changes: 2 additions & 0 deletions docs/zh/deployment/distributed-deployment-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -1438,6 +1438,8 @@ http://5.5.5.5:8080/eureka/,http://6.6.6.6:8080/eureka/

> 开启缓存后必须确保应用中配置的app.id大小写正确,否则将获取不到正确的配置
> `config-service.cache.enabled` 配置调整必须重启 config service 才能生效
### 3.2.4 item.key.length.limit - 配置项 key 最大长度限制

默认配置是128。
Expand Down
25 changes: 15 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,17 @@
<apollo-java.version>2.1.0</apollo-java.version>
<spring-boot.version>2.7.9</spring-boot.version>
<spring-cloud.version>2021.0.5</spring-cloud.version>
<jaxb.version>2.3.1</jaxb.version>
<!-- sort by alphabet -->
<awaitility.version>4.2.0</awaitility.version>
<common-lang3.version>3.12.0</common-lang3.version>
<gson.version>2.10.1</gson.version>
<guava.version>31.1-jre</guava.version>
<javassist.version>3.23.1-GA</javassist.version>
<javax.activation.version>1.1.1</javax.activation.version>
<javax.mail.version>1.6.2</javax.mail.version>
<javassist.version>3.23.1-GA</javassist.version>
<jaxb.version>2.3.1</jaxb.version>
<junit.version>5.9.2</junit.version>
<nacos-discovery-api.version>1.4.0</nacos-discovery-api.version>
<common-lang3.version>3.12.0</common-lang3.version>
<!-- database driver -->
<mysql-connector-j.version>8.0.32</mysql-connector-j.version>
<postgre.version>42.5.3</postgre.version>
Expand Down Expand Up @@ -149,12 +154,12 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>31.0.1-jre</version>
<version>${guava.version}</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.9</version>
<version>${gson.version}</version>
</dependency>
<dependency>
<groupId>com.mysql</groupId>
Expand Down Expand Up @@ -186,13 +191,13 @@
<dependency>
<groupId>org.awaitility</groupId>
<artifactId>awaitility</artifactId>
<version>4.0.3</version>
<version>${awaitility.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<version>5.7.0</version>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -597,7 +602,7 @@
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.3</version>
<version>0.8.8</version>
<executions>
<execution>
<id>prepare-agent</id>
Expand All @@ -610,7 +615,7 @@
<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>4.2.0</version>
<version>4.3.0</version>
</plugin>
</plugins>
</build>
Expand All @@ -628,7 +633,7 @@
<profile>
<id>nacos-discovery</id>
<properties>
<nacos.discovery.version>0.2.7</nacos.discovery.version>
<nacos.discovery.version>0.2.12</nacos.discovery.version>
<fastjson.version>1.2.83</fastjson.version>
</properties>
<dependencyManagement>
Expand Down

0 comments on commit 312abaa

Please sign in to comment.