Skip to content

Commit

Permalink
Merge pull request #13 from maxbettercloud/deps-update
Browse files Browse the repository at this point in the history
Updating hbase-client to 2.4.13
  • Loading branch information
mark-jones-at-bettercloud authored Aug 8, 2022
2 parents aa312af + 034ab8b commit 61e7490
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 28 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
History
-------

* **3.1.0**: Bumps hbase-client version to 2.4.13

* **3.0.0**: Bumps jacksonVersion and bigtableVersion to address security vulnerabilities, removes hbase-shaded-client and pulls in the standard hbase-client

* **2.0.0**: Bumps jacksonVersion and bigtableVersion to address security vulnerabilities

* **1.6.0**: Bumps jacksonVersion to address security vulnerabilities

* **1.5.0**: Add asynchronous read/write/scan/delete operations via AsyncDao and AsyncDaoFactory.

* **1.4.0**: Add table scan capability, with starting key to start scan from and ending/last key to be scanned. Requires full key.

* **1.3.0**: Improve the extensibility of the library by allowing DAO creation from an `EntityConfiguration` to support dynamically generated entities.

* **1.2.1**: Implement `equals` and `hashCode` methods on `StringKey`.

* **1.2.0**: Add batch read/write/delete functionality. Deprecate single-row operations to encourage use of batch operations.

* **1.1.1**: Read non-existent cells as `null` values (and `null` timestamps, if `versioned = true`).

* **1.1.0**: Add optional column versioning capabilities. Timestamps currently only reflect the **latest** column value.

* **1.0.0**: Initial public release. Support for single-row read/write/delete operations, as well as automatic entity (de)serialization.
26 changes: 0 additions & 26 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ Table of Contents
* [Column Sharing](#column-sharing)
* [Unit Testing](#unit-testing)
* [Contributing](#contributing)
* [History](#history)
* [License](#license)

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

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

History
-------

* **3.0.0**: Bumps jacksonVersion and bigtableVersion to address security vulnerabilities, removes hbase-shaded-client and pulls in the standard hbase-client

* **2.0.0**: Bumps jacksonVersion and bigtableVersion to address security vulnerabilities

* **1.6.0**: Bumps jacksonVersion to address security vulnerabilities

* **1.5.0**: Add asynchronous read/write/scan/delete operations via AsyncDao and AsyncDaoFactory.

* **1.4.0**: Add table scan capability, with starting key to start scan from and ending/last key to be scanned. Requires full key.

* **1.3.0**: Improve the extensibility of the library by allowing DAO creation from an `EntityConfiguration` to support dynamically generated entities.

* **1.2.1**: Implement `equals` and `hashCode` methods on `StringKey`.

* **1.2.0**: Add batch read/write/delete functionality. Deprecate single-row operations to encourage use of batch operations.

* **1.1.1**: Read non-existent cells as `null` values (and `null` timestamps, if `versioned = true`).

* **1.1.0**: Add optional column versioning capabilities. Timestamps currently only reflect the **latest** column value.

* **1.0.0**: Initial public release. Support for single-row read/write/delete operations, as well as automatic entity (de)serialization.

License
-------

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group = 'com.bettercloud'
version = '3.0.0'
version = '3.1.0'

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

Expand Down
2 changes: 1 addition & 1 deletion core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ dependencies {
exclude group: 'org.apache.hbase', module: 'hbase-shaded-client'
}
api "com.fasterxml.jackson.core:jackson-databind:$jacksonVersion"
api "org.apache.hbase:hbase-client:2.4.12"
api "org.apache.hbase:hbase-client:$hbaseClientVersion"
}
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
bigtableVersion=2.4.0
jacksonVersion=2.13.3
autoServiceVersion=1.0-rc4
hbaseClientVersion=2.4.13
javaPoetVersion=1.11.1
junitVersion=4.12
mockitoVersion=2.24.0
Expand Down

0 comments on commit 61e7490

Please sign in to comment.