Skip to content

Releases: hazelcast/hazelcast-cpp-client

3.8.2 - PartitionAware Release

14 Jul 14:26
Compare
Choose a tag to compare

This document includes the new features, enhancements, and fixed issues for Hazelcast C++ Client 3.8.2 release.

New features

Enhancements

  • Added the missing support for byte-array type serialization. [#307]

Fixes

Some of the major bug fixes for this release are listed below. You can find the full list of closed issues and closed PRs at the repo with milestone 3.8.2.

  • DataOutput::writeUTF() writes invalid data. [#308]
  • Client does not shut down properly when all cluster connection attempts fail. [#285]
  • Removed the incorrectly used default credentials in the client config. [#286]
  • SSL reconnect fail at Linux environments. [#288]

Known Issues

There are no known issues for this release.

3.8.1 - AWS Cloud Discovery Release

03 May 12:49
Compare
Choose a tag to compare

This document includes the new features, enhancements, and fixed issues for Hazelcast C++ Client 3.8.1 release.

New features

Enhancements

There are no enhancements for this release.

Fixes

  • Enum print when compiling 32-bit causes warning for gcc 4.1.2. [#274]

Known Issues

There are no known issues for this release.

3.8 - TLS Feature

06 Apr 09:29
Compare
Choose a tag to compare

This document includes the new features, enhancements, and fixed issues for Hazelcast C++ Client 3.8 release.

New features

Enhancements

  • Added missing Portable Reader/Writer read/writeUTF array. [239]
  • Added the method executeOnKeys for IMap entry processor. [225]
  • Added write/readUTFArray interface to Portable Writer/Reader. [224].

Bug Fixes

  • Fixed the boolean array serialization bug. [236]
  • writeChar array serialization fix. [230]
  • Fix for Default Portable Writer and Reader being not supporting 64-bit long write on 32-bit platforms. [223]
  • Fixed gcc 4.1.2 compilation warnings. [256]

3.7 - C++ Client Near-Cache Feature

02 Feb 07:24
Compare
Choose a tag to compare

This document includes the new features, enhancements, and fixed issues for Hazelcast C++ Client 3.7 release.

New features

Enhancements

  • Solved build problems for gcc 4.8.5.
  • Updated HazelcastAll.h to include some missing headers. [#195]
  • Solved client restart freeze problem. [#64]

3.6.3

14 Jun 10:40
Compare
Choose a tag to compare

This document includes the new features, enhancements, and fixed issues for Hazelcast C++ Client 3.6.3 release.

New features

We have added the Reliable Topic and Ringbuffer implementations. You can now access Hazelcast Ringbuffer and Reliable Topic structures using the C++ client. Currently, Ringbuffer implementation provides synch methods only.

You can find the code samples for these new structures in the examples folder or at Github:

https://github.com/hazelcast/hazelcast-cpp-client/tree/v3.6.3/examples/distributed-collections/ringbuffer
https://github.com/hazelcast/hazelcast-cpp-client/tree/v3.6.3/examples/distributed-topic/reliabletopic

Enhancements

The release also provides several fixes and enhancements. Some of them are as follows:

  • The user exceptions are made to be more specific ProtocolExceptions as defined in the Hazelcast Open Binary protocol.
  • Increased test code coverage.

3.6.2

29 Apr 12:36
Compare
Choose a tag to compare

This document includes the new features, enhancements, and fixed issues for Hazelcast C++ Client 3.6.2 release.

New Features

This release introduces the following new features:

  • Raw pointer capability: This feature introduces the new raw pointer adapter classes such as RawPointerMap which allows you to obtain raw pointer for the returned objects. Previously it was not possible to release the returned pointer object due to limitations of boost::shared_ptr and hence it was causing an extra object copy for the user. The new API also uses late de-serialization for multiple values returning API. For each container you can use the adapter classes, whose names start with RawPointer, to access the raw pointers of the created objects. The adapter classes are found in hazelcast::client::adaptor namespace and listed below:

    -RawPointerList
    -RawPointerQueue
    -RawPointerTransactionalMultiMap
    -RawPointerMap
    -RawPointerSet
    -RawPointerTransactionalQueue
    -RawPointerMultiMap
    -RawPointerTransactionalMap

    These are adapter classes and they do not create new structures. You just provide the legacy containers as parameters and then you can work with these raw capability containers freely.

    The following are also the late serializing structures for multiple entry returning API:
    -DataArray
    -EntryArray
    See http://docs.hazelcast.org/docs/latest-dev/manual/html-single/index.html#raw-pointer-api, https://github.com/hazelcast/hazelcast-cpp-client/tree/master/examples/adaptor, and #75 for details.

  • Support custom serialization with no user object modification: The previous API required some modification to user objects when you want to use custom serializer. We removed this requirement. Hence, the user can use the custom serializer with no user object code modification. See http://docs.hazelcast.org/docs/latest-dev/manual/html-single/index.html#serialization-support, https://github.com/hazelcast/hazelcast-cpp-client/tree/master/examples/serialization/custom, and #37 for details.

  • Version Info on C++ Client: The client STARTING log now contains the last Git commit date and commit ID for the release. Example format is:
    Apr 21, 2016 01:42:16 PM INFO: [HazelcastCppClient3.6.2] [dev] [4298317824] (20160406:0ef9654) LifecycleService::LifecycleEvent STARTING 3.6.2 is the version. 20160406 is the release date 0ef9654 is the GitHub commit ID.

    See #92 and #90 for details.

  • New built-in predicates for queries: Previously only the SQL query predicate and user-built custom predicates were supported by the client. This release adds new built-in predicates for making queries, listed below.

    This release also adds entry listeners with predicates support for C++ client API. By this way, only the events for the selected subset of entries matching the query criteria are received by your listener. Hence, the new listener API is:
    std::string addEntryListener(EntryListener<K, V> &listener, const query::Predicate &predicate, bool includeValue);

    This release introduces a rich set of built-in predicates as supported by the Java client. You can create your own predicates by implementing Predicate interfaces both at the C++ client side and server side. Built-in predicates are listed below:

    • AndPredicate
    • EqualPredicate
    • ILikePredicate
    • LikePredicate
    • OrPredicate
    • TruePredicate
    • BetweenPredicate
    • FalsePredicate
    • InPredicate
    • NotEqualPredicate
    • PagingPredicate
    • RegexPredicate
    • GreaterLessPredicate
    • InstanceOfPredicate
    • NotPredicate
    • SqlPredicate

    See http://docs.hazelcast.org/docs/latest-dev/manual/html-single/index.html#query-api, https://github.com/hazelcast/hazelcast-cpp-client/blob/master/examples/distributed-map/query/queryExample.cpp, #89 for details.

Enhancements

  • The UIT tests are speeded up.
  • Added load and stability test. See #65

Fixes

  • Some fixes for tests. See #86, #26

3.6.1

22 Mar 20:09
Compare
Choose a tag to compare

This document includes the new features, enhancements and fixed issues for Hazelcast C++ Client 3.6.1 release.

New Features

There are no new features.

Enhancements

There are no new enhancements.

Fixes

  • The client gets stuck on server restart. #64-issue.
  • Fixes the problems with client hanging during server restarts on heavy loads. Fixes a memory access issue when re-throwing an exception, correctly clears the call promise maps during connection close. Adds LoadTests while server restarting and solves the problems that the tests create. #64-PR
  • Reverted the thread usage for partition refreshing. It should be handled better by using a mechanism such as ExecutorService. The destructor of the thread was blocking on thread join after performing thread_cancel (cancel was not affecting the update) which caused the update to be blocking anyway. The refresh is being called through the cluster listener thread hence it does not block the IOSelector thread. Added the additional addresses to Java server member for some manual tests. #63
  • Fix for release script error when there is space in the directory path. #52
  • Backport of all changes performed at master into the maintenance branch. #45
  • Static initialization moved to the header. #43
  • CHECK_NULL in SerializationService header moved to source file since MACROs can collide with the users MACRO when defined in the header. An example code is provided for custom serialization. Related test codes are modified for custom serialization. For threads safety, instance of SerializationConstants is created in global space. ClassCastException for portable identified and custom serializable is added. #38
  • Added the missing header files into the release script. #34
  • Fixes compile problems due to the usage of stdint MACROS. #28