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: ngxs/store
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v18.1.3
Choose a base ref
...
head repository: ngxs/store
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v18.1.4
Choose a head ref
  • 3 commits
  • 15 files changed
  • 2 contributors

Commits on Oct 21, 2024

  1. fix(logger-plugin): run filter function in injection context (#2236)

    In this commit, we wrap the `options.filter` function for the logger plugin to run within
    the injection context, allowing the retrieval of any injectees that may have properties
    required for filtering. For example, the user may want to skip logging actions until the
    app's bootstrap is complete.
    
    Additionally, the `isIE` check has been removed from the log writer, as Internet Explorer
    is no longer supported by Angular.
    arturovt authored Oct 21, 2024
    Configuration menu
    Copy the full SHA
    93a8f97 View commit details
    Browse the repository at this point in the history

Commits on Oct 23, 2024

  1. fix(store): disallow nullable actions in dispatch() (#2221)

    In this commit, we update the `dispatch()` implementation to account for nullable parameters.
    For example, `dispatch(null)` is invalid because `null` is not a valid action.
    
    We provide both runtime and compile-time checks. The runtime check is the code that throws an error
    when the provided argument is nullable, while the compile-time check is a type that excludes
    nullable types.
    
    Co-authored-by: arturovt <[email protected]>
    pietzschke and arturovt authored Oct 23, 2024
    Configuration menu
    Copy the full SHA
    7e1c703 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e347595 View commit details
    Browse the repository at this point in the history
Loading