Skip to content

Commit 034ab8b

Browse files
Updating hbase-client to 2.4.13
1 parent aa312af commit 034ab8b

File tree

5 files changed

+29
-28
lines changed

5 files changed

+29
-28
lines changed

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
History
2+
-------
3+
4+
* **3.1.0**: Bumps hbase-client version to 2.4.13
5+
6+
* **3.0.0**: Bumps jacksonVersion and bigtableVersion to address security vulnerabilities, removes hbase-shaded-client and pulls in the standard hbase-client
7+
8+
* **2.0.0**: Bumps jacksonVersion and bigtableVersion to address security vulnerabilities
9+
10+
* **1.6.0**: Bumps jacksonVersion to address security vulnerabilities
11+
12+
* **1.5.0**: Add asynchronous read/write/scan/delete operations via AsyncDao and AsyncDaoFactory.
13+
14+
* **1.4.0**: Add table scan capability, with starting key to start scan from and ending/last key to be scanned. Requires full key.
15+
16+
* **1.3.0**: Improve the extensibility of the library by allowing DAO creation from an `EntityConfiguration` to support dynamically generated entities.
17+
18+
* **1.2.1**: Implement `equals` and `hashCode` methods on `StringKey`.
19+
20+
* **1.2.0**: Add batch read/write/delete functionality. Deprecate single-row operations to encourage use of batch operations.
21+
22+
* **1.1.1**: Read non-existent cells as `null` values (and `null` timestamps, if `versioned = true`).
23+
24+
* **1.1.0**: Add optional column versioning capabilities. Timestamps currently only reflect the **latest** column value.
25+
26+
* **1.0.0**: Initial public release. Support for single-row read/write/delete operations, as well as automatic entity (de)serialization.

README.md

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ Table of Contents
2424
* [Column Sharing](#column-sharing)
2525
* [Unit Testing](#unit-testing)
2626
* [Contributing](#contributing)
27-
* [History](#history)
2827
* [License](#license)
2928

3029
Quick Start
@@ -389,31 +388,6 @@ For minor bug-fixes, simply submit a pull request with your changes and a short
389388

390389
All changes are expected to be tested thoroughly prior to submission. Any untested code will simply be rejected.
391390

392-
History
393-
-------
394-
395-
* **3.0.0**: Bumps jacksonVersion and bigtableVersion to address security vulnerabilities, removes hbase-shaded-client and pulls in the standard hbase-client
396-
397-
* **2.0.0**: Bumps jacksonVersion and bigtableVersion to address security vulnerabilities
398-
399-
* **1.6.0**: Bumps jacksonVersion to address security vulnerabilities
400-
401-
* **1.5.0**: Add asynchronous read/write/scan/delete operations via AsyncDao and AsyncDaoFactory.
402-
403-
* **1.4.0**: Add table scan capability, with starting key to start scan from and ending/last key to be scanned. Requires full key.
404-
405-
* **1.3.0**: Improve the extensibility of the library by allowing DAO creation from an `EntityConfiguration` to support dynamically generated entities.
406-
407-
* **1.2.1**: Implement `equals` and `hashCode` methods on `StringKey`.
408-
409-
* **1.2.0**: Add batch read/write/delete functionality. Deprecate single-row operations to encourage use of batch operations.
410-
411-
* **1.1.1**: Read non-existent cells as `null` values (and `null` timestamps, if `versioned = true`).
412-
413-
* **1.1.0**: Add optional column versioning capabilities. Timestamps currently only reflect the **latest** column value.
414-
415-
* **1.0.0**: Initial public release. Support for single-row read/write/delete operations, as well as automatic entity (de)serialization.
416-
417391
License
418392
-------
419393

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
group = 'com.bettercloud'
2-
version = '3.0.0'
2+
version = '3.1.0'
33

44
ext.isReleaseVersion = !version.endsWith('SNAPSHOT')
55

core/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ dependencies {
33
exclude group: 'org.apache.hbase', module: 'hbase-shaded-client'
44
}
55
api "com.fasterxml.jackson.core:jackson-databind:$jacksonVersion"
6-
api "org.apache.hbase:hbase-client:2.4.12"
6+
api "org.apache.hbase:hbase-client:$hbaseClientVersion"
77
}

gradle.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
bigtableVersion=2.4.0
22
jacksonVersion=2.13.3
33
autoServiceVersion=1.0-rc4
4+
hbaseClientVersion=2.4.13
45
javaPoetVersion=1.11.1
56
junitVersion=4.12
67
mockitoVersion=2.24.0

0 commit comments

Comments
 (0)