From 127793ff921b37a6a570cd315ddce9a3ec541ccf Mon Sep 17 00:00:00 2001 From: Fermin Galan Date: Fri, 28 Nov 2014 09:37:35 +0100 Subject: [PATCH] Step: 0.16.0-next -> 0.17.0 --- CHANGES_NEXT_RELEASE | 24 ------------------------ rpm/SPECS/contextBroker.spec | 26 ++++++++++++++++++++++++++ src/app/contextBroker/version.h | 2 +- 3 files changed, 27 insertions(+), 25 deletions(-) diff --git a/CHANGES_NEXT_RELEASE b/CHANGES_NEXT_RELEASE index 3fae2e950b..e69de29bb2 100644 --- a/CHANGES_NEXT_RELEASE +++ b/CHANGES_NEXT_RELEASE @@ -1,24 +0,0 @@ -Add: New convop: "POST /v1/contextEntities" (Issue #613). - Note also that AppendContextElementRequest has been added an EntityId field. -Add: Convenience operations that respond with AppendContextElementResponse now get the - EntityId info included in the response. -Fix: Changed max-length of tenant names from 20 characters to 50. - Also the database name (CLI-option '-db') has been given a maximum length of 10 bytes. (Issue #616) -Fix: No longer responding with 'Service not found: $URL'. (Issue #619) -Fix: Requests with payload containing forbidden characters are now rejected. (Issue #619) -Fix: Fixed a bug that made the broker crash on problems with EntityId during XML-parse (in very rare situations). -Fix: 'WSG84' identifier changed to 'WGS84' (it was a typo), although the old one is still supported to ensure backward compatibility. (Issue #627) -Fix: Fixed a leak for each forwarding of messages to Context Providers. -Add: New name for URI param 'attributesFormat': 'attributeFormat' (better English). - The old name will be supported as well. (Issue #633) -Fix: Attribute type is no longer used as attribute "identification key" (from now on, only name is used for that purpose) (Issue #640) -Add: Fiware-ServicePath '#' syntax for including path children in the query (without '#' only the service path itself is included). (Issue #646) -Add: "/" is used as implicit service path for entities. (Issue #646) -Add: Queries without Fiware-ServicePath are resolved on "/#" implicitly (i.e. all the paths). (Issue #646) -Fix: Changed max-length of service path elements from 10 characteres to 50. (Issue #649) -Fix: Service path is no longer ignored at entity creation time for entities without type. (Issue #642) -Fix: The broker crashed on receiving compounds for some convops, e.g. /v1/contextEntities/{entityId} (Issue #647) -Fix: Using 443 as default port for "https" notifications. (Issue #639) -Fix: Fixed RPM package so PID file is stored in /var/run/contextBroker instead of /var/log/contextBroker. (Issue #612) -Fix: Payload no longer accepts 'operator' as part of a Scope. (Issue #618) -Fix: Made compound attribute values for for convenience operations (Issue #660) diff --git a/rpm/SPECS/contextBroker.spec b/rpm/SPECS/contextBroker.spec index 992141e861..ab5aea5e49 100644 --- a/rpm/SPECS/contextBroker.spec +++ b/rpm/SPECS/contextBroker.spec @@ -192,6 +192,32 @@ if [ "$1" == "0" ]; then fi %changelog +* Fri Nov 28 2014 Fermin Galan 0.17.0-1 (FIWARE-4.1.2-1) +Add: New convop: "POST /v1/contextEntities" (Issue #613). + Note also that AppendContextElementRequest has been added an EntityId field. +Add: Convenience operations that respond with AppendContextElementResponse now get the + EntityId info included in the response. +Add: New name for URI param 'attributesFormat': 'attributeFormat' (better English). + The old name will be supported as well. (Issue #633) +Add: Fiware-ServicePath '#' syntax for including path children in the query (without '#' only the service path itself is included). (Issue #646) +Add: "/" is used as implicit service path for entities. (Issue #646) +Add: Queries without Fiware-ServicePath are resolved on "/#" implicitly (i.e. all the paths). (Issue #646) +Fix: Attribute type is no longer used as attribute "identification key" (from now on, only name is used for that purpose) (Issue #640) +Fix: Changed max-length of tenant names from 20 characters to 50. + Also the database name (CLI-option '-db') has been given a maximum length of 10 bytes. (Issue #616) +Fix: No longer responding with 'Service not found: $URL'. (Issue #619) +Fix: Requests with payload containing forbidden characters are now rejected. (Issue #619) +Fix: Fixed a bug that made the broker crash on problems with EntityId during XML-parse (in very rare situations). +Fix: 'WSG84' identifier changed to 'WGS84' (it was a typo), although the old one is still supported to ensure backward compatibility. (Issue #627) +Fix: Fixed a leak for each forwarding of messages to Context Providers. +Fix: Changed max-length of service path elements from 10 characteres to 50. (Issue #649) +Fix: Service path is no longer ignored at entity creation time for entities without type. (Issue #642) +Fix: The broker crashed on receiving compounds for some convops, e.g. /v1/contextEntities/{entityId} (Issue #647) +Fix: Using 443 as default port for "https" notifications. (Issue #639) +Fix: Fixed RPM package so PID file is stored in /var/run/contextBroker instead of /var/log/contextBroker. (Issue #612) +Fix: Payload no longer accepts 'operator' as part of a Scope. (Issue #618) +Fix: Made compound attribute values for for convenience operations (Issue #660) + * Mon Nov 03 2014 Fermin Galan 0.16.0-1 (FIWARE-4.1.1-1) - Add: Adding alternative (preferred) URLs: '/ngsi10' => '/v1' AND '/ngsi9' => '/v1/registry' (Issue #559) - Add: New convenience operation '/v1/contextEntities' - to get a list of ALL existing entities (Issue #563) diff --git a/src/app/contextBroker/version.h b/src/app/contextBroker/version.h index d9e8aaa7c4..05f9fef711 100644 --- a/src/app/contextBroker/version.h +++ b/src/app/contextBroker/version.h @@ -28,6 +28,6 @@ -#define ORION_VERSION "0.16.0-next" +#define ORION_VERSION "0.17.0" #endif // SRC_APP_CONTEXTBROKER_VERSION_H_