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

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


    omit b1e12005cfe Bump jackson from 2.19.2 to 2.21
     add 09cce1eaa05 IGNITE-27587 Suppress SocketException stacktraces in 
ClientInboundMessageHandler (#7444)
     add 9163f41a40f IGNITE-27054 Add integration test for durable log 
destruction (#7447)
     add 898c166d339 IGNITE-27609 Sql. Fix occasional NoSuchElementException 
during query planning (#7446)
     add 4d2c35a34e8 Bump io.swagger.core.v3:swagger-annotations from 2.2.41 to 
2.2.42 (#7441)
     add 25426c13d40 Bump org.openapi.generator from 7.18.0 to 7.19.0 (#7435)
     add 6ce004dc6c3 IGNITE-27617 Ensure directly mapped client transaction 
write intents are cleaned up
     add cb4fc1b97c4 IGNITE-27622 Fix failure handler documentation (#7451)
     add 609961787fd IGNITE-27624 Update embedded-mode.adoc (#5589)
     add d5229d0692a IGNITE-27564 Fix CLI tests in IDEA (#7412)
     add 8355b3f3ef2 IGNITE-27598 Fixed StackOverflow in txs clean up process 
(#7443)
     add 1dfc7a6f77c IGNITE-25229 Enable `testCompactionAfterRestartNode` 
(#7450)
     add fc20c25fdb6 Bump net.bytebuddy:byte-buddy from 1.18.3 to 1.18.4 (#7453)
     add e967824a19d IGNITE-27510 Update outdated ticket mentions (#7456)
     add f6beed5d580 IGNITE-27601 TxCleanupReadyFutureList is modified to 
consume less memory (#7454)
     add 8df4e8a495e IGNITE-27615 Cleanup code that uses tableOrZone id to 
represent a replication group (#7457)
     add 66936177599 IGNITE-27638 Fix WI list corruption on transaction 
commit/abort (#7460)
     add 43954a13fe3 IGNITE-27647 .NET: Fix GetProxies flakiness (#7461)
     add d0178f084be IGNITE-27561 .NET: Increase 
TestReconnectAfterFullClusterRestart timeout (#7459)
     add 26debd34466 IGNITE-27515 Truncate table columns to fit terminal width 
in CLI REPL (#7420)
     add bd58f90f92f IGNITE-27574 Workaround for HOCON lists rendering (#7421)
     add 253002367af IGNITE-27221 Fix empty metric set REST result (#7448)
     add 5b152feeec2 IGNITE-27639 Close accepted data channels explicitly on 
stop (#7458)
     add 3f7cf62a253 IGNITE-27265 .NET: Improve partition API (#7467)
     add 065546a8737 Bump jackson from 2.19.2 to 2.21

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   (b1e12005cfe)
            \
             N -- N -- N   refs/heads/dependabot/gradle/jackson-2.21 
(065546a8737)

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:
 CLAUDE.md                                          |   8 +
 .../administrators-guide/config/node-config.adoc   |  11 +-
 docs/_docs/quick-start/embedded-mode.adoc          |   4 +-
 gradle/libs.versions.toml                          |   8 +-
 .../cli/persistence/calls/MigrateCacheCall.java    |   4 +-
 .../ignite/migrationtools/sql/SqlDdlGenerator.java |   2 +-
 .../PersistentTableTypeRegistryImpl.java           |   4 +-
 .../persistence/Ignite2PersistentCacheTools.java   |   6 +-
 .../mappers/AbstractSchemaColumnsProcessor.java    |  16 +-
 .../tests/e2e/impl/IntArrayCachesTest.java         |   8 +-
 modules/cli/build.gradle                           |   5 +-
 .../ignite/internal/cli/commands/Options.java      |  12 +
 .../cli/commands/sql/SqlExecReplCommand.java       |  25 +-
 .../internal/cli/commands/sql/SqlReplCommand.java  |  16 +
 .../ignite/internal/cli/config/CliConfigKeys.java  |  12 +-
 .../internal/cli/decorators/HoconDecorator.java    |   3 +-
 .../cli/decorators/SqlQueryResultDecorator.java    |  17 +-
 .../internal/cli/decorators/TableDecorator.java    |  35 +-
 .../internal/cli/decorators/TruncationConfig.java  | 180 ++++++++++
 .../ignite/internal/cli/sql/SqlQueryResult.java    |  31 +-
 .../internal/cli/sql/SqlQueryResultItem.java       |  15 +-
 .../internal/cli/sql/SqlQueryResultMessage.java    |   4 +-
 .../internal/cli/sql/SqlQueryResultTable.java      |   5 +-
 .../ignite/internal/cli/util/TableTruncator.java   | 266 +++++++++++++++
 .../cli/decorators/HoconDecoratorTest.java         |   3 +-
 .../internal/cli/util/TableTruncatorTest.java      | 375 +++++++++++++++++++++
 .../client/proto/ProtocolBitmaskFeature.java       |   7 +-
 .../ignite/client/handler/ItClientHandlerTest.java |   1 +
 .../ignite/client/handler/ClientHandlerModule.java |   3 +-
 .../handler/ClientInboundMessageHandler.java       |  16 +-
 .../tx/ClientTransactionCommitRequest.java         |  10 +-
 .../tx/ClientTransactionRollbackRequest.java       |  14 +-
 .../client/ClientTransactionInflights.java         |  10 +
 .../ignite/internal/client/TcpClientChannel.java   |   3 +-
 .../internal/client/tx/ClientTransaction.java      |   3 +
 .../apache/ignite/client/fakes/FakeTxManager.java  |   1 +
 .../internal/testframework/IgniteTestUtils.java    |  41 +++
 modules/metastorage/build.gradle                   |   1 +
 .../ItMetaStorageCompactionTriggerOneNodeTest.java |  20 +-
 .../ignite/internal/network/netty/NettyServer.java | 101 ++++--
 .../internal/network/netty/NettyServerTest.java    |  26 ++
 .../partition/replicator/TxRecoveryEngine.java     |   1 +
 .../network/raft/SnapshotMvDataResponse.java       |   5 +-
 .../raft/snapshot/PartitionDataStorage.java        |   5 +-
 .../raft/snapshot/PartitionMvStorageAccess.java    |   5 +-
 .../snapshot/incoming/IncomingSnapshotCopier.java  |   4 +-
 .../raft/snapshot/outgoing/OutgoingSnapshot.java   |   6 +-
 .../incoming/IncomingSnapshotCopierTest.java       |   7 +-
 .../OutgoingSnapshotMvDataStreamingTest.java       |  12 +-
 .../PlacementDriverManagerTest.java                |  10 +-
 .../leases/LeaseSerializationTest.java             |  10 +-
 .../CurrentClientWithOldServerCompatibilityTest.cs |   2 +-
 .../dotnet/Apache.Ignite.Tests/FakeServer.cs       |   4 +-
 .../dotnet/Apache.Ignite.Tests/IgniteTestsBase.cs  |   3 +
 .../dotnet/Apache.Ignite.Tests/ReconnectTests.cs   |  14 +-
 ...nagerTests.cs => PartitionDistributionTests.cs} |  75 +++--
 .../Table/PartitionManagerTests.cs                 |  14 +-
 .../Apache.Ignite/ApiCompatibilitySuppressions.xml |  14 +
 .../dotnet/Apache.Ignite/ClientOperationType.cs    |   2 +-
 .../Apache.Ignite/Internal/Table/DataStreamer.cs   |  10 +-
 .../Internal/Table/DataStreamerWithReceiver.cs     |   8 +-
 .../Apache.Ignite/Internal/Table/HashPartition.cs  |   4 +-
 .../Internal/Table/PartitionManager.cs             |  47 ++-
 .../dotnet/Apache.Ignite/Internal/Table/Table.cs   |   4 +-
 .../dotnet/Apache.Ignite/Table/IPartition.cs       |   6 +-
 ...rtitionManager.cs => IPartitionDistribution.cs} |  26 +-
 .../Apache.Ignite/Table/IPartitionManager.cs       |   6 +-
 .../platforms/dotnet/Apache.Ignite/Table/ITable.cs |   9 +-
 .../internal/raft/server/impl/JraftServerImpl.java |   2 +-
 .../storage/GroupStoragesDestructionIntents.java   |   3 +-
 .../impl/NoopGroupStoragesDestructionIntents.java  |   3 +-
 .../impl/VaultGroupStoragesDestructionIntents.java |   3 +-
 .../internal/replicator/ReplicaTestUtils.java      |   7 +-
 .../ignite/internal/rest/api/metric/MetricSet.java |   2 +
 .../NodeMetricsControllerTest.java}                |  51 +--
 .../internal/client/ItClientDirectMappingTest.java | 231 +++++++++----
 .../internal/sql/engine/prepare/PlannerHelper.java |   4 +-
 .../pagememory/mv/AbortWriteInvokeClosure.java     |  13 +-
 .../partition/ItPartitionDestructionTest.java      |  50 +++
 .../ignite/internal/table/ItColocationTest.java    |   1 +
 .../snapshot/PartitionMvStorageAccessImpl.java     |   4 +-
 .../SnapshotAwarePartitionDataStorage.java         |   4 +-
 .../replicator/PartitionReplicaListener.java       |  69 ++--
 .../replication/PartitionReplicaListenerTest.java  |   2 +-
 .../ZonePartitionReplicaListenerTest.java          |   6 +-
 .../distributed/storage/InternalTableImplTest.java |   4 +-
 .../distributed/TestPartitionDataStorage.java      |   4 +-
 .../tx/distributed/ItTransactionRecoveryTest.java  |   1 +
 .../org/apache/ignite/internal/tx/TxManager.java   |   2 +
 .../internal/tx/impl/ReadWriteTransactionImpl.java |  15 +
 .../internal/tx/impl/TxCleanupRequestSender.java   |  84 ++++-
 .../ignite/internal/tx/impl/TxManagerImpl.java     |  12 +-
 .../apache/ignite/internal/tx/TxCleanupTest.java   |  10 +-
 .../tx/impl/ReadWriteTransactionImplTest.java      |   9 +-
 .../state/rocksdb/RocksDbTxStateStorageTest.java   |   2 +-
 .../storage/state/test/TestTxStateStorageTest.java |   2 +-
 .../storage/state/AbstractTxStateStorageTest.java  |   4 +-
 97 files changed, 1872 insertions(+), 377 deletions(-)
 create mode 100644 
modules/cli/src/main/java/org/apache/ignite/internal/cli/decorators/TruncationConfig.java
 create mode 100644 
modules/cli/src/main/java/org/apache/ignite/internal/cli/util/TableTruncator.java
 create mode 100644 
modules/cli/src/test/java/org/apache/ignite/internal/cli/util/TableTruncatorTest.java
 copy 
modules/platforms/dotnet/Apache.Ignite.Tests/Table/{PartitionManagerTests.cs => 
PartitionDistributionTests.cs} (67%)
 copy modules/platforms/dotnet/Apache.Ignite/Table/{IPartitionManager.cs => 
IPartitionDistribution.cs} (70%)
 copy 
modules/rest/src/test/java/org/apache/ignite/internal/rest/{configuration/NodeConfigurationControllerTest.java
 => metrics/NodeMetricsControllerTest.java} (50%)

Reply via email to