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: libuv/libuv
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.2.0
Choose a base ref
...
head repository: libuv/libuv
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.2.1
Choose a head ref
  • 15 commits
  • 25 files changed
  • 4 contributors

Commits on Jan 5, 2015

  1. Add SHA to ChangeLog

    saghul committed Jan 5, 2015
    Configuration menu
    Copy the full SHA
    3fd823a View commit details
    Browse the repository at this point in the history

Commits on Jan 6, 2015

  1. unix: remove unused dtrace file

    PR-URL: #119
    Reviewed-By: Ben Noordhuis <[email protected]>
    saghul committed Jan 6, 2015
    Configuration menu
    Copy the full SHA
    295fc41 View commit details
    Browse the repository at this point in the history

Commits on Jan 7, 2015

  1. test: skip TTY select test if /dev/tty can't be opened

    PR-URL: #123
    Reviewed-By: Ben Noordhuis <[email protected]>
    saghul committed Jan 7, 2015
    Configuration menu
    Copy the full SHA
    72e4b5a View commit details
    Browse the repository at this point in the history
  2. doc: clarify the behavior of uv_tty_init

    Closes #120
    
    PR-URL: #121
    Reviewed-By: Ben Noordhuis <[email protected]>
    saghul committed Jan 7, 2015
    Configuration menu
    Copy the full SHA
    85d6624 View commit details
    Browse the repository at this point in the history
  3. doc: clarify how uv_async_send behaves

    Closes #29
    
    PR-URL: #122
    Reviewed-By: Ben Noordhuis <[email protected]>
    saghul committed Jan 7, 2015
    Configuration menu
    Copy the full SHA
    c9c00cd View commit details
    Browse the repository at this point in the history

Commits on Jan 11, 2015

  1. build: make dist now generates a full tarball

    Autotools tries to figure out what's necessary to create a tarball through
    included files in Makefile.am. Since libuv has conditionals based on target OS
    as well as additional samples/documentation, extra_files needs to include these.
    
    Also, add the result of make dist to gitignore.
    
    PR-URL: #118
    Reviewed-By: Saúl Ibarra Corretgé <[email protected]>
    jbergstroem authored and saghul committed Jan 11, 2015
    Configuration menu
    Copy the full SHA
    434ce03 View commit details
    Browse the repository at this point in the history

Commits on Jan 12, 2015

  1. freebsd: make uv_exepath more resilient

    PR-URL: #129
    Reviewed-By: Ben Noordhuis <[email protected]>
    saghul committed Jan 12, 2015
    Configuration menu
    Copy the full SHA
    c3e22b7 View commit details
    Browse the repository at this point in the history

Commits on Jan 13, 2015

  1. unix: make setting the tty mode to the same value a no-op

    Closes #131
    
    PR-URL: #132
    Reviewed-By: Bert Belder <[email protected]>
    saghul committed Jan 13, 2015
    Configuration menu
    Copy the full SHA
    550147f View commit details
    Browse the repository at this point in the history
  2. win,stream: start uv_try_write implementation

    PR: #127
    Reviewed-by: Saúl Ibarra Corretgé <[email protected]>
    piscisaureus committed Jan 13, 2015
    Configuration menu
    Copy the full SHA
    e2f9b61 View commit details
    Browse the repository at this point in the history
  3. win,tcp: support uv_try_write

    PR: #127
    Reviewed-by: Saúl Ibarra Corretgé <[email protected]>
    piscisaureus committed Jan 13, 2015
    Configuration menu
    Copy the full SHA
    9b8cef4 View commit details
    Browse the repository at this point in the history
  4. test: enable test-tcp-try-write on windows

    PR: #127
    Reviewed-by: Saúl Ibarra Corretgé <[email protected]>
    piscisaureus committed Jan 13, 2015
    Configuration menu
    Copy the full SHA
    85a2934 View commit details
    Browse the repository at this point in the history
  5. win,tty: support uv_try_write

    All windows console writes are synchronous anyway, so there's no reason
    for uv_try_write() to do nothing.
    
    PR: #127
    Reviewed-by: Saúl Ibarra Corretgé <[email protected]>
    piscisaureus committed Jan 13, 2015
    Configuration menu
    Copy the full SHA
    55ea371 View commit details
    Browse the repository at this point in the history

Commits on Jan 14, 2015

  1. unix: fix -Wsign-compare warning in tty.c

    The mode argument is an enum now and the signedness of an enum is
    implementation-defined when it doesn't have negative members.
    
    Cast it to int in the comparison to tty->mode because the latter is
    still an int.
    
    PR: #134
    Reviewed-by: Saúl Ibarra Corretgé <[email protected]>
    bnoordhuis authored and saghul committed Jan 14, 2015
    Configuration menu
    Copy the full SHA
    bb5f5d1 View commit details
    Browse the repository at this point in the history
  2. unix: set non-block mode in uv_{pipe,tcp,udp}_open

    The contract specifies that the file descriptor should already be in
    non-blocking mode before passing it to libuv.
    
    However, node users don't really have an opportunity to do so, never
    mind the fact that the call to uv_pipe_open() or uv_tcp_open() is an
    implementation detail that most users won't be aware of.
    
    Let's be nice and set the non-blocking flag explicitly.  It's a cheap
    operation anyway.
    
    Fixes: #124
    
    PR: #134
    Reviewed-by: Saúl Ibarra Corretgé <[email protected]>
    bnoordhuis authored and saghul committed Jan 14, 2015
    Configuration menu
    Copy the full SHA
    393c1c5 View commit details
    Browse the repository at this point in the history
  3. 2015.01.15, Version 1.2.1 (Stable)

    Changes since version 1.2.0:
    
    * unix: remove unused dtrace file (Saúl Ibarra Corretgé)
    
    * test: skip TTY select test if /dev/tty can't be opened (Saúl Ibarra
      Corretgé)
    
    * doc: clarify the behavior of uv_tty_init (Saúl Ibarra Corretgé)
    
    * doc: clarify how uv_async_send behaves (Saúl Ibarra Corretgé)
    
    * build: make dist now generates a full tarball (Johan Bergström)
    
    * freebsd: make uv_exepath more resilient (Saúl Ibarra Corretgé)
    
    * unix: make setting the tty mode to the same value a no-op (Saúl Ibarra
      Corretgé)
    
    * win,tcp: support uv_try_write (Bert Belder)
    
    * test: enable test-tcp-try-write on windows (Bert Belder)
    
    * win,tty: support uv_try_write (Bert Belder)
    
    * unix: set non-block mode in uv_{pipe,tcp,udp}_open (Ben Noordhuis)
    saghul committed Jan 14, 2015
    Configuration menu
    Copy the full SHA
    4ca78e9 View commit details
    Browse the repository at this point in the history
Loading