diff --git a/README.md b/README.md index 7f5c36cf8c..26d844b848 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ This project is part of [FIWARE](https://www.fiware.org/). For more information Issues on this projects can be reported as [github issues](https://github.com/FIWARE/context.Orion-LD/issues), while questions are preferred on [Stack Overflow](http://stackoverflow.com/questions/tagged/fiware-orion), using the tag `fiware-orion`. -> The latest release of Orion-LD is [1.6.0](https://github.com/FIWARE/context.Orion-LD/releases/tag/1.6.0) from July 2024 +> The latest release of Orion-LD is [1.7.0](https://github.com/FIWARE/context.Orion-LD/releases/tag/1.7.0) from October 2024 Orion-LD is a Context Broker and [CEF](https://ec.europa.eu/digital-building-blocks/sites/display/DIGITAL/About+us) [building block](https://joinup.ec.europa.eu/collection/egovernment/solution/cef-context-broker) for context data @@ -63,7 +63,7 @@ Its payloads are encoded as [linked data](https://en.wikipedia.org/wiki/Linked_d The NGSI-LD Specification is regularly updated and published by ETSI. The latest specification is [version 1.8.1](https://www.etsi.org/deliver/etsi_gs/CIM/001_099/009/01.08.01_60/gs_cim009v010801p.pdf), published in March 2024. -The next release, version 1.9.1, is expected for September/October 2024ยท +The next release, version 1.9.1, is expected in the beginning of 2025. A few presentations on NGSI-LD: * [NGSI-LD Overview](https://docs.google.com/presentation/d/1tgh6gBdcZHRPU_ehM7M5rGCI83CrYimCwJXxzRI5GDg) @@ -73,7 +73,7 @@ A few presentations on NGSI-LD: Examples of **NGSI-LD** payloads can be found in [ETSI](https://forge.etsi.org/gitlab/NGSI-LD/NGSI-LD/tree/master/examples). See also the [OpenAPI Specification of NGSI-LD](https://forge.etsi.org/swagger/ui/?url=https://forge.etsi.org/rep/cim/ngsi-ld-openapi/-/raw/1.7.1/ngsi-ld-api.yaml). That is for version 1.7.1 of the NGSI-LD API specification. -We're currently working on updating this to v1.8.1, ETA: Dec 2024. +We're currently working on updating this to v1.8.1, ETA: Jan 2025. If you are not sharing your data across systems and have no need for linked data concepts, then the current stable version of **NGSI** (**NGSI-v2**) is more than sufficient. @@ -101,11 +101,11 @@ Every merged pull request results in a new fixed tag in dockerhub/quay.io. Please note that for production and/or performance implementations, there is a thorough guide for that right [here](https://github.com/FIWARE/load-tests) -If you want to use a more stable image, the latest release (as of July 2024) is -[1.6.0](https://github.com/FIWARE/context.Orion-LD/releases/tag/1.6.0) +If you want to use a more stable image, the latest release (as of October 2024) is +[1.7.0](https://github.com/FIWARE/context.Orion-LD/releases/tag/1.7.0) ```console -docker run quay.io/fiware/orion-ld:1.6.0 +docker run quay.io/fiware/orion-ld:1.7.0 ``` Please check [quay.io](https://quay.io/repository/fiware/orion-ld?tab=tags) or [dockerhub](https://hub.docker.com/r/fiware/orion-ld/tags) for other releases. diff --git a/docker/build-ubi/04.install-fastdds.sh b/docker/build-ubi/04.install-fastdds.sh index 56ee3c17bd..8f257b20ad 100755 --- a/docker/build-ubi/04.install-fastdds.sh +++ b/docker/build-ubi/04.install-fastdds.sh @@ -129,7 +129,7 @@ cd /opt/Fast-DDS git clone https://github.com/eProsima/FIWARE-DDS-Enabler.git cd FIWARE-DDS-Enabler git fetch -a -git checkout feature/json_config +git checkout stable/legacy_reception yum -y install lz4-devel libzstd-devel # ./install_dds_module.sh diff --git a/src/app/orionld/orionld.cpp b/src/app/orionld/orionld.cpp index e57ec303eb..e06d2ccc38 100644 --- a/src/app/orionld/orionld.cpp +++ b/src/app/orionld/orionld.cpp @@ -1427,11 +1427,12 @@ int main(int argC, char* argV[]) LM_K(("Initialization is Done")); LM_K((" Accepting REST requests on port %d (experimental API endpoints are %sabled)", port, (experimental == true)? "en" : "dis")); + LM_K((" Special Health Check: %s", (socketService == true)? "Enabled" : "Disabled")); LM_K((" TRoE: %s", (troe == true)? "Enabled" : "Disabled")); LM_K((" Distributed Operation: %s", (distributed == true)? "Enabled" : "Disabled")); - LM_K((" Health Check: %s", (socketService == true)? "Enabled" : "Disabled")); - LM_K((" Entity Maps: %s", (entityMapsEnabled == true)? "Enabled" : "Disabled")); LM_K((" Distributed Subscriptions: %s", (distSubsEnabled == true)? "Enabled" : "Disabled")); + LM_K((" Entity Maps: %s", (entityMapsEnabled == true)? "Enabled" : "Disabled")); + LM_K((" DDS: %s", (ddsSupport == true)? "Enabled" : "Disabled")); if (troe) LM_K((" Postgres Server Version: %s", postgresServerVersion)); diff --git a/src/lib/orionld/common/orionldState.h b/src/lib/orionld/common/orionldState.h index 963f0026a3..5bba7a549c 100644 --- a/src/lib/orionld/common/orionldState.h +++ b/src/lib/orionld/common/orionldState.h @@ -69,7 +69,7 @@ extern "C" // // ORIONLD_VERSION - // -#define ORIONLD_VERSION "post-v1.6.0" +#define ORIONLD_VERSION "1.7.0"