Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions content/docs/ios/changelog.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@ title: "Changelog"
description: "Release notes for the Superwall iOS SDK"
---

## 4.15.2

### Enhancements

- Improves Apple Search Ads attribution capture rate.
- Filters out the all-zeros IDFA sentinel (returned when App Tracking Transparency is denied) so it no longer pollutes the `idfa` attribute on attribution payloads.

### Fixes

- Changes the Superscript spm package repo source to a new lightweight repo meaning that the download of the package is way faster.

## 4.15.1

### Enhancements
Expand Down
2 changes: 1 addition & 1 deletion content/docs/ios/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,6 @@ If you have feedback on any of our docs, please leave a rating and message at th
If you have any issues with the SDK, please [open an issue on GitHub](https://github.com/superwall/superwall-ios/issues).

<SdkLatestVersion
version="4.15.1"
version="4.15.2"
repoUrl="https://github.com/superwall/Superwall-iOS"
/>
2 changes: 1 addition & 1 deletion content/docs/ios/sdk-reference/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ If you have feedback on any of our docs, please leave a rating and message at th
If you have any issues with the SDK, please [open an issue on GitHub](https://github.com/superwall/superwall-ios/issues).

<SdkLatestVersion
version="4.15.1"
version="4.15.2"
repoUrl="https://github.com/superwall/Superwall-iOS"
/>
2 changes: 1 addition & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export default defineConfig({
},
prerender: {
enabled: true,
concurrency: 3,
concurrency: 2,
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Build config concurrency change appears accidentally committed

Medium Severity

The prerender concurrency was lowered from 3 to 2 in vite.config.ts, but the PR description explicitly states "no plugin or config changes" were needed and describes this as a docs-only update. The verification section mentions the build OOM'd, suggesting this change was a local debugging workaround that was inadvertently included. Reducing concurrency will slow down prerendering for all builds/deployments going forward.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 94ffbcd. Configure here.

filter: (page) => {
return !(
page.path === "/sdk" ||
Expand Down
Loading