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

github-bot pushed a change to branch 
dependabot/gradle/io.github.bonede-tree-sitter-0.22.6
in repository https://gitbox.apache.org/repos/asf/ignite-3.git


 discard 644c79efe9 Bump io.github.bonede:tree-sitter from 0.22.5 to 0.22.6
     add dc741be3b6 IGNITE-21942 Cover SQL F393(Unicode escapes in literals) 
feature by tests (#3746)
     add 97c531227e IGNITE-19234 Enable and fix group reentry logic for 
volatile storages (#3763)
     add c25f9fdac1 IGNITE-22245 Force switch write intents (#3765)
     add 0125fdc1ab IGNITE-21465 Add system views for partition states (#3760)
     add 0edec7a349 IGNITE-21944: Cover SQL F851(<order by clause> in 
subqueries) feature by tests (#3773)
     add b78fab2d05 IGNITE-22256: remove incorrect tests in 
ItKvKeyColumnPositionTest. (#3778)
     add dea9e4068f IGNITE-22254 Cluster initialization fails when event log is 
configured (#3775)
     add b60fed3ff2 IGNITE-21812 Add automatic product version resolve (#3776)
     add 4a5a498502 IGNITE-22257 Move IgniteUtils#copyStateTo to 
CompletableFutures (#3781)
     add 7198bf0226 IGNITE-21979: Extend test coverage for SQL 
F781(Self-referencing operations) (#3759)
     add 426b355d6c IGNITE-22268 Add checkstyle rule for package names (#3783)
     add 3a7dadbec7 IGNITE-19065: add test to implicit insert null into not 
null column (#3777)
     add 400bcfed64 Bump io.github.bonede:tree-sitter from 0.22.5 to 0.22.6

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   (644c79efe9)
            \
             N -- N -- N   
refs/heads/dependabot/gradle/io.github.bonede-tree-sitter-0.22.6 (400bcfed64)

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:
 check-rules/checkstyle-rules.xml                   |  16 +-
 .../ignite/internal/affinity/Assignments.java      |  16 ++
 .../internal/causality/BaseVersionedValue.java     |   2 +-
 .../ignite/internal/future/OrderingFuture.java     |   2 +-
 .../internal/properties/IgniteProductVersion.java  |   2 +-
 .../internal/streamer/StreamerSubscriber.java      |   2 +-
 .../ignite/internal/util/CompletableFutures.java   |  19 +++
 .../apache/ignite/internal/util/IgniteUtils.java   |  19 ---
 .../ignite/internal/{ => hlc}/HybridClockTest.java |   6 +-
 .../internal/{ => hlc}/HybridClockTestUtils.java   |   0
 .../internal/util/CompletableFuturesTest.java      |  25 +++
 .../ignite/internal/util/IgniteUtilsTest.java      |   2 +-
 .../src/testFixtures/resources/log4j2-test.xml     |   2 +-
 modules/eventlog/build.gradle                      |   6 +
 .../ignite/internal/eventlog/ItEventLogTest.java   | 105 +++++++++++++
 .../internal/eventlog/api/IgniteEventType.java     |   6 +
 .../ignite/internal/eventlog/api/IgniteEvents.java |   1 -
 .../internal/eventlog/event/EventBuilder.java      |  11 +-
 .../internal/eventlog/event/EventBuilderTest.java  |   3 +-
 .../internal/eventlog/event/IgniteEventsTest.java  |  12 +-
 .../ignite/raft/jraft/core/FSMCallerImpl.java      |   2 +-
 modules/rest/build.gradle                          |   1 +
 .../rest/ItInitializedClusterRestTest.java         |   8 +-
 .../rest/ItNotInitializedClusterRestTest.java      |   7 +-
 .../runner/app/ItIgniteNodeRestartTest.java        |  31 ++--
 .../org/apache/ignite/internal/app/IgniteImpl.java |   2 +
 .../apache/ignite/internal/app/IgnitionImpl.java   |   2 +
 .../sql/api/ItKvKeyColumnPositionTest.java         |  31 ----
 .../sql/engine/ItNotNullConstraintTest.java        |   5 +
 .../sql/dml/test_self_referencing.test             | 107 +++++++++++++
 .../integrationTest/sql/order/test_order_by.test   |  24 ++-
 .../sql/order/test_order_by.test_ignore            | 174 ---------------------
 .../sql/order/test_order_by_in_subquery.test       |  60 +++++++
 .../sql/types/char/test_char_length.test           |   6 -
 .../test_unicode_escapes_in_literals.test_ignored  |  51 ++++++
 .../sql/engine/planner/LimitOffsetPlannerTest.java |   2 +-
 modules/table/build.gradle                         |   4 +
 .../disaster/ItDisasterRecoverySystemViewTest.java | 101 ++++++++++++
 .../raftsnapshot/ItTableRaftSnapshotsTest.java     |   6 +-
 .../internal/table/ItTxResourcesVacuumTest.java    |  61 ++++----
 .../PartitionReplicatorNodeRecovery.java           | 113 +++++++++----
 .../internal/table/distributed/TableManager.java   |  26 ++-
 .../disaster/DisasterRecoveryManager.java          |  16 +-
 .../disaster/DisasterRecoverySystemViews.java      | 161 +++++++++++++++++++
 .../table/distributed/message/DataPresence.java}   |  16 +-
 .../table/distributed/message/HasDataResponse.java |  13 +-
 .../replicator/PartitionReplicaListener.java       |  23 ++-
 .../ignite/internal/utils/RebalanceUtilEx.java     |  19 ++-
 .../internal/tx/impl/TxCleanupRequestSender.java   |   4 +-
 49 files changed, 932 insertions(+), 401 deletions(-)
 rename modules/core/src/test/java/org/apache/ignite/internal/{ => 
hlc}/HybridClockTest.java (95%)
 rename modules/core/src/test/java/org/apache/ignite/internal/{ => 
hlc}/HybridClockTestUtils.java (100%)
 create mode 100644 
modules/eventlog/src/integrationTest/java/org/apache/ignite/internal/eventlog/ItEventLogTest.java
 create mode 100644 
modules/sql-engine/src/integrationTest/sql/dml/test_self_referencing.test
 delete mode 100644 
modules/sql-engine/src/integrationTest/sql/order/test_order_by.test_ignore
 create mode 100644 
modules/sql-engine/src/integrationTest/sql/order/test_order_by_in_subquery.test
 create mode 100644 
modules/sql-engine/src/integrationTest/sql/types/string/test_unicode_escapes_in_literals.test_ignored
 create mode 100644 
modules/table/src/integrationTest/java/org/apache/ignite/internal/disaster/ItDisasterRecoverySystemViewTest.java
 create mode 100644 
modules/table/src/main/java/org/apache/ignite/internal/table/distributed/disaster/DisasterRecoverySystemViews.java
 copy modules/{api/src/main/java/org/apache/ignite/catalog/DefaultZone.java => 
table/src/main/java/org/apache/ignite/internal/table/distributed/message/DataPresence.java}
 (66%)

Reply via email to