Merge pull request #9691 from appwrite/update-flutter-sdk

chore: update flutter sdk
This commit is contained in:
Steven Nguyen 2025-04-25 12:48:50 -07:00 committed by GitHub
commit 70f31bb48c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 25 additions and 13 deletions

View file

@ -59,7 +59,7 @@ return [
[ [
'key' => 'flutter', 'key' => 'flutter',
'name' => 'Flutter', 'name' => 'Flutter',
'version' => '15.0.1', 'version' => '15.0.2',
'url' => 'https://github.com/appwrite/sdk-for-flutter', 'url' => 'https://github.com/appwrite/sdk-for-flutter',
'package' => 'https://pub.dev/packages/appwrite', 'package' => 'https://pub.dev/packages/appwrite',
'enabled' => true, 'enabled' => true,

24
composer.lock generated
View file

@ -3660,16 +3660,16 @@
}, },
{ {
"name": "utopia-php/fetch", "name": "utopia-php/fetch",
"version": "0.4.1", "version": "0.4.2",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/utopia-php/fetch.git", "url": "https://github.com/utopia-php/fetch.git",
"reference": "65095dac14037db0c822fb5e209e5bd3187a0303" "reference": "83986d1be75a2fae4e684107fe70dd78a8e19b77"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/utopia-php/fetch/zipball/65095dac14037db0c822fb5e209e5bd3187a0303", "url": "https://api.github.com/repos/utopia-php/fetch/zipball/83986d1be75a2fae4e684107fe70dd78a8e19b77",
"reference": "65095dac14037db0c822fb5e209e5bd3187a0303", "reference": "83986d1be75a2fae4e684107fe70dd78a8e19b77",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -3693,9 +3693,9 @@
"description": "A simple library that provides an interface for making HTTP Requests.", "description": "A simple library that provides an interface for making HTTP Requests.",
"support": { "support": {
"issues": "https://github.com/utopia-php/fetch/issues", "issues": "https://github.com/utopia-php/fetch/issues",
"source": "https://github.com/utopia-php/fetch/tree/0.4.1" "source": "https://github.com/utopia-php/fetch/tree/0.4.2"
}, },
"time": "2025-04-14T07:34:27+00:00" "time": "2025-04-25T13:48:02+00:00"
}, },
{ {
"name": "utopia-php/framework", "name": "utopia-php/framework",
@ -4767,16 +4767,16 @@
"packages-dev": [ "packages-dev": [
{ {
"name": "appwrite/sdk-generator", "name": "appwrite/sdk-generator",
"version": "0.40.14", "version": "0.40.15",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/appwrite/sdk-generator.git", "url": "https://github.com/appwrite/sdk-generator.git",
"reference": "bf3bf29b24d2dce9f49e6849e3af2a1567592d02" "reference": "65c708b931b29b3e01c5cc7504a734ce2cc3dc95"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/appwrite/sdk-generator/zipball/bf3bf29b24d2dce9f49e6849e3af2a1567592d02", "url": "https://api.github.com/repos/appwrite/sdk-generator/zipball/65c708b931b29b3e01c5cc7504a734ce2cc3dc95",
"reference": "bf3bf29b24d2dce9f49e6849e3af2a1567592d02", "reference": "65c708b931b29b3e01c5cc7504a734ce2cc3dc95",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -4812,9 +4812,9 @@
"description": "Appwrite PHP library for generating API SDKs for multiple programming languages and platforms", "description": "Appwrite PHP library for generating API SDKs for multiple programming languages and platforms",
"support": { "support": {
"issues": "https://github.com/appwrite/sdk-generator/issues", "issues": "https://github.com/appwrite/sdk-generator/issues",
"source": "https://github.com/appwrite/sdk-generator/tree/0.40.14" "source": "https://github.com/appwrite/sdk-generator/tree/0.40.15"
}, },
"time": "2025-04-24T14:36:08+00:00" "time": "2025-04-25T08:50:44+00:00"
}, },
{ {
"name": "doctrine/annotations", "name": "doctrine/annotations",

View file

@ -1,5 +1,17 @@
## 15.0.2
* Avoid setting empty `User-Agent` header and only encode it when present.
* Update doc examples to use new multi-region endpoint: `https://<REGION>.cloud.appwrite.io/v1`.
## 15.0.1
* Removed `Content-Type` header from GET and HEAD requests.
* Add validation for setting endpoint in `setEndpoint` and `setEndPointRealtime` methods.
* Include Figma in list of available OAuth providers.
## 15.0.0 ## 15.0.0
* Encode `User-Agent` header to fix invalid HTTP header field value error.
* Breaking changes: * Breaking changes:
* Changed the typing of `AppwriteException`'s response parameter from a `dynamic` object to an optional string (`?String`). * Changed the typing of `AppwriteException`'s response parameter from a `dynamic` object to an optional string (`?String`).