---
title: Changelog - iOS
description: The Contentsquare iOS changelog
lastUpdated: 28 April 2026
source_url:
  html: https://docs.contentsquare.com/en/csq-sdk-ios/experience-analytics/changelog/
  md: https://docs.contentsquare.com/en/csq-sdk-ios/experience-analytics/changelog/index.md
---

> Documentation index: https://docs.contentsquare.com/llms.txt
> Use this file to discover all available pages before exploring further.

## Opt-in to CSQ Experience Platform

Already using the CSQ SDK in standalone mode? Follow these steps to switch to CSQ Experience Platform and combine Experience Analytics and Product Analytics under a single data source.

CSQ Experience Platform is currently an Early Access program. To gain access, contact your Customer Success Manager.

CSQ Experience Platform guidance

Throughout the documentation, code samples highlight differences between standalone and CSQ Experience Platform integrations.

![CSQ Experience Platform docs support hint](https://docs.contentsquare.com/_astro/csqxp-docs-support-hint.1O6QoOlx_CO8z4.webp)

Tip

**Integrate faster with AI skills** Beta — Use the Contentsquare AI skills to let your AI coding assistant handle SDK setup, version migration, and feature implementation automatically. [Explore AI skills](https://docs.contentsquare.com/en/csq-sdk-ios/product-analytics/using-agent-skills/)

1. [Update the SDK package to 1.10.0](../#install-the-sdk).

2. Replace your current `CSQ.start()` or `CSQ.start(environmentID:)` call with the `dataSourceID` provided by your Customer Success Manager. This links your app to the CSQ Experience Platform data source.

   **AppDelegate.swift**

   ```swift
   CSQ.start(dataSourceID: "YOUR_DATASOURCE_ID")
   ```

   Find your data source ID

   `YOUR_DATASOURCE_ID` is either provided to you by Contentsquare or you can find it in **Definitions** > **Data sources** > \[Expand your mobile data source] > \[Copy the App ID in step 1] within the [CSQ Experience Platform web app ↗](https://app.contentsquare.com/).

3. Review changes [introduced in 1.10.0](#1100---20260504) which notably removes support for several Product Analytics options.

## 1.11.0 - 2026.06.05

Experience Analytics

* Update Experience Analytics SDK version to `4.51.0`:

  * **Session Replay**

    * Improve stability when calling APIs from background threads.
    * Fix harmonized masking behavior for fully SwiftUI-based apps.
    * Use the unified SDK version for full masking rules.

  * **Analytics**

    * A more explicit message is displayed when the screenshot size exceeds server-side limit

Product Analytics

* Update Product Analytics Core SDK version to `0.9.1`

## 1.10.0 - 2026.05.04

Experience Analytics

* Update Experience Analytics SDK version to `4.50.0`:

  * The Session timeout definition changes from "30 minutes after being in background" to **30 minutes after last event**. See [Session definition](https://docs.contentsquare.com/en/csq-sdk-ios/experience-analytics/data-collection/#session-definition).

Product Analytics

* Update Product Analytics Autocapture SDK version to `0.11.0`
* Update Product Analytics Core SDK version to `0.9.0`
* Update Product Analytics Notification SDK version to `0.9.0`

### Configuration

**API update:** `CSQ.configureProductAnalytics()` is now deprecated in favor of use `CSQ.start()` which combines SDK configuration and initialization in a single call:

**AppDelegate.swift**

```swift
CSQ.configureProductAnalytics(
  environmentID: "YOUR_ENVIRONMENT_ID",
  additionalOptions: [
    // ...
  ]
)
CSQ.start()


CSQ.start(
  environmentID: "YOUR_ENVIRONMENT_ID",
  options: [
    // ...
  ]
)
```

### Options

**Added:** `.sessionReplayAutoStart` — set to `false` to disable automatic Session Replay start and control it manually. Defaults to `true`.

```swift
CSQ.start(
  environmentID: "YOUR_ENVIRONMENT_ID",
  options: [
    .sessionReplayAutoStart: false
  ]
)
```

**Renamed:** `.enableUIKitAutocapture` is now `.enableNativeAutocapture`:

```swift
CSQ.start(
  environmentID: "YOUR_ENVIRONMENT_ID",
  options: [
    .enableUIKitAutocapture: true,
    .enableNativeAutocapture: true,
  ]
)
```

**Removed:** `.captureVendorID`, `.captureAdvertiserID`, `.clearEventPropertiesOnNewUser`, `.messageBatchByteLimit`, `.messageBatchMessageLimit`, `.resumePreviousSession`, `.pruningLookBackWindow`, `.disableScreenviewForwardToDXA`, `.disableScreenviewForwardToPA`, `.interactionHierarchyCaptureLimit`, `.disableInteractionTextCapture`, and `.disableInteractionAccessibilityLabelCapture` are no longer available. Remove them from your `CSQ.start()` call if present:

```swift
CSQ.start(
  environmentID: "YOUR_ENVIRONMENT_ID",
  options: [
    .captureVendorID: true,
    .captureAdvertiserID: true,
    .clearEventPropertiesOnNewUser: true,
    .messageBatchByteLimit: 200_000,
    .messageBatchMessageLimit: 100,
    .resumePreviousSession: true,
    .pruningLookBackWindow: 6,
    .disableScreenviewForwardToDXA: true,
    .disableScreenviewForwardToPA: true,
    .interactionHierarchyCaptureLimit: 5,
    .disableInteractionTextCapture: true,
    .disableInteractionAccessibilityLabelCapture: true,
  ]
)
```

## 1.6.3 - 2026.04.10

Experience Analytics

* Update Experience Analytics SDK version to `4.46.3`:

  **Session Replay**

  * Improved performance of view hierarchy processing, reducing CPU usage.
  * Fixed a threading issue that could cause occasional crashes.
  * Fixed an issue where some images could be missing in replays.

  **Analytics**

  * Improved runtime stability

  **Errors**

  * Enhanced tracking of initial crashes after application installation.

## 1.6.2 - 2026.03.23

Experience Analytics

* Update Experience Analytics SDK version to `4.46.2`:

  **Session Replay**

  * Fixed a crash related to SVG images when harmonized masking is enabled

  **Analytics**

  * Fixed an issue where a screenshot capture would cause the app to become unresponsive

## 1.6.1 - 2026.03.05

Experience Analytics

* Update Experience Analytics SDK version to `4.46.1`:

  **Analytics**

  * Zoning / Heatmap: Add support for SwiftUI `drawingGroup`

  **Session Replay**

  * Fix a protobuf serialization crash
  * Fix a crash related to `NSAttributedString` encoding

## 1.6.0 - 2026.02.19

Experience Analytics

* Update Experience Analytics SDK version to `4.46.0`:

  **Session Replay**

  * Improved session synchronization between Session Replay and Product Analytics
  * Enhance playback reliability when using `stopTracking()` followed by `resumeTracking()`
  * Strengthen playback stability when `optOut()` is triggered
  * Fix nil replay link when callback is subscribed before `start()`
  * Enhance stability when using `csMasking` SwiftUI modifier
  * Improve robustness against race conditions involving weak SwiftUI component references
  * Optimize handling of collections with unusually long durations

  **Errors**

  * Improve API error handling by ensuring URLs remain visible when invalid masking patterns are provided via `ErrorAnalysis.setURLMaskingPatterns()`

  **Analytics**

  * Improved Zoning metrics accuracy for some custom SwiftUI components
  * Fixed an issue where a screenshot captures would fail for React Native applications

Product Analytics

* Update Product Analytics Notification SDK version to `0.8.3`

## 1.5.5 - 2025.12.29

Experience Analytics

* Update Experience Analytics SDK version to `4.45.6`:

  **Session Replay**

  * Fix a crash due to infinite recursion when a sublayer references the parent view as delegate (issue observed in CorePlot)

## 1.5.4 - 2025.12.22

Experience Analytics

* Update Experience Analytics SDK version to `4.45.5`:

## 1.5.3 - 2025.12.12

Experience Analytics

* Update Experience Analytics SDK version to `4.45.4`:

## 1.5.2 - 2025.12.08

Experience Analytics

* Update Experience Analytics SDK version to `4.45.3`

Product Analytics

* Update Product Analytics Autocapture SDK version to `0.10.1`
* Update Product Analytics Core SDK version to `0.8.8`:
* Update Product Analytics Notification SDK version to `0.8.1`:

## 1.5.1 - 2025.11.27

Experience Analytics

* Update Experience Analytics SDK version to `4.45.1`:

## 1.5.0 - 2025.11.14

Experience Analytics

* Update Experience Analytics SDK version to `4.45.0`:

**Analytics**

* Fixed a crash related to Zoning and Heatmap data collection on iOS 26 devices

**Session Replay**

* Fixed a crash related to gesture capture on iOS 26 devices
* Fixed an issue where the background color of an Image wouldn’t be correctly rendered
* Fixed a protobuf serialization crash on iOS 26 devices
* Performance improvement on iOS 26 devices

## 1.4.2 - 2025.10.29

Experience Analytics

* Update Experience Analytics SDK version to `4.44.3`:

  **Session Replay**

  * Fixed a rare crash related to gesture.

## 1.4.1 - 2025.10.28

Experience Analytics

* Update Experience Analytics SDK version to `4.44.2`:

  **Session Replay**

  * Fixed a crash related to `AVPlayerViewController`.

Product Analytics

* Update Product Analytics Autocapture SDK version to `0.9.1`:

  * Fixed a crash when calling `AttributedString(localized:)` with an interpolated string.
  * Taps inside `WKWebView` are now ignored by default because they don't contain meaningful data and produce noise when integrating with tag capture. To restore capture on a specific view, use `webView.heapIgnoreInteractions = false`.

## 1.4.0 - 2025.10.22

**Webviews** The One WebView Tag feature is now available in controlled general availability. It brings key Product Analytics features — Identity, User Properties, Hierarchy, and Target Text — to WebViews, enabling unified Product Analytics and Experience Analytics. To gain access, contact your Customer Success Manager to be added to the eligibility list.

## 1.3.1 - 2025.10.17

Experience Analytics

* Update Experience Analytics SDK version to `4.44.1`:

  **Core SDK**

  * Fix an issue with the SDK internal Codable conformance extension for NSTextAlignment.

  **Analytics**

  * Heatmaps: Fix an issue where some taps would be inaccurate on iOS 26 devices

## 1.3.0 - 2025.10.14

Experience Analytics

* Update Experience Analytics SDK version to `4.44.0`:

  **Analytics**

  * Improved iOS 26 support for Zoning and Heatmap analysis
  * ⚠️ Starting with iOS 26: Reliable targets are compatible with UIKit `accessibilityIdentifier` only. Read more at [Reliable targets](https://docs.contentsquare.com/en/ios/collected-data-points/#reliable-targets)
  * Improved data collection on segmented controls

  **Session Replay**

  * Improved iOS 26 support to display correctly text and images on SwiftUI views for apps built with Xcode 26
  * Fix a crash related to bitmap rendering

Product Analytics

* Update Product Analytics Core SDK version to `0.8.7`:

  * SDK is now built with Xcode 16.0.
  * Internal improvements for autocapture.

## 1.2.1 - 2025.09.24

Experience Analytics

* Update Experience Analytics SDK version to `4.43.3`:

  **Session Replay**

  * Fixed a bug where gradient backgrounds were not properly collected for React Native

  **Analytics**

  * Heatmaps: Fixed a crash related to frame computations

## 1.2.0 - 2025.09.12

Product Analytics

* Update Product Analytics Autocapture SDK version to `0.9.0`:
  * **SwiftUI Autocapture**
    * Our Autocapture SDK now includes support for SwiftUI

Experience Analytics

* Update Experience Analytics SDK version to `4.43.2`:

  * **Core SDK**

    * Improved internal feature flag stability

  * **Session Replay**

    * Fixed an issue where SwiftUI images were missing from the replay on iOS 26 devices.

## 1.1.0 - 2025.08.06

Experience Analytics

* Update Experience Analytics SDK version to `4.43.0`:

  * **Session Replay**

    * Image/Text masking configuration in the CSQ Console
    * Support Event Triggered Replay

## 1.0.1 - 2025.07.22

Experience Analytics

* Update Experience Analytics SDK version to `4.42.4`:

  * **Session Replay**

    * Fix an issue related to CSInApp on iPad
    * Support for React Native New Architecture Text
    * Improved Session Replay screen change consistency on Capacitor apps

  * **WebView**
    * Fix an issue related to config

## 1.0.0 - 2025.06.26

Initial release of the CSQ SDK.

* Introduces the unified CSQ API, which combines Product Analytics, Experience Analytics, and Monitoring features into a single, cohesive library.

* This initial release includes:

  * Experience Analytics SDK version `4.42.1`.
  * Product Analytics Core SDK version `0.8.6`.
  * Product Analytics Autocapture SDK version `0.8.0`.
  * Product Analytics Notification Autocapture SDK version `0.8.0`.

Upgrade to CSQ SDK 1.+

Looking to upgrade from CSQ SDK 0.x to the latest? See the [upgrade guide](https://docs.contentsquare.com/en/csq-sdk-ios/experience-analytics/upgrade-from-heap-and-cs-sdk/).

## 0.11.3 - 2026.04.10

* Update Experience Analytics SDK to [`4.46.3`](https://docs.contentsquare.com/en/ios/changelog/#4463---20260410).
* Update Product Analytics [Core `0.8.8` ↗](https://developers.heap.io/docs/ios-changelog#swift-core-changelog) - [Autocapture `0.10.1` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog) - [Autocapture Notification `0.8.3` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog).

## 0.11.2 - 2026.03.23

* Update Experience Analytics SDK to [`4.46.2`](https://docs.contentsquare.com/en/ios/changelog/#4462---20260320).
* Update Product Analytics [Core `0.8.8` ↗](https://developers.heap.io/docs/ios-changelog#swift-core-changelog) - [Autocapture `0.10.1` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog) - [Autocapture Notification `0.8.3` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog).

## 0.11.1 - 2026.03.05

* Update Experience Analytics SDK to [`4.46.1`](https://docs.contentsquare.com/en/ios/changelog/#4461---20260305).
* Update Product Analytics [Core `0.8.8` ↗](https://developers.heap.io/docs/ios-changelog#swift-core-changelog) - [Autocapture `0.10.1` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog) - [Autocapture Notification `0.8.3` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog).

## 0.11.0 - 2026.02.16

* Update Experience Analytics SDK to [`4.46.0`](https://docs.contentsquare.com/en/ios/changelog/#4460---20260213).
* Update Product Analytics [Core `0.8.8` ↗](https://developers.heap.io/docs/ios-changelog#swift-core-changelog) - [Autocapture `0.10.1` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog) - [Autocapture Notification `0.8.1` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog).

## 0.10.4 - 2025.12.29

* Update Experience Analytics SDK to [`4.45.6`](https://docs.contentsquare.com/en/ios/changelog/#4456---20251230).
* Update Product Analytics [Core `0.8.8` ↗](https://developers.heap.io/docs/ios-changelog#swift-core-changelog) - [Autocapture `0.10.1` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog) - [Autocapture Notification `0.8.1` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog).

## 0.10.3 - 2025.12.22

* Update Experience Analytics SDK to [`4.45.5`](https://docs.contentsquare.com/en/ios/changelog/#4455---20251219).
* Update Product Analytics [Core `0.8.8` ↗](https://developers.heap.io/docs/ios-changelog#swift-core-changelog) - [Autocapture `0.10.1` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog) - [Autocapture Notification `0.8.1` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog).

## 0.10.2 - 2025.12.12

* Update Experience Analytics SDK to [`4.45.4`](https://docs.contentsquare.com/en/ios/changelog/#4454---20251212).
* Update Product Analytics [Core `0.8.8` ↗](https://developers.heap.io/docs/ios-changelog#swift-core-changelog) - [Autocapture `0.10.1` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog) - [Autocapture Notification `0.8.1` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog).

## 0.10.1 - 2025.12.10

* Update Experience Analytics SDK to [`4.45.3`](https://docs.contentsquare.com/en/ios/changelog/#4453---20251205).
* Update Product Analytics [Core `0.8.8` ↗](https://developers.heap.io/docs/ios-changelog#swift-core-changelog) - [Autocapture `0.10.1` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog) - [Autocapture Notification `0.8.1` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog).

## 0.10.0 - 2025.11.14

* Update Experience Analytics SDK to [`4.45.0`](https://docs.contentsquare.com/en/ios/changelog/#4450---20251114).
* Update Product Analytics [Core `0.8.7` ↗](https://developers.heap.io/docs/ios-changelog#swift-core-changelog) - [Autocapture `0.9.1` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog) - [Autocapture Notification `0.8.0` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog).

## 0.9.2 - 2025.10.28

* Update Experience Analytics SDK to [`4.44.2`](https://docs.contentsquare.com/en/ios/changelog/#4442---20251024).
* Update Product Analytics [Core `0.8.7` ↗](https://developers.heap.io/docs/ios-changelog#swift-core-changelog) - [Autocapture `0.9.1` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog) - [Autocapture Notification `0.8.0` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog).

## 0.9.1 - 2025.10.17

* Update Experience Analytics SDK to [`4.44.1`](https://docs.contentsquare.com/en/ios/changelog/#4441---20251017).
* Update Product Analytics [Core `0.8.7` ↗](https://developers.heap.io/docs/ios-changelog#swift-core-changelog) - [Autocapture `0.9.0` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog) - [Autocapture Notification `0.8.0` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog).

## 0.9.0 - 2025.10.07

* Update Experience Analytics SDK to [`4.44.0`](https://docs.contentsquare.com/en/ios/changelog/#4440---20251006).
* Update Product Analytics [Core `0.8.7` ↗](https://developers.heap.io/docs/ios-changelog#swift-core-changelog) - [Autocapture `0.9.0` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog) - [Autocapture Notification `0.8.0` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog).

## 0.8.1 - 2025.09.25

* Update Experience Analytics SDK to [`4.43.3`](https://docs.contentsquare.com/en/ios/changelog/#4433---20250924).
* Update Product Analytics [Core `0.8.6` ↗](https://developers.heap.io/docs/ios-changelog#swift-core-changelog) - [Autocapture `0.9.0` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog) - [Autocapture Notification `0.8.0` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog).

## 0.8.0 - 2025.09.11

* Update Experience Analytics SDK to [`4.43.2`](https://docs.contentsquare.com/en/ios/changelog/#4432---20250819).
* Update Product Analytics [Core `0.8.6` ↗](https://developers.heap.io/docs/ios-changelog#swift-core-changelog) - [Autocapture `0.9.0` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog) (includes SwiftUI Autocapture) - [Autocapture Notification `0.8.0` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog).

## 0.7.0 - 2025.08.01

* Update Experience Analytics SDK to [`4.43.0`](https://docs.contentsquare.com/en/ios/changelog/#4430---20250731).
* Update Product Analytics [Core `0.8.6` ↗](https://developers.heap.io/docs/ios-changelog#swift-core-changelog) - [Autocapture `0.8.0` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog) - [Autocapture Notification `0.8.0` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog).

## 0.6.3 - 2025.06.20

* Update Experience Analytics SDK to [`4.42.1`](https://docs.contentsquare.com/en/ios/changelog/#4421---20250617).
* Update Product Analytics [Core `0.8.5` ↗](https://developers.heap.io/docs/ios-changelog#swift-core-changelog) - [Autocapture `0.8.0` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog) - [Autocapture Notification `0.8.0` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog).

## 0.6.2 - 2025.05.22

* Update Product Analytics [Core `0.8.5` ↗](https://developers.heap.io/docs/ios-changelog#swift-core-changelog) - [Autocapture `0.8.0` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog) - [Autocapture Notification `0.8.0` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog).

## 0.6.1 - 2025.05.19

* Update Experience Analytics SDK to [`4.41.3`](https://docs.contentsquare.com/en/ios/changelog/#4413---20250516).
* Update Product Analytics [Core `0.8.1` ↗](https://developers.heap.io/docs/ios-changelog#swift-core-changelog) - [Autocapture `0.8.0` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog) - [Autocapture Notification `0.8.0` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog).

## 0.6.0 - 2025.04.02

* Update Experience Analytics SDK to [`4.41.0`](https://docs.contentsquare.com/en/ios/changelog/#4410---20250402).
* Update Product Analytics [Core `0.8.1` ↗](https://developers.heap.io/docs/ios-changelog#swift-core-changelog) - [Autocapture `0.8.0` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog) - [Autocapture Notification `0.8.0` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog).

## 0.5.2 - 2025.03.12

* Update Experience Analytics SDK to [`4.40.2`](https://docs.contentsquare.com/en/ios/changelog/#4402---20250220).
* Update Product Analytics [Core `0.8.1` ↗](https://developers.heap.io/docs/ios-changelog#swift-core-changelog) - [Autocapture `0.8.0` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog) - [Autocapture Notification `0.8.0` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog).

## 0.5.1 - 2025.02.21

* Update Experience Analytics SDK to [`4.40.1`](https://docs.contentsquare.com/en/ios/changelog/#4401---20250218).
* Update Product Analytics [Core `0.8.0` ↗](https://developers.heap.io/docs/ios-changelog#swift-core-changelog) - [Autocapture `0.8.0` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog) - [Autocapture Notification `0.8.0` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog).

## 0.5.0 - 2025.02.14

* Update Experience Analytics SDK to [`4.40.0`](https://docs.contentsquare.com/en/ios/changelog/#4400---20250212).
* Update Product Analytics [Core `0.8.0` ↗](https://developers.heap.io/docs/ios-changelog#swift-core-changelog) - [Autocapture `0.8.0` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog) - [Autocapture Notification `0.8.0` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog).

## 0.4.0 - 2025.01.15

* Update Experience Analytics SDK to [`4.39.0`](https://docs.contentsquare.com/en/ios/changelog/#4390---20250109).
* Update Product Analytics [Core `0.7.2` ↗](https://developers.heap.io/docs/ios-changelog#swift-core-changelog) - [Autocapture `0.7.0` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog) - [Autocapture Notification `0.7.0` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog).

## 0.3.1 - 2024.12.06

* Update Experience Analytics SDK to [`4.38.2`](https://docs.contentsquare.com/en/ios/changelog/#4382---20241128).
* Update Product Analytics [Core `0.7.2` ↗](https://developers.heap.io/docs/ios-changelog#swift-core-changelog) - [Autocapture `0.7.0` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog) - [Autocapture Notification `0.7.0` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog).

## 0.3.0 - 2024.10.25

* Update Experience Analytics SDK to [`4.38.0`](https://docs.contentsquare.com/en/ios/changelog/#4380---20241025).
* Update Product Analytics [Core `0.7.2` ↗](https://developers.heap.io/docs/ios-changelog#swift-core-changelog) - [Autocapture `0.7.0` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog) - [Autocapture Notification `0.7.0` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog).

## 0.2.3 - 2024.10.25

* Update Experience Analytics SDK to [`4.37.3`](https://docs.contentsquare.com/en/ios/changelog/#4373---20241022).
* Update Product Analytics [Core `0.7.2` ↗](https://developers.heap.io/docs/ios-changelog#swift-core-changelog) - [Autocapture `0.7.0` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog) - [Autocapture Notification `0.7.0` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog).

## 0.2.2 - 2024.10.18

* Update Experience Analytics SDK to [`4.37.2`](https://docs.contentsquare.com/en/ios/changelog/#4372---20241015).
* Update Product Analytics [Core `0.7.2` ↗](https://developers.heap.io/docs/ios-changelog#swift-core-changelog) - [Autocapture `0.7.0` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog) - [Autocapture Notification `0.7.0` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog).

## 0.2.1 - 2024.10.14

* Update Experience Analytics SDK to [`4.37.1`](https://docs.contentsquare.com/en/ios/changelog/#4371---20241001).
* Update Product Analytics [Core `0.7.2` ↗](https://developers.heap.io/docs/ios-changelog#swift-core-changelog) - [Autocapture `0.7.0` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog) - [Autocapture Notification `0.7.0` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog).

## 0.2.0 - 2024.10.11

* Update Experience Analytics SDK to [`4.37.0`](https://docs.contentsquare.com/en/ios/changelog/#4370---20240927).
* Update Product Analytics [Core `0.7.2` ↗](https://developers.heap.io/docs/ios-changelog#swift-core-changelog) - [Autocapture `0.7.0` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog) - [Autocapture Notification `0.7.0` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog).

## 0.1.1 - 2024.09.27

* Update Experience Analytics SDK to [`4.36.1`](https://docs.contentsquare.com/en/ios/changelog/#4361---20240920).
* Update Product Analytics [Core `0.7.1` ↗](https://developers.heap.io/docs/ios-changelog#swift-core-changelog) - [Autocapture `0.7.0` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog) - [Autocapture Notification `0.7.0` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog).

## 0.1.0 - 2024.09.06

This release marks the introduction of the CSQ SDK which brings together Product Analytics, Experience Analytics, and Monitoring features. From this version onwards, the SDK releases follow a new versioning scheme.

* Update Experience Analytics SDK to [`4.36.0`](https://docs.contentsquare.com/en/ios/changelog/#4360---20240906).
* Update Product Analytics [Core `0.7.1` ↗](https://developers.heap.io/docs/ios-changelog#swift-core-changelog) - [Autocapture `0.7.0` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog) - [Autocapture Notification `0.7.0` ↗](https://developers.heap.io/docs/ios-changelog#ios-autocapture-changelog).
