-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* SSE Enhanced Events (#58) * adds enhanced sse event handling # Conflicts: # LaunchDarkly.podspec * moves stream url method out of LDConfig and into LDClientManager * update versions * cleanup 2 static analyzer issues * cleanup hello-ios static analyzer warnings * updates version to 2.11.0 * Updated CHANGELOG * adds date to change log
- Loading branch information
1 parent
dd6a0b7
commit 4c921d9
Showing
125 changed files
with
2,932 additions
and
615 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
github "launchdarkly/ios-eventsource" | ||
github "launchdarkly/ios-eventsource" >= 3.2 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
github "launchdarkly/ios-eventsource" "3.1.2" | ||
github "launchdarkly/ios-eventsource" "3.2.0" |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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
2 changes: 1 addition & 1 deletion
2
Darkly.xcodeproj/xcshareddata/xcschemes/Darkly_watchOS.xcscheme
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// | ||
// LDEvent+EventTypes.h | ||
// Darkly | ||
// | ||
// Created by Mark Pokorny on 2/5/18. | ||
// Copyright © 2018 LaunchDarkly. All rights reserved. | ||
// | ||
|
||
#import <DarklyEventSource/LDEventSource.h> | ||
|
||
extern NSString * const kLDEventTypePing; | ||
extern NSString * const kLDEventTypePut; | ||
extern NSString * const kLDEventTypePatch; | ||
extern NSString * const kLDEventTypeDelete; | ||
|
||
@interface LDEvent (EventTypes) | ||
|
||
@end |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// | ||
// LDEvent+EventTypes.m | ||
// Darkly | ||
// | ||
// Created by Mark Pokorny on 2/5/18. +JMJ | ||
// Copyright © 2018 LaunchDarkly. All rights reserved. | ||
// | ||
|
||
#import "LDEvent+EventTypes.h" | ||
|
||
NSString * const kLDEventTypePing = @"ping"; | ||
NSString * const kLDEventTypePut = @"put"; | ||
NSString * const kLDEventTypePatch = @"patch"; | ||
NSString * const kLDEventTypeDelete = @"delete"; | ||
|
||
@implementation LDEvent (EventTypes) | ||
|
||
@end |
This file contains 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
Oops, something went wrong.