You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: Report an issue or discrepancy encountered during migration from AWS SDK JS v2 to v3
4
+
title: "MIGRATION ISSUE: [Your Title Here]"
5
+
labels: [needs-triage, v2-v3-inconsistency]
6
+
assignees: []
7
+
8
+
body:
9
+
- type: markdown
10
+
attributes:
11
+
value: |
12
+
## Migration Issue from AWS SDK JS v2 to v3
13
+
Thank you for taking the time to report your migration issue. To help us address your concerns effectively, please provide as much detail as possible.
14
+
15
+
- type: checkboxes
16
+
attributes:
17
+
label: Pre-Migration Checklist
18
+
options:
19
+
- label: I've read the [Migration Guide](https://docs.aws.amazon.com/sdk-for-javascript/v3/developer-guide/migrating-to-v3.html).
20
+
required: true
21
+
- label: I've reviewed the upgrading notes and major version differences mentioned in [`UPGRADING.md`](https://github.com/aws/aws-sdk-js-v3/blob/main/UPGRADING.md).
22
+
required: true
23
+
- label: I've checked [AWS Forums](https://forums.aws.amazon.com) and [StackOverflow](https://stackoverflow.com/questions/tagged/aws-sdk-js) for similar migration issues.
24
+
required: true
25
+
26
+
- type: dropdown
27
+
id: runtime
28
+
attributes:
29
+
label: Which JavaScript Runtime is this issue in?
30
+
options:
31
+
- Node.js (includes AWS Lambda)
32
+
- Browser
33
+
- React Native
34
+
validations:
35
+
required: true
36
+
37
+
- type: checkboxes
38
+
id: lambda-use
39
+
attributes:
40
+
label: AWS Lambda Usage
41
+
description: Are you running your application on AWS Lambda?
42
+
options:
43
+
- label: Yes, my application is running on AWS Lambda.
44
+
- label: No, my application is not running on AWS Lambda.
45
+
validations:
46
+
required: true
47
+
48
+
- type: textarea
49
+
id: migration-issue-description
50
+
attributes:
51
+
label: Describe the Migration Issue
52
+
description: What specific problem or discrepancy are you encountering during migration?
53
+
placeholder: A clear and concise description of the issue.
54
+
validations:
55
+
required: true
56
+
57
+
- type: textarea
58
+
id: code-comparison
59
+
attributes:
60
+
label: Code Comparison
61
+
description: |
62
+
Provide code snippets comparing v2 and v3 implementations.
63
+
- V2 Code Snippet:
64
+
- V3 Code Snippet:
65
+
Please ensure to remove any sensitive information.
66
+
validations:
67
+
required: false
68
+
69
+
- type: textarea
70
+
id: observed-differences
71
+
attributes:
72
+
label: Observed Differences/Errors
73
+
description: |
74
+
Detail any errors, behavioral differences, or unexpected outcomes you are observing.
75
+
Include error messages, stack traces, and any logs relevant to the issue.
76
+
validations:
77
+
required: true
78
+
79
+
- type: textarea
80
+
id: additional-context
81
+
attributes:
82
+
label: Additional Context
83
+
description: |
84
+
Provide any additional information that may be relevant to understanding your migration issue.
85
+
This can include dependencies, environment setup, specific AWS services involved, etc.
0 commit comments