# Migration v10

Contains 2 breaking change of the SDK interface.

## Changes

- [Removes isIpAllowed](#removes-isIpAllowed)
- [Removes allowedIpRanges](#removes-allowedIPRanges)

### Removes isIpAllowed

- This function did not work as expected. The `allowedIPRanges` returns a range list that does not allow for us to look up if an IP is allowed or not. For this reason, we have decided to remove this function.

```diff
- acquisitionContext.isIpAllowed(ip);
```

### Removes allowedIpRanges

- This value is no longer needed as the `isIpAllowed` function has been removed and it does not provide us with usable data.

```diff
- acquisitionContext.allowedIpRanges;
```
