Skip to content

Commit

Permalink
Release v1.0.0-alpha9
Browse files Browse the repository at this point in the history
  • Loading branch information
rokob committed May 16, 2018
1 parent d415ecc commit 34302f5
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Change Log

**1.0.0-alpha9**
- Introduce the `CaptureIp` configuration setting. `CaptureIp` specifies the level of IP information
to gather about the client along with items. This uses the enum `CaptureIpType` with the levels:
`CaptureIpFull`, `CaptureIpAnonymize`, and `CaptureIpNone`.

`CaptureIpFull` is the default behaviour which attempts to capture the IP address on the backend
based on the IP address of the client used to POST the item.
`CaptureIpAnonymize` will attempt to capture the IP address and semi-anonymize it by masking it
the least significant bits.
`CaptureIpNone` will turn off attempts to capture the IP address.


**0.2.0**
- Changes to better support bitcode in apps, ([pr#29](https://github.com/rollbar/rollbar-ios/pull/29)).
- Add a version of PLCrashReporter compiled with bitcode support and a Rollbar prefix
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Be sure to remember to `pod install` after changing your Podfile!

### Without Cocoapods

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

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

Expand Down
2 changes: 1 addition & 1 deletion Rollbar/RollbarConfiguration.m
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#import "RollbarTelemetry.h"

static NSString *NOTIFIER_NAME = @"rollbar-ios";
static NSString *NOTIFIER_VERSION = @"1.0.0-alpha8";
static NSString *NOTIFIER_VERSION = @"1.0.0-alpha9";
static NSString *FRAMEWORK = @"ios";
static NSString *CONFIGURATION_FILENAME = @"rollbar.config";
static NSString *DEFAULT_ENDPOINT = @"https://api.rollbar.com/api/1/items/";
Expand Down

0 comments on commit 34302f5

Please sign in to comment.