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

No logs about empty state for tests with mocked store #2420

Closed
wants to merge 50 commits into from

Commits on Mar 2, 2020

  1. Configuration menu
    Copy the full SHA
    e6fe479 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    86b8a2a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    94de612 View commit details
    Browse the repository at this point in the history

Commits on Mar 3, 2020

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

Commits on Mar 4, 2020

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

Commits on Mar 5, 2020

  1. Configuration menu
    Copy the full SHA
    0d6b6af View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fba0dda View commit details
    Browse the repository at this point in the history

Commits on Mar 6, 2020

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

Commits on Mar 9, 2020

  1. chore: release 9.0.0

    brandonroberts committed Mar 9, 2020
    Configuration menu
    Copy the full SHA
    dfb2787 View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2020

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

Commits on Mar 14, 2020

  1. Configuration menu
    Copy the full SHA
    5c7eb7d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b0ada45 View commit details
    Browse the repository at this point in the history
  3. refactor(example): remove immutability checks (ngrx#2438)

    These checks are enabled by default in NgRx 9
    timdeschryver authored Mar 14, 2020
    Configuration menu
    Copy the full SHA
    3e55dd5 View commit details
    Browse the repository at this point in the history

Commits on Mar 17, 2020

  1. docs: fix capitalization in actions guide (ngrx#2439)

    treebeardcpu authored Mar 17, 2020
    Configuration menu
    Copy the full SHA
    7598dc3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    59ce3e2 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    fdee3d8 View commit details
    Browse the repository at this point in the history

Commits on Mar 19, 2020

  1. Configuration menu
    Copy the full SHA
    b68fa67 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    464073d View commit details
    Browse the repository at this point in the history

Commits on Mar 25, 2020

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

Commits on Mar 29, 2020

  1. Configuration menu
    Copy the full SHA
    7dc97f8 View commit details
    Browse the repository at this point in the history
  2. fix(component): add docs overview (ngrx#2444)

    * fix(component): add docs overview
    
    closes ngrx#2442
    
    * Update projects/ngrx.io/content/guide/component/index.md
    
    Co-Authored-By: Tim Deschryver <[email protected]>
    
    Co-authored-by: Tim Deschryver <[email protected]>
    BioPhoton and timdeschryver authored Mar 29, 2020
    Configuration menu
    Copy the full SHA
    a279dd1 View commit details
    Browse the repository at this point in the history

Commits on Mar 30, 2020

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

Commits on Apr 3, 2020

  1. Configuration menu
    Copy the full SHA
    c0dd2e5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    09a50de View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    19f1bda View commit details
    Browse the repository at this point in the history
  4. fix(toObservableValue): accommodate all observable inputs (ngrx#2471)

    - Switches toObservableValue to just use rxjs `from`. This will ensure it works with all
      types that `rxjs` is compatable with. Also, the checks in `toObservableValue` were redundant if
      `from` was used.  For example, if `x` is `Observable` from rxjs, then `from(x) === x` would be `true`.
      `from` does all of the necessary checks. Also, `from` will do the work of figuring out of it happens
      to be an observable that has interop with RxJS, or is an observable from another instance
      of rxjs (in node_modules, Node scenario).
    - Also `x == null` will only return `true` if `x` is `undefined` or `null`.
    - Fixes the return types of `toObservableValue` to be more true to form. If you return
      `Observable<X> | Observable<Y> | Observable<Z>`, it's really no different than `Observable<X | Y | Z>`,
      because there's no static/synchronous way to narrow the type of the `Observable` to say, `Observable<X>`
      in either scenario.
    - Removes unecessary types in favor of more obvious explicit types
    - Removes superfluous isObservable-type assert function
    - Removes unused assertion methods. Not sure what those were used for, as they were exported, but two
      were ill-advised, as they were doing type-narrowing by iterating over an array, making it an O(n) operation
      just to narrow a type.
    benlesh authored Apr 3, 2020
    Configuration menu
    Copy the full SHA
    468303a View commit details
    Browse the repository at this point in the history

Commits on Apr 5, 2020

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

Commits on Apr 6, 2020

  1. build: update minimal yarn to v1.13.0 (ngrx#2467)

    The `@angular/cli` as of version 9 requires minimum yarn v.1.13.0 to work
    meeroslav authored Apr 6, 2020
    Configuration menu
    Copy the full SHA
    e97863d View commit details
    Browse the repository at this point in the history

Commits on Apr 7, 2020

  1. Configuration menu
    Copy the full SHA
    80975fa View commit details
    Browse the repository at this point in the history
  2. chore: release 9.1.0

    brandonroberts committed Apr 7, 2020
    Configuration menu
    Copy the full SHA
    6649832 View commit details
    Browse the repository at this point in the history

Commits on Apr 8, 2020

  1. Configuration menu
    Copy the full SHA
    6a18359 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4b0856a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5b2f2d4 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    388017c View commit details
    Browse the repository at this point in the history

Commits on Apr 13, 2020

  1. Configuration menu
    Copy the full SHA
    81292b7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    79ec1b4 View commit details
    Browse the repository at this point in the history

Commits on Apr 14, 2020

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

Commits on Apr 18, 2020

  1. Configuration menu
    Copy the full SHA
    39a4b91 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    46d752f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c210572 View commit details
    Browse the repository at this point in the history

Commits on Apr 20, 2020

  1. Configuration menu
    Copy the full SHA
    1f181e3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    236e9c9 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    935aa61 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9b2f05e View commit details
    Browse the repository at this point in the history

Commits on Apr 24, 2020

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

Commits on May 3, 2020

  1. Configuration menu
    Copy the full SHA
    2a7da63 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8432fc8 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    eee6543 View commit details
    Browse the repository at this point in the history
  4. feat(store): adding tests

    Closes ngrx#2363
    evgenyfedorenko committed May 3, 2020
    Configuration menu
    Copy the full SHA
    5c9bd12 View commit details
    Browse the repository at this point in the history