> For the complete documentation index, see [llms.txt](https://create.cloud4wi.ai/dev-hub/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://create.cloud4wi.ai/dev-hub/wifi-sdk/integrating-the-sdk/ios/changelog.md).

# Changelog

## 1.7.0

* Track customers profile status

## 1.6.0

* fix `getCreatedWPA2EnterpriseProfiles` and `getCreatedPasspointProfiles`
* introduced `deleteWPA2EnterpriseProfile`

## 1.5.0

* Added `deletePasspointProfile` method
* &#x20;In the `logout` are removed the Passpoint profile installed

## 1.4.0

* Added method `updateCustomer`
* Added `DEBUG_MODE`
* Fix support iOs simulator for Apple Silicon architecture

## 1.3.1 <a href="#id-1.3.0" id="id-1.3.0"></a>

* fix date format in 'lastSeen' field

## 1.3.0

* Passpoint support

## 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

```swift
- (void) createCustomer: (Customer*) customer
              onSuccess: (void (^)(CustomerCreateResponse *resp)) onSuccess
                onError: (void (^)(NSError *error)) onError;
```

has been replaced by&#x20;

```swift
- (void) createCustomer: (Customer*) customer
            deduplicate: (NSString *) deduplicateAttribute
              onSuccess: (void (^)(CustomerCreateResponse *resp)) onSuccess
                onError: (void (^)(NSError *error)) onError;
```

To create a customer without deduplication:

```swift
cloud4WiSDKWiFi.createCustomer(customer, deduplicate: nil)
```

#### Get list policies

The signature of the method `getListOfPolicies`

```swift
- (void) getListOfPolicies: (void (^)(NSArray<Policy *> *policies)) onSuccess
                   onError: (void (^)(NSError *error)) onError;
```

has been replaced by

```swift
- (void) getListOfPolicies: (void (^)(NSArray<NSString *> *policies)) onSuccess
                   onError: (void (^)(NSError *error)) 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
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

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

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
