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

Update dependency rxdart_ext to ^0.2.0 #11

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Mar 26, 2022

Mend Renovate

This PR contains the following updates:

Package Type Update Change
rxdart_ext (source) dev_dependencies minor ^0.1.2 -> ^0.2.0

Release Notes

hoc081098/rxdart_ext

v0.2.8

Compare Source

  • single:

    • Fix Single.unsafeFromStream docs
  • state_stream:

    • Introduce MutableStateStream<T>.
    • StateSubject<T> now implements MutableStateStream<T>.
    • Introduce extension methods on MutableStateStream<T>:
      • update().
      • getAndUpdate().
      • updateAndGet().
  • Several docs and example improvements.

v0.2.7

Compare Source

  • single:

    • Add RxSingles.using.
    • Add RxSingles.forkJoin3..forkJoin9 and RxSingles.forkJoinList.
    • Deprecate Single.fromStream, introduce Single.unsafeFromStream.
  • state_stream:

    • Internal refactoring of StateSubject, fix StateSubject.addStream.
    • ValueStreamController.sink now processes events correctly.
  • Subject.stream now returns a read-only Stream.
    Previously, Subject.stream was identical to the Subject, so we could add events to it, for example: (subject.stream as Sink<T>).add(event).
    This behavior is now disallowed, and will throw a TypeError if attempted. Use Subject.sink/Subject itself for adding events.

  • Several docs and example improvements.

v0.2.6

Compare Source

  • single:

    • Add Single.toEitherSingle().
    • Add Single.flatMapEitherSingle().
  • Update docs.

v0.2.5

Compare Source

  • state_stream:
    • StateSubject.stream now returns a StateStream.
    • Update docs for StateSubject and StateStream.

v0.2.4

Compare Source

  • Fix StateStream.select5..select9: miss passing equals param.

v0.2.3

Compare Source

  • Update rxdart to ^0.27.5.
  • Fix: remove @internal on StateStream.asBroadcastStateStream extension method.
  • Stream.toSingleSubscriptionStream() now returns a new Stream every call
    instead of the input stream even if it's a single-subscription Stream.

v0.2.2

Compare Source

  • Revert path to ^1.8.0 (because flutter_test from Flutter sdk (>= 2.5.0) depends on path 1.8.0 or 1.8.1).

v0.2.1

Compare Source

  • Update rxdart to 0.27.4.

  • Update path to 1.8.2.

  • operators:

    • Remove Stream.whereNotNull() (moved to rxdart 0.27.4 as standard
      operator: mapNotNull).
    • Remove Stream.mapNotNull() (moved to rxdart 0.27.4 as standard
      operator: whereNotNull).

v0.2.0

Compare Source

  • utils:

    • Add DisposableMixin. This mixin adds an easy option to dispose Streams without having to store
      a StreamSubscription variable. (Thanks to Jop Middelkamp).
    • Add Equality typedef.
  • state_stream:

    • Rename StateStream.defaultEquals to StateStream.defaultEquality.
    • Add StateStream selectors (SelectorsStateStreamExtensions): StateStream.select, StateStream.select2
      to StateStream.select9
      and StateStream.selectMany.
      • Select a sub state slice from state stream. Inspirited
        by NgRx memoized selector
      • Selectors can compute derived data, to store the minimal possible state.
      • Selectors are efficient. A selector is not recomputed unless one of its arguments changes.
      • When using the select, select2 to select9, selectMany functions, keeps track of the latest arguments
        in which your selector function was invoked. Because selectors are pure functions, the last result can be
        returned when the arguments match without re-invoking your selector function. This can provide performance
        benefits, particularly with selectors that perform expensive computation. This practice is known as
        memoization.

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@codecov
Copy link

codecov bot commented Mar 26, 2022

Codecov Report

Merging #11 (e3b9620) into master (2dd0482) will increase coverage by 100.00%.
The diff coverage is n/a.

@@              Coverage Diff              @@
##           master       #11        +/-   ##
=============================================
+ Coverage        0   100.00%   +100.00%     
=============================================
  Files           0         1         +1     
  Lines           0         8         +8     
=============================================
+ Hits            0         8         +8     
Impacted Files Coverage Δ
lib/src/did_change_dependencies.dart 100.00% <0.00%> (ø)

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 2dd0482...e3b9620. Read the comment docs.

@renovate
Copy link
Author

renovate bot commented Mar 23, 2023

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant