Skip to content

Commit

Permalink
pelion-client-lite 1.1.1-lite
Browse files Browse the repository at this point in the history
  • Loading branch information
teetak01 committed Jun 5, 2020
1 parent 19e72c2 commit 8ff9bc1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## Changelog for Pelion Device Management Client Lite

### Release 1.1.1-lite (05.06.2020)

Client Lite 1.1.0 sends an additional component update object (/14) as part of its registration message even though the client does not support it yet. The update service has changed recently to handle the client differently, so there is no backward compatibility. Client Lite 1.1.0 cannot successfully update firmware. As part of this patch release, component update is behind a feature flag that is disabled in Client Lite release.

### Release 1.1.0-lite (20.05.2020)

* Add support for using `baremetal` mbedTLS version in mbedOS builds, instead of default mbedTLS, which comes with mbedOS.To use it, there is a script available under
Expand Down
3 changes: 2 additions & 1 deletion fota/fota_source.c
Original file line number Diff line number Diff line change
Expand Up @@ -323,6 +323,7 @@ int fota_source_init(

int fota_source_add_component(unsigned int comp_id, const char *name, const char *sem_ver)
{
#if !FOTA_SOURCE_COMPONENT_BACKWARD_COMPATIBILITY_MODE
registry_path_t path;

// Create Component Identity resource /14/<comp_id>/0
Expand All @@ -342,7 +343,7 @@ int fota_source_add_component(unsigned int comp_id, const char *name, const char
REGISTRY_STATUS_OK != registry_set_resource_value_to_reg_msg(registry, &path, true)) {
return FOTA_STATUS_INTERNAL_ERROR;
}

#endif
return FOTA_STATUS_SUCCESS;
}

Expand Down
2 changes: 1 addition & 1 deletion mbed-client/source/lwm2m_endpoint.c
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

#define TRACE_GROUP "lwEP"

static const char MCC_VERSION[] = "mccv=1.1.0-lite";
static const char MCC_VERSION[] = "mccv=1.1.1-lite";

static const char ep_name_parameter[] = "ep="; /* Endpoint name. A unique name for the registering node in a domain. */
static const uint8_t resource_path[] = {'r', 'd'}; /* For resource directory */
Expand Down

0 comments on commit 8ff9bc1

Please sign in to comment.