Skip to content
This repository was archived by the owner on Feb 26, 2024. 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: angular/zone.js
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.5.10
Choose a base ref
...
head repository: angular/zone.js
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.5.11
Choose a head ref
  • 11 commits
  • 82 files changed
  • 4 contributors

Commits on Dec 16, 2015

  1. fix: correct test relaying on jasmine timeout

    The tests run slow, because afterEach was async but never called done().
    because it was afterEach any errors are ignored and so it did not show
    up as failure. Instead the test ran very slow until jasmine timed out.
    
    This fix corrects the afterEach and decreases the timeout to 1,000 ms.
    mhevery committed Dec 16, 2015
    Configuration menu
    Copy the full SHA
    4f7d6ae View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    76e7039 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b0a624d View commit details
    Browse the repository at this point in the history
  4. chore: clear stack trace on async tests

    When you have in async test (test with `done` argument) jasmine will 
    execute the next test synchronously in the done handle. This makes sense
    for most tests, but now with zones. With zones running next test 
    synchronously means that the current zone does not get cleared. This 
    results in a chain of nested zones, which makes it hard to reason about 
    it. We override the `clearStack` method which forces jasmine to always 
    drain the stack before next test gets executed.
    mhevery committed Dec 16, 2015
    Configuration menu
    Copy the full SHA
    c6cfdb4 View commit details
    Browse the repository at this point in the history
  5. feat(wtf): add wtf support to (set/clear)Timeout/Interval/Immediate

    This rewrites the (set/clear)Timeout/Interval/Immediate method to render
    information in WTF. It also makes the code more explicit, by removing
    the need for bind method and instead creating explicit callbacks. The
    resulting code is faster, and easier to read and reason about.
    mhevery committed Dec 16, 2015
    Configuration menu
    Copy the full SHA
    6659fd5 View commit details
    Browse the repository at this point in the history
  6. chore(raf): merge requestAimationFrame with setTimeout code path.

    setTimeout/clearTimeout and requeustAnimationFrame/cancelAnimationFrame
    have same semantics, so now they share the same code path.
    
    Closes #210
    mhevery committed Dec 16, 2015
    Configuration menu
    Copy the full SHA
    d8a171b View commit details
    Browse the repository at this point in the history

Commits on Dec 23, 2015

  1. 1 Configuration menu
    Copy the full SHA
    39b4a91 View commit details
    Browse the repository at this point in the history

Commits on Jan 4, 2016

  1. Configuration menu
    Copy the full SHA
    03b0e07 View commit details
    Browse the repository at this point in the history

Commits on Jan 8, 2016

  1. Configuration menu
    Copy the full SHA
    767a30e View commit details
    Browse the repository at this point in the history

Commits on Jan 27, 2016

  1. fix(WebSocket): don't patch EventTarget methods twice

    closes #235
    
    On older versions of Chrome, patching via property descriptors isn't
    available, but unlike Safari, window.EventTarget exists and is already
    patched, so the EventTarget methods on WebSocket.prototype don't need to
    be patched again.
    
    Closes #233.
    tlancina authored and vicb committed Jan 27, 2016
    Configuration menu
    Copy the full SHA
    345e56c View commit details
    Browse the repository at this point in the history
  2. 0.5.11

    vicb committed Jan 27, 2016
    Configuration menu
    Copy the full SHA
    62955d1 View commit details
    Browse the repository at this point in the history
Loading