Skip to content

Tags: dart-lang/stream_transform

Tags

v2.1.0

Toggle v2.1.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add whereNotNull (#156)

This is useful during null safety migrations for the same reason as
`Iterable.whereNotNull` from `package:collection`.

v2.0.1

Toggle v2.0.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
update CI; prep for publishing (#155)

v2.0.0

Toggle v2.0.0's commit message

v2.0.0-nullsafety.0

Toggle v2.0.0-nullsafety.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Prepare to publish (#126)

v1.2.0

Toggle v1.2.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Prepare to publish (#104)

v1.1.0

Toggle v1.1.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Prepare to publish (#94)

v1.0.0

Toggle v1.0.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Drop non-extension methods (#88)

Prepare to publish as `1.0.0` with only the extension method
implementations. All deprecated methods are removed.

Temporarily drop build_runner. It was only for the example and
doesn't have a constraint allowing a breaking change in this
package.

v0.0.20

Toggle v0.0.20's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Prepare to publish (#87)

v0.0.19

Toggle v0.0.19's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add asyncMapSample transform (#79)

Like `asyncMapBuffer` but drops instead of collecting previous events.

- Refactor `_Buffer` class into `Aggregate` which takes a function to
  aggregate values instead of only collecting them to a List. This will
  not be published.
- Add `asyncMapSample` which is effectively an identical implementation
  to `asyncMapBuffer` except it chooses a different aggregation
  function.

v0.0.18

Toggle v0.0.18's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Enable and fix strict-raw-types checks (#78)

Most changes are in tests where we implicitly were using `<dynamic>` but
only ever passing a single type. Add specific types and clean up the few
cases where a different type from the norm was used. Extract utilities
for constructing both types of stream to do the tests in a loop, since
it's not using function literals anymore it can be a generic function.

In `lib/` add a few `<void>` type arguments for things like "trigger"
streams since we were never reading the value.