Skip to content

feat: Android SDK update for version 23.0.0#119

Merged
ChiragAgg5k merged 2 commits intomainfrom
dev
Mar 30, 2026
Merged

feat: Android SDK update for version 23.0.0#119
ChiragAgg5k merged 2 commits intomainfrom
dev

Conversation

@ChiragAgg5k
Copy link
Copy Markdown
Member

@ChiragAgg5k ChiragAgg5k commented Mar 30, 2026

This PR contains updates to the Android SDK for version 23.0.0.

Summary by CodeRabbit

Release Notes

  • New Features

    • Added impersonation APIs with expanded user model fields
    • Introduced new client accessors for enhanced API access
    • Added caching, filtering, and counting parameters
    • Introduced new screenshot and Realtime channel helpers
    • Added new account verification method
    • Added developer keys support
  • Breaking Changes

    • Updated sequence identifier data type
    • Modified channel factory requirements
    • Updated enum structures and parameter shapes
    • Removed legacy output parameter

@coderabbitai
Copy link
Copy Markdown

coderabbitai bot commented Mar 30, 2026

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: bb02d87f-6b18-4c14-9152-106a41fb977c

📥 Commits

Reviewing files that changed from the base of the PR and between edde7d8 and d29b86e.

📒 Files selected for processing (1)
  • CHANGELOG.md
✅ Files skipped from review due to trivial changes (1)
  • CHANGELOG.md

Walkthrough

This PR bumps the Android SDK version to 23.0.0. CHANGELOG.md gains a new ## 23.0.0 section (notes a mistaken 22.2.0 release) with a “Summary of changes since 14.1.0” listing breaking and non-breaking API changes. README.md updates Gradle and Maven install snippets to reference 23.0.0. library/src/main/java/io/appwrite/Client.kt updates the default x-sdk-version header to 23.0.0.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~3 minutes

🚥 Pre-merge checks | ✅ 3
✅ Passed checks (3 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title accurately describes the main change: updating the Android SDK to version 23.0.0, which is reflected across all modified files (CHANGELOG.md, README.md, Client.kt).
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch dev

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@greptile-apps
Copy link
Copy Markdown

greptile-apps bot commented Mar 30, 2026

Greptile Summary

This PR bumps the Android SDK to version 23.0.0, updating the x-sdk-version header in Client.kt and the installation snippets in README.md. A new CHANGELOG.md section is added as a rolled-up summary of all changes accumulated since earlier releases. The code change itself is minimal and correct; the only concerns are editorial issues in the changelog.

Confidence Score: 5/5

Safe to merge; the only change to production code is a single-line version string bump.

All findings are P2 documentation/style issues in CHANGELOG.md. The sole runtime-visible change (x-sdk-version: 23.0.0) is correct and consistent across all three files.

CHANGELOG.md — the "since 12.3.0" reference and contradictory Output enum bullets should be cleaned up before this changelog entry is published.

Important Files Changed

Filename Overview
library/src/main/java/io/appwrite/Client.kt Single-line version bump of x-sdk-version header from 14.1.0 to 23.0.0; no logic changes.
README.md Dependency version updated from 14.1.0 to 23.0.0 in both Gradle and Maven install snippets.
CHANGELOG.md New 23.0.0 section added as a rolled-up summary; contains a stale "since 12.3.0" reference and a self-contradictory Output enum entry.

Reviews (1): Last reviewed commit: "chore: update Android SDK to 23.0.0" | Re-trigger Greptile

Copy link
Copy Markdown

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

🧹 Nitpick comments (1)
library/src/main/java/io/appwrite/Client.kt (1)

90-90: Avoid hardcoding x-sdk-version; use build-time version source.

At Line 90, this can drift from the actual published artifact version (SDK_VERSION/BuildConfig.SDK_VERSION), causing inconsistent SDK metadata in outbound requests.

Proposed fix
-            "x-sdk-version" to "23.0.0",
+            "x-sdk-version" to BuildConfig.SDK_VERSION,
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@library/src/main/java/io/appwrite/Client.kt` at line 90, Replace the
hardcoded header value "x-sdk-version" -> "23.0.0" in Client.kt with a
build-time constant (e.g., SDK_VERSION or BuildConfig.SDK_VERSION) so the header
reflects the actual published artifact version; update the header construction
where the map includes "x-sdk-version" to read from the chosen constant
(SDK_VERSION/BuildConfig.SDK_VERSION) and ensure the constant is
defined/initialized from the build system so it stays in sync with releases.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Nitpick comments:
In `@library/src/main/java/io/appwrite/Client.kt`:
- Line 90: Replace the hardcoded header value "x-sdk-version" -> "23.0.0" in
Client.kt with a build-time constant (e.g., SDK_VERSION or
BuildConfig.SDK_VERSION) so the header reflects the actual published artifact
version; update the header construction where the map includes "x-sdk-version"
to read from the chosen constant (SDK_VERSION/BuildConfig.SDK_VERSION) and
ensure the constant is defined/initialized from the build system so it stays in
sync with releases.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: 34328423-c91c-49c2-ab68-17c43c5c443b

📥 Commits

Reviewing files that changed from the base of the PR and between 6e551b2 and edde7d8.

📒 Files selected for processing (3)
  • CHANGELOG.md
  • README.md
  • library/src/main/java/io/appwrite/Client.kt

@ChiragAgg5k ChiragAgg5k merged commit 658f65f into main Mar 30, 2026
1 check passed
@ChiragAgg5k ChiragAgg5k deleted the dev branch March 30, 2026 11:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants