Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Gradle Wrapper Validation
uses: gradle/wrapper-validation-action@v1
uses: gradle/actions/wrapper-validation@v4

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

do we need this?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Failing on main — GitHub Actions dropped support for Node.js 16 on their runners, and gradle/wrapper-validation-action@v1 is pinned to Node 16 Need this bump to get CI green again.

- name: Install JDK
uses: actions/setup-java@v2
with:
Expand All @@ -34,7 +34,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Gradle Wrapper Validation
uses: gradle/wrapper-validation-action@v1
uses: gradle/actions/wrapper-validation@v4
- name: Install JDK
uses: actions/setup-java@v2
with:
Expand All @@ -50,7 +50,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Gradle Wrapper Validation
uses: gradle/wrapper-validation-action@v1
uses: gradle/actions/wrapper-validation@v4
- name: Install JDK
uses: actions/setup-java@v2
with:
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
v2.0.3 - 05/20/2026
-------------

### Added
- [PR #268](https://github.com/uber/rides-android-sdk/pull/268) Added `UberEnvironment` enum and `environment` parameter on `AuthContext` to let 3P developers target sandbox vs production environments

### Fixed
- [PR #265](https://github.com/uber/rides-android-sdk/pull/265) Handle PAR (pushed authorization request) failures gracefully to continue authentication without metadata

v0.10.8 - 09/22/2023
-------------

Expand Down
4 changes: 2 additions & 2 deletions authentication/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ POM_NAME=Uber Authentication SDK (Android)
POM_ARTIFACT_ID=authentication
POM_PACKAGING=aar
POM_DESCRIPTION=The official Uber Core Android SDK.
version=2.0.3-SNAPSHOT
VERSION_NAME=2.0.3-SNAPSHOT
version=2.0.4-SNAPSHOT
VERSION_NAME=2.0.4-SNAPSHOT
GROUP=com.uber.sdk2
4 changes: 2 additions & 2 deletions core/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ POM_NAME=Uber Core (Android)
POM_ARTIFACT_ID=core
POM_PACKAGING=aar
POM_DESCRIPTION=The official Uber Core Android SDK.
version=2.0.3-SNAPSHOT
VERSION_NAME=2.0.3-SNAPSHOT
version=2.0.4-SNAPSHOT
VERSION_NAME=2.0.4-SNAPSHOT
GROUP=com.uber.sdk2
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
agp = "8.2.2"
androidxVersion = "1.7.0"
uberJava = "0.8.5"
mavenPublish = "0.27.0"
mavenPublish = "0.33.0"
kotlin = "1.9.23"
junit = "4.13.2"
runner = "1.0.2"
Expand Down
Loading