From 110f7cab4d3d6f77d282db3ad9d7d495ad8483ec Mon Sep 17 00:00:00 2001 From: Fermin Galan Date: Fri, 30 Sep 2016 11:52:06 +0200 Subject: [PATCH] Step: 1.3.0-next -> 1.4.0 --- CHANGES_NEXT_RELEASE | 12 ------------ README.md | 2 +- docker/Dockerfile | 2 +- rpm/SPECS/contextBroker.spec | 14 ++++++++++++++ src/app/contextBroker/version.h | 2 +- 5 files changed, 17 insertions(+), 15 deletions(-) diff --git a/CHANGES_NEXT_RELEASE b/CHANGES_NEXT_RELEASE index d214fb30ff..e69de29bb2 100644 --- a/CHANGES_NEXT_RELEASE +++ b/CHANGES_NEXT_RELEASE @@ -1,12 +0,0 @@ -- Add: notification metadata previousValue and actionType (except 'delete') (#2507) -- Add: filtering metadata in notifications (#2507) -- Fix: removed spurious decimals in metadata numbers in NGSIv1 rendering (a follow up of #2176) -- Fix: wrong attributes included in notifications at subscription update time in some cases (both in blacklist and not blacklist cases) -- Fix: csub cache wrong deletion of subscription at subscription update time when new subscription has empty condition attributes list -- Fix: crash when creating entity with metadata when subscription is in place with "mq" on a different metadata (#2496) -- Fix: correct rendering of metadata compound values when a vector (bugfix for issue #1068) -- Fix: crash with request with empty URI PATH (Issue #2527) -- Fix: supporting DateTime filters for metadata (#2443, #2445) -- Fix: wrong matching in metadata existence and not existence filters with compounds -- Fix: missing expression sub-fields (q, etc.) in csubs makes Orion to crash -- Hardening: ensure to use type oriented functions when getting data from DB (safer, but more verbose in error log if DB is not perfectly aligned with what Orion is expecting) diff --git a/README.md b/README.md index 2e628c66ac..68df21809e 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ release.sh needs to be changed also --> [![License badge](https://img.shields.io/badge/license-AGPL-blue.svg)](https://opensource.org/licenses/AGPL-3.0) -[![Documentation badge](https://readthedocs.org/projects/fiware-orion/badge/?version=latest)](http://fiware-orion.readthedocs.org/en/latest/?badge=latest) +[![Documentation badge](https://readthedocs.org/projects/fiware-orion/badge/?version=1.4.0)](http://fiware-orion.readthedocs.org/en/1.4.0/?badge=1.4.0) [![Docker badge](https://img.shields.io/docker/pulls/fiware/orion.svg)](https://hub.docker.com/r/fiware/orion/) [![Support badge]( https://img.shields.io/badge/support-sof-yellowgreen.svg)](http://stackoverflow.com/questions/tagged/fiware-orion) diff --git a/docker/Dockerfile b/docker/Dockerfile index 85565beefc..758549b4d9 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -3,7 +3,7 @@ FROM centos:centos6.6 MAINTAINER FIWARE Orion Context Broker Team. Telefónica I+D ENV ORION_USER orion -ENV GIT_REV_ORION develop +ENV GIT_REV_ORION 1.4.0 ENV CLEAN_DEV_TOOLS 1 WORKDIR /opt diff --git a/rpm/SPECS/contextBroker.spec b/rpm/SPECS/contextBroker.spec index cbe7228810..6e8203f529 100644 --- a/rpm/SPECS/contextBroker.spec +++ b/rpm/SPECS/contextBroker.spec @@ -164,6 +164,20 @@ if [ "$1" == "0" ]; then fi %changelog +* Fri Sep 30 2016 Fermin Galan 1.4.0-1 +- Add: notification metadata previousValue and actionType (except 'delete') (#2507) +- Add: filtering metadata in notifications (#2507) +- Fix: removed spurious decimals in metadata numbers in NGSIv1 rendering (a follow up of #2176) +- Fix: wrong attributes included in notifications at subscription update time in some cases (both in blacklist and not blacklist cases) +- Fix: csub cache wrong deletion of subscription at subscription update time when new subscription has empty condition attributes list +- Fix: crash when creating entity with metadata when subscription is in place with "mq" on a different metadata (#2496) +- Fix: correct rendering of metadata compound values when a vector (bugfix for issue #1068) +- Fix: crash with request with empty URI PATH (#2527) +- Fix: supporting DateTime filters for metadata (#2443, #2445) +- Fix: wrong matching in metadata existence and not existence filters with compounds +- Fix: missing expression sub-fields (q, etc.) in csubs makes Orion to crash +- Hardening: ensure to use type oriented functions when getting data from DB (safer, but more verbose in error log if DB is not perfectly aligned with what Orion is expecting) + * Fri Sep 02 2016 Fermin Galan 1.3.0-1 - Add: support for geometry, coords and georel in NGSIv2 subscriptions (AKA geo-subscriptions) (#1678) - Add: Type pattern for subscriptions (#1853) diff --git a/src/app/contextBroker/version.h b/src/app/contextBroker/version.h index d3922173d4..ee5f655f48 100644 --- a/src/app/contextBroker/version.h +++ b/src/app/contextBroker/version.h @@ -28,6 +28,6 @@ -#define ORION_VERSION "1.3.0-next" +#define ORION_VERSION "1.4.0" #endif // SRC_APP_CONTEXTBROKER_VERSION_H_