-
Notifications
You must be signed in to change notification settings - Fork 335
Axt 2026 01 14 release branch #2465
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,16 +4,16 @@ Use tools/release/validate_and_propagate_versions.sh to propagate these versions | |
| //:axt_m2_repository and gradle-tests/settings.gradle | ||
| """ | ||
|
|
||
| RUNNER_VERSION = "1.8.0-alpha01" | ||
| RULES_VERSION = "1.8.0-alpha01" | ||
| RUNNER_VERSION = "1.7.0" | ||
| RULES_VERSION = "1.7.0" | ||
| MONITOR_VERSION = "1.9.0-alpha01" | ||
| ESPRESSO_VERSION = "3.8.0-alpha01" | ||
| CORE_VERSION = "1.8.0-alpha01" | ||
| ESPRESSO_DEVICE_VERSION = "1.2.0-alpha01" | ||
| ANDROIDX_JUNIT_VERSION = "1.4.0-alpha01" | ||
| ANDROIDX_TRUTH_VERSION = "1.8.0-alpha01" | ||
| ORCHESTRATOR_VERSION = "1.7.0-alpha01" | ||
| SERVICES_VERSION = "1.7.0-alpha01" | ||
| ESPRESSO_VERSION = "3.7.0" | ||
| CORE_VERSION = "1.7.0" | ||
| ESPRESSO_DEVICE_VERSION = "1.1.0" | ||
| ANDROIDX_JUNIT_VERSION = "1.3.0" | ||
| ANDROIDX_TRUTH_VERSION = "1.7.0" | ||
| ORCHESTRATOR_VERSION = "1.6.1" | ||
| SERVICES_VERSION = "1.6.0" | ||
|
Comment on lines
+7
to
+16
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There's an inconsistency in the version updates. Most versions are being reverted to older, stable releases (e.g., |
||
|
|
||
| # Full maven artifact strings for apks. | ||
| SERVICES_APK_ARTIFACT = "androidx.test.services:test-services:%s" % SERVICES_VERSION | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -44,5 +44,6 @@ android { | |
|
|
||
| dependencies { | ||
| androidTestImplementation libs.runner | ||
| androidTestImplementation libs.monitor | ||
| } | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -18,6 +18,7 @@ dependencyResolutionManagement { | |
| versionCatalogs { | ||
| libs { | ||
| library('core', 'androidx.test:core:{CORE_VERSION}') | ||
| library('monitor', 'androidx.test:monitor:{MONITOR_VERSION}') | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For better maintainability and readability, it's a good practice to keep the library definitions in the version catalog sorted alphabetically by their alias. Please consider reordering all |
||
| library('runner', 'androidx.test:runner:{RUNNER_VERSION}') | ||
| library('ext.junit', 'androidx.test.ext:junit:{ANDROIDX_JUNIT_VERSION}') | ||
| library('ext.truth', 'androidx.test.ext:truth:{ANDROIDX_TRUTH_VERSION}') | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
srcslist for theaxt_m2repositoryhas been reduced to a single artifact. This repository is intended to contain all AndroidX Test artifacts for Bazel-based testing. Removing almost all artifacts will likely break builds that depend on this. This change seems to be a result of an error in the release automation script (tools/release/validate_and_propagate_versions.sh). Please verify that this change is intentional. If not, the list of artifacts should be restored.