You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by si...@apache.org on 2020/04/08 09:52:46 UTC

[pulsar-manager] branch master updated: Upgrade HerdDB to 0.15.1 (#285)

This is an automated email from the ASF dual-hosted git repository.

sijie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar-manager.git


The following commit(s) were added to refs/heads/master by this push:
     new 68043b9  Upgrade HerdDB to 0.15.1 (#285)
68043b9 is described below

commit 68043b99c46d62233ebc3a461c18c440a3a4c81c
Author: Alessandro Luccaroni <al...@diennea.com>
AuthorDate: Wed Apr 8 11:52:38 2020 +0200

    Upgrade HerdDB to 0.15.1 (#285)
    
    Ugrade HerdDB to 0.15.1
    Release notes: https://github.com/diennea/herddb/releases/tag/v0.15.1
    
    Most notable changes are:
    - Support for Java 13
    - Support for BookKeeper 4.10
    - Lots of fix regarding stability and consistency in a replicated environment
    
    Upgrade should be seamless, no data format changes on disk, new code works with old data created with 0,14, 0.13 and 0.12
---
 build.gradle      | 5 ++++-
 gradle.properties | 5 +++--
 2 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/build.gradle b/build.gradle
index 36a0f1d..0a0ff0b 100644
--- a/build.gradle
+++ b/build.gradle
@@ -95,9 +95,12 @@ dependencies {
     compile group: 'org.springframework.boot', name: 'spring-boot-starter-web', version: springBootVersion
     compile group: 'org.springframework.cloud', name: 'spring-cloud-starter-netflix-zuul', version: springBootVersion
     compile group: 'org.mybatis.spring.boot', name: 'mybatis-spring-boot-starter', version: springMybatisVersion
+    compile group: 'com.github.pagehelper', name: 'pagehelper', version: pagehelperVersion
     compile group: 'org.springframework.boot', name: 'spring-boot-starter-thymeleaf', version: springBootVersion
     compile group: 'org.postgresql', name: 'postgresql', version: postgresqlVersion
-    compile group: 'org.herddb', name: 'herddb-jdbc', version: herddbVersion
+    compile (group: 'org.herddb', name: 'herddb-jdbc', version: herddbVersion) {
+        exclude group: 'org.slf4j', module: 'slf4j-jdk14'
+        }
     compile group: 'javax.validation', name: 'validation-api', version: javaxValidationVersion
     compile group: 'org.hibernate', name: 'hibernate-validator', 'version': hibernateValidatorVersion
     compile group: 'io.jsonwebtoken', name: 'jjwt-api', version: jsonWebTokenApiVersion
diff --git a/gradle.properties b/gradle.properties
index 369e6f6..4cdd321 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,5 +1,6 @@
 # dependencies version
-springMybatisVersion=1.3.2
+springMybatisVersion=2.1.2
+pagehelperVersion=5.1.11
 javaxValidationVersion=2.0.0.Final
 hibernateValidatorVersion=6.0.13.Final
 jsonWebTokenVersion=0.9.0
@@ -16,6 +17,6 @@ apiMockitoVersion=1.7.1
 mockitoJunit4Version=1.7.1
 gsonVersion=2.8.2
 postgresqlVersion=42.2.5
-herddbVersion=0.13.1
+herddbVersion=0.15.1
 brokerVersion=2.4.1
 commonsValidatorVersion=1.6