Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating hbase-client to 2.4.13 #13

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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