# Changelog

## 1.7.0

* Track customers profile status

## 1.6.1

* fix to handler deleted/locked customer

## 1.6.0

* fix bug with SDK-Version in API requests header.
* fix bug with NullPointer in token update service.

## 1.5.0

* Added `deletePasspointProfile` and `deleteWPA2EnterpriseProfile` methods
* In the `logout` are removed the internet profiles installed

## 1.4.0

* Added method `updateCustomer`
* Added `DEBUG_MODE`

## 1.3.0

* Passpoint support&#x20;

## 1.2.0

* New create customer function with deduplication on specific parameter
* Extended support of custom policies

Note: this version has not fully compatible with version 1.1.0 (see following migration guide)

### Migration guide

#### Customer Create

The signature of the method

```java
public Future<CustomerCreateResponse> createCustomer(
                                Customer customer, 
                                Callback<CustomerCreateResponse> onSuccess, 
                                Callback<MobileSDKException> onError);
```

has been replaced by&#x20;

```java
public Future<CustomerCreateResponse> createCustomer(
                                Customer customer, 
                                String deduplicate, 
                                Callback<CustomerCreateResponse> onSuccess, 
                                Callback<MobileSDKException> onError)
```

To create a customer without deduplication:

```java
cloud4wiSDK.createCustomer(customer,null 
```

#### Get list policies

The signature of the method `getListOfPolicies`

```java
public Future<List<Policy>> getListOfPolicies(
                                Callback<List<Policy>> onSuccess, 
                                Callback<MobileSDKException> onError);
```

has been replaced by

```java
public Future<List<String>> getListOfPolicies(
                                Callback<List<String>> onSuccess, 
                                Callback<MobileSDKException> onError)
```

## 1.1.0

* Create customer now support the attributes of the CreateCustomer API v3
* WPA2-Enterprise profile creation support
* Integration with Location SDK


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://create.cloud4wi.ai/dev-hub/wifi-sdk/integrating-the-sdk/android/changelog.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
