Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.
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: nodejs/node-v0.x-archive
base: ab518e883168
Choose a base ref
...
head repository: nodejs/node-v0.x-archive
compare: f8d81222e828
Choose a head ref
  • 7 commits
  • 13 files changed
  • 4 contributors

Commits on Apr 30, 2013

  1. doc: Fix require.extensions documentation

    1. The stability index must come first, or it messes up the markdown
    2. require.extensions is an Object, not an Array.
    
    Close #5387
    isaacs committed Apr 30, 2013
    Copy the full SHA
    dda7b40 View commit details
    Browse the repository at this point in the history

Commits on May 1, 2013

  1. Revert "deps: downgrade openssl to v1.0.0f"

    After much investigation it turns out that the affected servers are
    buggy.  user-service.condenastdigital.com:443 in particular seems to
    reject large TLS handshake records. Cutting down the number of
    advertised ciphers or disabling SNI fixes the issue.
    
    Similarly, passing { secureOptions: constants.SSL_OP_NO_TLSv1_2 }
    seems to fix most connection issues with IIS servers.
    
    Having to work around buggy servers is annoying for our users but not
    a reason to downgrade OpenSSL. Therefore, revert it.
    
    This reverts commit 4fdb8ac.
    bnoordhuis committed May 1, 2013
    Copy the full SHA
    2cf7e5d View commit details
    Browse the repository at this point in the history

Commits on May 2, 2013

  1. debugger: breakpoints in scripts not loaded yet

    When developer calls setBreakpoint with an unknown script name,
    we convert the script name into regular expression matching all
    paths ending with given name (name can be a relative path too).
    
    To create such breakpoint in V8, we use type `scriptRegEx`
    instead of `scriptId` for `setbreakpoint` request.
    
    To restore such breakpoint, we save the original script name
    send by the user. We use this original name to set (restore)
    breakpoint in the new child process.
    
    This is a back-port of commit 5db936d from the master branch.
    bajtos authored and bnoordhuis committed May 2, 2013
    Copy the full SHA
    a32a243 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    0e21d7b View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    41cbdc5 View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    43951d7 View commit details
    Browse the repository at this point in the history
  5. event: make setMaxListeners() return this

    setMaxListeners was the only EventEmitter method that returned
    undefined, so could not be chained.
    sam-github authored and bnoordhuis committed May 2, 2013
    Copy the full SHA
    f8d8122 View commit details
    Browse the repository at this point in the history