Skip to content
This repository has been archived by the owner on Jun 13, 2023. It is now read-only.

Commit

Permalink
Updating Dependencies
Browse files Browse the repository at this point in the history
- Updating starscream to 3.1.1 for Swift 5 compatibility
- Parse 1.18.1 which includes Bolts 1.9.1 that adds catalyst compatibility and fixes App Store UIWebView deprication requirements.
  • Loading branch information
noobs2ninjas committed Apr 17, 2020
1 parent 15438a8 commit 8f70ab5
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions Cartfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
github "BoltsFramework/Bolts-Swift" == 1.5.0
github "ParsePlatform/Parse-SDK-iOS-OSX" == 1.17.3
github "daltoniam/Starscream" == 3.0.5
github "BoltsFramework/Bolts-Swift" >= 1.5.0
github "ParsePlatform/Parse-SDK-iOS-OSX" >= 1.18.0
github "daltoniam/Starscream" == 3.1.1
8 changes: 4 additions & 4 deletions Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
github "BoltsFramework/Bolts-ObjC" "1.9.0"
github "BoltsFramework/Bolts-ObjC" "1.9.1"
github "BoltsFramework/Bolts-Swift" "1.5.0"
github "ParsePlatform/Parse-SDK-iOS-OSX" "1.17.3"
github "daltoniam/Starscream" "3.0.5"
github "facebook/facebook-objc-sdk" "v5.11.1"
github "ParsePlatform/Parse-SDK-iOS-OSX" "1.18.0"
github "daltoniam/Starscream" "3.1.1"
github "facebook/facebook-objc-sdk" "v5.15.1"
2 changes: 1 addition & 1 deletion Carthage/Checkouts/Parse-SDK-iOS-OSX
2 changes: 1 addition & 1 deletion Carthage/Checkouts/Starscream
Submodule Starscream updated 54 files
+93 −2 .gitignore
+0 −1 .swift-version
+7 −0 .travis.yml
+22 −7 CHANGELOG.md
+4 −0 Gemfile
+212 −0 Gemfile.lock
+16 −0 Package.resolved
+11 −7 Package.swift
+34 −1 README.md
+1 −1 Sources/Info.plist
+1 −1 Sources/Starscream/Compression.swift
+92 −0 Sources/Starscream/SSLClientCertificate.swift
+5 −5 Sources/Starscream/SSLSecurity.swift
+67 −53 Sources/Starscream/WebSocket.swift
+3 −8 Starscream.podspec
+39 −81 Starscream.xcodeproj/project.pbxproj
+3 −5 Starscream.xcodeproj/xcshareddata/xcschemes/Starscream.xcscheme
+3 −1 Tests/CompressionTests.swift
+6 −0 build.sh
+1 −1 examples/SimpleTest/ws-server.rb
+11 −0 examples/WebSocketsOrgEcho/Podfile
+16 −0 examples/WebSocketsOrgEcho/Podfile.lock
+24 −0 examples/WebSocketsOrgEcho/Pods/Local Podspecs/Starscream.podspec.json
+16 −0 examples/WebSocketsOrgEcho/Pods/Manifest.lock
+26 −0 examples/WebSocketsOrgEcho/Pods/Target Support Files/Pods-WebSocketsOrgEcho/Pods-WebSocketsOrgEcho-Info.plist
+182 −0 ...tsOrgEcho/Pods/Target Support Files/Pods-WebSocketsOrgEcho/Pods-WebSocketsOrgEcho-acknowledgements.markdown
+5 −0 ...cketsOrgEcho/Pods/Target Support Files/Pods-WebSocketsOrgEcho/Pods-WebSocketsOrgEcho-acknowledgements.plist
+5 −0 examples/WebSocketsOrgEcho/Pods/Target Support Files/Pods-WebSocketsOrgEcho/Pods-WebSocketsOrgEcho-dummy.m
+158 −0 ...les/WebSocketsOrgEcho/Pods/Target Support Files/Pods-WebSocketsOrgEcho/Pods-WebSocketsOrgEcho-frameworks.sh
+16 −0 examples/WebSocketsOrgEcho/Pods/Target Support Files/Pods-WebSocketsOrgEcho/Pods-WebSocketsOrgEcho-umbrella.h
+11 −0 ...es/WebSocketsOrgEcho/Pods/Target Support Files/Pods-WebSocketsOrgEcho/Pods-WebSocketsOrgEcho.debug.xcconfig
+6 −0 examples/WebSocketsOrgEcho/Pods/Target Support Files/Pods-WebSocketsOrgEcho/Pods-WebSocketsOrgEcho.modulemap
+11 −0 .../WebSocketsOrgEcho/Pods/Target Support Files/Pods-WebSocketsOrgEcho/Pods-WebSocketsOrgEcho.release.xcconfig
+26 −0 examples/WebSocketsOrgEcho/Pods/Target Support Files/Starscream/Starscream-Info.plist
+5 −0 examples/WebSocketsOrgEcho/Pods/Target Support Files/Starscream/Starscream-dummy.m
+12 −0 examples/WebSocketsOrgEcho/Pods/Target Support Files/Starscream/Starscream-prefix.pch
+16 −0 examples/WebSocketsOrgEcho/Pods/Target Support Files/Starscream/Starscream-umbrella.h
+6 −0 examples/WebSocketsOrgEcho/Pods/Target Support Files/Starscream/Starscream.modulemap
+9 −0 examples/WebSocketsOrgEcho/Pods/Target Support Files/Starscream/Starscream.xcconfig
+10 −0 examples/WebSocketsOrgEcho/WebSocketsOrgEcho.xcworkspace/contents.xcworkspacedata
+8 −0 examples/WebSocketsOrgEcho/WebSocketsOrgEcho.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
+21 −0 examples/WebSocketsOrgEcho/WebSocketsOrgEcho/AppDelegate.swift
+98 −0 examples/WebSocketsOrgEcho/WebSocketsOrgEcho/Assets.xcassets/AppIcon.appiconset/Contents.json
+6 −0 examples/WebSocketsOrgEcho/WebSocketsOrgEcho/Assets.xcassets/Contents.json
+25 −0 examples/WebSocketsOrgEcho/WebSocketsOrgEcho/Base.lproj/LaunchScreen.storyboard
+40 −0 examples/WebSocketsOrgEcho/WebSocketsOrgEcho/Base.lproj/Main.storyboard
+45 −0 examples/WebSocketsOrgEcho/WebSocketsOrgEcho/Info.plist
+19 −0 examples/WebSocketsOrgEcho/WebSocketsOrgEcho/URL+Extensions.swift
+42 −0 examples/WebSocketsOrgEcho/WebSocketsOrgEcho/ViewController.swift
+28 −0 fastlane/Fastfile
+29 −0 fastlane/README.md
+4 −0 release.sh
+0 −2 zlib/include.h
+0 −9 zlib/module.modulemap
2 changes: 1 addition & 1 deletion Carthage/Checkouts/facebook-objc-sdk
4 changes: 2 additions & 2 deletions Sources/ParseLiveQuery.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1013,7 +1013,7 @@
SKIP_INSTALL = YES;
SWIFT_INSTALL_OBJC_HEADER = YES;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 4.2;
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
Expand Down Expand Up @@ -1041,7 +1041,7 @@
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_INSTALL_OBJC_HEADER = YES;
SWIFT_VERSION = 4.2;
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
Expand Down

0 comments on commit 8f70ab5

Please sign in to comment.