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

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


 discard 3e2d867952 Bump netty from 4.1.111.Final to 4.1.112.Final
     add 09ba0768b1 IGNITE-18357 Move classes from fixtures to tests (#4122)
     add f54bd46f58 IGNITE-22793 Sql. Make ItCastToTsWithLocalTimeZoneTest 
stable (#4123)
     add 2c3ce15a0d IGNITE-22233 Add zone replica listener (#3931)
     add 5d65a0022a IGNITE-22646 Support marshallers in the Java Client for 
Compute API (#4100)
     add 36b119e37f IGNITE-22797 Fix estimated size for insert-after-delete 
scenario (#4125)
     add 6178f00920 IGNITE-22799 Add partition ID to BplusTree names to make 
debugging easier (#4126)
     add c86b474c1d Bump netty from 4.1.111.Final to 4.1.112.Final

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   (3e2d867952)
            \
             N -- N -- N   refs/heads/dependabot/gradle/netty-4.1.112.Final 
(c86b474c1d)

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:
 .../java/org/apache/ignite/compute/ComputeJob.java |  18 +-
 .../org/apache/ignite/compute/JobDescriptor.java   |  26 +-
 .../java/org/apache/ignite/lang/ErrorGroups.java   |   7 +
 .../ByteArrayMarshaller.java}                      |  18 +-
 .../JavaSerializationByteArrayMarshalling.java}    |   4 +-
 .../Marshaler.java => marshalling/Marshaller.java} |  18 +-
 .../MarshallingException.java                      |   4 +-
 .../TupleMarshaller.java                           |   6 +-
 ...UnsupportedObjectTypeMarshallingException.java} |  12 +-
 .../apache/ignite/table/ReceiverDescriptor.java    |  12 +-
 .../ByteArrayMarshallerTest.java}                  |  34 +--
 .../client/proto/ClientBinaryTupleUtils.java       |   8 +-
 .../internal/client/proto/ClientMessagePacker.java |   8 +-
 .../client/proto/StreamerReceiverSerializer.java   |   6 +-
 .../ClientComputeExecuteColocatedRequest.java      |   4 +-
 .../compute/ClientComputeExecuteRequest.java       |  12 +-
 .../internal/client/compute/ClientCompute.java     |  36 +--
 .../client/compute/ClientJobExecution.java         |   6 +-
 .../internal/client/table/ClientDataStreamer.java  |   4 +-
 .../apache/ignite/client/fakes/FakeCompute.java    |  18 +-
 .../ignite/internal/compute/ItComputeBaseTest.java |   4 +-
 .../internal/compute/ItComputeTestStandalone.java  |   2 +-
 .../apache/ignite/internal/compute/PojoJob.java    |   8 +-
 .../internal/compute/ComputeComponentImpl.java     |   6 +-
 .../ignite/internal/compute/IgniteComputeImpl.java |  61 ++--
 .../internal/compute/IgniteComputeInternal.java    |   9 +
 .../internal/compute/JobExecutionWrapper.java      |   2 +-
 ...ion.java => ResultMarshallingJobExecution.java} |  24 +-
 .../compute/executor/ComputeExecutorImpl.java      |  56 +++-
 .../tree/AbstractBplusTreeReusePageMemoryTest.java |   2 +-
 .../pagememory/datastructure/DataStructure.java    |  13 +-
 .../internal/pagememory/freelist/FreeListImpl.java |   5 +-
 .../internal/pagememory/freelist/PagesList.java    |   6 +-
 .../ignite/internal/pagememory/tree/BplusTree.java |  12 +-
 .../pagememory/freelist/FreeListImplTest.java      |   3 +-
 .../replicator/ItReplicaLifecycleTest.java         |  94 ++++++-
 .../PartitionReplicaLifecycleManager.java          |  36 ++-
 .../replicator/ZonePartitionRaftListener.java      |  48 +++-
 .../replicator/ZonePartitionReplicaListener.java   |  94 ++++++-
 .../ReadOnlyDirectMultiRowReplicaRequest.java      |   3 +-
 .../ReadOnlyDirectSingleRowReplicaRequest.java     |   3 +-
 .../ReadOnlyMultiRowPkReplicaRequest.java          |   3 +-
 .../ReadOnlyScanRetrieveBatchReplicaRequest.java   |   3 +-
 .../ReadOnlySingleRowPkReplicaRequest.java         |   3 +-
 .../ReadWriteMultiRowPkReplicaRequest.java         |   3 +-
 .../ReadWriteMultiRowReplicaRequest.java           |   3 +-
 .../ReadWriteScanRetrieveBatchReplicaRequest.java  |   3 +-
 .../ReadWriteSingleRowPkReplicaRequest.java        |   3 +-
 .../ReadWriteSingleRowReplicaRequest.java          |   3 +-
 .../ReadWriteSwapRowReplicaRequest.java            |   3 +-
 modules/platforms/cpp/ignite/common/error_codes.h  |   1 +
 modules/platforms/cpp/ignite/odbc/common_types.cpp |   1 +
 .../platforms/dotnet/Apache.Ignite/ErrorCodes.g.cs |   3 +
 .../ignite/raft/jraft/core/MockStateMachine.java   |   0
 .../apache/ignite/raft/jraft/core/TestCluster.java |   0
 .../raft/jraft/core/TestJRaftServiceFactory.java   |   0
 .../raft/server/counter/GetValueCommand.java       |   7 +-
 .../server/counter/IncrementAndGetCommand.java     |   7 +-
 .../counter/IntegrationTestMessageGroup.java}      |  11 +-
 .../ignite/raft/messages/TestMessageGroup.java     |   7 -
 .../ItPlacementDriverReplicaSideTest.java          |   2 +-
 .../apache/ignite/internal/replicator/Replica.java |   9 +
 .../ignite/internal/replicator/ReplicaImpl.java    |   5 +
 .../ignite/internal/replicator/ReplicaManager.java |  20 +-
 .../replicator/ZonePartitionReplicaImpl.java       |   8 +-
 .../{ReplicaRequest.java => TableAware.java}       |   8 +-
 .../internal/replicator/ReplicaManagerTest.java    |   2 +-
 .../runner/app/ItIgniteNodeRestartTest.java        |  14 +-
 .../apache/ignite/internal/runner/app/Jobs.java    | 309 +++++++++++++++++++++
 .../client/ItThinClientComputeMarshallingTest.java | 259 +++++++++++++----
 ...tThinClientComputeTypeCheckMarshallingTest.java | 233 ++++++++++++++++
 .../app/compute/ItEmbeddedMarshallingTest.java     | 140 ++++++++++
 .../org/apache/ignite/internal/app/IgniteImpl.java |   6 +-
 .../engine/ItCastToTsWithLocalTimeZoneTest.java    |  48 ++--
 .../sql/engine/exec/UpdatableTableImpl.java        |   3 +
 .../storage/AbstractMvPartitionStorageTest.java    |  35 +++
 .../storage/impl/TestMvPartitionStorage.java       |  12 +-
 .../PersistentPageMemoryTableStorage.java          |   3 +-
 .../pagememory/VolatilePageMemoryDataRegion.java   |   2 +-
 .../pagememory/index/hash/HashIndexRow.java        |   6 +
 .../pagememory/index/hash/HashIndexRowKey.java     |   6 +
 .../pagememory/index/hash/HashIndexTree.java       |   4 +-
 .../pagememory/index/meta/IndexMetaKey.java        |   7 +
 .../pagememory/index/meta/IndexMetaTree.java       |   2 +-
 .../pagememory/index/sorted/SortedIndexRow.java    |   6 +
 .../pagememory/index/sorted/SortedIndexTree.java   |   4 +-
 .../mv/AddWriteCommittedInvokeClosure.java         |  21 +-
 .../pagememory/mv/CommitWriteInvokeClosure.java    |  58 ++--
 .../storage/pagememory/mv/VersionChainTree.java    |   2 +-
 .../internal/storage/pagememory/mv/gc/GcQueue.java |   2 +-
 .../rocksdb/RocksDbMvPartitionStorageTest.java     |  12 +
 .../ignite/distributed/ReplicaUnavailableTest.java |  13 +-
 .../rebalance/ItRebalanceDistributedTest.java      |  16 +-
 .../internal/table/distributed/TableManager.java   | 250 +++++++++++++----
 .../distributed/storage/InternalTableImpl.java     |  19 ++
 .../distributed/TableManagerRecoveryTest.java      |  15 +-
 .../table/distributed/TableManagerTest.java        |  10 +-
 .../PartitionReplicaListenerIndexLockingTest.java  |   4 +
 .../replication/PartitionReplicaListenerTest.java  |  35 +++
 .../ignite/internal/tx/impl/TxMessageSender.java   |   6 +
 .../tx/message/TxFinishReplicaRequest.java         |   7 +
 101 files changed, 1981 insertions(+), 458 deletions(-)
 rename 
modules/api/src/main/java/org/apache/ignite/{marshaling/ByteArrayMarshaler.java 
=> marshalling/ByteArrayMarshaller.java} (65%)
 rename 
modules/api/src/main/java/org/apache/ignite/{marshaling/JavaSerializationByteArrayMarshallilng.java
 => marshalling/JavaSerializationByteArrayMarshalling.java} (96%)
 rename modules/api/src/main/java/org/apache/ignite/{marshaling/Marshaler.java 
=> marshalling/Marshaller.java} (75%)
 rename modules/api/src/main/java/org/apache/ignite/{marshaling => 
marshalling}/MarshallingException.java (97%)
 rename modules/api/src/main/java/org/apache/ignite/{marshaling => 
marshalling}/TupleMarshaller.java (88%)
 rename 
modules/api/src/main/java/org/apache/ignite/{marshaling/UnsupportedObjectTypeMarshalingException.java
 => marshalling/UnsupportedObjectTypeMarshallingException.java} (81%)
 rename 
modules/api/src/test/java/org/apache/ignite/{marshaling/ByteArrayMarshalerTest.java
 => marshalling/ByteArrayMarshallerTest.java} (76%)
 copy 
modules/compute/src/main/java/org/apache/ignite/internal/compute/{DelegatingJobExecution.java
 => ResultMarshallingJobExecution.java} (67%)
 rename modules/raft/src/{testFixtures => 
integrationTest}/java/org/apache/ignite/raft/jraft/core/MockStateMachine.java 
(100%)
 rename modules/raft/src/{testFixtures => 
integrationTest}/java/org/apache/ignite/raft/jraft/core/TestCluster.java (100%)
 rename modules/raft/src/{testFixtures => 
integrationTest}/java/org/apache/ignite/raft/jraft/core/TestJRaftServiceFactory.java
 (100%)
 rename modules/raft/src/{testFixtures => 
integrationTest}/java/org/apache/ignite/raft/server/counter/GetValueCommand.java
 (76%)
 rename modules/raft/src/{testFixtures => 
integrationTest}/java/org/apache/ignite/raft/server/counter/IncrementAndGetCommand.java
 (76%)
 copy 
modules/raft/src/{testFixtures/java/org/apache/ignite/raft/messages/TestMessageGroup.java
 => 
integrationTest/java/org/apache/ignite/raft/server/counter/IntegrationTestMessageGroup.java}
 (77%)
 copy 
modules/replicator/src/main/java/org/apache/ignite/internal/replicator/message/{ReplicaRequest.java
 => TableAware.java} (85%)
 create mode 100644 
modules/runner/src/integrationTest/java/org/apache/ignite/internal/runner/app/Jobs.java
 create mode 100644 
modules/runner/src/integrationTest/java/org/apache/ignite/internal/runner/app/client/ItThinClientComputeTypeCheckMarshallingTest.java
 create mode 100644 
modules/runner/src/integrationTest/java/org/apache/ignite/internal/runner/app/compute/ItEmbeddedMarshallingTest.java

Reply via email to