From 8b772a8135fb5a2e39030154df103c6957150a9a Mon Sep 17 00:00:00 2001 From: SaikrishnaBairamoni Date: Wed, 9 Feb 2022 12:17:50 -0500 Subject: [PATCH 1/3] update docker tags to latest release images --- README.md | 2 +- configuration/amd64/docker-compose.yml | 6 +++--- configuration/arm64/docker-compose.yml | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 72b41c413..29aa796c8 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ [![CircleCI](https://circleci.com/gh/usdot-fhwa-OPS/V2X-Hub.svg?style=svg)](https://circleci.com/gh/usdot-fhwa-OPS/V2X-Hub) | [![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=usdot-fhwa-ops_V2X-Hub&metric=alert_status)](https://sonarcloud.io/dashboard?id=usdot-fhwa-ops_V2X-Hub) | ## Release Notes -As of July 30th, 2021, the V2X Hub software platform is on version 6.0. See more about release 6.0 here: [V2X Hub Release Notes]() +As of Feb 3rd, 2022, the V2X Hub software platform is on version 7.1. See more about release 7.1 here: [V2X Hub Release Notes]() # Overview In order to bring infrastructure components into the Connected Vehicle architecture, you need software that will facilitate the exchange of data in a format that can be understood by both vehicles and infrastructure devices The V2X Hub, takes in data from vehicles via Basic Safety Messages (BSM) in a Society of Automotive Engineers (SAE) standard format and translates the data to a National Transportation Communications for ITS Protocol (NTCIP) that infrastructure components can understand. And vice versa. It translates Signal Phase and Timing (SPaT) data from NTCIP to SAE and sends it to the Roadside Unit (RSU) for broadcast to mobile devices, including vehicles. diff --git a/configuration/amd64/docker-compose.yml b/configuration/amd64/docker-compose.yml index 663559d36..d83a80844 100755 --- a/configuration/amd64/docker-compose.yml +++ b/configuration/amd64/docker-compose.yml @@ -19,7 +19,7 @@ services: - ./mysql/port_drayage.sql:/docker-entrypoint-initdb.d/port_drayage.sql php: - image: usdotfhwaops/php:7.0 + image: usdotfhwaops/php:7.1 container_name: php network_mode: host depends_on: @@ -29,7 +29,7 @@ services: tty: true v2xhub: - image: usdotfhwaops/v2xhubamd:7.0 + image: usdotfhwaops/v2xhubamd:7.1 container_name: v2xhub network_mode: host restart: always @@ -43,7 +43,7 @@ services: - ./logs:/var/log/tmx - ./MAP:/var/www/plugins/MAP port_drayage_webservice: - image: usdotfhwaops/port-drayage-webservice:7.0 + image: usdotfhwaops/port-drayage-webservice:7.1 container_name: port_drayage_webservice network_mode: host secrets: diff --git a/configuration/arm64/docker-compose.yml b/configuration/arm64/docker-compose.yml index 5f9a6fbe5..6a7d86838 100644 --- a/configuration/arm64/docker-compose.yml +++ b/configuration/arm64/docker-compose.yml @@ -19,7 +19,7 @@ services: - ./mysql/port_drayage.sql:/docker-entrypoint-initdb.d/port_drayage.sql php: - image: usdotfhwaops/php:7.0 + image: usdotfhwaops/php:7.1 container_name: php network_mode: host depends_on: @@ -29,7 +29,7 @@ services: tty: true v2xhub: - image: usdotfhwaops/v2xhubarm:7.0 + image: usdotfhwaops/v2xhubarm:7.1 container_name: v2xhub network_mode: host restart: always @@ -43,7 +43,7 @@ services: - ./logs:/var/log/tmx - ./MAP:/var/www/plugins/MAP port_drayage_webservice: - image: usdotfhwaops/port-drayage-webservice:7.0 + image: usdotfhwaops/port-drayage-webservice:7.1 container_name: port_drayage_webservice network_mode: host secrets: From fcc8d474224216e0cea354dc0aa02fc6a0b483b0 Mon Sep 17 00:00:00 2001 From: Saikrishna Bairamoni <84093461+SaikrishnaBairamoni@users.noreply.github.com> Date: Wed, 9 Feb 2022 12:44:46 -0500 Subject: [PATCH 2/3] Update Release_notes.md --- docs/Release_notes.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/docs/Release_notes.md b/docs/Release_notes.md index 404e37094..32837a74f 100644 --- a/docs/Release_notes.md +++ b/docs/Release_notes.md @@ -1,6 +1,31 @@ V2X-Hub Release Notes ---------------------------- +Version 7.1, released Feb 3th, 2022 +-------------------------------------------------------- + +**Summary:** +V2X Hub release 7.1.0 includes a CARMA streets plugin for the following operations: +- Receive, decode and forward the BSM, Mobility Operations Message and Mobility Path Message to CARMA Streets. +- Broadcast schedule plan using Mobility Operations Message received from CARMA Streets. + +Enhancements in this release: +- Issue 262: Updated CARMA Streets plugin to receive and decode Mobility Path messages into JSON through Kafka. +- Issue 271: Added Filter Message for BSM and Mobility Operation messages. Publish the decoded BSM and Mobility Operation messages to two different Kafka topics. +Subscribe to Kafka topic to get scheduling plan from CARMA streets. Create a new Mobility Operation message and fill it with scheduling plan data. +Added functionalities to encode Mobility Operation messages, and send it to DSRC manager for broadcast. +- Issue 317: Updated message receiver plugin to disable the J2735 message signature verification by default we allow users to start up the system with default configurations also go through the setup for this security feature. + +Bug fixes in this release: +- Issue 264: Fixed Dependencies Issues, added Carma-streets related data in SQL and Updated plugin install and Docker file to include Carma-streets plugin. +- Issue 314: Fixed few bugs for Carma-street Plugin as below: + 1. Logging to PLOG statements + 2. Consolidate logging statements to decrease cognitive complexity + 3. Added message types to manifest JSON + 4. Removed old Docker-compose files + 5. Added CARMA Streets Plugin to sonar analysis +- Issue 289: Fixed ET and DT order in the strategy parameters in Carma-streets Plugin CPP file. + Version 7.0, released Dec 29th, 2021 -------------------------------------------------------- From 8f0d8595c44d50722598047b1b3d5e4dae381490 Mon Sep 17 00:00:00 2001 From: Saikrishna Bairamoni <84093461+SaikrishnaBairamoni@users.noreply.github.com> Date: Wed, 9 Feb 2022 12:46:01 -0500 Subject: [PATCH 3/3] Update Release_notes.md --- docs/Release_notes.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Release_notes.md b/docs/Release_notes.md index 32837a74f..38cd06ca4 100644 --- a/docs/Release_notes.md +++ b/docs/Release_notes.md @@ -1,11 +1,11 @@ V2X-Hub Release Notes ---------------------------- -Version 7.1, released Feb 3th, 2022 +Version 7.1, released Feb 3rd, 2022 -------------------------------------------------------- **Summary:** -V2X Hub release 7.1.0 includes a CARMA streets plugin for the following operations: +V2X Hub release 7.1 includes a CARMA streets plugin for the following operations: - Receive, decode and forward the BSM, Mobility Operations Message and Mobility Path Message to CARMA Streets. - Broadcast schedule plan using Mobility Operations Message received from CARMA Streets.