Skip to content

Commit

Permalink
Update SQLite checkout
Browse files Browse the repository at this point in the history
  • Loading branch information
garriguv committed Aug 26, 2024
1 parent 0db3941 commit c46cc45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Carthage/Checkouts/SQLite.swift
Submodule SQLite.swift updated 99 files
+1 −0 .github/FUNDING.yml
+12 −9 .github/workflows/build.yml
+4 −0 .gitignore
+6 −2 .swiftlint.yml
+107 −1 CHANGELOG.md
+269 −57 Documentation/Index.md
+1 −2 Documentation/Linux.md
+1 −3 Documentation/Planning.md
+1 −0 Documentation/Release.md
+9 −0 Documentation/Upgrading.md
+3 −0 Gemfile
+115 −0 Gemfile.lock
+58 −21 Makefile
+12 −27 Package.swift
+10 −23 README.md
+31 −2 SQLite.playground/Contents.swift
+35 −14 SQLite.swift.podspec
+791 −231 SQLite.xcodeproj/project.pbxproj
+71 −0 SQLite.xcodeproj/xcshareddata/xcschemes/SQLite visionOS.xcscheme
+1 −1 Sources/SQLite/Core/Backup.swift
+1 −5 Sources/SQLite/Core/Blob.swift
+33 −0 Sources/SQLite/Core/Connection+Attach.swift
+51 −0 Sources/SQLite/Core/Connection+Pragmas.swift
+31 −22 Sources/SQLite/Core/Connection.swift
+24 −2 Sources/SQLite/Core/Result.swift
+25 −0 Sources/SQLite/Core/SQLiteFeature.swift
+22 −0 Sources/SQLite/Core/SQLiteVersion.swift
+18 −11 Sources/SQLite/Core/Statement.swift
+53 −0 Sources/SQLite/Core/URIQueryParameter.swift
+1 −1 Sources/SQLite/Core/Value.swift
+21 −3 Sources/SQLite/Extensions/Cipher.swift
+26 −59 Sources/SQLite/Extensions/FTS4.swift
+8 −12 Sources/SQLite/Extensions/FTS5.swift
+16 −0 Sources/SQLite/Foundation.swift
+13 −7 Sources/SQLite/Helpers.swift
+14 −0 Sources/SQLite/PrivacyInfo.xcprivacy
+0 −2 Sources/SQLite/SQLite.h
+35 −0 Sources/SQLite/Schema/Connection+Schema.swift
+282 −0 Sources/SQLite/Schema/SchemaChanger.swift
+396 −0 Sources/SQLite/Schema/SchemaDefinitions.swift
+194 −0 Sources/SQLite/Schema/SchemaReader.swift
+3 −3 Sources/SQLite/Typed/AggregateFunctions.swift
+138 −23 Sources/SQLite/Typed/Coding.swift
+16 −16 Sources/SQLite/Typed/CoreFunctions.swift
+11 −12 Sources/SQLite/Typed/Expression.swift
+8 −8 Sources/SQLite/Typed/Operators.swift
+117 −0 Sources/SQLite/Typed/Query+with.swift
+71 −23 Sources/SQLite/Typed/Query.swift
+145 −0 Sources/SQLite/Typed/WindowFunctions.swift
+0 −138 Sources/SQLiteObjc/SQLiteObjc.m
+0 −161 Sources/SQLiteObjc/fts3_tokenizer.h
+0 −38 Sources/SQLiteObjc/include/SQLiteObjc.h
+2 −2 Tests/.swiftlint.yml
+1 −1 Tests/Carthage/Makefile
+7 −10 Tests/SPM/Package.swift
+24 −0 Tests/SQLite visionOS.xctestplan
+0 −23 Tests/SQLiteTests/BlobTests.swift
+0 −109 Tests/SQLiteTests/CipherTests.swift
+47 −0 Tests/SQLiteTests/Core/BlobTests.swift
+62 −0 Tests/SQLiteTests/Core/Connection+AttachTests.swift
+42 −0 Tests/SQLiteTests/Core/Connection+PragmaTests.swift
+119 −144 Tests/SQLiteTests/Core/ConnectionTests.swift
+0 −0 Tests/SQLiteTests/Core/CoreFunctionsTests.swift
+69 −0 Tests/SQLiteTests/Core/ResultTests.swift
+74 −0 Tests/SQLiteTests/Core/StatementTests.swift
+0 −0 Tests/SQLiteTests/Core/ValueTests.swift
+0 −151 Tests/SQLiteTests/CustomFunctionsTests.swift
+0 −5 Tests/SQLiteTests/ExpressionTests.swift
+118 −0 Tests/SQLiteTests/Extensions/CipherTests.swift
+3 −40 Tests/SQLiteTests/Extensions/FTS4Tests.swift
+1 −1 Tests/SQLiteTests/Extensions/FTS5Tests.swift
+0 −0 Tests/SQLiteTests/Extensions/FTSIntegrationTests.swift
+0 −0 Tests/SQLiteTests/Extensions/RTreeTests.swift
+17 −3 Tests/SQLiteTests/Fixtures.swift
+11 −0 Tests/SQLiteTests/FoundationTests.swift
+0 −220 Tests/SQLiteTests/QueryIntegrationTests.swift
+ Tests/SQLiteTests/Resources/encrypted-3.x.sqlite
+ Tests/SQLiteTests/Resources/encrypted-4.x.sqlite
+ Tests/SQLiteTests/Resources/test.sqlite
+52 −0 Tests/SQLiteTests/Schema/Connection+SchemaTests.swift
+157 −0 Tests/SQLiteTests/Schema/SchemaChangerTests.swift
+446 −0 Tests/SQLiteTests/Schema/SchemaDefinitionsTests.swift
+289 −0 Tests/SQLiteTests/Schema/SchemaReaderTests.swift
+2 −0 Tests/SQLiteTests/Schema/SchemaTests.swift
+0 −37 Tests/SQLiteTests/StatementTests.swift
+41 −6 Tests/SQLiteTests/TestHelpers.swift
+0 −0 Tests/SQLiteTests/Typed/AggregateFunctionsTests.swift
+11 −11 Tests/SQLiteTests/Typed/CustomAggregationTests.swift
+151 −0 Tests/SQLiteTests/Typed/CustomFunctionsTests.swift
+0 −0 Tests/SQLiteTests/Typed/DateAndTimeFunctionTests.swift
+35 −0 Tests/SQLiteTests/Typed/ExpressionTests.swift
+0 −0 Tests/SQLiteTests/Typed/OperatorsTests.swift
+457 −0 Tests/SQLiteTests/Typed/QueryIntegrationTests.swift
+108 −32 Tests/SQLiteTests/Typed/QueryTests.swift
+38 −8 Tests/SQLiteTests/Typed/RowTests.swift
+4 −4 Tests/SQLiteTests/Typed/SelectTests.swift
+0 −0 Tests/SQLiteTests/Typed/SetterTests.swift
+58 −0 Tests/SQLiteTests/Typed/WindowFunctionsTests.swift
+3 −2 run-tests.sh

0 comments on commit c46cc45

Please sign in to comment.