Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cli: allow --jitless V8 flag in NODE_OPTIONS #32100

Closed
wants to merge 3 commits into from

Commits on Mar 5, 2020

  1. cli: allow --jitless V8 flag in NODE_OPTIONS

    This work is modeled on nodejs#30094 which allowed
    `--disallow-code-generation-from-strings` in `NODE_OPTIONS`.
    
    The `--jitless` v8 option has been supported since 12.0.0. As a v8 option,
    node automatically picks it up, but there have been a few issues that were
    resolved by simply telling users about the option: nodejs#26758, nodejs#28800.
    
    This PR:
      - allows `--jitless` in `NODE_OPTIONS`
      - documents `--jitless`
      - moves `--experimental-loader=module` to locally restore alphabetical
        order in option documentation
    
    Refs: nodejs#30094
    Refs: nodejs#26758
    Refs: nodejs#28800
    andrewdotn committed Mar 5, 2020
    Configuration menu
    Copy the full SHA
    168fc85 View commit details
    Browse the repository at this point in the history

Commits on Mar 6, 2020

  1. Include stability warning for --jitless

    v8 releases a new stable version roughly [every six weeks][], with the
    schedule corresponding to releases of new chrome versions. v8 maintenance
    of the previous stable version stops immediately, so Node.js minor versions
    that pull in the latest stable v8 may have arbitrary changes.
    
    [every six weeks]: https://v8.dev/docs/release-process
    andrewdotn committed Mar 6, 2020
    Configuration menu
    Copy the full SHA
    a790d2a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fbfa95d View commit details
    Browse the repository at this point in the history