8000 Bump the rxjava group with 2 updates by dependabot[bot] · Pull Request #45 · v2er-app/Android · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Bump the rxjava group with 2 updates #45

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
Jul 9, 2025

Conversation

dependabot[bot]
Copy link
Contributor
@dependabot dependabot bot commented on behalf of github Jul 8, 2025

Bumps the rxjava group with 2 updates: io.reactivex.rxjava2:rxandroid and io.reactivex.rxjava2:rxjava.

Updates io.reactivex.rxjava2:rxandroid from 2.0.1 to 2.1.1

Release notes

Sourced from io.reactivex.rxjava2:rxandroid's releases.

2.1.1

Bugfixes

  • Pull 442 - Use async messages for Scheduler.scheduleDirect

Download:

implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'

2.1.0

API Enhancements

  • Pull 416 - Add an option to post async messages

Download:

implementation 'io.reactivex.rxjava2:rxandroid:2.1.0'

2.0.2

API Enhancements

  • Pull 358 - Add handler getters to RxAndroidPlugins

Bugfixes

  • Pull 391 - Update scheduler error handling to match RxJava
  • Pull 408 - Remove superfluous negative checks
  • Pull 415 - Disable useless BuildConfig class generation
Changelog

Sourced from io.reactivex.rxjava2:rxandroid's changelog.

RxAndroid Releases

Version 3.0.2 - November, 9 2022

Fixed:

  • Ensure the main scheduler can be replaced in unit tests without needing Robolectric.

Version 3.0.1 - November, 8 2022

Fixed:

  • AndroidSchedulers.mainThread() now correctly checks whether async messages are supported by the current Android version. Previously it always assumed they were available (true on API 16+).

Changed:

  • Update to RxJava 3.1.5. This includes a transitive dependency bump to Reactive-Streams 1.0.4 which re-licenses that dependency from CC-0 to MIT-0.

Version 3.0.0 - February, 14 2020

General availability of RxAndroid 3.0 for use with RxJava 3.0!

The Maven groupId has changed to io.reactivex.rxjava3 and the package is now io.reactivex.rxjava3.android.

The APIs and behavior of RxAndroid 3.0.0 is otherwise exactly the same as RxAndroid 2.1.1 with one notable exception:

Schedulers created via AndroidSchedulers.from now deliver async messages by default. This is also true for AndroidSchedulers.mainThread().

For more information about RxJava 3.0 see its release notes.


Version 2.x can be found at https://github.com/ReactiveX/RxAndroid/blob/2.x/CHANGES.md

Version 1.x can be found at https://github.com/ReactiveX/RxAndroid/blob/1.x/CHANGES.md 8000

Commits
  • 23bf0bd Add new license SHA to CI script
  • c7a4446 Prepare version 2.1.1
  • 7996633 Use async messages for Scheduler.scheduleDirect
  • 7a4a113 Merge pull request #447 from ojh102/fix_license_link
  • cde1b2b Fix broken license link
  • b315cd1 Prepare next development version
  • 0efa444 Prepare version 2.1.0
  • a78a85e Merge pull request #437 from shaishavgandhi05/sg/update-dependencies
  • 908e6ed Update gradle version
  • 9afb1dc Upgrade dependencies
  • Additional commits viewable in compare view

Updates io.reactivex.rxjava2:rxjava from 2.1.3 to 2.2.21

Release notes

Sourced from io.reactivex.rxjava2:rxjava's releases.

2.2.21

Maven JavaDocs

⚠️ This is the last planned update for the 2.x version line. After February 28, 2021, 2.x becomes End-of-Life (EoL); no further patches, bugfixes, enhancements, documentation or support will be provided by the project.

Enhancements

  • Add a system parameter to allow scheduled worker release in the Io Scheduler. (#7162)
  • Add a system parameter to allow Schedulers to use System.nanoTime() for now(). (#7170)

2.2.20

Maven JavaDocs

⚠️ The 2.x version line is now in maintenance mode and will be supported only through bugfixes until February 28, 2021. No new features, behavior changes or documentation adjustments will be accepted or applied to 2.x. It is recommended to migrate to 3.x within this time period.

Bugfixes

  • Fix Observable.flatMap with maxConcurrency hangs (#6960)
  • Fix Observable.toFlowable(ERROR) not cancelling upon MissingBackpressureException (#7084)
  • Fix Flowable.concatMap backpressure with scalars. (#7091)

2.2.19

Maven JavaDocs

⚠️ The 2.x version line is now in maintenance mode and will be supported only through bugfixes until February 28, 2021. No new features, behavior changes or documentation adjustments will be accepted or applied to 2.x. It is recommended to migrate to 3.x within this time period.

Bugfixes

  • Commit 7980c85b: Fix switchMap not canceling properly during onNext-cancel races.

2.2.18

Maven

⚠️ The 2.x version line is now in maintenance mode and will be supported only through bugfixes until February 28, 2021. No new features, behavior changes or documentation adjustments will be accepted or applied to 2.x. It is recommended to migrate to 3.x within this time period.

Bugfixes

  • Pull 6894: Fix groupBy not requesting more if a group is cancelled with buffered items.

2.2.17

Maven

Bugfixes

  • Pull 6827: Fix Flowable.flatMap not canceling the inner sources on outer error.

... (truncated)

Changelog

Sourced from io.reactivex.rxjava2:rxjava's changelog.

Version 2.2.21 - February 10, 2021 (Maven)

JavaDocs

⚠️ This is the last planned update for the 2.x version line. After February 28, 2021, 2.x becomes End-of-Life (EoL); no further patches, bugfixes, enhancements, documentation or support will be provided by the project.

Enhancements

  • Add a system parameter to allow scheduled worker release in the Io Scheduler. (#7162)
  • Add a system parameter to allow Schedulers to use System.nanoTime() for now(). (#7170)

Version 2.2.20 - October 6, 2020 (Maven)

JavaDocs

⚠️ The 2.x version line is now in maintenance mode and will be supported only through bugfixes until February 28, 2021. No new features, behavior changes or documentation adjustments will be accepted or applied to 2.x. It is recommended to migrate to 3.x within this time period.

Bugfixes

  • Fix Observable.flatMap with maxConcurrency hangs (#6960)
  • Fix Observable.toFlowable(ERROR) not cancelling upon MissingBackpressureException (#7084)
  • Fix Flowable.concatMap backpressure with scalars. (#7091)

Version 2.2.19 - March 14, 2020 (Maven)

JavaDocs

⚠️ The 2.x version line is now in maintenance mode and will be supported only through bugfixes until February 28, 2021. No new features, behavior changes or documentation adjustments will be accepted or applied to 2.x. It is recommended to migrate to 3.x within this time period.

Bugfixes

  • Commit 7980c85b: Fix switchMap not canceling properly during onNext-cancel races.

Version 2.2.18 - February 21, 2020 (Maven)

⚠️ The 2.x version line is now in maintenance mode and will be supported only through bugfixes until February 28, 2021. No new features, behavior changes or documentation adjustments will be accepted or applied to 2.x. It is recommended to migrate to 3.x within this time period.

Bugfixes

  • Pull 6894: Fix groupBy not requesting more if a group is cancelled with buffered items.

Version 2.2.17 - January 12, 2020 (Maven)

Bugfixes

  • Pull 6827: Fix Flowable.flatMap not canceling the inner sources on outer error.

Version 2.2.16 - December 15, 2019 (Maven)

Bugfixes

... (truncated)

Commits

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update java code labels Jul 8, 2025
Bumps the rxjava group with 2 updates: [io.reactivex.rxjava2:rxandroid](https://github.com/ReactiveX/RxAndroid) and [io.reactivex.rxjava2:rxjava](https://github.com/ReactiveX/RxJava).


Updates `io.reactivex.rxjava2:rxandroid` from 2.0.1 to 2.1.1
- [Release notes](https://github.com/ReactiveX/RxAndroid/releases)
- [Changelog](https://github.com/ReactiveX/RxAndroid/blob/3.x/CHANGES.md)
- [Commits](ReactiveX/RxAndroid@2.0.1...2.1.1)

Updates `io.reactivex.rxjava2:rxjava` from 2.1.3 to 2.2.21
- [Release notes](https://github.com/ReactiveX/RxJava/releases)
- [Changelog](https://github.com/ReactiveX/RxJava/blob/v2.2.21/CHANGES.md)
- [Commits](ReactiveX/RxJava@v2.1.3...v2.2.21)

---
updated-dependencies:
- dependency-name: io.reactivex.rxjava2:rxandroid
  dependency-version: 2.1.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rxjava
- dependency-name: io.reactivex.rxjava2:rxjava
  dependency-version: 2.2.21
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rxjava
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/gradle/rxjava-f0ebb4d454 branch from 1772b5c to b14b0ff Compare July 9, 2025 03:30
@graycreate graycreate merged commit 18d75cc into main Jul 9, 2025
6 checks passed
@graycreate graycreate deleted the dependabot/gradle/rxjava-f0ebb4d454 branch July 9, 2025 04:03
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 java Pull requests that update java code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant
0