Skip to content

Commit

Permalink
FIB use cjexl 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fgalan committed May 28, 2024
1 parent 90ca88e commit e3a3f45
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGES_NEXT_RELEASE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
- Add: JEXL expression support in custom notification macro replacement (using cjexl 0.1.0) (#4004)
- Add: JEXL expression support in custom notification macro replacement (using cjexl 0.2.0) (#4004)
- Add: expression context build and evaluation counters in timing section in GET /statistics (#4004)
- Fix: use null for non existing attributes in custom covered notifications macro substitution (instead of empty string) to make behaviour more consistent (#4004)
- Fix: use null for non existing attributes in macro substitution applied to "paylaod" field (instead of empty string) to make behaviour more consistent (#4004)
Expand Down
2 changes: 1 addition & 1 deletion ci/deb/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ rm -Rf /tmp/builder || true && mkdir -p /tmp/builder/{db1,db2,db,bu}
if [ -z "${REPO_ACCESS_TOKEN}" ]; then
echo "Builder: no REPO_ACCESS_TOKEN, skipping cjexl lib download"
else
bash /opt/fiware-orion/get_cjexl.sh 0.1.0 $REPO_ACCESS_TOKEN
bash /opt/fiware-orion/get_cjexl.sh 0.2.0 $REPO_ACCESS_TOKEN
fi

if [ -n "${branch}" ]; then
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ RUN \
git clone https://github.com/${GIT_NAME}/fiware-orion && \
cd fiware-orion && \
git checkout ${GIT_REV_ORION} && \
bash get_cjexl.sh 0.1.0 ${REPO_ACCESS_TOKEN} && \
bash get_cjexl.sh 0.2.0 ${REPO_ACCESS_TOKEN} && \
make && \
make install && \
# reduce size of installed binaries
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.alpine
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ RUN \
git clone https://github.com/${GIT_NAME}/fiware-orion && \
cd fiware-orion && \
git checkout ${GIT_REV_ORION} && \
bash get_cjexl.sh 0.1.0 ${REPO_ACCESS_TOKEN} && \
bash get_cjexl.sh 0.2.0 ${REPO_ACCESS_TOKEN} && \
# patch bash and mktemp statement in build script, as in alpine is slightly different
sed -i 's/mktemp \/tmp\/compileInfo.h.XXXX/mktemp/g' scripts/build/compileInfo.sh && \
sed -i 's/bash/ash/g' scripts/build/compileInfo.sh && \
Expand Down

0 comments on commit e3a3f45

Please sign in to comment.