Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: stefanbuck/github-issue-parser
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.2.4
Choose a base ref
...
head repository: stefanbuck/github-issue-parser
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.2.5
Choose a head ref
  • 2 commits
  • 16 files changed
  • 3 contributors

Commits on Apr 22, 2026

  1. fix: improve body parsing logic (#72)

    Current body parsing logic with trim() + split("###") is too fragile and
    pose problems with some body that contains case with ### in the middle
    of the line or case with codeblock ``` section.
    
    These case will cause the script to parse these as separate section and
    produce wrong outputs and in some case even prints error assuming things
    are checkbox and errors out on the concat function.
    
    To make the parsing logic more solid, implement a dedicated function and
    parse with this logic:
    - We split the body for "\n"
    - We ignore codeblock ``` section
    - We check "###" only at the start of the line
    - We check for "### " (with the space included) as that is the correct
      section Github issue template expects.
    
    With the following change case like:
    ```
    root@OpenWrt:~# cat /boot/config.txt
    ```
    
    Are correctly parsed as all part of a single section instead of being
    wrongly treated as different empty sections.
    
    ---------
    
    Signed-off-by: Christian Marangi <[email protected]>
    Co-authored-by: Gregor Martynus <[email protected]>
    Ansuel and gr2m authored Apr 22, 2026
    Configuration menu
    Copy the full SHA
    cf55537 View commit details
    Browse the repository at this point in the history
  2. build(release): 3.2.5 [skip ci]

    ## [3.2.5](v3.2.4...v3.2.5) (2026-04-22)
    
    ### Bug Fixes
    
    * improve body parsing logic ([#72](#72)) ([cf55537](cf55537))
    semantic-release-bot committed Apr 22, 2026
    Configuration menu
    Copy the full SHA
    cb6e971 View commit details
    Browse the repository at this point in the history
Loading