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

jinwoo pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/geode-native.git


    from 87202892e Replacing master with contents of rel/v1.15.1
     add 18f88e863 GEODE-10218: Allow server debug (#954)
     add d649264b9 GEODE-10218: Allow server debug (#971)
     add 804209c2e GEODE-10382: Fix Windows build in CI pipeline (#975)
     add e28693188 GEODE-10089: Bump Geode version to 1.15.0 (#976)
     add e2ebf323a GEODE-10371: C++ client: Improve dispersion on connections 
expiration
     add 6160f974e GEODE-10371: Changes after review
     add d4d09908d Merge pull request #974 from Nordix/feature/GEODE-10371
     add 8ca51af94 GEODE-10076. Align String serialization with Java client
     add 4f0d19ecf GEODE-10076: Fix test case in windows
     add 26fe7275c Merge pull request #973 from Nordix/feature/GEODE-10076
     add b3f8a08c3 GEODE-10404: Fix javaobject compilation for Java 11 (#980)
     add 70185ee4d GEODE-10300: C++ native client: Allow locator responses 
greater than … (#970)
     add 992703da0 GEODE-10402: Fix FunctionException handling (#981)
     add 35913aeb9 GEODE-10291: Compile on ubuntu jammy (gcc/g++ 11.2.0) (#966)
     add 049309470 GEODE-10426: Add option to toggle doc generation (#985)
     add 0881f43b9 GEODE-10467: Bumping copyright year to 2025
     new 56ec87857 Replacing master with contents of rel/v2.0.0

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 CMakeLists.txt                                     |   7 +-
 NOTICE                                             |   2 +-
 clicache/integration-test2/Cluster.cs              |  73 +++++++++--
 clicache/integration-test2/Gfsh.cs                 |  14 ++-
 clicache/integration-test2/GfshTest.cs             |  40 ++++--
 clicache/integration-test2/SerializationTests.cs   |   2 +-
 cppcache/include/geode/DataInput.hpp               |  90 ++++++-------
 cppcache/include/geode/DataOutput.hpp              |  41 ++++--
 cppcache/include/geode/ExceptionTypes.hpp          |   9 +-
 cppcache/integration/framework/Cluster.cpp         |  55 +++++---
 cppcache/integration/framework/Cluster.h           |   7 ++
 cppcache/integration/framework/Gfsh.cpp            |  21 ++++
 cppcache/integration/framework/Gfsh.h              |   6 +
 .../test/{StructTest.cpp => AllowAttachTest.cpp}   |  10 +-
 cppcache/integration/test/CMakeLists.txt           |   1 +
 .../integration/test/FunctionExecutionTest.cpp     |  52 ++++++--
 cppcache/integration/test/PdxInstanceTest.cpp      |  46 ++++++-
 cppcache/integration/test/PdxJsonTypeTest.cpp      |   2 -
 cppcache/integration/test/PdxTypeRegistryTest.cpp  |   1 +
 cppcache/src/Connector.hpp                         |   5 +
 cppcache/src/DataInput.cpp                         |  16 +--
 cppcache/src/DefaultResultCollector.cpp            |   2 +-
 cppcache/src/ErrType.hpp                           |   3 +-
 cppcache/src/ExceptionTypes.cpp                    |  13 +-
 cppcache/src/ExecutionImpl.cpp                     |   4 +-
 cppcache/src/GetAllServersResponse.cpp             |  10 +-
 cppcache/src/GetAllServersResponse.hpp             |  12 +-
 cppcache/src/NoResult.hpp                          |   2 +-
 cppcache/src/StreamDataInput.cpp                   |  81 ++++++++++++
 .../{TombstoneEntry.hpp => StreamDataInput.hpp}    |  44 ++++---
 cppcache/src/TcpConn.cpp                           |   6 +-
 cppcache/src/TcpConn.hpp                           |   2 +
 cppcache/src/TcrConnection.cpp                     |  25 +---
 cppcache/src/TcrConnection.hpp                     |   4 +-
 cppcache/src/TcrMessage.cpp                        |   1 -
 cppcache/src/ThinClientLocatorHelper.cpp           |  20 +--
 cppcache/src/ThinClientRegion.cpp                  |  26 ++--
 cppcache/test/CMakeLists.txt                       |   2 +
 cppcache/test/ConnectionQueueTest.cpp              |   1 +
 cppcache/test/DataOutputTest.cpp                   |  35 +++++-
 cppcache/test/PdxTypeTest.cpp                      |  16 +--
 cppcache/test/QueueConnectionRequestTest.cpp       |   4 +-
 cppcache/test/StreamDataInputTest.cpp              | 139 +++++++++++++++++++++
 cppcache/test/TcrConnectionTest.cpp                |  77 ++++++++++++
 .../mock/{MockExpiryTask.hpp => ConnectorMock.hpp} |  28 +++--
 dist/NOTICE                                        |   2 +-
 tests/javaobject/CMakeLists.txt                    |   2 +
 ...nction.java => ComparePdxInstanceFunction.java} |  68 ++++++----
 ...egionPrSHOP.java => UserExceptionFunction.java} |  35 ++++--
 49 files changed, 893 insertions(+), 271 deletions(-)
 copy cppcache/integration/test/{StructTest.cpp => AllowAttachTest.cpp} (93%)
 create mode 100644 cppcache/src/StreamDataInput.cpp
 copy cppcache/src/{TombstoneEntry.hpp => StreamDataInput.hpp} (53%)
 create mode 100644 cppcache/test/StreamDataInputTest.cpp
 create mode 100644 cppcache/test/TcrConnectionTest.cpp
 copy cppcache/test/mock/{MockExpiryTask.hpp => ConnectorMock.hpp} (60%)
 copy tests/javaobject/{QueryFunction.java => ComparePdxInstanceFunction.java} 
(50%)
 copy tests/javaobject/{FEOnRegionPrSHOP.java => UserExceptionFunction.java} 
(62%)

Reply via email to