Skip to content

Commit

Permalink
New release 1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kzangeli committed Oct 15, 2024
1 parent e6e7387 commit 1421d0c
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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)
Expand All @@ -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.
Expand Down Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion docker/build-ubi/04.install-fastdds.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 3 additions & 2 deletions src/app/orionld/orionld.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down
2 changes: 1 addition & 1 deletion src/lib/orionld/common/orionldState.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ extern "C"
//
// ORIONLD_VERSION -
//
#define ORIONLD_VERSION "post-v1.6.0"
#define ORIONLD_VERSION "1.7.0"



Expand Down

0 comments on commit 1421d0c

Please sign in to comment.