You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by hu...@apache.org on 2023/01/21 11:00:05 UTC

[plc4x] branch plc4j/profinet updated (c305854eef -> 76ddf6e4f4)

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

hutcheb pushed a change to branch plc4j/profinet
in repository https://gitbox.apache.org/repos/asf/plc4x.git


    from c305854eef fix(plc4j/profinet): Expanded supported data types.
     add 3b84d5da86 fix(plc4j/enums): String comparison when evaluating enums
     add 8369c9b49e Merge branch 'develop' into plc4j/profinet
     add 5eba21b22a fix(plc4go/bacnet): fixes in application layer
     add fa5e0ecf2e fix(plc4go/bacnet): fixes in BIP simple
     add f655587bc2 feat(plc4go/bacnet): implement BIPForeignApplication
     add 1860ffef47 feat(plc4go/bacnet): implement BIPNetworkApplication
     add c23a5162bc build(deps): bump assertj-core from 3.24.1 to 3.24.2 (#751)
     add 4b16655c39 fix(plc4py): Trying to fix pip being uninstalled on windows workflow
     add 7f5ea6fdb4 fix(plc4py): Trying to fix pip being uninstalled on windows workflow
     add b8c4bf36e3 fix(plc4py): Fix compatibility with 3.7 when using multi value enums
     add 179e8eef79 fix(plc4py): Fix for multi enums for python 3.7
     add 64d9b38334 chore(build): Add the generation of an SBOM to the apache-release profile
     add cc949b348c chore(build): Redirect dependabot emails to commits@
     add 91bf9fa46f Feature/nifi integration type mapping (#752)
     add 45d34a8901 build(deps): bump github.com/spf13/viper in /plc4go (#756)
     add 507c23f352 build(deps): bump woodstox-core from 6.4.0 to 6.5.0 (#754)
     add 638689ed32 build(deps): bump javafx.version from 19 to 19.0.2 (#753)
     add 551ac59969 build(deps): bump Saxon-HE from 11.4 to 12.0 (#750)
     add 5ae2101870 chore(infra): Tried an experimental setting to see if this makes our auto-generated emails simpler to read and follow in email clients.
     add b48de8977d chore(infra): Added the "repostory" as mandatory element
     add 264ec815c8 Merge branch 'develop' into plc4j/profinet
     add 76ddf6e4f4 fix(plc4j/profinet): Add extra tests for browsing tags

No new revisions were added by this update.

Summary of changes:
 .asf.yaml                                          |  14 +
 .../templates/java/enum-template.java.ftlh         |  12 +
 .../templates/python/enum-template.python.ftlh     |  21 +-
 plc4c/pom.xml                                      |   2 +-
 plc4go/go.mod                                      |  12 +-
 plc4go/go.sum                                      |  24 +-
 plc4go/internal/bacnetip/ApplicationLayer.go       |  10 +-
 plc4go/internal/bacnetip/ApplicationModule.go      | 300 +++++++++++++++++++--
 .../bacnetip/BACnetVirtualLinkLayerService.go      | 297 +++++++++++++++++++-
 plc4go/internal/bacnetip/Capability.go             |   2 +-
 plc4go/internal/bacnetip/LocalDevice.go            |   3 +-
 .../java/bacnetip/readwrite/BACnetVendorId.java    |   4 +-
 .../plc4x/java/cbus/readwrite/Parameter.java       |  12 +-
 .../plc4x/java/cbus/readwrite/ProtectionLevel.java |   4 +-
 .../genericcan/readwrite/GenericCANDataType.java   |   4 +-
 .../java/canopen/readwrite/CANOpenDataType.java    |   4 +-
 .../plc4x/java/knxnetip/readwrite/AccessLevel.java |   4 +-
 .../knxnetip/readwrite/KnxDatapointMainType.java   |   4 +-
 .../java/knxnetip/readwrite/KnxDatapointType.java  |   4 +-
 .../readwrite/KnxInterfaceObjectProperty.java      |   4 +-
 .../knxnetip/readwrite/KnxInterfaceObjectType.java |   8 +-
 .../java/knxnetip/readwrite/KnxManufacturer.java   |   4 +-
 .../knxnetip/readwrite/KnxPropertyDataType.java    |   4 +-
 .../knxnetip/readwrite/SupportedPhysicalMedia.java |   4 +-
 .../profinet/readwrite/VirtualLanPriority.java     |   4 +-
 .../java/profinet/device/ProfinetModuleImpl.java   |   6 +-
 .../plc4x/java/profinet/tag/ProfinetTag.java       |  11 +-
 .../plc4x/java/profinet/ProfinetBrowseTests.java   |  48 +++-
 .../apache/plc4x/java/s7/readwrite/MemoryArea.java |   4 +-
 .../plc4x/java/s7/readwrite/TransportSize.java     |   4 +-
 plc4j/examples/hello-world-kotlin/pom.xml          |   2 +-
 plc4j/integrations/apache-nifi/README.md           |  26 +-
 .../org/apache/plc4x/nifi/util/Plc4xCommon.java    | 209 ++++++--------
 .../plc4x/nifi/Plc4xSourceRecordProcessorTest.java |  64 ++---
 .../apache/plc4x/nifi/util/Plc4xCommonTest.java    | 130 +++++++++
 plc4j/tools/ui/pom.xml                             |   2 +-
 pom.xml                                            |  51 ++--
 protocols/knxnetip/pom.xml                         |   2 +-
 protocols/opcua/pom.xml                            |   2 +-
 .../protocols/modbus/readwrite/ModbusDataType.py   |  60 +++--
 .../simulated/readwrite/SimulatedDataTypeSizes.py  |  60 +++--
 sandbox/plc4py/pom.xml                             |  25 +-
 sandbox/plc4py/setup.py                            |   2 +
 43 files changed, 1113 insertions(+), 360 deletions(-)
 create mode 100644 plc4j/integrations/apache-nifi/nifi-plc4x-processors/src/test/java/org/apache/plc4x/nifi/util/Plc4xCommonTest.java