Skip to content

Release:v13.1.1 #479

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jun 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## [Unreleased](https://github.com/Instabug/Instabug-Flutter/compare/v13.0.0...dev)
## [13.1.1](https://github.com/Instabug/Instabug-Flutter/compare/v13.0.0...dev) (Jun,11 2024)

### Added
- Add support for passing a grouping fingerprint, error level, and user attributes to the `CrashReporting.reportHandledCrash` non-fatals API ([#461](https://github.com/Instabug/Instabug-Flutter/pull/461)).
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'com.instabug.flutter'
version '13.0.0'
version '13.1.1'

buildscript {
repositories {
Expand Down
6 changes: 3 additions & 3 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PODS:
- Flutter (1.0.0)
- Instabug (13.1.0)
- instabug_flutter (13.0.0):
- instabug_flutter (13.1.1):
- Flutter
- Instabug (= 13.1.0)
- OCMock (3.6)
Expand All @@ -25,9 +25,9 @@ EXTERNAL SOURCES:
SPEC CHECKSUMS:
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
Instabug: 3d55eff7ea55adf22df404908a2b954b8b585c29
instabug_flutter: 8b86ee14635a4b0ebfb4f760a108c7b0606c47e4
instabug_flutter: b9e34b14992d267f676f925de884da7eeae5e0ce
OCMock: 5ea90566be239f179ba766fd9fbae5885040b992

PODFILE CHECKSUM: 85507f53c31d3e834227ea88986033537c7c78b9
PODFILE CHECKSUM: a8bb1cf031fc5abb4046443c6fa65330087bf638

COCOAPODS: 1.13.0
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ packages:
path: ".."
relative: true
source: path
version: "12.7.0"
version: "13.1.1"
leak_tracker:
dependency: transitive
description:
Expand Down
6 changes: 3 additions & 3 deletions ios/Classes/Modules/CrashReportingApi.m
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ - (void)sendJsonCrash:(NSString *)jsonCrash isHandled:(NSNumber *)isHandled erro
options:NSJSONReadingMutableContainers
error:&jsonError];
BOOL isNonFatal = [isHandled boolValue];

if (isNonFatal) {
[IBGCrashReporting cp_reportNonFatalCrashWithStackTrace:stackTrace
level:IBGNonFatalLevelError groupingString:nil userAttributes:nil
];
} else {
[IBGCrashReporting cp_reportFatalCrashWithStackTrace:stackTrace ];

}
}

Expand All @@ -44,6 +44,6 @@ - (void)sendNonFatalErrorJsonCrash:(nonnull NSString *)jsonCrash userAttributes:
level: level
groupingString:fingerprint
userAttributes:userAttributes];

}
@end
2 changes: 1 addition & 1 deletion ios/instabug_flutter.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'instabug_flutter'
s.version = '13.0.0'
s.version = '13.1.1'
s.summary = 'Flutter plugin for integrating the Instabug SDK.'
s.author = 'Instabug'
s.homepage = 'https://www.instabug.com/platforms/flutter'
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: instabug_flutter
version: 13.0.0
version: 13.1.1
description: >-
Instabug empowers mobile teams to monitor, prioritize, and debug
performance and stability issues throughout the app development lifecycle.
Expand Down