Skip to content

Releases: joanllenas/ngx-remotedata

v3.0.0

30 Jan 08:41
Compare
Choose a tag to compare

Features:

Breaking changes:

  • successOrInProgressValue pipe changes:
    • Renamed successOrInProgressValue to remoteDataValue.
    • Renamed GetSuccessOrInProgressValuePipe to GetRemoteDataValuePipe.
  • failureValue pipe changes:
    • Renamed GetFailurePipe to GetFailureValuePipe (the pipe keeps the same name failureValue but has a different behaviour, see below).
    • This pipe doesn't provide the E error anymore, it provides the latest Success value (of type T ) when provided. To get the error use the new failureError pipe.

By @elegon32 πŸŽ‰ via pull/13

v2.1.0

26 Jan 18:29
Compare
Choose a tag to compare

Added two new pipes:

Contributed by @elegon32 πŸŽ‰

v2.0.2

17 Dec 15:23
Compare
Choose a tag to compare

Relaxed AnyRemoteData type

v2.0.0

25 Aug 19:49
Compare
Choose a tag to compare

fix(types): Improved RemoteData type safety.

re: #3

BREAKING CHANGE:

  • The members of the RemoteData type now have a private constructor and can't be instantiated with new, each class now has an of() static method instead.
  • The InProgress class doesn't have a default value. Pass undefined or null if you are not providing a value: i.e. InProgress.of(undefined).

v1.0.0

29 Mar 08:35
Compare
Choose a tag to compare

refactor(lib): Replace Loading for InProgress names and literals.

BREAKING CHANGE:

  • All Loading related APIs have been renamed to InProgress. See this issue for context.

Special Thanks to Pau Bartrina for his contribution in this release πŸŽ‰

v0.0.2

21 Dec 21:29
Compare
Choose a tag to compare

First release