-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #68 from telefonicaid/develop
New release 0.3.0
- Loading branch information
Showing
44 changed files
with
3,645 additions
and
250 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,6 +1,11 @@ | ||
- Complete the Provisioning API with CRUD Operations. | ||
- Change signature of unregister() funciton to remove unneeded type. | ||
- Support XML in Context Provider updates and queries. | ||
- Fix multiple errors found during preparation of CPBR8 Workshop. | ||
- Improve the documentation to add: Configuration, Security, and IoT Library testing sections. | ||
- Fix package.json information to prepare the package for publishing. | ||
- ADD Keywords to the package.json. | ||
- ADD Configuration API for dynamically creating configuration groups. | ||
- ADD Device Provisioning API and Device Configuration API commands in the testing clients. | ||
- ADD Pagination in the Device List operations. | ||
- FIX Remove mandatory constraint for service, servicepath and commands in Device Provisioning (#46). | ||
- FIX List devices based on the service and servicepath (#45). | ||
- FIX Lazy attributes mandatory in Device Provisioning (#51). | ||
- FIX Should allow to provision devices with unconfigured type (#50) | ||
- ADD Handler for configuration changes from the Configuration API. | ||
- ADD Constraint to forbid multiple devices with the same ID (#48). | ||
- ADD Constraint to ensure uniqueness of device configurations (#53). |
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
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
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"services": [ | ||
{ | ||
"resource": "/deviceTest", | ||
"apikey": "801230BJKL23Y9090DSFL123HJK09H324HV8732", | ||
"type": "Light", | ||
"trust": "8970A9078A803H3BL98PINEQRW8342HBAMS", | ||
"cbHost": "http://unexistentHost:1026", | ||
"commands": [ | ||
{ | ||
"name": "wheel1", | ||
"type": "Wheel" | ||
} | ||
], | ||
"lazy": [ | ||
{ | ||
"name": "luminescence", | ||
"type": "Lumens" | ||
} | ||
], | ||
"active": [ | ||
{ | ||
"name": "status", | ||
"type": "Boolean" | ||
} | ||
] | ||
} | ||
] | ||
} |
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
Oops, something went wrong.