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

dependabot[bot] pushed a change to branch 
dependabot/maven/com.sun.mail-javax.mail-1.6.2
in repository https://gitbox.apache.org/repos/asf/ignite.git


    omit 52aa585ee38 Bump com.sun.mail:javax.mail from 1.5.2 to 1.6.2
     add 17732d02fc8 Bump hamcrest.version from 2.2 to 3.0 (#13415)
     add 93cd142f465 IGNITE-28985 GridNearTxPrepareRequest might not implement 
undesirable SelfMarshallingMessage (#13466)
     add 04f29e65055 IGNITE-28982 Enable rolling upgrade in testcontainers 
compatibility tests
     add aa3dec022f4 IGNITE-29020 Document SQL query initiator ID (#13525)
     add 34427bdf25f Bump jackson.version from 2.21.5 to 2.22.2 (#13534)
     add 71d831ef07e IGNITE-29021 SQL Calcite: UDF with BigDecimal argument 
fails (#13535)
     add 69d87b8fe4c IGNITE-29009 Fix protected class detection (#13512)
     add 2c14ece08e4 IGNITE-29004 Refactored ClientImpl to use single instance 
of TcpDiscoveryIoSession per connection (#13507)
     add 2bda6794d89 IGNITE-29022 Fix inconsistences for maven plugins (#13536)
     add bf2847be7ba Bump commons-cli:commons-cli from 1.2 to 1.11.0 (#13527)
     add 1b975e7449d Bump com.sun.mail:javax.mail from 1.5.2 to 1.6.2

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   (52aa585ee38)
            \
             N -- N -- N   
refs/heads/dependabot/maven/com.sun.mail-javax.mail-1.6.2 (1b975e7449d)

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:
 .github/workflows/check-protected-classes.yml      |  13 +-
 docs/_docs/SQL/sql-api.adoc                        |  19 ++
 .../java/org/apache/ignite/snippets/SqlAPI.java    |  12 ++
 examples/pom.xml                                   |   3 +-
 modules/benchmarks/pom.xml                         |   2 +
 modules/calcite/pom.xml                            |   2 +
 .../query/calcite/exec/exp/ConverterUtils.java     |   4 +-
 .../UserDefinedFunctionsIntegrationTest.java       |  18 ++
 .../internal/MessageMarshallerGenerator.java       |  19 +-
 .../apache/ignite/internal/MessageProcessor.java   |   7 +-
 modules/compatibility/DEVNOTES.md                  |   3 +-
 modules/compatibility/pom.xml                      |   1 +
 .../plugins/TestCompatibilityPluginProvider.java   |  32 ++-
 .../testcontainers/IgniteContainer.java            |   6 +
 .../{test-config.xml => common-test-config.xml}    |   5 +-
 .../test/resources/docker/target-test-config.xml   |   7 +-
 .../src/test/resources/docker/test-config.xml      |  45 +----
 modules/compress/pom.xml                           |   3 +
 modules/control-utility/pom.xml                    |   3 +-
 modules/core/pom.xml                               |   4 +-
 .../ignite/internal/SelfMarshallingMessage.java    |  38 ----
 .../communication/IgniteMessageFactoryImpl.java    |   3 +-
 .../communication/MessageUnmarshalOnceCheck.java   |   3 +-
 .../plugin/AbstractMessageFactoryProvider.java     |   4 +-
 .../GridDistributedTxPrepareRequest.java           |  10 +-
 .../distributed/dht/GridDhtTxPrepareRequest.java   |  12 +-
 ...dNearOptimisticSerializableTxPrepareFuture.java |  23 +--
 .../near/GridNearOptimisticTxPrepareFuture.java    |  22 +-
 .../near/GridNearPessimisticTxPrepareFuture.java   |  28 +--
 .../near/GridNearTxPrepareFutureAdapter.java       |  57 ++++++
 .../distributed/near/GridNearTxPrepareRequest.java |  33 +--
 .../ignite/spi/discovery/tcp/ClientImpl.java       | 223 ++++++++-------------
 .../spi/discovery/tcp/TcpDiscoveryIoSession.java   |  35 ++--
 .../internal/codegen/MessageProcessorTest.java     |  33 +--
 .../codegen/TestSelfMarshallingMessage.java        |  37 ----
 .../TestSelfMarshallingMessageMarshaller.java      |  42 ----
 .../TestSelfMarshallingMessageSerializer.java      |  70 -------
 .../codegen/WrongSelfMarshallingMessage.java       |  37 ----
 modules/ducktests/pom.xml                          |   2 +
 modules/extdata/p2p/pom.xml                        |   1 +
 modules/extdata/pluggable/pom.xml                  |   1 +
 modules/extdata/uri/pom.xml                        |   2 +
 modules/indexing/pom.xml                           |   3 +-
 modules/numa-allocator/pom.xml                     |   3 +
 modules/opencensus/pom.xml                         |   2 +
 modules/schedule/pom.xml                           |   2 +
 modules/spring/pom.xml                             |   2 +
 modules/sqlline/pom.xml                            |   2 +
 modules/web/ignite-appserver-test/pom.xml          |   1 +
 modules/web/ignite-websphere-test/pom.xml          |   1 +
 modules/zookeeper/pom.xml                          |   1 +
 parent-internal/pom.xml                            |   1 +
 parent/pom.xml                                     |  13 +-
 pom.xml                                            |   7 +-
 54 files changed, 363 insertions(+), 599 deletions(-)
 copy modules/compatibility/src/test/resources/docker/{test-config.xml => 
common-test-config.xml} (92%)
 copy config/apache-ignite-lgpl/default-config.xml => 
modules/compatibility/src/test/resources/docker/target-test-config.xml (88%)
 delete mode 100644 
modules/core/src/main/java/org/apache/ignite/internal/SelfMarshallingMessage.java
 delete mode 100644 
modules/core/src/test/resources/codegen/TestSelfMarshallingMessage.java
 delete mode 100644 
modules/core/src/test/resources/codegen/TestSelfMarshallingMessageMarshaller.java
 delete mode 100644 
modules/core/src/test/resources/codegen/TestSelfMarshallingMessageSerializer.java
 delete mode 100644 
modules/core/src/test/resources/codegen/WrongSelfMarshallingMessage.java

Reply via email to