Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Orion to 3.12.0 #48

Merged
merged 2 commits into from
Jun 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# FIWARE-pi

- Update Orion to 3.12.0 (#48)
- Update copyright date (#47)
- Update IoT Agent for JSON to 2.4.2 (#46)
- Update IoT Agent for UL to 2.4.2 (#45)
- Amend URL (#44)
Expand Down
26 changes: 13 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ Docker Compose version v2.21.0
Run the following shell script to build Orion. The script includes some patches.

```
cd build/orion/orion-3.10.1
cd build/orion/orion-3.12.0
./build.sh
```

Expand All @@ -213,7 +213,7 @@ version: "3"

services:
orion:
image: letsfiware/orion:3.10.1
image: letsfiware/orion:3.12.0
ports:
- "1026:1026"
depends_on:
Expand All @@ -231,24 +231,24 @@ Run the following command to confirm that Orion has been successfully built.
$ curl localhost:1026/version
{
"orion" : {
"version" : "3.10.1",
"uptime" : "0 d, 0 h, 0 m, 7 s",
"git_hash" : "9a80e06abe7f690901cf1586377acec02d40e303",
"compile_time" : "Thu Aug 10 10:20:17 UTC 2023",
"version" : "3.12.0",
"uptime" : "0 d, 0 h, 0 m, 3 s",
"git_hash" : "7ebe97f8ddc13436c66ead53460fd4776e923e34",
"compile_time" : "Sun Jun 2 04:51:55 UTC 2024",
"compiled_by" : "root",
"compiled_in" : "buildkitsandbox",
"release_date" : "Thu Aug 10 10:20:17 UTC 2023",
"release_date" : "Sun Jun 2 04:51:55 UTC 2024",
"machine" : "aarch64",
"doc" : "https://fiware-orion.rtfd.io/en/3.10.1/",
"doc" : "https://fiware-orion.rtfd.io/en/3.12.0/",
"libversions": {
"boost": "1_74",
"libcurl": "libcurl/7.74.0 OpenSSL/1.1.1n zlib/1.2.12 brotli/1.0.9 libidn2/2.3.0 libpsl/0.21.0 (+libidn2/2.3.0) libssh2/1.9.0 nghttp2/1.43.0 librtmp/2.3",
"libcurl": "libcurl/7.88.1 OpenSSL/3.0.11 zlib/1.2.13 brotli/1.0.9 zstd/1.5.4 libidn2/2.3.3 libpsl/0.21.2 (+libidn2/2.3.3) libssh2/1.10.0 nghttp2/1.52.0 librtmp/2.3 OpenLDAP/2.5.13",
"libmosquitto": "2.0.15",
"libmicrohttpd": "0.9.76",
"openssl": "1.1",
"openssl": "3.0.11",
"rapidjson": "1.1.0",
"mongoc": "1.23.1",
"bson": "1.23.1"
"mongoc": "1.24.3",
"bson": "1.24.3"
}
}
}
Expand Down Expand Up @@ -435,7 +435,7 @@ cd build/perseo-fe

- [Orion 3.10.1](https://hub.docker.com/r/letsfiware/orion)
```
docker pull letsfiware/orion:3.10.1
docker pull letsfiware/orion:3.12.0
```

- [Orion-LD](https://hub.docker.com/r/fisuda/orion-ld)
Expand Down
5 changes: 5 additions & 0 deletions build/orion/orion-3.11.0/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/sh
VER=3.11.0
git clone -b ${VER} https://github.com/telefonicaid/fiware-orion.git
cd fiware-orion/docker
docker build --build-arg GIT_REV_ORION=${VER} -t letsfiware/orion:${VER} .
14 changes: 14 additions & 0 deletions build/orion/orion-3.11.0/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
version: "3"

services:
orion:
image: letsfiware/orion:3.11.0
ports:
- "1026:1026"
depends_on:
- mongo
command: -dbhost mongo

mongo:
image: mongo:4.4
command: --nojournal
5 changes: 5 additions & 0 deletions build/orion/orion-3.12.0/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/sh
VER=3.12.0
git clone -b ${VER} https://github.com/telefonicaid/fiware-orion.git
cd fiware-orion/docker
docker build --build-arg GIT_REV_ORION=${VER} -t letsfiware/orion:${VER} .
14 changes: 14 additions & 0 deletions build/orion/orion-3.12.0/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
version: "3"

services:
orion:
image: letsfiware/orion:3.12.0
ports:
- "1026:1026"
depends_on:
- mongo
command: -dbhost mongo

mongo:
image: mongo:4.4
command: --nojournal
Loading