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: ngrx/platform
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 8.5.2
Choose a base ref
...
head repository: ngrx/platform
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 8.6.0
Choose a head ref
  • 12 commits
  • 27 files changed
  • 10 contributors

Commits on Nov 23, 2019

  1. docs(store): cleanup wording and bullets in selectors guide (#2274)

    Matched the bullet list items at the top, removed some of the "re-" words where the non-hyphenated variant was common enough, and changed "function" to "functions" where appropriate.
    joebobfisher authored and brandonroberts committed Nov 23, 2019
    Copy the full SHA
    cf8b038 View commit details
  2. Copy the full SHA
    dc97342 View commit details

Commits on Nov 24, 2019

  1. Copy the full SHA
    ebb97e6 View commit details
  2. docs: fix typo in README (#2276)

    arturovt authored and timdeschryver committed Nov 24, 2019
    Copy the full SHA
    e870514 View commit details

Commits on Nov 25, 2019

  1. build: fix ngrx global ids (#2275)

    Previously UMD globals Ids were incorrect example
    
    `@ngrx/store` should be `ngrx.store`
    
    Before
    ```js
    (function (global, factory) {
        typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('tslib'), require('@angular/core'), require('rxjs'), require('@ngrx/store')) :
        typeof define === 'function' && define.amd ? define('@ngrx/store/testing', ['exports', 'tslib', '@angular/core', 'rxjs', '@ngrx/store'], factory) :
        (global = global || self, factory((global.ngrx = global.ngrx || {}, global.ngrx.store = global.ngrx.store || {}, global.ngrx.store.testing = {}), global.tslib, global.ng.core, global.rxjs, global['@ngrx/store']));
    ```
    
    After
    ```js
    (function (global, factory) {
        typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('tslib'), require('@angular/core'), require('rxjs'), require('@ngrx/store'), require('@angular/core/testing')) :
        typeof define === 'function' && define.amd ? define('@ngrx/store/testing', ['exports', 'tslib', '@angular/core', 'rxjs', '@ngrx/store', '@angular/core/testing'], factory) :
        (global = global || self, factory((global.ngrx = global.ngrx || {}, global.ngrx.store = global.ngrx.store || {}, global.ngrx.store.testing = {}), global.tslib, global.ng.core, global.rxjs, global.ngrx.store, global.ng.core.testing));
    ```
    alan-agius4 authored and brandonroberts committed Nov 25, 2019
    Copy the full SHA
    c9d1f23 View commit details

Commits on Nov 26, 2019

  1. Copy the full SHA
    98defed View commit details

Commits on Dec 4, 2019

  1. Copy the full SHA
    bcd752e View commit details

Commits on Dec 5, 2019

  1. Copy the full SHA
    6e4fe25 View commit details

Commits on Dec 12, 2019

  1. docs(data): correct doc for disabling change tracking (2288) (#2290)

    closes issue #2288
    
    Also
    - fix similar documentation error for optimistic/pessimistic
    - add/correct code comments in EntityCommands and EntityCollectionServiceBase
    - extends EntityCollectionService methods to accept optional EntityActionOptions and pass through to dispatch methods (omission was oversight)
    wardbell authored Dec 12, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    4598fe0 View commit details

Commits on Dec 14, 2019

  1. Copy the full SHA
    4368cc7 View commit details
  2. Copy the full SHA
    f17589f View commit details

Commits on Dec 18, 2019

  1. chore: release 8.6.0

    brandonroberts committed Dec 18, 2019
    Copy the full SHA
    f783f9f View commit details
Loading