Skip to content
This repository was archived by the owner on Mar 7, 2025. It is now read-only.

Commit 2081d99

Browse files
committed
Release v1.0.0-alpha10
1 parent 34302f5 commit 2081d99

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Change Log
22

3+
**1.0.0-alpha10**
4+
- Change `setCaptureIp:` to `setCaptureIpType:`
5+
36
**1.0.0-alpha9**
47
- Introduce the `CaptureIp` configuration setting. `CaptureIp` specifies the level of IP information
58
to gather about the client along with items. This uses the enum `CaptureIpType` with the levels:

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Be sure to remember to `pod install` after changing your Podfile!
2929

3030
### Without Cocoapods
3131

32-
1. Download the [Rollbar framework](https://github.com/rollbar/rollbar-ios/releases/download/v1.0.0-alpha9/Rollbar.zip).
32+
1. Download the [Rollbar framework](https://github.com/rollbar/rollbar-ios/releases/download/v1.0.0-alpha10/Rollbar.zip).
3333

3434
2. Extract the Rollbar directory in the zip file to your Xcode project directory.
3535

@@ -513,12 +513,12 @@ typedef NS_ENUM(NSUInteger, CaptureIpType) {
513513
CaptureIpNone
514514
};
515515

516-
- (void)setCaptureIp:(CaptureIpType)captureIp;
516+
- (void)setCaptureIpType:(CaptureIpType)captureIp;
517517
```
518518
519519
*Example*
520520
```objc
521-
[Rollbar.currentConfiguration setCaptureIp:CaptureIpAnonymize];
521+
[Rollbar.currentConfiguration setCaptureIpType:CaptureIpAnonymize];
522522
```
523523

524524
`CaptureIpFull` is the default behaviour which attempts to capture the IP address on the backend

Rollbar/RollbarConfiguration.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ typedef NS_ENUM(NSUInteger, CaptureIpType) {
3939
- (void)setRequestId:(NSString*)requestId;
4040
- (void)setCaptureLogAsTelemetryData:(BOOL)captureLog;
4141
- (void)setCaptureConnectivityAsTelemetryData:(BOOL)captureConnectivity;
42-
- (void)setCaptureIp:(CaptureIpType)captureIp;
42+
- (void)setCaptureIpType:(CaptureIpType)captureIp;
4343

4444
- (NSDictionary *)customData;
4545

Rollbar/RollbarConfiguration.m

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
#import "RollbarTelemetry.h"
1313

1414
static NSString *NOTIFIER_NAME = @"rollbar-ios";
15-
static NSString *NOTIFIER_VERSION = @"1.0.0-alpha9";
15+
static NSString *NOTIFIER_VERSION = @"1.0.0-alpha10";
1616
static NSString *FRAMEWORK = @"ios";
1717
static NSString *CONFIGURATION_FILENAME = @"rollbar.config";
1818
static NSString *DEFAULT_ENDPOINT = @"https://api.rollbar.com/api/1/items/";
@@ -151,7 +151,7 @@ - (void)setCaptureConnectivityAsTelemetryData:(BOOL)captureConnectivity {
151151
self.shouldCaptureConnectivity = captureConnectivity;
152152
}
153153

154-
- (void)setCaptureIp:(CaptureIpType)captureIp {
154+
- (void)setCaptureIpType:(CaptureIpType)captureIp {
155155
self.captureIp = captureIp;
156156
}
157157

0 commit comments

Comments
 (0)