From 6798d057b50bca32c4f818417ab05a78987e9d58 Mon Sep 17 00:00:00 2001 From: Corey Date: Wed, 10 Jul 2024 19:22:42 -0700 Subject: [PATCH] feat: Update all dependencies (#197) * feat: Update all dependencies * Update project * update packages --- Package.resolved | 20 ++--- Package.swift | 4 +- ParseCareKit.xcodeproj/project.pbxproj | 12 ++- .../xcschemes/ParseCareKit.xcscheme | 2 +- .../xcschemes/TestHostAll.xcscheme | 78 +++++++++++++++++++ 5 files changed, 99 insertions(+), 17 deletions(-) create mode 100644 ParseCareKit.xcodeproj/xcshareddata/xcschemes/TestHostAll.xcscheme diff --git a/Package.resolved b/Package.resolved index e6f1c266f..943be1888 100644 --- a/Package.resolved +++ b/Package.resolved @@ -5,8 +5,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/cbaker6/CareKit.git", "state" : { - "revision" : "ed05957648de96d7ad8a81bd24edff3ee712f20e", - "version" : "3.0.0-beta.2" + "revision" : "8f84560883c93e57eb92392c49c408d9a7ebf747", + "version" : "3.0.0-beta.14" } }, { @@ -14,8 +14,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/apple/FHIRModels.git", "state" : { - "revision" : "e115442fb3c5d44ffb1dc9b4e039b77fd143ad96", - "version" : "0.4.0" + "revision" : "861afd5816a98d38f86220eab2f812d76cad84a0", + "version" : "0.5.0" } }, { @@ -23,8 +23,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/netreconlab/Parse-Swift.git", "state" : { - "revision" : "fc516a6e48c1c150a0ecac94910bc8dcedfc2e71", - "version" : "5.8.1" + "revision" : "10ec67c29050cc7e9d69bc59dda787ec5a145e75", + "version" : "5.10.0" } }, { @@ -32,8 +32,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/apple/swift-async-algorithms", "state" : { - "revision" : "9cfed92b026c524674ed869a4ff2dcfdeedf8a2a", - "version" : "0.1.0" + "revision" : "6ae9a051f76b81cc668305ceed5b0e0a7fd93d20", + "version" : "1.0.1" } }, { @@ -41,8 +41,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/apple/swift-collections.git", "state" : { - "revision" : "937e904258d22af6e447a0b72c0bc67583ef64a2", - "version" : "1.0.4" + "revision" : "3d2dc41a01f9e49d84f0a3925fb858bed64f702d", + "version" : "1.1.2" } } ], diff --git a/Package.swift b/Package.swift index 3015eb4f2..5a50b41b0 100644 --- a/Package.swift +++ b/Package.swift @@ -12,9 +12,9 @@ let package = Package( ], dependencies: [ .package(url: "https://github.com/cbaker6/CareKit.git", - .upToNextMajor(from: "3.0.0-beta.2")), + .upToNextMajor(from: "3.0.0-beta.14")), .package(url: "https://github.com/netreconlab/Parse-Swift.git", - .upToNextMajor(from: "5.8.1")) + .upToNextMajor(from: "5.10.0")) ], targets: [ .target( diff --git a/ParseCareKit.xcodeproj/project.pbxproj b/ParseCareKit.xcodeproj/project.pbxproj index 39eff8fc8..3136aa218 100644 --- a/ParseCareKit.xcodeproj/project.pbxproj +++ b/ParseCareKit.xcodeproj/project.pbxproj @@ -459,7 +459,7 @@ attributes = { BuildIndependentTargetsInParallel = YES; LastSwiftUpdateCheck = 1430; - LastUpgradeCheck = 1430; + LastUpgradeCheck = 1540; ORGANIZATIONNAME = "Network Reconnaissance Lab"; TargetAttributes = { 705DC91C2526A4B80035BBE3 = { @@ -691,6 +691,7 @@ CODE_SIGN_ENTITLEMENTS = TestHostAll/TestHostAll.entitlements; CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; + DEAD_CODE_STRIPPING = YES; DEVELOPMENT_ASSET_PATHS = "\"TestHostAll/Preview Content\""; DEVELOPMENT_TEAM = ""; ENABLE_PREVIEWS = YES; @@ -729,6 +730,7 @@ CODE_SIGN_ENTITLEMENTS = TestHostAll/TestHostAll.entitlements; CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; + DEAD_CODE_STRIPPING = YES; DEVELOPMENT_ASSET_PATHS = "\"TestHostAll/Preview Content\""; DEVELOPMENT_TEAM = ""; ENABLE_PREVIEWS = YES; @@ -796,6 +798,7 @@ DEBUG_INFORMATION_FORMAT = dwarf; ENABLE_STRICT_OBJC_MSGSEND = YES; ENABLE_TESTABILITY = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; GCC_C_LANGUAGE_STANDARD = gnu11; GCC_DYNAMIC_NO_PIC = NO; GCC_NO_COMMON_BLOCKS = YES; @@ -862,6 +865,7 @@ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; ENABLE_NS_ASSERTIONS = NO; ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; GCC_C_LANGUAGE_STANDARD = gnu11; GCC_NO_COMMON_BLOCKS = YES; GCC_WARN_64_TO_32_BIT_CONVERSION = YES; @@ -1008,15 +1012,15 @@ repositoryURL = "https://github.com/netreconlab/Parse-Swift.git"; requirement = { kind = upToNextMajorVersion; - minimumVersion = 5.8.1; + minimumVersion = 5.10.0; }; }; 91FF60492AC0A51100E90E16 /* XCRemoteSwiftPackageReference "CareKit" */ = { isa = XCRemoteSwiftPackageReference; repositoryURL = "https://github.com/cbaker6/CareKit.git"; requirement = { - branch = "3.0.0-beta.2"; - kind = branch; + kind = upToNextMajorVersion; + minimumVersion = "3.0.0-beta.14"; }; }; /* End XCRemoteSwiftPackageReference section */ diff --git a/ParseCareKit.xcodeproj/xcshareddata/xcschemes/ParseCareKit.xcscheme b/ParseCareKit.xcodeproj/xcshareddata/xcschemes/ParseCareKit.xcscheme index 8b3eba548..58a8bb6b4 100644 --- a/ParseCareKit.xcodeproj/xcshareddata/xcschemes/ParseCareKit.xcscheme +++ b/ParseCareKit.xcodeproj/xcshareddata/xcschemes/ParseCareKit.xcscheme @@ -1,6 +1,6 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + +