-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Update wordpress-rs to trunk-e062d94e
#22372
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 wordpress-rs to trunk-e062d94e
#22372
Conversation
Pass empty interceptors list to API client constructors following the addition of interceptors support in wordpress-rs. Automattic/wordpress-rs#1041 Changes: - Update `WpApiClient`, `WpLoginClient`, and `WpRequestExecutor` calls to include `interceptors = emptyList()` - Bump wordpress-rs version in libs.versions.toml
|
Project dependencies changeslist! Upgraded Dependencies
rs.wordpress.api:android:trunk-e062d94e66354cad9bd710219f321104782bb6fc, (changed from trunk-3d2dafdc1f8b058b4ed9101673fdf690671da73c)
rs.wordpress.api:kotlin:trunk-e062d94e66354cad9bd710219f321104782bb6fc, (changed from trunk-3d2dafdc1f8b058b4ed9101673fdf690671da73c)tree +--- project :libs:fluxc
-| \--- rs.wordpress.api:android:trunk-3d2dafdc1f8b058b4ed9101673fdf690671da73c
-| +--- com.squareup.okhttp3:okhttp:4.12.0 -> 5.3.1 (*)
-| +--- com.squareup.okhttp3:okhttp-tls:4.12.0
-| | +--- com.squareup.okhttp3:okhttp:4.12.0 -> 5.3.1 (*)
-| | +--- com.squareup.okio:okio:3.6.0 -> 3.16.3 (*)
-| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.21 -> 1.9.24 (*)
-| +--- net.java.dev.jna:jna:5.18.1
-| +--- rs.wordpress.api:kotlin:trunk-3d2dafdc1f8b058b4ed9101673fdf690671da73c
-| | +--- com.squareup.okhttp3:okhttp:4.12.0 -> 5.3.1 (*)
-| | +--- com.squareup.okhttp3:okhttp-tls:4.12.0 (*)
-| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2 (*)
-| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 -> 2.2.21 (*)
-| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 -> 2.2.21 (*)
+| \--- rs.wordpress.api:android:trunk-e062d94e66354cad9bd710219f321104782bb6fc
+| +--- com.squareup.okhttp3:okhttp:4.12.0 -> 5.3.1 (*)
+| +--- com.squareup.okhttp3:okhttp-tls:4.12.0
+| | +--- com.squareup.okhttp3:okhttp:4.12.0 -> 5.3.1 (*)
+| | +--- com.squareup.okio:okio:3.6.0 -> 3.16.3 (*)
+| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.21 -> 1.9.24 (*)
+| +--- net.java.dev.jna:jna:5.18.1
+| +--- rs.wordpress.api:kotlin:trunk-e062d94e66354cad9bd710219f321104782bb6fc
+| | +--- com.squareup.okhttp3:okhttp:4.12.0 -> 5.3.1 (*)
+| | +--- com.squareup.okhttp3:okhttp-tls:4.12.0 (*)
+| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2 (*)
+| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 -> 2.2.21 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 -> 2.2.21 (*)
-\--- rs.wordpress.api:android:trunk-3d2dafdc1f8b058b4ed9101673fdf690671da73c (*)
+\--- rs.wordpress.api:android:trunk-e062d94e66354cad9bd710219f321104782bb6fc (*) |
|
| App Name | WordPress | |
| Flavor | Jalapeno | |
| Build Type | Debug | |
| Version | pr22372-7000b29 | |
| Commit | 7000b29 | |
| Direct Download | wordpress-prototype-build-pr22372-7000b29.apk |
|
| App Name | Jetpack | |
| Flavor | Jalapeno | |
| Build Type | Debug | |
| Version | pr22372-7000b29 | |
| Commit | 7000b29 | |
| Direct Download | jetpack-prototype-build-pr22372-7000b29.apk |
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## trunk #22372 +/- ##
==========================================
- Coverage 39.03% 39.03% -0.01%
==========================================
Files 2203 2203
Lines 106316 106318 +2
Branches 15057 15057
==========================================
Hits 41499 41499
- Misses 61328 61330 +2
Partials 3489 3489 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|





Description
Pass empty interceptors list to API client constructors following the addition of interceptors support in wordpress-rs.
Automattic/wordpress-rs#1041
Changes:
WpApiClient,WpLoginClient, andWpRequestExecutorcalls to includeinterceptors = emptyList()wordpress-rsversion inlibs.versions.tomlTesting instructions
This is a dependency update that adds interceptors support to wordpress-rs API clients. Since we're passing empty interceptor lists, everything should work exactly as before - no functional changes expected.
For the extra diligent, you can verify the affected code paths:
WpComApiClient(Subscribers)WpLoginClient(Self-hosted site login)Part of CMM-998