Author: dlaboss Date: Wed Feb 21 17:50:00 2018 New Revision: 25193 Log: Add Apache Edgent 9.11.0-incubating/rc1
Added: dev/incubator/edgent/9.11.0-incubating/ dev/incubator/edgent/9.11.0-incubating/rc1/ dev/incubator/edgent/9.11.0-incubating/rc1/README dev/incubator/edgent/9.11.0-incubating/rc1/RELEASE_NOTES dev/incubator/edgent/9.11.0-incubating/rc1/apache-edgent-9.11.0-incubating-source-release.tar.gz (with props) dev/incubator/edgent/9.11.0-incubating/rc1/apache-edgent-9.11.0-incubating-source-release.tar.gz.asc dev/incubator/edgent/9.11.0-incubating/rc1/apache-edgent-9.11.0-incubating-source-release.tar.gz.md5 dev/incubator/edgent/9.11.0-incubating/rc1/apache-edgent-9.11.0-incubating-source-release.tar.gz.sha512 dev/incubator/edgent/9.11.0-incubating/rc1/apache-edgent-9.11.0-incubating-source-release.zip (with props) dev/incubator/edgent/9.11.0-incubating/rc1/apache-edgent-9.11.0-incubating-source-release.zip.asc dev/incubator/edgent/9.11.0-incubating/rc1/apache-edgent-9.11.0-incubating-source-release.zip.md5 dev/incubator/edgent/9.11.0-incubating/rc1/apache-edgent-9.11.0-incubating-source-release.zip.sha512 Added: dev/incubator/edgent/9.11.0-incubating/rc1/README ============================================================================== --- dev/incubator/edgent/9.11.0-incubating/rc1/README (added) +++ dev/incubator/edgent/9.11.0-incubating/rc1/README Wed Feb 21 17:50:00 2018 @@ -0,0 +1,42 @@ +Building the Apache Edgent SDK from a Source Distribution + +Quickstart +---------- + +You must have Java 8 installed on your system and connectivity to Maven Central +(for downloading external thrid party dependencies). Maven will be automatically +downloaded and installed by the maven wrapper `mvnw`. + +Build the Edgent SDK Java8 jars and install them in your local maven repository + +$ ./mvnw clean install # add -DskipTests to omit running the tests + +You can now construct applications that use Edgent. The Edgent samples +are a good place to start and are available as a separate download +at https://github.com/apache/incubator-edgent-samples + +Additional Information +---------------------- + +Apache Edgent is supported on several Java target platforms. +For more information see JAVA_SUPPORT.md in the source tree +or in the ASF git repository https://git-wip-us.apache.org/repos/asf/incubator-edgent.git +or in the repository mirror at github https://github.com/apache/incubator-edgent. + +See DEVELOPMENT.md in this folder or +https://github.com/apache/incubator-edgent/DEVELOPMENT.md for information +about building the Edgent SDK for the Java 7 and Android platforms. + + +Licensing +--------- + +Apache Edgent is released under the Apache License Version 2.0. + +Apache Edgent is an effort undergoing incubation at The Apache Software Foundation (ASF), +sponsored by the Incubator PMC. Incubation is required of all newly accepted +projects until a further review indicates that the infrastructure, communications, +and decision making process have stabilized in a manner consistent with other +successful ASF projects. While incubation status is not necessarily a reflection +of the completeness or stability of the code, it does indicate that the project +has yet to be fully endorsed by the ASF. Added: dev/incubator/edgent/9.11.0-incubating/rc1/RELEASE_NOTES ============================================================================== --- dev/incubator/edgent/9.11.0-incubating/rc1/RELEASE_NOTES (added) +++ dev/incubator/edgent/9.11.0-incubating/rc1/RELEASE_NOTES Wed Feb 21 17:50:00 2018 @@ -0,0 +1,290 @@ +Apache Edgent (incubating) 1.3.0 +================== +TODO - summary + +New Features +-------------------- +TODO +EDGENT-439 Optionally specify TCP port for Edgent console + +Incompatible API changes +------------------------ +NONE + +Known Issues +-------- +Open JIRAs may be found at https://issues.apache.org/jira/browse/EDGENT + +Bug Fixes +--------- +TODO + +Miscellaneous changes +--------------------- +TODO +EDGENT-440 Eliminate undesired artifacts in Nexus/MavenCentral + + +Apache Edgent (incubating) 1.2.0 +================== + +The release includes a number of minor SDK bugfixes and enhancements listed below. + +A release now consists of a single bundle: + - Edgent SDK bundle + +A release now publishes the Edgent SDK jars in Apache Nexus Release +repository which are automatically mirrored to the Maven Central repository. + +A binary bundle (tgz) is no longer released. The new `get-edgent-jars.sh` +tool included in the Samples source bundle can be used to create such +a bundle. + +Samples have been migrated to their own repository +https://github.com/apache/incubator-edgent-samples + +A user now builds the samples from the Samples repository +much as a real application developer might. +Pre-built samples jars are no longer released. +The Samples include an Edgent Application project template +and some tools. + +There have been many updates to the Edgent website (https://edgent.apache.org/) +related to the above: + - updated Getting Started Guide + - updated Downloads page + - a new The Power of Edgent page + - updated FAQ page + - a new Quickstart with Edgent Samples page + - a new Edgent Application Development page + +There are some additional changes affecting the +use of Edgent in developing Edgent applications: + +The names of the Edgent jars now conform to standard +practices: "." has been replaced with "-" and the Edgent SDK +versionId is now included. + +Almost all of the Edgent SDK jars are now available for the Java7 and Android platforms. + +The websocket connector jar names have been changed: +* `edgent-connectors-websocket-<ver>.jar` was `edgent.connectors.websocket.wsclient-javax.websocket.jar` +* `edgent-connectors-websocket-base-<ver>.jar` was `edgent.connectors.wsclient.jar` +* `edgent-connectors-websocket-misc-<ver>.jar` was `edgent.javax.websocket.jar` +* `edgent-connectors-websocket-jetty-<ver>.jar` was `javax.websocket-client.jar` + +See the `JAVA_SUPPORT` documentation on the Downloads page details. + +From the perspective of building, development, and releasing +Edgent, Maven is now used for the build tooling. +The DEVELOPMENT.md file has been updated accordingly. + + +New Features +-------------------- +EDGENT-428 Add suppoort for csv in MetricsSetup +EDGENT-409 Add analytics.math3.Aggregations +EDGENT-407 JsonFunctions: more convenience functions +EDGENT-393 Add Ranges.outsideOf() +EDGENT-273 Add scripts, etc to enable building samples + +Incompatible API changes +------------------------ +NONE + +Known Issues +-------- +Open JIRAs may be found at https://issues.apache.org/jira/browse/EDGENT + +Bug Fixes +--------- +EDGENT-429 JobMonitorApp.closeJob() doesn't wait for close +EDGENT-423 Range.toStringUnsigned() not supported on Java7/Android +EDGENT-396 JobMonitorApp restarts job 3 times more than it should + +Miscellaneous changes +--------------------- +EDGENT-441 Adjust Kafka tests for slow consumer startup +EDGENT-438 Improve WebSocketClientTest skip-if-cant-connect +EDGENT-436 Change tests that use complete() TMO for successful runs +EDGENT-435 CME in TrackingScheduledExecutor seen with testMultiTopologyPollWithError() +EDGENT-434 Desensitize PlumbingTest.testParallelBalanced +EDGENT-433 Automatically bump some TMO values when running CI test context +EDGENT-432 Reduce runtime of some WindowsTest tests +EDGENT-431 Cleanup some console code hygiene warnings +EDGENT-422 Desentize FileStreamsTextFileWriterTest +EDGENT-419 Remove use of java8 default interface methods by tests +EDGENT-418 LICENSE/NOTICE in .war are wrong +EDGENT-417 Remove old ant-build cruft +EDGENT-413 Simplify download experience +EDGENT-408 MqttOpenTest failing due to unhealthy test.mosquitto.org +EDGENT-406 Improve doc for APplicationServiceMXBean.registerJar() +EDGENT-405 Improve IotProvider doc wrt ApplicationService.registerJar +EDGENT-401 Clarify jsonConfig arg in ApplicationServiceMXBean +EDGENT-399 Fix publish_release.sh +EDGENT-219 WindowsTest.keyedTimeBatchWIndowTest isn't robust +EDGENT-31 FileStreamsTextFileWriterTest.testRetainAgeBased test fails + + +Apache Edgent (incubating) 1.1.0 +================== + +The release includes a number of minor bugfixes and enhancements listed below. + +See EDGENT-379 below for important information related to the +Edgent connector for the IBM Watson IoT Platform. +See EDGENT-380 below for information about the MQTT connector. + +The release has new external jar dependencies for building Edgent. +An Eclipse based Edgent runtime build environment will encounter failures +until you rerun "./gradlew setupExternalJars" and refresh and rebuild your +workspace. See DEVELOPMENT.md for information about building Edgent. + +New Features +-------------------- +EDGENT-377 Add IotGateway and IotpGateway + This feature is incubating. See the classes Javadoc. +EDGENT-376 Support an edge device using both the Edgent API and WIoTP "Managed Device" APIs +EDGENT-375 Support publishing WIoTP device events using HTTP +EDGENT-370 Add static IotProvider.getPreferences() +EDGENT-367 Add autoSubmit capability to IotProvider + +Incompatible API changes +------------------------ +None + +Known Issues +-------- +Open JIRAs may be found at https://issues.apache.org/jira/browse/EDGENT + +Bug Fixes +--------- +EDGENT-374 IotProvider edgentControl commands are silent no-ops under some failure conditions +EDGENT-373 IotProvider needs to log more info upon edgentControl command request failures +EDGENT-366 Tolerate trailing spaces in serverURLs in MqttConfig properties file +EDGENT-333 FileStreamsTextFileWriterTest mishandling string to byte +EDGENT-332 WebSocketTest test*Byte() mishandling string to byte +EDGENT-331 HttpConnector put/post mishandling string to byte +EDGENT-319 CommandStreamsTest* tests fail on MS Windows +EDGENT-318 Javadoc overview mentions wrong jar name for slf4j jdk impl +EDGENT-316 Fix warnings from aggregateJavadoc build task +EDGENT-310 KafkaStreamsTestManual.testSimple() fails with no local zk of kafka servers +EDGENT-234 Console: broken doc links +EDGENT-200 Console: stream hovers in oplet kind lack layout tuple counts + +Miscellaneous changes +--------------------- +EDGENT-383 Update RELEASE_NOTES and CONTRIBUTORS for 1.1.0 +EDGENT-381 Update NOTICES for 2017 +EDGENT-380 Upgrade the MQTT connector to use paho-mqtt 1.1.0 +EDGENT-379 Upgrade to the WIoTP 0.2.2 Java client API + Upgrade the Edgent connector for the IBM Watson IoT Platform to use + the WIoTP 0.2.2 Java client API. + Note: the WIoTP API changed the way it publishes device events. + See the "Migration from release 0.1.5 to 0.2.1" information at + https://github.com/ibm-watson-iot/iot-java/tree/master#migration-from-release-015-to-021 + for details including how to revert the behavior if needed. + See https://github.com/ibm-watson-iot/iot-java/releases + for general release information about the WIoTP Java client API. +EDGENT-365 IotProvider device commands table has bad information +EDGENT-363 Clarify / disallow null topology names +EDGENT-362 Fix javadoc for PlumbingStreams.gate +EDGENT-361 Add a periodic usage example for FileStreams.textFileReader +EDGENT-329 Add Apache rat task to builds +EDGENT-328 Make writing-a-connector info easier to locate +EDGENT-325 Improve doc for jdbc, kafka, and java7 tests +EDGENT-321 Add full collection of release management buildTools +EDGENT-308 Is it possible to use poll() with FileStreams together + + +Apache Edgent (incubating) 1.0.0 +================== +The first official Apache Edgent release + +New Features +____________ +EDGENT-8 Restart topology on uncaught exception +EDGENT-21 Create test application using GPS/OBD sensors +EDGENT-22 Add functionality to sample the tuples in a stream +EDGENT-91 Support joining a stream against another stream/window +EDGENT-96 Add an HTTP POST utility method +EDGENT-114 Have IotProvider start applications using ApplicationService +EDGENT-117 Support IotProvider on Java 7 and Android +EDGENT-128 update to Watson IoT Platform release +EDGENT-166 Add Gate plumbing +EDGENT-173 Add load balanced parallel() +EDGENT-178 console: stream hover should report "alias" in addition to tags +EDGENT-198 Accessibility enhancements to Javadoc +EDGENT-200 Console: stream hovers in oplet kind layout lack tuple counts +EDGENT-214 testFileWriter needs to support compressed rolling log generation +EDGENT-215 Job control gets unregistered from ControlService after job gets closed (BUG) +EDGENT-217 promote IoT device heart beat to a connector utility +EDGENT-218 Add multivariable JsonAnalytics +EDGENT-220 add things to help with csv strings +EDGENT-226 Add connector for "command / OS process" +EDGENT-304 Always build edgent.android.{hardware,topology}.jar + +Incompatible changes +-------------------- +EDGENT-232 Rename Quarks to Edgent + Rename packages from quarks.* to org.apache.edgent.* + Rename jars from quarks.jar to edgent.*.jar +EDGENT-236 Rename Iotf connector to Iotp + Rename package to org.apache.edgent.connectors.iotp + Rename jar to edgent.connectors.iotp.jar +EDGENT-139 Rename ./ext/slf4j-1.7.12/slf4j-jdk14-1.7.12.jar + This jar was available to Edgent applications to provide them and the + Edgent runtime with an SLF4J logging implementation. + The name is now ./ext/slf4j-jdk14-1.7.12.jar + +Miscellaneous changes +--------------------- +EDGENT-139 Replace Ant build with Gradle tooling +EDGENT-261 Remove all third party jars from the Edgent repository +EDGENT-263 Add source tgz generation +EDGENT-271 Conform to license and notice standards for binary bundle +EDGENT-272 Conform to license and notice standards for source bundle +EDGENT-281 Change release bundle names + the bundles are now org.apache.edgent-<version>-{src,bin}.tgz +EDGENT-281 Change the name of the directory that a binary release bundle extracts to + An official release bundle extracts to "edgent-<version>" + A snapshot release bundle extracts to "edgent-<version>-SNAPSHOT-<date>-<time>" +EDGENT-281 Change names and/or versions of some external dependency jars in the binary release bundle + Mentioned for completeness but those jars are intended + to be private the Edgent runtime components. + +Known Issues +-------- +None yet + +Bug Fixes +--------- +EDGENT-6 Change in JOB MXBean ObjectName causing console not to getch jobs +EDGENT-83 Getting Started documentation page should tell how to build Quarks or explain releases are not Apache +EDGENT-97 Document HTTPStreams.getJson +EDGENT-120 bad graph generation with certain API / oplet sequence +EDGENT-130 Application hands when trying to read commands from iotf +EDGENT-137 Tuple count: Source oplet flows into Peek. Source tuple count is less than Peek's count. +EDGENT-152 "Quarks SPI" javadoc group declared but not generated +EDGENT-164 Navigation menu works the wrong way +EDGENT-167 width of FanOut output streams is wrong +EDGENT-168 Console Splitter properties hover output tags wrong +EDGENT-169 Console: hover on stream between Filter and Peek doesn't report tuple count +EDGENT-171 Remove JobMXBean,State or Job.State +EDGENT-172 Add stateChange() to JobMXBean +EDGENT-177 Job name not set correctly for control service +EDGENT-179 console: oplet coloring gradients "too close" +EDGENT-180 Calling stateChange(CLOSE) on JobMXBean does not change its state fully +EDGENT-187 Console: TopologyTesstBasic doesn't render after QUARKS-22 changes +EDGENT-188 Console metric propagation shouldn't traverse non-injected metric ops +EDGENT-189 Undesirable metric op injection +EDGENT-201 Make the quarks console keyboard navigible +EDGENT-207 Iotf connect does not receive commands when only subscribing to to commands +EDGENT-208 Improve TWindow aggregate() javadoc +EDGENT-209 No need to insert PlumbingStreams.isolate after JobEvents.source +EDGENT-210 Submit an app, closing an app and the attempting to resubmit an app "kills" the parent app +EDGENT-213 testFileWriter is naming rolling log files with day-in-year not day-in-month +EDGENT-247 "ant release" with ANDROID_SDK_PLATFORM set fails +EDGENT-255 StreamScope.setEnabled(true) resets buffer if already enabled +EDGENT-257 samples.scenarios.iotp no longer functional +EDGENT-307 Improve supported platform documentation Added: dev/incubator/edgent/9.11.0-incubating/rc1/apache-edgent-9.11.0-incubating-source-release.tar.gz ============================================================================== Binary file - no diff available. Propchange: dev/incubator/edgent/9.11.0-incubating/rc1/apache-edgent-9.11.0-incubating-source-release.tar.gz ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: dev/incubator/edgent/9.11.0-incubating/rc1/apache-edgent-9.11.0-incubating-source-release.tar.gz.asc ============================================================================== --- dev/incubator/edgent/9.11.0-incubating/rc1/apache-edgent-9.11.0-incubating-source-release.tar.gz.asc (added) +++ dev/incubator/edgent/9.11.0-incubating/rc1/apache-edgent-9.11.0-incubating-source-release.tar.gz.asc Wed Feb 21 17:50:00 2018 @@ -0,0 +1,17 @@ +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v2 + +iQIcBAABCgAGBQJajZcxAAoJEKKrCB8mUY/usGUP/jOhATOqXcR4QaUq2sQbZ9ms +B2EY7mTZjoP0SLawcNJ/K3jhgiP1ZhaWjwfPT/jQlJTJ9PIu33OH/JLLgLqUF6hj +UkinajtsUD71JZ4RyC+Pp9Cw65JJmV48Q7gHUGDwl9DtCZC3Ymobge/TeIu1vkSC +UtL3BSOvwok1zJzZ3hZ7DGtk9+O7+ZYrNsmlal5Uz0whsUM19F7iLfiNEcltXoOC +wqduJVYKUXoalHPs6T3YzmaX2shy3dWlKv/aTCJBOS5Lw3kEdpZluwwvswHzic6q +kUln67V55e7c8lCPwnLFSmun9FFH3e9uoMQY1bkoieYld7JMEx3HVK84v40lE0RU +eNloFn6z50GmyUpa5/SqJElV7cv1ErbgtYB2B+U6sxkcJL2rSkv6m9Yk3HacXO6o +x39TQePn/ZriVeEXzumQ1iSF0zzLDoGmIbOrqbOCYpkqEdK8FNbEhtPToqdkAHzV +Ff1mQq2E2geVktNcEh73wz8zmYyKdhhKHcgSZ+xxJrduw+gep7qPYnu+8GtWwCHn +0OIxD1PCwUudfLfMoKTNWnvq23YkBy2jHfJZJaBfpOrBDytwSSeqgMe4VoZ2df2D +y5ykroe5yn0AN5+8BTgMBUj9EPsos2r0u5YWoU6Nr+kjfzLbEE7XRx+xjQMOnFxM +DIsImuQmjJr4p9oYR//f +=5NY0 +-----END PGP SIGNATURE----- Added: dev/incubator/edgent/9.11.0-incubating/rc1/apache-edgent-9.11.0-incubating-source-release.tar.gz.md5 ============================================================================== --- dev/incubator/edgent/9.11.0-incubating/rc1/apache-edgent-9.11.0-incubating-source-release.tar.gz.md5 (added) +++ dev/incubator/edgent/9.11.0-incubating/rc1/apache-edgent-9.11.0-incubating-source-release.tar.gz.md5 Wed Feb 21 17:50:00 2018 @@ -0,0 +1 @@ +6c776796047ca71f2644b5e9fa2e9a20 Added: dev/incubator/edgent/9.11.0-incubating/rc1/apache-edgent-9.11.0-incubating-source-release.tar.gz.sha512 ============================================================================== --- dev/incubator/edgent/9.11.0-incubating/rc1/apache-edgent-9.11.0-incubating-source-release.tar.gz.sha512 (added) +++ dev/incubator/edgent/9.11.0-incubating/rc1/apache-edgent-9.11.0-incubating-source-release.tar.gz.sha512 Wed Feb 21 17:50:00 2018 @@ -0,0 +1 @@ +95e783baa7e30b1eb7211f6ed23800f8f4aa513e912351d1cf927ef27739e778562de9b9b63291a8fad45f6c033f88254351b12b21025035dcedce1f20454dc1 Added: dev/incubator/edgent/9.11.0-incubating/rc1/apache-edgent-9.11.0-incubating-source-release.zip ============================================================================== Binary file - no diff available. Propchange: dev/incubator/edgent/9.11.0-incubating/rc1/apache-edgent-9.11.0-incubating-source-release.zip ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: dev/incubator/edgent/9.11.0-incubating/rc1/apache-edgent-9.11.0-incubating-source-release.zip.asc ============================================================================== --- dev/incubator/edgent/9.11.0-incubating/rc1/apache-edgent-9.11.0-incubating-source-release.zip.asc (added) +++ dev/incubator/edgent/9.11.0-incubating/rc1/apache-edgent-9.11.0-incubating-source-release.zip.asc Wed Feb 21 17:50:00 2018 @@ -0,0 +1,17 @@ +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v2 + +iQIcBAABCgAGBQJajZcxAAoJEKKrCB8mUY/uhoIP/0aQy+prPb5mnkOh9zW7hwfM +to4Yi6K45Pavdx5MuGBuEHDCl7x3rUHRFZIHdal63V0IGqdlwd/MWQPkepxNwnMx +QomVxRN0QQza2Gx2IQEgomDb6eIkrhMEoVyMTRU0n8MWjNjPrCjN2FWCyCFmfcfp +/cYRXSB8xVVpeuUYH95eLys178+9kJ+6J1NI71yvZkCucl+SfxcMiRg1n547MppO +XmZg7u0gR/skAErU7snF1ucIxpiAsoBD5i6oSbHLox1zuWulG896l5CWs6pBkHTy +7kFOG7aKo3lJg1zYIUY8UB6cq5Q+6ztH5OQrIe9KZ5rk93e3zO6EEexkxmrfOZTD +nh0A9Mq+2nIRXGnALv3Wm52GKAlaxNvLk6qYQqZ2mNC/KDBNLpKxr8mxp4kv28+z +A04wnjbRHPL8bH6zsZi/GCqb9mJ7627RJEAwfqHeXPYwrLfBnnSzchi4j9CLz29i +GMkrl4cA2qnju+9htnCDmO0J7mo4sFVc/f+dHZn+i+iFQG8pUFDp32qjaJtIbANb +SwhPrktCFx7A7155cTVeF2m/ODtvfMEJ2bATvxRK0rvYy4DLMsEUPkdX2azsMUTN +Jf/mbDfRGqYbB/5F8dZpsSuIpCjd44U/GXdZ5B/Y2m80njpqMNiHPqz9okm9MZT1 +suPUpPEnlR4Z1LucfEIP +=p9xa +-----END PGP SIGNATURE----- Added: dev/incubator/edgent/9.11.0-incubating/rc1/apache-edgent-9.11.0-incubating-source-release.zip.md5 ============================================================================== --- dev/incubator/edgent/9.11.0-incubating/rc1/apache-edgent-9.11.0-incubating-source-release.zip.md5 (added) +++ dev/incubator/edgent/9.11.0-incubating/rc1/apache-edgent-9.11.0-incubating-source-release.zip.md5 Wed Feb 21 17:50:00 2018 @@ -0,0 +1 @@ +b3a0dcafb6e4e6ef946d7ae569d5dcfd Added: dev/incubator/edgent/9.11.0-incubating/rc1/apache-edgent-9.11.0-incubating-source-release.zip.sha512 ============================================================================== --- dev/incubator/edgent/9.11.0-incubating/rc1/apache-edgent-9.11.0-incubating-source-release.zip.sha512 (added) +++ dev/incubator/edgent/9.11.0-incubating/rc1/apache-edgent-9.11.0-incubating-source-release.zip.sha512 Wed Feb 21 17:50:00 2018 @@ -0,0 +1 @@ +259c102d0b8a20896d90f11624c2147b9bbfdae65d64d9dfcdaad9dcfcafba72199e764fe5034a9a6f3b45fac3d1c63cf2b931796239b3646484fbde711eddb1