Skip to content

Commit

Permalink
Merge pull request #119 from WideSpectrumComputing/master
Browse files Browse the repository at this point in the history
Person information omitted in payloads for some use cases
  • Loading branch information
akornich authored Feb 16, 2022
2 parents 34949d2 + 7898b33 commit 3a9e72e
Show file tree
Hide file tree
Showing 53 changed files with 205 additions and 356 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ The change log has moved to this repo's [GitHub Releases Page](https://github.co

## Release Notes

**2.0.2
- fix: resolve #110 - Xcode autocomplete for Swift expects person.id, but codebase expects person.ID
- chore: resolve #118 - Remove source file header comments from RollbarCommon

**2.0.1
- moving from Beta to GA

Expand Down
2 changes: 1 addition & 1 deletion RollbarAUL.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

Pod::Spec.new do |s|

s.version = "2.0.1"
s.version = "2.0.2"
s.name = "RollbarAUL"
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion RollbarCommon.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

Pod::Spec.new do |s|

s.version = "2.0.1"
s.version = "2.0.2"
s.name = "RollbarCommon"
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
s.description = <<-DESC
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
//
// RollbarDTO+CustomData.m
// Rollbar
//
// Created by Andrey Kornich on 2019-10-09.
// Copyright © 2019 Rollbar. All rights reserved.
//

#import "RollbarDTO+CustomData.h"

@implementation RollbarDTO (CustomData)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
//
// RollbarDTO+Protected.m
// Rollbar
//
// Created by Andrey Kornich on 2019-10-10.
// Copyright © 2019 Rollbar. All rights reserved.
//

#import "RollbarDTO+Protected.h"

@implementation RollbarDTO (Protected)
Expand Down
10 changes: 0 additions & 10 deletions RollbarCommon/Sources/RollbarCommon/DTOs/RollbarDTO.m
Original file line number Diff line number Diff line change
@@ -1,17 +1,7 @@
//
// RollbarDTO.m
// Rollbar
//
// Created by Andrey Kornich on 2019-10-08.
// Copyright © 2019 Rollbar. All rights reserved.
//

#import "RollbarDTO.h"
#import "RollbarSdkLog.h"
#import "NSJSONSerialization+Rollbar.h"

//#import <Foundation/NSObjCRuntime.h>
//#import "objc/runtime.h"
@import ObjectiveC.runtime;

@implementation RollbarDTO {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
//
// RollbarBuilder.h
//
//
// Created by Andrey Kornich on 2020-10-01.
//

@import Foundation;

NS_ASSUME_NONNULL_BEGIN
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
//
// RollbarBuilder.m
//
//
// Created by Andrey Kornich on 2020-10-01.
//

#import "RollbarBuilder.h"

@implementation RollbarEntity
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
//
// RollbarPrototype.h
// Rollbar
//
// Created by Andrey Kornich on 2019-10-09.
// Copyright © 2020 Rollbar. All rights reserved.
//

#ifndef RollbarPrototype_h
#define RollbarPrototype_h

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
//
// RollbarReceptionist.m
//
//
// Created by Andrey Kornich on 2020-10-08.
//

#import "RollbarReceptionist.h"

@implementation RollbarReceptionist
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
//
// RollbarTaskDispatcher.m
//
//
// Created by Andrey Kornich on 2020-10-09.
//

#import "RollbarTaskDispatcher.h"

@implementation RollbarTaskDispatcher
Expand Down
7 changes: 0 additions & 7 deletions RollbarCommon/Sources/RollbarCommon/NSDictionary+Rollbar.m
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
//
// MyClass.m
//
//
// Created by Andrey Kornich on 2020-09-30.
//

#import "NSDictionary+Rollbar.h"
#import "RollbarSdkLog.h"

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
// Copyright © 2018 Rollbar. All rights reserved.

#import "NSJSONSerialization+Rollbar.h"
#import "RollbarSdkLog.h"

Expand Down
7 changes: 0 additions & 7 deletions RollbarCommon/Sources/RollbarCommon/NSObject+Rollbar.m
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
//
// NSObject+Rollbar.m
//
//
// Created by Andrey Kornich on 2021-04-23.
//

#import "NSObject+Rollbar.h"

@implementation NSObject (Rollbar)
Expand Down
8 changes: 0 additions & 8 deletions RollbarCommon/Sources/RollbarCommon/RollbarCachesDirectory.m
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
//
// RollbarCachesDirectory.m
// Rollbar
//
// Created by Danny Nguyen on 3/12/19.
// Copyright © 2019 Rollbar. All rights reserved.
//

#import "RollbarCachesDirectory.h"

@implementation RollbarCachesDirectory
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
//
// RollbarCrashCollectorBase.m
//
//
// Created by Andrey Kornich on 2020-11-02.
//

#import "RollbarCrashCollectorBase.h"
#import "RollbarSdkLog.h"

Expand Down
7 changes: 0 additions & 7 deletions RollbarCommon/Sources/RollbarCommon/RollbarCrashReportData.m
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
//
// RollbarCrashReportData.m
//
//
// Created by Andrey Kornich on 2020-10-27.
//

#import "RollbarCrashReportData.h"

@implementation RollbarCrashReportData
Expand Down
7 changes: 0 additions & 7 deletions RollbarCommon/Sources/RollbarCommon/RollbarCrashReportUtil.m
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
//
// RollbarCrashReportUtil.m
//
//
// Created by Andrey Kornich on 2021-01-04.
//

#import "RollbarCrashReportUtil.h"

typedef NS_ENUM(NSUInteger, CrashReportBlock) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
//
// RollbarHostingProcessUtil.m
//
//
// Created by Andrey Kornich on 2021-05-05.
//

#import "RollbarHostingProcessUtil.h"

@implementation RollbarHostingProcessUtil
Expand Down
7 changes: 0 additions & 7 deletions RollbarCommon/Sources/RollbarCommon/RollbarPredicateBuilder.m
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
//
// RollbarPredicateBuilder.m
//
//
// Created by Andrey Kornich on 2021-04-29.
//

#import "RollbarPredicateBuilder.h"

@implementation RollbarPredicateBuilder
Expand Down
2 changes: 0 additions & 2 deletions RollbarCommon/Sources/RollbarCommon/RollbarSdkLog.m
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
// Copyright (c) 2018 Rollbar Inc. All rights reserved.

#import "RollbarSdkLog.h"

void RollbarSdkLog(NSString *format, ...) {
Expand Down
8 changes: 0 additions & 8 deletions RollbarCommon/Sources/RollbarCommon/RollbarTriStateFlag.m
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
//
// RollbarTriStateFlag.m
// Rollbar
//
// Created by Andrey Kornich on 2019-12-02.
// Copyright © 2019 Rollbar. All rights reserved.
//

#import "RollbarTriStateFlag.h"

@implementation RollbarTriStateFlagUtil
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
//
// MyClass.h
//
//
// Created by Andrey Kornich on 2020-09-30.
//

#ifndef NSDictionary_Rollbar_h
#define NSDictionary_Rollbar_h

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
//
// NSObject+Rollbar.h
//
//
// Created by Andrey Kornich on 2021-04-23.
//

#ifndef NSObject_Rollbar_h
#define NSObject_Rollbar_h

Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
//
// NSString+CachesDirectory.h
// Rollbar
//
// Created by Danny Nguyen on 3/12/19.
// Copyright © 2019 Rollbar. All rights reserved.
//

#ifndef RollbarCachesDirectory_h
#define RollbarCachesDirectory_h

Expand Down
Original file line number Diff line number Diff line change
@@ -1,21 +1,15 @@
//
// RollbarCrashCollectorBase.h
//
//
// Created by Andrey Kornich on 2020-11-02.
//

#ifndef RollbarCrashCollectorBase_h
#define RollbarCrashCollectorBase_h

#import "RollbarCrashCollectorProtocol.h"

@import Foundation;

#import "RollbarCrashCollectorProtocol.h"
@protocol RollbarCrashCollectorObserver;

NS_ASSUME_NONNULL_BEGIN

/// Abstract implementation of the RollbarCrashCollector protocol
/// Abstract implementation of the RollbarCrashCollector protocol
@interface RollbarCrashCollectorBase : NSObject<RollbarCrashCollector> {
@private
id<RollbarCrashCollectorObserver> _observer;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
//
// RollbarCrashCollectorProtocol.h
//
//
// Created by Andrey Kornich on 2020-10-27.
//

#ifndef RollbarCrashCollectorProtocol_h
#define RollbarCrashCollectorProtocol_h

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
//
// RollbarCrashReportData.h
//
//
// Created by Andrey Kornich on 2020-10-27.
//

#ifndef RollbarCrashReportData_h
#define RollbarCrashReportData_h

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
//
// RollbarCrashReportUtil.h
//
//
// Created by Andrey Kornich on 2021-01-04.
//

#ifndef RollbarCrashReportUtil_h
#define RollbarCrashReportUtil_h

Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
//
// RollbarDTO+CustomData.h
// Rollbar
//
// Created by Andrey Kornich on 2019-10-09.
// Copyright © 2019 Rollbar. All rights reserved.
//

#ifndef RollbarDTO_CustomData_h
#define RollbarDTO_CustomData_h

Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
//
// RollbarDTO+Protected.h
// Rollbar
//
// Created by Andrey Kornich on 2019-10-10.
// Copyright © 2019 Rollbar. All rights reserved.
//

#ifndef RollbarDTO_Protected_h
#define RollbarDTO_Protected_h

Expand Down
Loading

0 comments on commit 3a9e72e

Please sign in to comment.