...

Text file src/github.com/aws/aws-sdk-go-v2/.github/ISSUE_TEMPLATE/migration-issue.yml

Documentation: github.com/aws/aws-sdk-go-v2/.github/ISSUE_TEMPLATE

     1---
     2name: 🔀 Migration Issue: AWS SDK Go v1 to v2
     3description: Report an issue or discrepancy encountered during migration from AWS SDK Go v1 to v2
     4title: "MIGRATION ISSUE: (short issue description)"
     5labels: [needs-triage, v1-v2-inconsistency]
     6assignees: []
     7
     8body:
     9  - type: markdown
    10    attributes:
    11      value: |
    12        ## Migration Issue from AWS SDK Go v1 to v2
    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://aws.github.io/aws-sdk-go-v2/docs/migrating/).
    20          required: true
    21        - label: I've checked [AWS Forums](https://forums.aws.amazon.com) and [StackOverflow](https://stackoverflow.com/questions/tagged/aws-sdk-go) for similar migration issues.
    22          required: true
    23
    24  - type: input
    25    id: go-version
    26    attributes:
    27      label: Go Version Used
    28      description: Please specify the version of Go you are using.
    29      placeholder: e.g., Go 1.20, Go 1.21
    30    validations:
    31      required: true
    32
    33  - type: textarea
    34    id: migration-issue-description
    35    attributes:
    36      label: Describe the Migration Issue
    37      description: What specific problem or discrepancy are you encountering during migration?
    38      placeholder: A clear and concise description of the issue.
    39    validations:
    40      required: true
    41
    42  - type: textarea
    43    id: code-comparison
    44    attributes:
    45      label: Code Comparison
    46      description: |
    47        Provide code snippets comparing v1 and v2 implementations.
    48        - V1 Code Snippet:
    49        - V2 Code Snippet:
    50        Please ensure to remove any sensitive information.
    51    validations:
    52      required: false
    53
    54  - type: textarea
    55    id: observed-differences
    56    attributes:
    57      label: Observed Differences/Errors
    58      description: |
    59        Detail any errors, behavioral differences, or unexpected outcomes you are observing.
    60        Include error messages, stack traces, and any logs relevant to the issue.
    61    validations:
    62      required: true
    63
    64  - type: textarea
    65    id: additional-context
    66    attributes:
    67      label: Additional Context
    68      description: |
    69        Provide any additional information that may be relevant to understanding your migration issue.
    70        This can include dependencies, environment setup, specific AWS services involved, etc.
    71    validations:
    72      required: false

View as plain text