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: quickjs-ng/quickjs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.12.0
Choose a base ref
...
head repository: quickjs-ng/quickjs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.12.1
Choose a head ref
  • 5 commits
  • 12 files changed
  • 3 contributors

Commits on Feb 10, 2026

  1. Don't set -Werror by default (#1340)

    It's annoying for downstream users when they don't use the exact same
    compiler as we do because any random new (or old) compiler warning
    breaks the build.
    
    Only set the flag on CI or when explicitly requested with the new
    QJS_BUILD_WERROR cmake option.
    
    Fixes: #1339
    bnoordhuis authored Feb 10, 2026
    Configuration menu
    Copy the full SHA
    314c179 View commit details
    Browse the repository at this point in the history
  2. Fix C23 -Wdiscarded-qualifiers compiler warning (#1338)

    The return type of strrchr depends on the type of the first argument in
    C23. Not that quickjs-ng is a C23 project at this time but it's easy to
    fix.
    
    Fixes: #1333
    bnoordhuis authored Feb 10, 2026
    Configuration menu
    Copy the full SHA
    fb872c2 View commit details
    Browse the repository at this point in the history

Commits on Feb 11, 2026

  1. Make compiling regular expressions zero copy (#1342)

    This is noticeable when compiling large regular expressions when there
    is a memory limit in effect: lre_compile succeeds but subsequently
    trying to copy its output to a new string fails.
    
    The new indirect string kind will likely be useful in more places.
    bnoordhuis authored Feb 11, 2026
    Configuration menu
    Copy the full SHA
    5beca15 View commit details
    Browse the repository at this point in the history

Commits on Feb 12, 2026

  1. Configuration menu
    Copy the full SHA
    0285c15 View commit details
    Browse the repository at this point in the history
  2. Set version to 0.12.1

    saghul committed Feb 12, 2026
    Configuration menu
    Copy the full SHA
    58bdcf0 View commit details
    Browse the repository at this point in the history
Loading