You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by ld...@apache.org on 2021/09/16 15:44:35 UTC

[plc4x] branch feature/can-stack-tunning updated (f2a31ed -> 73a178b)

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

ldywicki pushed a change to branch feature/can-stack-tunning
in repository https://gitbox.apache.org/repos/asf/plc4x.git.


 discard f2a31ed  Update of CAN related documentation.
 discard ca04452  Implementation of generic purpose CAN driver.
 discard b5b6f20  Separate CAN transport and CAN driver.
 discard d2e9b70  PLC4X-294 / PLC4X-296 Introduce event listeners for connections and drivers.
     add 28a5034  Added a section on how to use SNAPSHOT versions to the website.
     add 264f7ed  Updated most of the plugins and dependencies to their latest released versions.
     add c6e0689  build(deps): bump logback.version from 1.2.3 to 1.2.5 (#271)
     add b6faa83  Change PLC4GO docs read syntax (#276)
     add 45ebf29  PLC4X-314: Fixed a bug, not adding the size of the item causing a split
     add 55939d1  Updated the version of the just released javadoc plugin
     add 71a83de  Updated the urls to https
     add fc52854  Made the checksum-maven-plugin only run in the root of the project Increased the minimum python version to 3.6.0 as setuptools seems to need at least that.
     add 97f6447  Bumped some versions
     add 65bce16  Updated the profiles enabled in the Docker build to the current reality in the project.
     add 5b668b2  Updated the documentation a bit.
     add 49d4962  Updated the guides for building with an empty repo on Windows and added a template that can be used for the vote response email.
     add 8fe6ec2  Updated the documentation a bit to use mvnw and added some additional information on this.
     add a6fc689  - Fixed the Dockerfile - Reset the python version back to 2.7 as 3.6 wasn't really needed
     add e41e48c  plc4go: move some spi only methods from driverManager.go to TransportAware.go
     add d6bff1b  plc4go: add missing implementations for ads driver
     add 34d719a  PLC4X-294 / PLC4X-296 Introduce event listeners for connections and drivers.
     add 1aa57f5  Separate CAN transport and CAN driver.
     add bbc00de  Implementation of generic purpose CAN driver.
     add 73a178b  Update of CAN related documentation.

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   (f2a31ed)
            \
             N -- N -- N   refs/heads/feature/can-stack-tunning (73a178b)

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:
 Dockerfile                                         |  31 +++--
 README.md                                          |  34 ++++--
 .../s7/include/s7_data_alarm_message.h             |   4 +-
 .../s7/include/s7_payload_user_data_item.h         |   8 +-
 .../s7/src/s7_data_alarm_message.c                 |  14 +--
 .../s7/src/s7_payload_user_data_item.c             |  26 ++---
 plc4c/pom.xml                                      |   2 +-
 .../main/drivers/tests/manual_ads_driver_test.go   |   4 +-
 .../main/drivers/tests/manual_s7_driver_test.go    |   4 +-
 plc4go/internal/plc4go/ads/Driver.go               |   5 +-
 ...ansportInstanceExposer.go => TransportAware.go} |   9 +-
 .../plc4go/spi/testutils/DriverTestRunner.go       |   2 +-
 plc4go/pkg/plc4go/driverManager.go                 |   7 --
 plc4go/pkg/plc4go/transports/transports.go         |   5 +-
 plc4go/pom.xml                                     |  10 +-
 .../plc4x/java/ads/protocol/AdsProtocolLogic.java  |   2 +-
 .../java/s7/readwrite/optimizer/S7Optimizer.java   |  15 ++-
 plc4j/drivers/s7/src/test/java/S7IoTest.java       |  33 +++---
 .../s7/src/test/resources/tests/PLC4X-272.xml      | 130 ++++++---------------
 plc4j/examples/hello-connectivity-kafka/pom.xml    |   4 +-
 plc4j/examples/hello-integration-iotdb/pom.xml     |   4 +-
 plc4j/examples/hello-webapp/pom.xml                |   2 +-
 plc4j/integrations/apache-camel/pom.xml            |  25 +---
 plc4j/integrations/apache-kafka/pom.xml            |   4 +-
 plc4j/tools/connection-cache/pom.xml               |   5 -
 .../connectionpool/PooledPlcConnectionFactory.java |  30 ++---
 .../connectionpool/PooledPlcDriverManager.java     |  30 ++---
 .../utils/connectionpool/PooledDummyDriver.java    |  30 ++---
 .../connectionpool/PooledPlcDriverManagerTest.java |  30 ++---
 plc4j/tools/scraper/pom.xml                        |   5 -
 pom.xml                                            | 114 ++++++++++--------
 src/main/script/prerequisiteCheck.groovy           |   2 +-
 src/site/asciidoc/developers/release/release.adoc  |  14 +--
 .../asciidoc/developers/release/validation.adoc    |  30 ++++-
 .../asciidoc/users/getting-started/plc4go.adoc     |   6 +-
 .../users/getting-started/using-snapshots.adoc     |  59 ++++++++++
 src/site/site.xml                                  |   1 +
 tools/common.sh                                    |   2 +-
 38 files changed, 384 insertions(+), 358 deletions(-)
 copy plc4go/internal/plc4go/spi/{TransportInstanceExposer.go => TransportAware.go} (67%)
 create mode 100644 src/site/asciidoc/users/getting-started/using-snapshots.adoc