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

sruehl pushed a change to branch feature/TopLevelItemSpliting
in repository https://gitbox.apache.org/repos/asf/incubator-plc4x.git.


 discard 86041d3  [General] SingleItemToSingleRequestProtocol replace throwing 
of           RuntimeExceptions with log statements.
 discard bd66350  [General] SingleItemToSingleRequestProtocol added abstract 
javadoc
 discard d3844ed  [General] SingleItemToSingleRequestProtocol small Bugfixes
 discard 9e25460  [General] SingleItemToSingleRequestProtocol implemented 
ErrorHandler
 discard be82ba7  [General] some progress on the 
SingleItemToSingleRequestProtocol
 discard 10cf16a  Introduced protocol layer to split requestItems to several 
requests.
     add f9707df  PLC4X-60 - Fix findings by the last release
     add ee88f24  PLC4X-60 - Fix findings by the last release
     add b482930  PLC4X-60 - Fix findings by the last release
     add e292f32  PLC4X-60 - Fix findings by the last release
     add e31e741  PLC4X-56 - [S7] S7Field does not recognize addresses with 
numElements present
     add 374fd74  PLC4X-56 - [S7] S7Field does not recognize addresses with 
numElements present
     add d57e7ea  PLC4X-54 - Installation Process isn't working SSL Errors
     add 776f2b7  PLC4X-56 - [S7] S7Field does not recognize addresses with 
numElements present
     add d594ff6  [General] updated mockito and added assertj for easier 
testing.
     new 3d7494f  Introduced protocol layer to split requestItems to several 
requests.
     new a53cbbf  [General] some progress on the 
SingleItemToSingleRequestProtocol
     new 5afff50  [General] SingleItemToSingleRequestProtocol implemented 
ErrorHandler
     new 33e754b  [General] SingleItemToSingleRequestProtocol small Bugfixes
     new e36b6b2  [General] SingleItemToSingleRequestProtocol added abstract 
javadoc
     new 6703953  [General] SingleItemToSingleRequestProtocol replace throwing 
of           RuntimeExceptions with log statements.
     new 5951fc5  [General] SingleItemToSingleRequestProtocol fixed a bunch of 
bugs and added tests

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   (86041d3)
            \
             N -- N -- N   refs/heads/feature/TopLevelItemSpliting (5951fc5)

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.

The 7 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../google/src/remote-resources/META-INF/LICENSE   |    5 +
 mvnw.cmd                                           |    2 +-
 plc4j/protocols/driver-bases/base/pom.xml          |    5 +
 .../SingleItemToSingleRequestProtocol.java         |  125 ++-
 .../SingleItemToSingleRequestProtocolTest.java     |  290 ++++++
 plc4j/protocols/driver-bases/test/pom.xml          |    6 +
 .../org/apache/plc4x/java/s7/model/S7Field.java    |    4 +-
 .../org/apache/plc4x/java/issues/PLC4X56.java}     |   46 +-
 .../rawsockets/netty/AbstractRawSocketChannel.java |  740 --------------
 .../netty/AbstractRawSocketStreamChannel.java      | 1042 --------------------
 .../utils/rawsockets/netty/RawSocketChannel.java   |  133 ---
 .../rawsockets/netty/RawSocketChannelConfig.java   |  187 ----
 .../rawsockets/netty/RawSocketChannelSav.java      |  186 ----
 .../rawsockets/netty/RawSocketEventArray.java      |  104 --
 .../utils/rawsockets/netty/RawSocketEventLoop.java |  449 ---------
 .../src/remote-resources/META-INF/LICENSE          |    9 +
 .../src/remote-resources/META-INF/NOTICE           |    4 +
 pom.xml                                            |   66 +-
 src/site/asciidoc/developers/release.adoc          |   79 +-
 .../ads/index.adoc => users/download.adoc}         |   13 +-
 src/site/site.xml                                  |    2 +
 21 files changed, 568 insertions(+), 2929 deletions(-)
 create mode 100644 examples/google/src/remote-resources/META-INF/LICENSE
 create mode 100644 
plc4j/protocols/driver-bases/base/src/test/java/org/apache/plc4x/java/base/protocol/SingleItemToSingleRequestProtocolTest.java
 copy 
plc4j/protocols/s7/src/{main/java/org/apache/plc4x/java/s7/messages/items/S7LocalDateTimeFieldItem.java
 => test/java/org/apache/plc4x/java/issues/PLC4X56.java} (52%)
 delete mode 100644 
plc4j/utils/raw-sockets/src/main/java-sav/org/apache/plc4x/java/utils/rawsockets/netty/AbstractRawSocketChannel.java
 delete mode 100644 
plc4j/utils/raw-sockets/src/main/java-sav/org/apache/plc4x/java/utils/rawsockets/netty/AbstractRawSocketStreamChannel.java
 delete mode 100644 
plc4j/utils/raw-sockets/src/main/java-sav/org/apache/plc4x/java/utils/rawsockets/netty/RawSocketChannel.java
 delete mode 100644 
plc4j/utils/raw-sockets/src/main/java-sav/org/apache/plc4x/java/utils/rawsockets/netty/RawSocketChannelConfig.java
 delete mode 100644 
plc4j/utils/raw-sockets/src/main/java-sav/org/apache/plc4x/java/utils/rawsockets/netty/RawSocketChannelSav.java
 delete mode 100644 
plc4j/utils/raw-sockets/src/main/java-sav/org/apache/plc4x/java/utils/rawsockets/netty/RawSocketEventArray.java
 delete mode 100644 
plc4j/utils/raw-sockets/src/main/java-sav/org/apache/plc4x/java/utils/rawsockets/netty/RawSocketEventLoop.java
 create mode 100644 
plc4j/utils/raw-sockets/src/remote-resources/META-INF/LICENSE
 create mode 100644 plc4j/utils/raw-sockets/src/remote-resources/META-INF/NOTICE
 copy src/site/asciidoc/{protocols/ads/index.adoc => users/download.adoc} (50%)

Reply via email to