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

github-bot pushed a change to branch 
dependabot/npm_and_yarn/docs/brace-expansion-1.1.13
in repository https://gitbox.apache.org/repos/asf/ignite-3.git


 discard e8830fe4904 Bump brace-expansion from 1.1.12 to 1.1.13 in /docs
     add e2d538bbfa1 IGNITE-24620 .NET: Use standard LINQ exceptions in 
First/Single operations (#7903)
     add e2b60531736 IGNITE-27718 Fix ClassCastException in UPDATEs with table 
level hints (#7715)
     add 12232584b43 IGNITE-28345 Skip client compute notification on 
executionFut fail (#7906)
     add 9f68bb3a0a9 IGNITE-24460 ะก++ 3.0: Add C++ API compatibility check 
(#7718)
     add 98261cea376 IGNITE-28410 DB API Driver: Fix deadlock in native code 
(#7909)
     add 613f646ea75 IGNITE-28315 Improve index row resolution for RO scan 
(#7895)
     add a1df12f1a6c IGNITE-28230 Implement SimpleMetricSource (#7855)
     add c3fcdcca26c IGNITE-28385 Fix missing enlistment in client commit 
request handler (#7899)
     add aefdfdf3ffd IGNITE-28406 Rework ItSqlApiBaseTest.cancelDdlScript in 
asynchronous fashion (#7907)
     add a11fb08638c IGNITE-28086 Fix flaky test 
testHaWhenAllVotingMembersAreLost (#7721)
     add 2d39ab07969 Bump brace-expansion from 1.1.12 to 1.1.13 in /docs

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   (e8830fe4904)
            \
             N -- N -- N   
refs/heads/dependabot/npm_and_yarn/docs/brace-expansion-1.1.13 (2d39ab07969)

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:
 .../test/platform_tests/PlatformCppTestsLinux.kt   |   1 +
 .../test/platform_tests/PlatformCppTestsWindows.kt |   1 +
 .../platform_tests/PlatformDotnetTestsLinux.kt     |  12 +
 .../ClientComputeExecuteMapReduceRequest.java      |  13 +-
 .../compute/ClientComputeExecuteRequest.java       |  13 +-
 .../tx/ClientTransactionCommitRequest.java         |  10 +-
 .../apache/ignite/client/fakes/FakeTxManager.java  |   8 +-
 .../internal/metrics/AbstractMetricSource.java     |   2 +
 .../internal/metrics/SimpleMetricSource.java       | 211 ++++++++++++++++
 .../internal/metrics/SimpleMetricSourceTest.java   | 274 +++++++++++++++++++++
 .../handlers/TxFinishReplicaRequestHandler.java    |  11 +-
 .../handlers/TxRecoveryMessageHandler.java         |   4 +-
 modules/platforms/cpp/CMakeLists.txt               |   3 +
 .../platforms/cpp/cmake/ignite_check_headers.cmake |  67 +++++
 .../cpp/cmake/ignite_compile_headers.cmake         |  97 ++++++++
 modules/platforms/cpp/ignite/client/CMakeLists.txt |  31 +++
 .../client/transaction/transaction_options.h       |   2 +
 modules/platforms/cpp/ignite/common/CMakeLists.txt |  17 +-
 .../cpp/ignite/common/detail/thread_timer.cpp      |  49 ++--
 .../cpp/ignite/common/detail/thread_timer.h        |  33 ++-
 .../platforms/cpp/ignite/network/CMakeLists.txt    |  43 ++++
 modules/platforms/cpp/ignite/odbc/CMakeLists.txt   |  41 +++
 .../platforms/cpp/ignite/protocol/CMakeLists.txt   |  20 ++
 modules/platforms/cpp/ignite/tuple/CMakeLists.txt  |   8 +-
 .../compile_public_headers/CMakeLists.txt          |  61 +++++
 .../Linq/LinqTests.AsyncMaterialization.cs         |   8 +-
 .../Linq/LinqTests.MemberInit.cs                   |   3 +-
 .../dotnet/Apache.Ignite.Tests/Linq/LinqTests.cs   |   3 +-
 .../Internal/Linq/IgniteQueryExecutor.cs           |   4 +-
 modules/platforms/python/dbapi/CMakeLists.txt      |   1 -
 .../ignite/internal/sql/api/ItSqlApiBaseTest.java  |  29 ++-
 .../datatypes/tests/BaseIndexDataTypeTest.java     |  64 +++++
 .../sql/engine/prepare/IgniteSqlValidator.java     |  53 +++-
 .../internal/sql/engine/util/QueryChecker.java     |  52 +++-
 ...ilablePartitionsRecoveryByFilterUpdateTest.java |   6 +
 .../replicator/PartitionReplicaListener.java       |  71 +++++-
 .../replication/PartitionReplicaListenerTest.java  |   2 +-
 .../ZonePartitionReplicaListenerTest.java          |   2 +-
 .../org/apache/ignite/internal/tx/TxManager.java   |  10 +-
 .../internal/tx/impl/TxCleanupRequestSender.java   |  14 +-
 .../ignite/internal/tx/impl/TxManagerImpl.java     |  10 +-
 .../ignite/internal/tx/impl/TxRecoveryEngine.java  |  44 +++-
 42 files changed, 1292 insertions(+), 116 deletions(-)
 create mode 100644 
modules/metrics/src/main/java/org/apache/ignite/internal/metrics/SimpleMetricSource.java
 create mode 100644 
modules/metrics/src/test/java/org/apache/ignite/internal/metrics/SimpleMetricSourceTest.java
 create mode 100644 modules/platforms/cpp/cmake/ignite_check_headers.cmake
 create mode 100644 modules/platforms/cpp/cmake/ignite_compile_headers.cmake
 create mode 100644 
modules/platforms/cpp/tests/package-test/compile_public_headers/CMakeLists.txt

Reply via email to