-
Notifications
You must be signed in to change notification settings - Fork 266
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Fermin Galan
committed
Nov 28, 2014
1 parent
1515325
commit 127793f
Showing
3 changed files
with
27 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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) | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -192,6 +192,32 @@ if [ "$1" == "0" ]; then | |
fi | ||
|
||
%changelog | ||
* Fri Nov 28 2014 Fermin Galan <[email protected]> 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 <[email protected]> 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) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,6 +28,6 @@ | |
|
||
|
||
|
||
#define ORION_VERSION "0.16.0-next" | ||
#define ORION_VERSION "0.17.0" | ||
|
||
#endif // SRC_APP_CONTEXTBROKER_VERSION_H_ |