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

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


 discard b30a2db34f Bump log4j from 2.24.0 to 2.24.1
     add 2767f7286d IGNITE-16707 Unify table API integration tests (#4430)
     add 038a8e0153 IGNITE-23259 Fix 
PlacementDriverManagerTest.testRedirectionAcceptance (#4441)
     add 6b236cbf72 IGNITE-23218 Better error types (#4483)
     add 4db36abc10 IGNITE-22740 DB API Driver 3: Implement Transactions (#4485)
     add 281b112b8e IGNITE-23165 Improve error message when deployment unit is 
not provided (#4480)
     add 2d709f5446 IGNITE-23209 Improve error message when config file 
couldn't be parsed (#4479)
     add e9210f56dc IGNITE-23272 Fix docker warnings (#4450)
     add 8e76298fbe Bump mockito from 5.13.0 to 5.14.1 (#4482)
     add 90a0bb19ea Bump junit5 from 5.11.0 to 5.11.1 (#4453)
     add 183c636638 Bump org.junit.platform:junit-platform-testkit from 1.11.0 
to 1.11.1 (#4454)
     add 60994e37a1 Bump jackson from 2.17.2 to 2.18.0 (#4469)
     add c0ea3db796 Bump log4j from 2.24.0 to 2.24.1

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   (b30a2db34f)
            \
             N -- N -- N   refs/heads/dependabot/gradle/log4j-2.24.1 
(c0ea3db796)

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:
 gradle/libs.versions.toml                          |   8 +-
 .../java/org/apache/ignite/table/KeyValueView.java |   2 +-
 .../commands/cluster/init/ClusterInitOptions.java  |   5 +-
 .../cluster/init/ConfigFileParseException.java}    |   7 +-
 .../cluster/init/ConfigParseExceptionHandler.java} |  18 +-
 .../handler/DefaultExceptionHandlers.java          |   2 +
 .../cli/commands/cluster/ClusterInitTest.java      |  26 +-
 modules/client/build.gradle                        |   1 +
 .../client/table/ClientKeyValueBinaryView.java     |  21 +-
 .../internal/client/table/ClientKeyValueView.java  |  10 +-
 .../client/table/ClientRecordBinaryView.java       |   7 +-
 .../internal/client/table/ClientRecordView.java    |   7 +-
 .../client/ClientKeyValueBinaryViewTest.java       |   5 +-
 .../apache/ignite/client/fakes/FakeCompute.java    |   5 +-
 .../internal/compute/ItComputeTestStandalone.java  |  21 +-
 .../ignite/internal/compute/ComputeUtils.java      |   9 +-
 .../org/apache/ignite/internal/util/ViewUtils.java |  19 +-
 .../PlacementDriverManagerTest.java                |  27 +-
 .../internal/placementdriver/LeaseUpdater.java     |   4 +-
 .../negotiation/LeaseAgreement.java                |   9 +
 .../cpp/ignite/odbc/diagnostic/diagnostic_record.h |   7 +
 .../platforms/cpp/ignite/odbc/sql_connection.cpp   |  13 +-
 modules/platforms/python/cpp_module/module.cpp     |  21 +-
 .../platforms/python/cpp_module/py_connection.cpp  |  83 +-
 modules/platforms/python/cpp_module/py_cursor.cpp  |  89 +--
 .../platforms/python/cpp_module/type_conversion.h  |   7 +-
 modules/platforms/python/cpp_module/utils.cpp      | 125 ++-
 modules/platforms/python/cpp_module/utils.h        |  72 ++
 modules/platforms/python/pyignite3/__init__.py     | 219 +++++-
 modules/platforms/python/tests/conftest.py         |   1 +
 modules/platforms/python/tests/test_connect.py     |  13 +-
 modules/platforms/python/tests/test_errors.py      |  78 ++
 modules/platforms/python/tests/test_fetch_table.py |  17 +
 .../platforms/python/tests/test_transactions.py    |  80 ++
 modules/platforms/python/tests/util.py             |   2 +-
 modules/table/build.gradle                         |   2 +
 .../table/AsyncApiKeyValueViewAdapter.java}        | 245 +++---
 .../internal/table/AsyncApiRecordViewAdapter.java  | 266 +++++++
 .../table/ItKeyValueBinaryViewApiTest.java         | 618 +++++++++++++++
 .../internal/table/ItKeyValueViewApiBaseTest.java  | 110 +++
 .../internal/table/ItKeyValueViewApiTest.java      | 619 +++++++++++++++
 .../table/ItKeyValueViewSimpleSchemaApiTest.java}  | 444 ++++++-----
 .../internal/table/ItRecordBinaryViewApiTest.java  | 858 +++++++++++++++++++++
 .../internal/table/ItRecordViewApiBaseTest.java    | 118 +++
 .../ignite/internal/table/ItRecordViewApiTest.java | 390 ++++++++++
 .../table/ItTableViewApiUnifiedBaseTest.java       | 176 +++++
 .../ignite/internal/table/KeyValueViewImpl.java    |   6 +-
 .../internal/table/RecordBinaryViewImpl.java       |   7 +-
 .../ignite/internal/table/RecordViewImpl.java      |   7 +-
 .../table/KeyValueBinaryViewOperationsTest.java    |  46 +-
 .../KeyValueViewOperationsSimpleSchemaTest.java    |   2 +
 .../internal/table/KeyValueViewOperationsTest.java | 139 +---
 .../table/RecordBinaryViewOperationsTest.java      |  45 +-
 .../internal/table/RecordViewOperationsTest.java   |  35 +-
 .../internal/table/SchemaValidationTest.java       |   2 +
 .../table/TableKvOperationsMockedTest.java         | 278 +++++++
 .../ignite/internal/table/KeyValueTestUtils.java   | 124 +++
 packaging/docker/Dockerfile                        |  16 +-
 58 files changed, 4881 insertions(+), 712 deletions(-)
 copy 
modules/{compute/src/jobs/java/org/apache/ignite/internal/compute/JobException.java
 => 
cli/src/main/java/org/apache/ignite/internal/cli/commands/cluster/init/ConfigFileParseException.java}
 (76%)
 copy 
modules/cli/src/main/java/org/apache/ignite/internal/cli/{core/exception/handler/FileNotFoundExceptionHandler.java
 => commands/cluster/init/ConfigParseExceptionHandler.java} (67%)
 create mode 100644 modules/platforms/python/tests/test_errors.py
 create mode 100644 modules/platforms/python/tests/test_transactions.py
 copy 
modules/{runner/src/main/java/org/apache/ignite/internal/restart/RestartProofKeyValueView.java
 => 
table/src/integrationTest/java/org/apache/ignite/internal/table/AsyncApiKeyValueViewAdapter.java}
 (53%)
 create mode 100644 
modules/table/src/integrationTest/java/org/apache/ignite/internal/table/AsyncApiRecordViewAdapter.java
 create mode 100644 
modules/table/src/integrationTest/java/org/apache/ignite/internal/table/ItKeyValueBinaryViewApiTest.java
 create mode 100644 
modules/table/src/integrationTest/java/org/apache/ignite/internal/table/ItKeyValueViewApiBaseTest.java
 create mode 100644 
modules/table/src/integrationTest/java/org/apache/ignite/internal/table/ItKeyValueViewApiTest.java
 copy 
modules/table/src/{test/java/org/apache/ignite/internal/table/KeyValueViewOperationsSimpleSchemaTest.java
 => 
integrationTest/java/org/apache/ignite/internal/table/ItKeyValueViewSimpleSchemaApiTest.java}
 (55%)
 create mode 100644 
modules/table/src/integrationTest/java/org/apache/ignite/internal/table/ItRecordBinaryViewApiTest.java
 create mode 100644 
modules/table/src/integrationTest/java/org/apache/ignite/internal/table/ItRecordViewApiBaseTest.java
 create mode 100644 
modules/table/src/integrationTest/java/org/apache/ignite/internal/table/ItRecordViewApiTest.java
 create mode 100644 
modules/table/src/integrationTest/java/org/apache/ignite/internal/table/ItTableViewApiUnifiedBaseTest.java
 create mode 100644 
modules/table/src/test/java/org/apache/ignite/internal/table/TableKvOperationsMockedTest.java
 create mode 100644 
modules/table/src/testFixtures/java/org/apache/ignite/internal/table/KeyValueTestUtils.java

Reply via email to