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

[BUGFIX beta] Add failing test for issue 16172 #16284

Commits on Feb 14, 2018

  1. Configuration menu
    Copy the full SHA
    d52652b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6e665ba View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f1f4e9f View commit details
    Browse the repository at this point in the history
  4. Release v3.1.0-beta.1.

    rwjblue committed Feb 14, 2018
    Configuration menu
    Copy the full SHA
    c0b88bc View commit details
    Browse the repository at this point in the history
  5. [DOC release] Fix issue with invalid YUIDoc parsing.

    (cherry picked from commit a3ba91f)
    rwjblue committed Feb 14, 2018
    Configuration menu
    Copy the full SHA
    5164bbd View commit details
    Browse the repository at this point in the history
  6. [BUGFIX lts] Ensure errors in deferred component hooks can be recovered.

    Previously, any errors thrown during `didInsertElement` would leave the
    running environment in an invalid state (`env.inTransaction` would be
    `true` but `this._transaction` would have been nullified).
    
    This commit ensures that we _always_ reset `inTransaction` if
    `Environment.prototype.commit` is called. Thus avoiding an error RE:
    "calling commit on null"...
    
    (cherry picked from commit ab4a2e3)
    rwjblue committed Feb 14, 2018
    Configuration menu
    Copy the full SHA
    b4f3a2c View commit details
    Browse the repository at this point in the history

Commits on Feb 15, 2018

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

Commits on Feb 19, 2018

  1. [BUGFIX beta] computed.sort should not sort if sortProperties is empty

    (cherry picked from commit e99dd89)
    mmun authored and kategengler committed Feb 19, 2018
    Configuration menu
    Copy the full SHA
    fb00366 View commit details
    Browse the repository at this point in the history
  2. [BUGFIX beta] Fix issue with Ember.trySet on destroyed objects.

    `Ember.trySet` is designed to be an error-tolerant form of `Ember.set`
    (per its public API documentation). However, in some circumstances an
    error is still thrown when setting on a destroyed object.
    
    Prior to this change, the following would properly prevent an error:
    
    ```js
    let obj = { some: { deep : 'path', isDestroyed: true }};
    
    Ember.trySet(obj, 'some.deep', 'stuff');
    ```
    
    But the following would throw an error incorrectly:
    
    ```js
    let obj = { some: 'path', isDestroyed: true };
    
    Ember.trySet(obj, 'some', 'stuff');
    ```
    
    This fixes the latter case...
    
    (cherry picked from commit 1f4a3bc)
    rwjblue authored and kategengler committed Feb 19, 2018
    Configuration menu
    Copy the full SHA
    c2cc96f View commit details
    Browse the repository at this point in the history
  3. Add v3.1.0-beta.2 to CHANGELOG

    [ci skip]
    kategengler committed Feb 19, 2018
    Configuration menu
    Copy the full SHA
    0f8e2f4 View commit details
    Browse the repository at this point in the history
  4. Release v3.1.0-beta.2

    kategengler committed Feb 19, 2018
    Configuration menu
    Copy the full SHA
    d09d63e View commit details
    Browse the repository at this point in the history

Commits on Feb 24, 2018

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