[PR #5729] [CLOSED] Update SDK to 1.0.0-2663-3355fed7 #32010

Closed
opened 2026-04-18 15:27:34 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/bitwarden/android/pull/5729
Author: @github-actions[bot]
Created: 8/18/2025
Status: Closed

Base: mainHead: sdlc/sdk-update


📝 Commits (10+)

  • aba43d4 Add test-sdk-update workflow and script
  • 849a093 Create action to setup android build
  • 3347a00 Rename workflow and set run-name
  • c639940 Set default
  • 78f95a6 Add Update job
  • 57c99fc Add step to get current version
  • b0d518d Add step to retrieve sdk changelog
  • 5a91985 Remove java version
  • eaf2e57 Log inputs
  • 3f16820 Update gitignore for ruby, bundler and .bak files

📊 Changes

6 files changed (+244 additions, -6 deletions)

View changed files

.github/actions/setup-android-build/action.yml (+49 -0)
📝 .github/workflows/sdlc-sdk-update.yml (+126 -5)
📝 .gitignore (+7 -0)
📝 gradle/libs.versions.toml (+1 -1)
scripts/get-sdk-changelog.sh (+31 -0)
scripts/update-sdk-version.sh (+30 -0)

📄 Description

Updates the SDK version from 1.0.0-2450-9fe3aeda to com.bitwarden:sdk-android 1.0.0-2663-3355fed7

What's Changed

📝 Getting changelog from 9fe3aeda to 3355fed7 in bitwarden/sdk-internal

  • PM-24243 Add load_flags method to wasm PlatformClient (bitwarden/sdk-internal#369) (4813492)
  • PM-22256 Add type and default_user_collection_email to collection (#371) (bceb681)
  • [no ticket] Fix wasm being imported on UNIFFI builds (#385) (20e3dfa)
  • SRE-2330 cleanup references to auth-email (#286) (cca3b95)
  • [deps]: Update typescript to v5.9.2 (#394) (b73c321)
  • Update wasm to use the same method as mobile for feature flags (#378) (574330e)
  • [deps]: Update Rust to v2025-08-18 (#271) (3355fed)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/bitwarden/android/pull/5729 **Author:** [@github-actions[bot]](https://github.com/apps/github-actions) **Created:** 8/18/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `sdlc/sdk-update` --- ### 📝 Commits (10+) - [`aba43d4`](https://github.com/bitwarden/android/commit/aba43d4079cdf40694c274e2bcf6014dd168a766) Add test-sdk-update workflow and script - [`849a093`](https://github.com/bitwarden/android/commit/849a0934a084e720996e15224df9d53aafdd6969) Create action to setup android build - [`3347a00`](https://github.com/bitwarden/android/commit/3347a007bded25778644cf3a662fc64d80f01c44) Rename workflow and set run-name - [`c639940`](https://github.com/bitwarden/android/commit/c639940ec9fbec8c548db8a62afcb1c725022887) Set default - [`78f95a6`](https://github.com/bitwarden/android/commit/78f95a6caa516065b67e7160d6c544c0284eda33) Add Update job - [`57c99fc`](https://github.com/bitwarden/android/commit/57c99fced666694da4d042e322cb0a92940fb717) Add step to get current version - [`b0d518d`](https://github.com/bitwarden/android/commit/b0d518d9e72f21f5a2221863c6990e3a20ef4f3f) Add step to retrieve sdk changelog - [`5a91985`](https://github.com/bitwarden/android/commit/5a919851ef53a2e64bc4e43a1bbbe3f36567b490) Remove java version - [`eaf2e57`](https://github.com/bitwarden/android/commit/eaf2e57803aa8f35d59ec3bcdc8ffce6b2e6bead) Log inputs - [`3f16820`](https://github.com/bitwarden/android/commit/3f16820c7e7db1ce3ba518c6d7a5567d2e6143dd) Update gitignore for ruby, bundler and .bak files ### 📊 Changes **6 files changed** (+244 additions, -6 deletions) <details> <summary>View changed files</summary> ➕ `.github/actions/setup-android-build/action.yml` (+49 -0) 📝 `.github/workflows/sdlc-sdk-update.yml` (+126 -5) 📝 `.gitignore` (+7 -0) 📝 `gradle/libs.versions.toml` (+1 -1) ➕ `scripts/get-sdk-changelog.sh` (+31 -0) ➕ `scripts/update-sdk-version.sh` (+30 -0) </details> ### 📄 Description Updates the SDK version from `1.0.0-2450-9fe3aeda` to `com.bitwarden:sdk-android 1.0.0-2663-3355fed7` ## What's Changed 📝 Getting changelog from 9fe3aeda to 3355fed7 in bitwarden/sdk-internal - [PM-24243] Add load_flags method to wasm PlatformClient (bitwarden/sdk-internal#369) (4813492) - [PM-22256] Add type and default_user_collection_email to collection (#371) (bceb681) - [no ticket] Fix wasm being imported on UNIFFI builds (#385) (20e3dfa) - SRE-2330 cleanup references to auth-email (#286) (cca3b95) - [deps]: Update typescript to v5.9.2 (#394) (b73c321) - Update wasm to use the same method as mobile for feature flags (#378) (574330e) - [deps]: Update Rust to v2025-08-18 (#271) (3355fed) [PM-24243]: https://bitwarden.atlassian.net/browse/PM-24243?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ [PM-22256]: https://bitwarden.atlassian.net/browse/PM-22256?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-04-18 15:27:34 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/android#32010