Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
fca11ea
Implemented case-insensitive, diacritic-insensitive and normalized op…
cicciotti-privatewave Mar 18, 2016
15325bc
* Fixed issue where having equivalent models when performing a lightw…
Mar 18, 2016
788db03
Implemented case-insensitive, diacritic-insensitive and normalized op…
cicciotti-privatewave Mar 18, 2016
392644a
#197 addPersistentStoreWithType return nil, but error is nil too
Mar 29, 2016
b063671
Merge pull request #231 from firstobjective/master
DanielBroad May 12, 2016
1680237
3.1
DanielBroad May 13, 2016
e9879d7
added fix for bug when doing a lightweight migration where update ent…
matanporeh May 19, 2016
f136b1f
implement more aggregate functions
Jun 2, 2016
416e101
Merge pull request #241 from pszot-pgs/mr/aggregates
DanielBroad Jun 2, 2016
8f012a5
Merge pull request #239 from matanporeh/fix_lightweight_migration_whe…
DanielBroad Jun 2, 2016
5827b72
implement string comparision operators
Jun 2, 2016
bc34ec4
Merge pull request #240 from pszot-pgs/mr/string_comparision
DanielBroad Jun 3, 2016
7a20c67
Fix for issue removing all objects from a many-to-many relationship
idcuesta Jun 28, 2016
b5b8239
Merge pull request #245 from idcuesta/master
DanielBroad Jun 28, 2016
2b0cb79
Removed second assignment to firstOrderColumn, changed it to assignme…
Jul 22, 2016
cda6a07
Merge pull request #248 from jaroslawgajak/null-column-name
DanielBroad Jul 24, 2016
305b349
Fixed doubled assignment to firstOrderColumn in previousRelationships…
Jul 25, 2016
33e425b
Merge pull request #249 from jaroslawgajak/null-column-previousRelati…
DanielBroad Jul 28, 2016
9e29ff1
NSPredicateOperatorType and NSComparisonPredicateOptions have underly…
cicciotti-privatewave Aug 1, 2016
283efc6
Fix ECDSTRINGOPERATION's implementation of LIKE
cicciotti-privatewave Aug 1, 2016
f76402e
Change -parseExpression:inPredicate:inFetchRequest:operator:operand:b…
cicciotti-privatewave Aug 1, 2016
9bcfba1
LIKE, CONTAINS, ENDSWITH, STARTSWITH etc. are now implemented by ECDS…
cicciotti-privatewave Aug 1, 2016
784b9a3
Better detection of string vs aggregate form of IN and CONTAINS opera…
cicciotti-privatewave Aug 1, 2016
5c5580c
The previous code to parse "<operand> == NULL" to translate into "<op…
cicciotti-privatewave Aug 1, 2016
24a4d5f
Merge branch 'master' of github.com:project-imas/encrypted-core-data
cicciotti-privatewave Aug 1, 2016
b95f367
Implemented case-insensitive, diacritic-insensitive and normalized op…
cicciotti-privatewave Mar 18, 2016
78e5504
NSPredicateOperatorType and NSComparisonPredicateOptions have underly…
cicciotti-privatewave Aug 1, 2016
4d5be7e
Fix ECDSTRINGOPERATION's implementation of LIKE
cicciotti-privatewave Aug 1, 2016
8dfc195
Change -parseExpression:inPredicate:inFetchRequest:operator:operand:b…
cicciotti-privatewave Aug 1, 2016
ad9d9e5
LIKE, CONTAINS, ENDSWITH, STARTSWITH etc. are now implemented by ECDS…
cicciotti-privatewave Aug 1, 2016
4d8c473
Better detection of string vs aggregate form of IN and CONTAINS opera…
cicciotti-privatewave Aug 1, 2016
32de611
The previous code to parse "<operand> == NULL" to translate into "<op…
cicciotti-privatewave Aug 1, 2016
54178cb
Merge branch 'string-operations' of github.com:cicciotti-privatewave/…
cicciotti-privatewave Aug 1, 2016
9716c5a
Forgot to undo an upstream change
cicciotti-privatewave Aug 1, 2016
83d3181
No need to force SQLite to use a case-sensitive LIKE with PRAGMA case…
cicciotti-privatewave Aug 1, 2016
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
10 changes: 5 additions & 5 deletions EncryptedCoreData.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'EncryptedCoreData'
s.version = '3.0'
s.version = '3.1'
s.license = 'Apache-2.0'

s.summary = 'iOS Core Data encrypted SQLite store using SQLCipher'
Expand All @@ -12,17 +12,17 @@ Pod::Spec.new do |s|
'MITRE' => 'imas-proj-list@lists.mitre.org'
}

s.source = { :git => 'https://github.com/project-imas/encrypted-core-data.git', :tag => '3.0' }
s.source = { :git => 'https://github.com/project-imas/encrypted-core-data.git', :tag => '3.1' }

s.frameworks = ['CoreData', 'Security']
s.requires_arc = true

s.ios.deployment_target = '6.0'
s.osx.deployment_target = '10.8'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.source_files = 'Incremental Store/**/*.{h,m}'
s.public_header_files = 'Incremental Store/EncryptedStore.h'

s.dependency 'SQLCipher', '~> 3.3.0'
s.dependency 'SQLCipher', '~> 3.4.0'

s.xcconfig = {
'OTHER_CFLAGS' => '$(inherited) -DSQLITE_HAS_CODEC -DSQLCIPHER_CRYPTO_CC'
Expand Down
Loading