Skip to content

Commit

Permalink
Add missing import and add CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
coryvirok committed Feb 2, 2015
1 parent 99a640a commit d8d45a5
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 1 deletion.
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Change Log

**0.1.3**
- Optionally enable/disable uncaught exception reporting, ([pr#8](https://github.com/rollbar/rollbar-ios/pull/8)).
- Added ability to send custom data along with errors/log messages, ([pr#9](https://github.com/rollbar/rollbar-ios/pull/9)).

**0.1.2**
- Rename reachability constant to fix linker error if you use [https://github.com/tonymillion/Reachability](https://github.com/tonymillion/Reachability) in your app.

**0.1.1**
- Fixed bug that would cause a crash on load if the internal file state somehow became corrupted.

**0.1.0**
- Added internet reachability monitoring so that items aren't attempted to be sent while the phone is not connected to the network.
- Removed log messages from release mode.

**0.0.4**
- Include bundle identifier in item payloads. This will be required for the symbolication process going forward, please update your dsym upload build phase script to the latest version seen [here](https://github.com/rollbar/rollbar-ios/tree/v0.0.4/upload_dsym.py).

**0.0.3**
- Configuration is now persisted so that crashes are reported with the proper person data on startup.
- New item saving and batching system with retries. Items are saved to disk first, while a separate thread monitors the disk for items to send. Queued items will periodically be batched together and sent by this thread, with failed attempts retried a few times in case of network reachability issues.
- Device code now tracked as the Rollbar backend expects it to be, fixing "Device/OS" graphs.

**0.0.2**
- Ability to set `person` data.

**0.0.1**
- Initial release.
- First version that reports all crashes and allows reporting arbitrary log messages.

3 changes: 2 additions & 1 deletion Rollbar/RollbarFileReader.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// Based off of DDFileReader from http://stackoverflow.com/a/8027618

#import <Foundation/Foundation.h>

@interface RollbarFileReader : NSObject {
NSString * filePath;
Expand All @@ -20,4 +21,4 @@

- (void) enumerateLinesUsingBlock:(void(^)(NSString*, NSUInteger, BOOL*))block;

@end
@end

0 comments on commit d8d45a5

Please sign in to comment.