Skip to content

Commit 8f22dec

Browse files
authored
Merge pull request #338 from rollbar/matux/321-bug
Fixed extra data not being sent in payload for custom Swift errors
2 parents 71c1613 + f03b191 commit 8f22dec

File tree

12 files changed

+18
-10
lines changed

12 files changed

+18
-10
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
### 3.2.1
66

7+
- Fixed extra data not being correctly set in the outgoing payload when sending custom Swift errors.
78
- Removed SonarCloud from the project and CI.
89

910
### 3.2.0

Examples/RollbarDemo/RollbarDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Rollbar.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "Rollbar"
3-
s.version = "3.2.0"
3+
s.version = "3.2.1"
44
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
55
s.description = <<-DESC
66
Find, fix, and resolve errors with Rollbar.

RollbarAUL.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "RollbarAUL"
3-
s.version = "3.2.0"
3+
s.version = "3.2.1"
44
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
55
s.description = <<-DESC
66
Find, fix, and resolve errors with Rollbar.

RollbarCocoaLumberjack.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "RollbarCocoaLumberjack"
3-
s.version = "3.2.0"
3+
s.version = "3.2.1"
44
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
55
s.description = <<-DESC
66
Find, fix, and resolve errors with Rollbar.

RollbarCommon.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "RollbarCommon"
3-
s.version = "3.2.0"
3+
s.version = "3.2.1"
44
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
55
s.description = <<-DESC
66
Find, fix, and resolve errors with Rollbar.

RollbarCrash.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "RollbarCrash"
3-
s.version = "3.2.0"
3+
s.version = "3.2.1"
44
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
55
s.description = <<-DESC
66
Find, fix, and resolve errors with Rollbar.

RollbarDeploys.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "RollbarDeploys"
3-
s.version = "3.2.0"
3+
s.version = "3.2.1"
44
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
55
s.description = <<-DESC
66
Find, fix, and resolve errors with Rollbar.

RollbarNotifier.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "RollbarNotifier"
3-
s.version = "3.2.0"
3+
s.version = "3.2.1"
44
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
55
s.description = <<-DESC
66
Find, fix, and resolve errors with Rollbar.

RollbarNotifier/Sources/RollbarNotifier/DTOs/RollbarConfig.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
#pragma mark - constants
1616

17-
static NSString * const NOTIFIER_VERSION = @"3.2.0";
17+
static NSString * const NOTIFIER_VERSION = @"3.2.1";
1818

1919
static NSString * const NOTIFIER_NAME = @"rollbar-apple";
2020

0 commit comments

Comments
 (0)