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

github-bot pushed a change to branch 
dependabot/gradle/org.rocksdb-rocksdbjni-9.6.1
in repository https://gitbox.apache.org/repos/asf/ignite-3.git


 discard 06fa2f71b6 Bump org.rocksdb:rocksdbjni from 9.4.0 to 9.6.1
     add 9d0fac024f IGNITE-23081 Add lease expiration time to configuration 
(#4376)
     add 3e45f5fb39 IGNITE-22745 DB API Driver 3: Provide wider data types 
support (#4401)
     add 022ca06833 IGNITE-23219 Fix REST API description (#4405)
     add 2b7431a878 IGNITE-23216 Remove special handling of getNullable() 
variants from tests of KeyValueView (#4404)
     add 55a3e70607 IGNITE-23221 Update a message about java version and jvm 
startup params  (#4408)
     add 1e55309379 IGNITE-23220 Avoid concurrent Catalog writes to Metastorage 
on the same node (#4406)
     add 85ba0849c3 IGNITE-23105 Add protection against partition destruction 
to CheckpointPagesWriter#drainCheckpointBuffers (#4402)
     add 0fc37b6e48 IGNITE-23215 Implement MetastorageRepair (#4403)
     add 295a4f22eb IGNITE-20835 Sql. Fixed missing SINGLE_VALUE aggregate for 
scalar sub-query (#4370)
     add c237fe12c6 IGNITE-23228 Remove mavenLocal repository from Gradle 
(#4413)
     add e25398cb1c IGNITE-23223 Obtain clusterId from cluster state in 
LogicalTopology (#4410)
     add 3a1f3fbc4b IGNITE-23154 Always sync Raft log per append for CMG and 
Metastorage (#4407)
     add 921f974d5d IGNITE-23157 Improve column value type validation when 
serializing Tuples (#4414)
     add ff95620389 Bump io.dropwizard.metrics:metrics-core from 4.2.26 to 
4.2.27 (#4353)
     add f60a623ed4 Bump org.openapi.generator from 7.7.0 to 7.8.0 (#4364)
     add 37d08fe5c8 Bump log4j from 2.23.0 to 2.24.0 (#4388)
     add da1fbc1a25 Bump org.rocksdb:rocksdbjni from 9.4.0 to 9.6.1

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (06fa2f71b6)
            \
             N -- N -- N   
refs/heads/dependabot/gradle/org.rocksdb-rocksdbjni-9.6.1 (da1fbc1a25)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 build.gradle                                       |   2 -
 gradle/libs.versions.toml                          |   6 +-
 modules/catalog/build.gradle                       |   5 +
 .../internal/catalog/it/ItConcurrentDdlsTest.java  |  69 ++++
 .../internal/catalog/CatalogManagerImpl.java       |  29 +-
 .../client/proto/ClientBinaryTupleUtils.java       |  19 +-
 .../management/raft/ItCmgRaftServiceTest.java      |   7 +-
 .../management/ClusterManagementGroupManager.java  |  25 +-
 .../management/raft/CmgRaftGroupListener.java      |  10 +-
 .../cluster/management/raft/CmgRaftService.java    |  13 +
 .../management/topology/LogicalTopologyImpl.java   |  30 +-
 .../management/raft/CmgRaftGroupListenerTest.java  |  26 +-
 .../topology/LogicalTopologyImplTest.java          |   5 +-
 .../internal/cluster/management/MockNode.java      |   3 +-
 .../management/raft/TestClusterStateStorage.java   |  26 ++
 .../internal/util/BrokenPointerWrapping.java       |   2 +-
 .../ignite/internal/util/FeatureChecker.java       |  36 +-
 .../apache/ignite/internal/util/GridUnsafe.java    |   8 +-
 .../internal/util/JavaNioPointerWrapping.java      |   2 +-
 ...niteDistributionZoneManagerNodeRestartTest.java |   6 +-
 .../BaseDistributionZoneManagerTest.java           |   5 +-
 .../impl/ItMetaStorageMaintenanceTest.java         |  15 +-
 .../ItMetaStorageMultipleNodesAbstractTest.java    |   3 +-
 .../metastorage/impl/ItMetaStorageWatchTest.java   |   3 +-
 .../metastorage/impl/MetaStorageManagerImpl.java   |   7 +-
 .../impl/MetastorageGroupMaintenance.java          |   8 +-
 .../persistence/PersistentPageMemory.java          |   3 +
 .../checkpoint/CheckpointPagesWriter.java          |  27 +-
 .../checkpoint/CheckpointProgressImpl.java         |  55 ++-
 .../persistence/checkpoint/Checkpointer.java       |   6 +-
 .../checkpoint/CheckpointProgressImplTest.java     |  26 +-
 .../persistence/checkpoint/CheckpointerTest.java   |   4 +-
 .../replicator/ItReplicaLifecycleTest.java         |   3 +-
 modules/placement-driver/build.gradle              |   1 +
 .../internal/placementdriver/ActiveActorTest.java  |   8 +-
 .../MultiActorPlacementDriverTest.java             |   7 +-
 .../PlacementDriverManagerTest.java                |  20 +-
 .../internal/placementdriver/LeaseUpdater.java     |  45 ++-
 .../placementdriver/PlacementDriverManager.java    |   7 +-
 .../placementdriver/LeaseNegotiationTest.java      |  11 +-
 .../internal/placementdriver/LeaseUpdaterTest.java |  12 +-
 .../cpp/ignite/tuple/binary_tuple_builder.h        |  14 +-
 modules/platforms/python/cpp_module/CMakeLists.txt |   1 +
 modules/platforms/python/cpp_module/module.cpp     |  52 +--
 modules/platforms/python/cpp_module/module.h       |  33 +-
 .../platforms/python/cpp_module/py_connection.cpp  |   6 +-
 modules/platforms/python/cpp_module/py_cursor.cpp  |   4 +-
 .../platforms/python/cpp_module/type_conversion.h  | 270 ++++++++++++--
 modules/platforms/python/cpp_module/utils.cpp      | 412 +++++++++++++++++++++
 modules/platforms/python/cpp_module/utils.h        | 220 +++++++++++
 modules/platforms/python/pyignite3/__init__.py     |  66 ++++
 .../platforms/python/tests/test_fetch_constants.py |  43 ++-
 .../python/tests/test_fetch_parameters.py          |  73 +++-
 .../apache/ignite/internal/raft/IndexWithTerm.java |  41 +-
 .../internal/raft/service/LeaderWithTerm.java      |   6 +
 .../ignite/internal/raft/IndexWithTermTest.java}   |  20 +-
 .../storage/impl/DefaultLogStorageFactory.java     |  14 +-
 .../storage/impl/IgniteJraftServiceFactory.java    |   7 +
 .../raft/storage/logit/LogitLogStorageFactory.java |   2 +-
 .../apache/ignite/raft/jraft/RaftGroupService.java |   2 +-
 .../apache/ignite/raft/jraft/core/NodeImpl.java    |   8 +-
 .../ReplicationConfigurationSchema.java            |  10 +
 .../rest/api/cluster/ClusterManagementApi.java     |   4 +-
 .../internal/rest/api/cluster/TopologyApi.java     |  12 +-
 .../internal/rest/api/compute/ComputeApi.java      |  14 +-
 .../api/configuration/ClusterConfigurationApi.java |  20 +-
 .../api/configuration/NodeConfigurationApi.java    |  20 +-
 .../rest/api/deployment/DeploymentCodeApi.java     |  30 +-
 .../internal/rest/api/metric/NodeMetricApi.java    |  12 +-
 .../internal/rest/api/node/NodeManagementApi.java  |  12 +-
 .../ignite/internal/rest/api/node/NodeState.java   |   2 +-
 .../ignite/internal/rest/api/node/State.java       |   2 +-
 .../ignite/internal/app/AsyncApiOperation.java     |  10 +-
 .../ignite/internal/app/SyncApiOperation.java      |  10 +-
 .../ItDistributedConfigurationPropertiesTest.java  |   3 +-
 .../ItDistributedConfigurationStorageTest.java     |   3 +-
 .../runner/app/ItIgniteNodeRestartTest.java        |   6 +-
 .../app/client/ItThinClientMarshallingTest.java    |  19 +
 .../org/apache/ignite/internal/app/IgniteImpl.java |  24 +-
 .../ignite/internal/sql/engine/ItDmlTest.java      |  93 +++++
 .../sql/engine/prepare/IgniteSqlValidator.java     |  11 +-
 .../planner/AbstractAggregatePlannerTest.java      |  37 ++
 .../sql/engine/planner/AggregatePlannerTest.java   |  17 +-
 .../planner/ColocatedHashAggregatePlannerTest.java |  17 +-
 .../planner/ColocatedSortAggregatePlannerTest.java |  17 +-
 .../sql/engine/planner/DynamicParametersTest.java  |   2 +-
 .../planner/MapReduceHashAggregatePlannerTest.java |  17 +-
 .../planner/MapReduceSortAggregatePlannerTest.java |  17 +-
 modules/system-disaster-recovery-api/build.gradle  |   1 +
 .../message/BecomeMetastorageLeaderMessage.java    |   8 +-
 .../disaster/system/repair/MetastorageRepair.java} |  19 +-
 .../internal/disaster/system/ClusterIdService.java |   3 +
 .../disaster/system/MetastorageRepairImpl.java     | 192 ++++++++++
 .../system/SystemDisasterRecoveryManagerImpl.java  |  25 +-
 .../system/SystemDisasterRecoveryStorage.java      |   8 +-
 .../disaster/system/MetastorageRepairImplTest.java | 209 +++++++++++
 .../SystemDisasterRecoveryManagerImplTest.java     |  29 +-
 modules/table/build.gradle                         |   1 +
 .../ignite/internal/ItRaftFsyncOptionTest.java     |  85 +++++
 .../rebalance/ItRebalanceDistributedTest.java      |   2 +-
 .../threading/ItKvRecordApiThreadingTest.java      |  24 --
 .../schema/marshaller/TupleMarshallerImpl.java     |  20 +-
 102 files changed, 2531 insertions(+), 435 deletions(-)
 create mode 100644 
modules/catalog/src/integrationTest/java/org/apache/ignite/internal/catalog/it/ItConcurrentDdlsTest.java
 create mode 100644 modules/platforms/python/cpp_module/utils.cpp
 create mode 100644 modules/platforms/python/cpp_module/utils.h
 copy 
modules/{core/src/test/java/org/apache/ignite/internal/util/io/IgniteUnsafeDataInputTest.java
 => 
raft-api/src/test/java/org/apache/ignite/internal/raft/IndexWithTermTest.java} 
(60%)
 copy 
modules/{configuration-api/src/main/java/org/apache/ignite/configuration/notifications/ConfigurationListener.java
 => 
system-disaster-recovery-api/src/main/java/org/apache/ignite/internal/disaster/system/repair/MetastorageRepair.java}
 (61%)
 create mode 100644 
modules/system-disaster-recovery/src/main/java/org/apache/ignite/internal/disaster/system/MetastorageRepairImpl.java
 create mode 100644 
modules/system-disaster-recovery/src/test/java/org/apache/ignite/internal/disaster/system/MetastorageRepairImplTest.java
 create mode 100644 
modules/table/src/integrationTest/java/org/apache/ignite/internal/ItRaftFsyncOptionTest.java

Reply via email to