8000 chore: release flutter 20.3.2 by ChiragAgg5k · Pull Request #10838 · appwrite/appwrite · GitHub
[go: up one dir, main page]

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
2 changes: 1 addition & 1 deletion app/config/platforms.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
[
'key' => 'flutter',
'name' => 'Flutter',
'version' => '20.3.1',
'version' => '20.3.2',
Copy link
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

Verify Flutter SDK version 20.3.2 exists and is accessible.

The version bump from 20.3.1 to 20.3.2 is a straightforward patch release. Confirm the version is available and accessible before merging.


🏁 Script executed:

#!/bin/bash
# Description: Verify that Flutter SDK version 20.3.2 exists in the pub.dev package registry

# Check if the package version exists and fetch metadata
curl -s https://pub.dev/api/packages/appwrite | jq '.versions[] | select(.version == "20.3.2")'

Length of output: 0



---

🌐 Web query:

```web
Flutter SDK version 20.3.2 release

💡 Result:

Do you mean the Flutter framework SDK (flutter.dev) or a third‑party "Flutter SDK" package (e.g., from a vendor)? I can look up the release notes for version 20.3.2 — which one should I search?



---

🌐 Web query:

```web
Appwrite Flutter SDK version 20.3.2

💡 Result:

I couldn't find a published Appwrite Flutter SDK release v20.3.2. The latest published Flutter SDK versions on pub.dev and GitHub are 20.3.1 (current) and 20.3.0 (prior), with changelogs available. To use the latest published Flutter SDK, add (example):

  • flutter pub add appwrite (installs latest)
  • or in pubspec.yaml: appwrite: ^20.3.1

Sources: pub.dev package page and changelog, and GitHub releases. [1][2]

References
[1] pub.dev — appwrite package (versions & changelog).
[2] GitHub — appwrite/sdk-for-flutter releases.


Do not use version 20.3.2 — it does not exist in the Appwrite Flutter SDK.

The latest published Flutter SDK versions are 20.3.1 (current) and 20.3.0 (prior). Update line 63 in app/config/platforms.php to use version 20.3.1 or provide documentation justifying a pre-release version.

🤖 Prompt for AI Agents
In app/config/platforms.php around line 63, the Flutter SDK version is set to
the nonexistent "20.3.2"; change that value to the published "20.3.1" (or, if
you intentionally need a pre-release, replace the value with the exact
pre-release tag and add a short comment/documentation entry explaining why a
pre-release is required and where it is sourced from). Ensure the updated line
uses the exact string "20.3.1" if opting for the stable release and commit the
change.

'url' => 'https://github.com/appwrite/sdk-for-flutter',
'package' => 'https://pub.dev/packages/appwrite',
'enabled' => true,
Expand Down
7 changes: 0 additions & 7 deletions docker-compose.override.yml

This file was deleted.

4 changes: 4 additions & 0 deletions docs/sdks/flutter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## 20.3.2

* Fix OAuth2 browser infinite redirect issue

## 20.3.1

* Fix passing of `null` values and stripping only non-nullable optional parameters from the request body
Expand Down
0