feat: React Native SDK update for version 0.30.0#103
feat: React Native SDK update for version 0.30.0#103ChiragAgg5k wants to merge 1 commit intomainfrom
Conversation
Greptile SummaryThis PR updates the React Native SDK to version 0.30.0, adding a
Confidence Score: 3/5The publish workflow references an unverified actions/checkout@v6 tag that could break every future release run. All TypeScript source changes are clean and correct. The main risk is actions/checkout@v6 in the publish workflow — web search shows v5 as the latest released tag, so v6 may not resolve, silently breaking the NPM publish pipeline on the next release. .github/workflows/publish.yml — the actions/checkout@v6 reference should be verified against the action's published releases before merging. Important Files Changed
Reviews (1): Last reviewed commit: "chore: update React Native SDK to 0.30.0" | Re-trigger Greptile |
|
|
||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - uses: actions/checkout@v6 |
There was a problem hiding this comment.
Unverified
actions/checkout version
Web search confirms actions/setup-node@v6 is current (v6.4.0, released Apr 2026), but actions/checkout appears to be at v5 as the latest stable release — v6 is not shown on the action's release page. If actions/checkout@v6 does not exist, this workflow step would fail on every triggered run. It is worth double-checking the correct version tag before merging.
| * Added: Added `setCookie()` method to `Client` for forwarding incoming `Cookie` headers in server-side runtimes | ||
| * Added: Added `Fusionauth`, `Keycloak`, and `Kick` OAuth providers to `OAuthProvider` enum | ||
| * Updated: Updated `X-Appwrite-Response-Format` header to `1.9.4` | ||
| * Updated: Added `postcss` to dev dependencies |
There was a problem hiding this comment.
Inaccurate changelog entry for postcss
The entry says "Added postcss to dev dependencies" but postcss was actually added to the overrides section in package.json, not to devDependencies. The overrides field forces npm to use a specific version of a transitive dependency — it doesn't install postcss as a first-class dev dependency. Readers checking the changelog and then inspecting package.json will find no postcss entry in devDependencies and may be confused.
|
Closing — changes not substantial enough to warrant a release. |
This PR contains updates to the SDK for version 0.30.0.
What's Changed
setCookie()method toClientfor forwarding incomingCookieheaders in server-side runtimesFusionauth,Keycloak, andKickOAuth providers toOAuthProviderenumX-Appwrite-Response-Formatheader to1.9.4postcssto dev dependencies