Skip to content

Commit

Permalink
🔖 Releasing / Version tags. v0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
lbw committed Nov 2, 2023
1 parent a565b5f commit 12c014e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Nacos 从 2.2.0 版本开始,可通过 SPI 机制注入多数据源实现插件,
<dependency>
<groupId>com.pig4cloud.plugin</groupId>
<artifactId>nacos-datasource-plugin-dm8</artifactId>
<version>0.0.1</version>
<version>0.0.2</version>
</dependency>

<dependency>
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.7.6</version>
<version>2.7.15</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>


<modelVersion>4.0.0</modelVersion>
<groupId>com.pig4cloud.plugin</groupId>
<artifactId>nacos-datasource-plugin-dm8</artifactId>
<version>0.0.1</version>
<version>0.0.2</version>
<name>nacos-datasource-plugin-dm8</name>
<description>nacos-datasource-plugin-dm8</description>
<url>https://pig4cloud.com</url>
Expand All @@ -25,7 +25,7 @@
</licenses>

<properties>
<nacos.version>2.2.0</nacos.version>
<nacos.version>2.2.4</nacos.version>
<spring.checkstyle.plugin>0.0.32</spring.checkstyle.plugin>
<maven.compiler.version>3.8.1</maven.compiler.version>
<maven.compiler.source>1.8</maven.compiler.source>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

public class ConfigInfoAggrMapperByDm extends DmAbstractMapper implements ConfigInfoAggrMapper {

@Override
public String batchRemoveAggr(List<String> datumList) {
final StringBuilder datumString = new StringBuilder();
for (String datum : datumList) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ public String findConfigHistoryFetchRows() {
+ "WHERE data_id = ? AND group_id = ? AND (tenant_id = ? OR tenant_id IS NULL) ORDER BY nid DESC";
}

@Override
public String pageFindConfigHistoryFetchRows(int i, int i1) {
throw new UnsupportedOperationException();
}

@Override
public String detailPreviousConfigHistory() {
return "SELECT nid,data_id,group_id,tenant_id,app_name,content,md5,src_user,src_ip,op_type,gmt_create,gmt_modified "
Expand Down

0 comments on commit 12c014e

Please sign in to comment.