Skip to content

Commit

Permalink
Merge pull request #216 from WideSpectrumComputing/master
Browse files Browse the repository at this point in the history
feat: resolve #215
  • Loading branch information
akornich authored Nov 6, 2019
2 parents 7683121 + f1751f6 commit be986bc
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 11 deletions.
8 changes: 5 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,13 @@ The change log has moved to this repo's [GitHub Releases Page](https://github.co
depending on what is more appropriate in each case.

## Release Notes
**1.9.1**
- feat: resolve #215: Change client.os element back to client.ios to fix dSYMs application

**1.9.0**
- feat: ref #194: Capture relevant notifier config with every payload.
- feat: ref #205: Reimplement RollbarConfiguration as a Rollbar DTO
- feat: ref #204: Build JSON serializable base for Rollbar DTOs
- feat: resolve #194: Capture relevant notifier config with every payload.
- feat: resolve #205: Reimplement RollbarConfiguration as a Rollbar DTO
- feat: resolve #204: Build JSON serializable base for Rollbar DTOs
- chore: bumped the version up

**1.8.4**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@
CODE_SIGN_IDENTITY = "iPhone Developer";
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 1;
DEBUG_INFORMATION_FORMAT = dwarf;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
GCC_C_LANGUAGE_STANDARD = gnu11;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -359,6 +359,7 @@
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_IDENTITY = "iPhone Developer";
CODE_SIGN_STYLE = Automatic;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
DEVELOPMENT_TEAM = LDX6L68VZJ;
INFOPLIST_FILE = KnobShowcase/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
Expand Down
2 changes: 1 addition & 1 deletion Rollbar.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|

s.version = "1.9.0"
s.version = "1.9.1"
s.name = "Rollbar"
s.summary = "Objective-C library for crash reporting and logging with Rollbar. It works on iOS and macOS."
s.description = <<-DESC
Expand Down
4 changes: 2 additions & 2 deletions Rollbar.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -3911,7 +3911,7 @@
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGN_INJECT_BASE_ENTITLEMENTS = NO;
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 1.9.0;
CURRENT_PROJECT_VERSION = 1.9.1;
DEVELOPMENT_TEAM = LDX6L68VZJ;
ENABLE_BITCODE = YES;
ENABLE_STRICT_OBJC_MSGSEND = YES;
Expand Down Expand Up @@ -3972,7 +3972,7 @@
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGN_INJECT_BASE_ENTITLEMENTS = NO;
COPY_PHASE_STRIP = YES;
CURRENT_PROJECT_VERSION = 1.9.0;
CURRENT_PROJECT_VERSION = 1.9.1;
DEVELOPMENT_TEAM = LDX6L68VZJ;
ENABLE_BITCODE = YES;
ENABLE_NS_ASSERTIONS = NO;
Expand Down
2 changes: 1 addition & 1 deletion Rollbar/DTOs/RollbarConfig.m
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

#pragma mark - constants

static NSString * const NOTIFIER_VERSION = @"1.9.0";
static NSString * const NOTIFIER_VERSION = @"1.9.1";

#define NOTIFIER_NAME_PREFIX = @"rollbar-";
#if TARGET_OS_IPHONE
Expand Down
6 changes: 3 additions & 3 deletions Rollbar/RollbarNotifier.m
Original file line number Diff line number Diff line change
Expand Up @@ -381,15 +381,15 @@ - (NSDictionary*)buildClientData {

if (self.configuration.captureIp == CaptureIpFull) {
return @{@"timestamp": timestamp,
@"os": osData,
@"ios": osData,
@"user_ip": @"$remote_ip"};
} else if (self.configuration.captureIp == CaptureIpAnonymize) {
return @{@"timestamp": timestamp,
@"os": osData,
@"ios": osData,
@"user_ip": @"$remote_ip_anonymize"};
} else {
return @{@"timestamp": timestamp,
@"os": osData
@"ios": osData
};
}
}
Expand Down

0 comments on commit be986bc

Please sign in to comment.