Update SQLCipher to 4.16.0#305
Merged
Merged
Conversation
This skill documents the process for updating SQLCipher in the iOS-Hybrid repository, which inherits SQLCipher through its iOS submodule dependency. Key aspects: - iOS-Hybrid depends on iOS SDK submodule for SmartStore/SQLCipher - Update process involves updating the iOS submodule reference - No direct SQLCipher dependency in hybrid podspec - Includes comprehensive testing guidance for hybrid plugins Related to SQLCipher 4.16.0 upgrade preparation.
|
||||||||||||||
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## dev #305 +/- ##
=======================================
Coverage 62.62% 62.62%
=======================================
Files 21 21
Lines 1699 1699
=======================================
Hits 1064 1064
Misses 635 635
Flags with carried forward coverage won't be shown. Click here to find out more. 🚀 New features to boost your workflow:
|
|
||||||||||||||
bbirman
reviewed
May 13, 2026
| - Review Cordova plugin implementations in `libs/SalesforceHybridSDK/SalesforceHybridSDK/Classes/Plugins/` | ||
| - Compare behavior with the iOS SDK's SmartStore tests | ||
|
|
||
| ### 6. Verify Sample Apps |
Member
There was a problem hiding this comment.
If we want to include it in the skill, the version would also get updated in each of the sample app's xcodeproj files
bbirman
approved these changes
May 13, 2026
- Update workspace Package.resolved to SQLCipher 4.16.0 - Update MobileSyncExplorerHybrid project to use SQLCipher 4.16.0 - Update AccountEditor project to use SQLCipher 4.16.0 - Update update-sqlcipher skill with SPM update instructions and troubleshooting Fixes package resolution conflict between iOS submodule (4.16.0) and sample apps (4.15.0).
bbirman
approved these changes
May 13, 2026
3 tasks
wmathurin
added a commit
to forcedotcom/SalesforceMobileSDK-iOS-SPM
that referenced
this pull request
May 13, 2026
- Updated Package.swift SQLCipher dependency from 4.15.0 to 4.16.0 - Added update-sqlcipher skill for future updates - Verified package resolution with swift package resolve Related PRs: - iOS: forcedotcom/SalesforceMobileSDK-iOS#4033 - iOS-Specs: forcedotcom/SalesforceMobileSDK-iOS-Specs#61 - iOS-Hybrid: forcedotcom/SalesforceMobileSDK-iOS-Hybrid#305 - Android: forcedotcom/SalesforceMobileSDK-Android#2883
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Updates SQLCipher dependency from 4.15.0 to 4.16.0 in the iOS-Hybrid SDK, including Swift Package Manager dependencies and documentation.
Changes
Package.resolvedto SQLCipher 4.16.0 (commit: 07bf6bc2191a063d6f1e7c3b5f276a3fadfe36b7)MobileSyncExplorerHybridproject to use SQLCipher 4.16.0AccountEditorproject to use SQLCipher 4.16.0.claude/skills/update-sqlcipher/SKILL.mdwith:Context
The iOS SDK was updated to SQLCipher 4.16.0 via podspec dependency. However, the workspace and sample apps use Swift Package Manager, which requires separate updates to:
Package.resolvedproject.pbxproj)Without these SPM updates, xcodebuild fails with:
Testing
SQLCipher 4.16.0 Release Notes
Related PRs