Skip to content

Commit 0590df8

Browse files
Merge pull request #436 from RodrigoSMarques/master
PR Branch MASTER into BUGFIX
2 parents 9e9d0cd + 48d0b93 commit 0590df8

File tree

29 files changed

+466
-384
lines changed

29 files changed

+466
-384
lines changed

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
---
2+
assignees: []
3+
body:
4+
-
5+
attributes:
6+
description: "What is the problem? A clear and concise description of what the bug is."
7+
label: "Describe the bug"
8+
placeholder: "Tell us what you see!"
9+
id: description
10+
type: textarea
11+
validations:
12+
required: true
13+
-
14+
attributes:
15+
description: "Please provide as much step-by-step detail as possible including logs, stack traces, and uncaught exceptions."
16+
label: "Steps to reproduce"
17+
value: |
18+
1. Go to '...'
19+
2. Click on '....'
20+
3. See error
21+
id: steps
22+
type: textarea
23+
validations:
24+
required: true
25+
-
26+
attributes:
27+
description: "What did you expect to happen?"
28+
label: "A clear and concise description of what you expected to happen."
29+
id: expected
30+
type: textarea
31+
validations:
32+
required: true
33+
-
34+
attributes:
35+
description: "What version of plugin are you seeing this issue on?"
36+
label: "Plugin Version"
37+
placeholder: "8.6.0"
38+
id: sdk-version
39+
type: input
40+
validations:
41+
required: true
42+
-
43+
attributes:
44+
description: "What version of Flutter are you seeing this issue on?"
45+
label: "Flutter Version"
46+
placeholder: "3.32.7 on channel stable"
47+
id: flutter-sdk-version
48+
type: input
49+
validations:
50+
required: true
51+
-
52+
attributes:
53+
description: "What platform/version are you seeing this bug on?"
54+
label: "Android/iOS/Web"
55+
placeholder: "Android 15, iOS 18, Web"
56+
id: platform
57+
type: input
58+
validations:
59+
required: true
60+
-
61+
attributes:
62+
description: "What devices or emulators are you seeing this bug on?"
63+
label: Make and Model
64+
placeholder: "Samsung S21, Iphone 16, Safari, Chrome"
65+
id: device
66+
type: input
67+
validations:
68+
required: true
69+
-
70+
attributes:
71+
description: "Anything else that might be relevant for troubleshooting this bug. Any screenshots, videos or logs that show the issue are very helpful."
72+
label: "Additional Information/Context"
73+
id: context
74+
type: textarea
75+
validations:
76+
required: false
77+
78+
description: "Found a bug in the Flutter Branch SDK? File it here."
79+
labels:
80+
- bug
81+
- needs-triage
82+
name: "🐞 Bug report"
83+
title: "(short issue description)"

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 43 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: "IOS SDK Issues"
4+
url: https://github.com/BranchMetrics/ios-branch-deep-linking-attribution/issues
5+
about: Branch iOS SDK issues
6+
- name: "Android SDK Issues"
7+
url: https://github.com/BranchMetrics/android-branch-deep-linking-attribution/issues
8+
about: Branch Android SDK issues
9+
- name: "Branch Support"
10+
url: https://help.branch.io/using-branch/page/submit-a-ticket
11+
about: If you are having general trouble with Branch SDK (not Flutter Plugin), please submit a ticket to Branch Support or open an issue in the platform repository
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
name: 🚀 Feature Request
3+
description: Suggest an idea for this project
4+
title: "(short issue description)"
5+
labels: [feature-request, needs-triage]
6+
assignees: []
7+
body:
8+
- type: textarea
9+
id: description
10+
attributes:
11+
label: Describe the feature
12+
description: A clear and concise description of the feature you are proposing.
13+
validations:
14+
required: true
15+
- type: textarea
16+
id: solution
17+
attributes:
18+
label: Describe the solution you'd like
19+
description: A clear and concise description of the solution
20+
validations:
21+
required: true
22+
- type: dropdown
23+
id: contributions
24+
attributes:
25+
label: Can you submit a pull request?
26+
description: Pull requests are welcome! If you would like to help us add this feature, please check our contributions guidelines
27+
options:
28+
- 'Yes'
29+
- 'No'
30+
validations:
31+
required: true

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 40 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,24 @@
1+
## 8.6.0
2+
### 🔧 Native SDK Updates
3+
* Updated included Branch Android SDK to 5.19.0 - [Android Version History](https://github.com/BranchMetrics/android-branch-deep-linking-attribution/releases)
4+
5+
### 🐛 Bug Fixes
6+
* Fix issue #442: [Web] getShortUrl() Future never completes on alias conflict (err arrives as JS Error, not String)
7+
8+
### 🎉 Features
9+
* Reviewing the documentation for the `FlutterBranchSdk.validateSDKIntegration()` method
10+
* Improved error handling in Flutter Web
11+
12+
## 8.5.0
13+
### 🔧 Native SDK Updates
14+
* Updated included iOS SDK to 3.12.0 - [iOS Version History](https://github.com/BranchMetrics/ios-branch-deep-linking-attribution/releases)
15+
* Updated included Branch Android SDK to 5.18.0 - [Android Version History](https://github.com/BranchMetrics/android-branch-deep-linking-attribution/releases)
16+
117
## 8.4.1
218
### 🐛 Bug Fixes
319
* Fix issue #423: setRequestMetadata doesn't populate the key value pairs in the event request as expected
420

521
## 8.4.0
6-
### Native SDK Updates
722
### 🔧 Native SDK Updates
823
* Updated included iOS SDK to 3.9.0 - [iOS Version History](https://github.com/BranchMetrics/ios-branch-deep-linking-attribution/releases)
924

0 commit comments

Comments
 (0)