Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 8, 2022

Bumps rxdart from 0.26.0 to 0.27.5.

Release notes

Sourced from rxdart's releases.

0.27.5

https://pub.dev/packages/rxdart/versions/0.27.5

Bug fixes

  • Fix issue #683: Throws runtime type error when using extension methods on a Stream<R> but its type annotation is Stream<T>, R is a subtype of T (covariance issue with StreamTransformer).

    Stream<num> s1 = Stream<int>.fromIterable([1, 2, 3]);
    // throws "type 'SwitchMapStreamTransformer<num, num>' is not a subtype of type 'StreamTransformer<int, num>' of 'streamTransformer'"
    s1.switchMap((v) => Stream.value(v));
    Stream<int?> s2 = Stream<int>.fromIterable([1, 2, 3]);
    // throws "type 'SwitchMapStreamTransformer<int?, int?>' is not a subtype of type 'StreamTransformer<int, int?>' of 'streamTransformer'"
    s2.switchMap((v) => Stream.value(v));

    Extension methods were previously implemented via stream.transform(streamTransformer), now via streamTransformer.bind(stream) to avoid this issue.

  • Fix concatEager: activeSubscription should be changed to next subscription.

Code refactoring

  • Change return type of pairwise to Stream<List<T>>.

What's Changed

New Contributors

Full Changelog: ReactiveX/rxdart@0.27.4...0.27.5

0.27.4

https://pub.dev/packages/rxdart/versions/0.27.4

Bug fixes

  • withLatestFrom should iterate over Iterable<Stream>s only once when the stream is listened to.
  • Fix analyzer warnings when using Dart 2.16.0.

Features

... (truncated)

Changelog

Sourced from rxdart's changelog.

0.27.5 (2022-07-16)

Bug fixes

  • Fix issue #683: Throws runtime type error when using extension methods on a Stream<R> but its type annotation is Stream<T>, R is a subtype of T (covariance issue with StreamTransformer).

    Stream<num> s1 = Stream<int>.fromIterable([1, 2, 3]);
    // throws "type 'SwitchMapStreamTransformer<num, num>' is not a subtype of type 'StreamTransformer<int, num>' of 'streamTransformer'"
    s1.switchMap((v) => Stream.value(v));
    Stream<int?> s2 = Stream<int>.fromIterable([1, 2, 3]);
    // throws "type 'SwitchMapStreamTransformer<int?, int?>' is not a subtype of type 'StreamTransformer<int, int?>' of 'streamTransformer'"
    s2.switchMap((v) => Stream.value(v));

    Extension methods were previously implemented via stream.transform(streamTransformer), now via streamTransformer.bind(stream) to avoid this issue.

  • Fix concatEager: activeSubscription should be changed to next subscription.

Code refactoring

  • Change return type of pairwise to Stream<List<T>>.

0.27.4 (2022-05-29)

Bug fixes

  • withLatestFrom should iterate over Iterable<Stream> only once when the stream is listened to.
  • Fix analyzer warnings when using Dart 2.16.0.

Features

  • Add mapNotNull/MapNotNullStreamTransformer.
  • Add whereNotNull/WhereNotNullStreamTransformer.

Documentation

0.27.3 (2021-11-21)

Bug fixes

  • flatMap now creates inner Streams lazily.
  • combineLatest, concat, concatEager, forkJoin, merge, race, zip iterate over Iterable<Stream>s only once when the stream is listened to.
  • Disallow mixing autoConnect, connect and refCount together, only one of them should be used.

... (truncated)

Commits
  • e13dad0 prepare for v0.27.5 (#688)
  • de526d5 chore: update CHANGELOG (#686)
  • 1a4b33d refactor(pairwise): change return type of pairwise to Stream<List> (#685)
  • 5e90c75 fix: use StreamTransformer.bind(Stream) instead of `Stream.transform(Stream...
  • 6a8eef5 fix(concatEager): activeSubscription should be changed to next subscription...
  • dfae6fa Prepare for v0.27.4 (#679)
  • a8acf0d feat(mapNotNull, whereNotNull): add mapNotNull and whereNotNull (#548)
  • fc0083a Update flutter-example.yml (#677)
  • 4672f1c Create flutter-example.yml (#676)
  • abec6e7 ci: remove deprecated packages flag (#674)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [rxdart](https://github.com/ReactiveX/rxdart) from 0.26.0 to 0.27.5.
- [Release notes](https://github.com/ReactiveX/rxdart/releases)
- [Changelog](https://github.com/ReactiveX/rxdart/blob/master/CHANGELOG.md)
- [Commits](ReactiveX/rxdart@0.26.0...0.27.5)

---
updated-dependencies:
- dependency-name: rxdart
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Oct 8, 2022
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 14, 2022

Superseded by #9.

@dependabot dependabot bot closed this Nov 14, 2022
@dependabot dependabot bot deleted the dependabot/pub/rxdart-0.27.5 branch November 14, 2022 23:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant