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

github-bot pushed a change to branch 
dependabot/gradle/com.github.spotbugs-spotbugs-annotations-4.9.4
in repository https://gitbox.apache.org/repos/asf/ignite-3.git


 discard 666bb5648df Bump com.github.spotbugs:spotbugs-annotations from 4.8.3 
to 4.9.4
     add d2c3b3ac3ab IGNITE-26176 Close result set (#6396)
     add 2f0e17df400 IGNITE-25724 Add rebalance metrics (#6416)
     add 2b2c8d75fb0 IGNITE-26227 Fix server shutdown in case of an error 
(#6441)
     add 543544b5dc6 IGNITE-26224 Improve tuple map handling (#6438)
     add ca1eef16ea8 IGNITE-26216 Add partition generation to in-memory page 
header for PersistentPageMemory (#6442)
     add 661afbdd2ac IGNITE-26199 Sql. Expand usage of HashJoin with non-equi 
predicate to LEFT joins (#6423)
     add 472c705d818 IGNITE-26231 Update page header documentation in 
PersistentPageMemory (#6444)
     add a92d1a54f53 IGNITE-26229 Fix wrong default profile size usage in 
"aipersist" (#6443)
     add a86b59014cb IGNITE-26116 Create compute task events for remote 
execution (#6391)
     add 337722d28b5 IGNITE-26232 Minor refactoring for PageHeader (#6445)
     add 94264880db1 IGNITE-26200 Migration Tools: Fix error in windows startup 
scripts (#6421)
     add 337bcf7257d IGNITE-26234: Add node autocompletion (#6447)
     add 30849b81ac8 IGNITE-25112 Bump Netty from 4.1.119.Final to 4.2.4.Final 
(#6450)
     add c5969bd3577 IGNITE-26236 Downgrade checkstyle plugin to 10.26.1 (#6448)
     add 91597f7b3c7 Bump com.github.spotbugs:spotbugs-annotations from 4.8.3 
to 4.9.4

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   (666bb5648df)
            \
             N -- N -- N   
refs/heads/dependabot/gradle/com.github.spotbugs-spotbugs-annotations-4.9.4 
(91597f7b3c7)

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:
 .idea/checkstyle-idea.xml                          |   6 +-
 gradle/libs.versions.toml                          |   5 +-
 migration-tools/packaging/cli/start.bat            |  11 +-
 .../packaging/common/windows/setup-java.bat        |   2 +-
 .../java/org/apache/ignite/table/TupleImpl.java    |  16 +-
 .../ignite/internal/cli/CliIntegrationTest.java    |   3 +-
 .../ignite/internal/cli/commands/Options.java      |   5 +-
 .../completer/DynamicCompleterActivationPoint.java |  24 +++
 .../client/proto/ClientComputeJobUnpacker.java     |  12 ++
 .../internal/client/proto/ClientMessagePacker.java |  13 ++
 .../client/proto/ClientMessageUnpacker.java        |  11 ++
 .../client/proto/ProtocolBitmaskFeature.java       |   7 +-
 .../ignite/client/handler/ItClientHandlerTest.java |   1 +
 .../ignite/client/handler/ClientHandlerModule.java |   1 +
 .../ClientComputeExecuteColocatedRequest.java      |  11 +-
 .../ClientComputeExecutePartitionedRequest.java    |  17 +-
 .../compute/ClientComputeExecuteRequest.java       |  17 +-
 .../ignite/internal/client/TcpClientChannel.java   |   1 +
 .../internal/client/compute/ClientCompute.java     |  31 +++-
 .../io/netty/NettyClientConnectionMultiplexer.java |   3 +
 .../apache/ignite/client/fakes/FakeCompute.java    |   7 +-
 .../ignite/internal/ItCompatibilityTest.java       |   4 +-
 .../ignite/internal/CompatibilityTestBase.java     |  14 +-
 .../internal/compute/events/EventMatcher.java      |  34 +++-
 .../compute/events/ItComputeEventsTest.java        | 206 ++++++++++++++++-----
 .../events/ItThinClientComputeEventsTest.java      |   4 +-
 .../ignite/internal/compute/ComputeComponent.java  |  26 +--
 .../internal/compute/ComputeComponentImpl.java     |  31 ++--
 .../internal/compute/ComputeJobFailover.java       |  64 ++++---
 .../internal/compute/ComputeMessageTypes.java      |   5 +
 .../internal/compute/FailSafeJobExecution.java     |   5 +-
 .../ignite/internal/compute/IgniteComputeImpl.java |  53 ++++--
 .../internal/compute/IgniteComputeInternal.java    |   8 +-
 .../apache/ignite/internal/compute/JobStarter.java |   3 +
 .../internal/compute/RemoteExecutionContext.java   |  11 +-
 .../compute/events/ComputeEventMetadata.java       | 159 ++++------------
 .../events/ComputeEventMetadataBuilder.java        | 107 +++++++++++
 .../compute/events/ComputeEventsFactory.java       |  21 ++-
 .../internal/compute/executor/ComputeExecutor.java |   4 +-
 .../compute/executor/ComputeExecutorImpl.java      |   4 +-
 ...obStatesResponse.java => ExecuteRequestV2.java} |  24 +--
 .../compute/messaging/ComputeMessaging.java        |  18 +-
 .../compute/queue/PriorityQueueExecutor.java       |  11 +-
 .../internal/compute/ComputeComponentImplTest.java |  11 +-
 .../internal/compute/IgniteComputeImplTest.java    |   4 +-
 modules/distribution-zones/build.gradle            |   2 +
 ...niteDistributionZoneManagerNodeRestartTest.java |   4 +-
 .../rebalance/ItRebalanceDistributedTest.java      |   3 +-
 .../internal/rebalance/ItRebalanceMetricsTest.java | 200 ++++++++++++++++++++
 .../distributionzones/DistributionZoneManager.java |  89 ++++++++-
 .../distributionzones/ZoneMetricSource.java        | 169 +++++++++++++++++
 .../utils/CatalogAlterZoneEventListener.java       |  15 ++
 .../BaseDistributionZoneManagerTest.java           |   4 +-
 .../rebalance/ZoneMetricSourceTest.java            | 102 ++++++++++
 .../internal/metrics/AbstractMetricSource.java     |   2 +-
 .../internal/network/ssl/SslContextProvider.java   |   3 +
 .../ItBplusTreePersistentPageMemoryTest.java       |   3 +-
 ...BplusTreeReuseListPersistentPageMemoryTest.java |   3 +-
 .../pagememory/persistence/PageHeader.java         | 151 +++++++++------
 .../internal/pagememory/persistence/PagePool.java  |   4 +-
 .../persistence/PersistentPageMemory.java          |  44 +++--
 .../checkpoint/CheckpointProgressImpl.java         |   4 +-
 .../RandomLruPageReplacementPolicy.java            |   4 +-
 .../pagememory/persistence/PageHeaderTest.java     | 134 ++++++++++++++
 .../RandomLruPageReplacementPolicySelfTest.java    |   2 +-
 .../RendezvousDistributionFunction.java            |   9 +-
 .../partition/replicator/fixtures/Node.java        |   3 +-
 .../rest/metrics/ItMetricControllerTest.java       |   3 +-
 .../ItNodeBootstrapConfigurationTest.java          |  41 ++--
 .../runner/app/ItIgniteNodeRestartTest.java        |   3 +-
 .../org/apache/ignite/internal/app/IgniteImpl.java |   4 +-
 .../ignite/internal/sql/engine/ItJoinTest.java     |  19 ++
 .../internal/sql/engine/exec/rel/HashJoinNode.java |   9 +-
 .../sql/engine/rule/HashJoinConverterRule.java     |   6 +-
 .../sql/engine/exec/rel/HashJoinExecutionTest.java |  27 +++
 .../sql/engine/planner/HashJoinPlannerTest.java    |   4 +-
 .../pagememory/PersistentPageMemoryDataRegion.java |   4 +-
 .../PersistentPageMemoryMvTableStorageTest.java    |   3 +-
 .../pagememory/PersistentPageMemoryNoLoadTest.java |  72 ++++++-
 .../schema/marshaller/TupleMarshallerImpl.java     |  16 +-
 .../marshaller/TupleMarshallerStatisticsTest.java  |   2 +-
 81 files changed, 1723 insertions(+), 479 deletions(-)
 create mode 100644 
modules/compute/src/main/java/org/apache/ignite/internal/compute/events/ComputeEventMetadataBuilder.java
 copy 
modules/compute/src/main/java/org/apache/ignite/internal/compute/message/{JobStatesResponse.java
 => ExecuteRequestV2.java} (63%)
 create mode 100644 
modules/distribution-zones/src/integrationTest/java/org/apache/ignite/internal/rebalance/ItRebalanceMetricsTest.java
 create mode 100644 
modules/distribution-zones/src/main/java/org/apache/ignite/internal/distributionzones/ZoneMetricSource.java
 create mode 100644 
modules/distribution-zones/src/test/java/org/apache/ignite/internal/distributionzones/rebalance/ZoneMetricSourceTest.java
 create mode 100644 
modules/page-memory/src/test/java/org/apache/ignite/internal/pagememory/persistence/PageHeaderTest.java

Reply via email to