Skip to content

Bump rxandroid from 0.24.0 to 1.2.1 #6

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

Merged
merged 1 commit into from
Oct 5, 2019

Conversation

dependabot-preview[bot]
Copy link
Contributor

@dependabot-preview dependabot-preview bot commented Oct 5, 2019

⚠️ Dependabot is rebasing this PR ⚠️

If you make any changes to it yourself then they will take precedence over the rebase.


Bumps rxandroid from 0.24.0 to 1.2.1.

Release notes

Sourced from rxandroid's releases.

1.2.1

  • New: AndroidSchedulers.reset() allows clearing the scheduler cache such that the next call to
    AndroidSchedulers.mainThread() will ask the RxAndroidSchedulerHook to re-create it. This API
    is experimental to match Schedulers.reset() in RxJava.
  • RxJava dependency now points at v1.1.6.

1.2.0

  • Rewrite the Android-specific schedulers (main thread or custom) to greatly reduce allocation and
    performance overhead of scheduling work.
  • HandlerScheduler.create has been deprecated in favor of AndroidSchedulers.from(Looper) as
    a Looper is the actual mechanism of scheduling on Android, not Handler.
  • Fix: Correct the behavior of AndroidSchedulers.mainThread() to only invoke the registered
    RxAndroidSchedulersHook for creating the main thread scheduler and to cache the result instead
    of invoking it every time. This behvior change eliminates a performance overhead and brings
    behavior in line with RxJava. If you were relying on the ability to change the main thread
    scheduler over time (such as for tests), return a delegating scheduler from the hook which allows
    changing the delegate instance at will.
  • RxJava dependency now points at v1.1.4.
  • RxAndroidPlugins.reset() is now marked as @Experimental to match the RxJava method of the
    same name and behavior.

1.1.0

  • New: MainThreadSubscription utility class runs its onUnsubscribe action on the Android main
    thread. This aids in adding tear-down actions which must be executed on the main thread without
    having to deal with posting to the main thread yourself.
  • Fix: Lazily initialize mainThread() scheduler so that no Android code is run when overridden.
    This allows unit tests overriding the implementation to work correctly.
  • RxJava dependency now points at v1.1.0.

Download:

compile 'io.reactivex:rxandroid:1.1.0'

1.0.1

  • Fix: Correctly check isUnsubscribed() state in HandlerScheduler's worker before scheduling
    more work.
  • Fix: Eliminate a potential race condition in HandlerScheduler to ensure any posted work will
    be canceled on unsubscription.

Download:

compile 'io.reactivex:rxandroid:1.0.1'

1.0.0

Initial stable release!

... (truncated)
Changelog

Sourced from rxandroid's changelog.

Version 1.2.1 - June 16th 2016

  • New: AndroidSchedulers.reset() allows clearing the scheduler cache such that the next call to
    AndroidSchedulers.mainThread() will ask the RxAndroidSchedulerHook to re-create it. This API
    is experimental to match Schedulers.reset() in RxJava.
  • RxJava dependency now points at v1.1.6.

Version 1.2.0 - May 4th 2016

  • Rewrite the Android-specific schedulers (main thread or custom) to greatly reduce allocation and
    performance overhead of scheduling work.
  • HandlerScheduler.create has been deprecated in favor of AndroidSchedulers.from(Looper) as
    a Looper is the actual mechanism of scheduling on Android, not Handler.
  • Fix: Correct the behavior of AndroidSchedulers.mainThread() to only invoke the registered
    RxAndroidSchedulersHook for creating the main thread scheduler and to cache the result instead
    of invoking it every time. This behvior change eliminates a performance overhead and brings
    behavior in line with RxJava. If you were relying on the ability to change the main thread
    scheduler over time (such as for tests), return a delegating scheduler from the hook which allows
    changing the delegate instance at will.
  • RxJava dependency now points at v1.1.4.
  • RxAndroidPlugins.reset() is now marked as @Experimental to match the RxJava method of the
    same name and behavior.

Version 1.1.0 - December 9th 2015

  • New: MainThreadSubscription utility class runs its onUnsubscribe action on the Android main
    thread. This aids in adding tear-down actions which must be executed on the main thread without
    having to deal with posting to the main thread yourself.
  • Fix: Lazily initialize mainThread() scheduler so that no Android code is run when overridden.
    This allows unit tests overriding the implementation to work correctly.
  • RxJava dependency now points at v1.1.0.

Version 1.0.1 - August 9th 2015

  • Fix: Correctly check isUnsubscribed() state in HandlerScheduler's worker before scheduling
    more work.
  • Fix: Eliminate a potential race condition in HandlerScheduler to ensure any posted work will
    be canceled on unsubscription.

Version 1.0.0 - August 5th 2015

Initial stable release!

In order to provide a library that no project using RxJava would hesitate to depend on, the decision
was made to remove the APIs which were not absolutely fundamental to all apps. That is what's
contained in this release.

... (truncated)
Commits
  • ff69ffc Prepare version 1.2.1.
  • f3665c6 Merge pull request #299 from ReactiveX/jw/sixteen-candles
  • d7a5bc5 Merge pull request #298 from shaunkawano/patch-1
  • 1e9f55c RxJava 1.1.6.
  • c18fbe5 Update readme to point to RxJava 1.1.6
  • c5eaeb3 Add AndroidSchedulers.reset() for better testing support
  • fc72d3a Merge pull request #293 from akarnokd/ReadmeRxJavaVersion
  • 8a1b711 Update readme to point to RxJava 1.1.5
  • 10b908a Merge pull request #292 from EddieRingle/rxjava_1.1.5
  • 39e8061 Update to RxJava 1.1.5 to get filter() bugfix
  • 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.


Note: This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit.

You can always request more updates by clicking Bump now in your Dependabot dashboard.

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)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Pull request limits (per update run and/or open at any time)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

Bumps [rxandroid](https://github.com/ReactiveX/RxAndroid) from 0.24.0 to 1.2.1.
- [Release notes](https://github.com/ReactiveX/RxAndroid/releases)
- [Changelog](https://github.com/ReactiveX/RxAndroid/blob/1.2.1/CHANGES.md)
- [Commits](ReactiveX/RxAndroid@v0.24.0...1.2.1)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
@dependabot-preview dependabot-preview bot added the dependencies Pull requests that update a dependency file label Oct 5, 2019
@mmastrac mmastrac merged commit d9a725e into master Oct 5, 2019
@dependabot-preview dependabot-preview bot deleted the dependabot/gradle/io.reactivex-rxandroid-1.2.1 branch October 5, 2019 14:31
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