chore: remove sdk release artifacts from automation PR

This commit is contained in:
Chirag Aggarwal
2026-02-20 14:04:06 +05:30
parent 0af495f241
commit 0431337b22
10 changed files with 7 additions and 59 deletions
+7 -7
View File
@@ -11,7 +11,7 @@ return [
[
'key' => 'web',
'name' => 'Web',
'version' => '22.4.0',
'version' => '22.3.1',
'url' => 'https://github.com/appwrite/sdk-for-web',
'package' => 'https://www.npmjs.com/package/appwrite',
'enabled' => true,
@@ -60,7 +60,7 @@ return [
[
'key' => 'flutter',
'name' => 'Flutter',
'version' => '21.4.0',
'version' => '21.1.0',
'url' => 'https://github.com/appwrite/sdk-for-flutter',
'package' => 'https://pub.dev/packages/appwrite',
'enabled' => true,
@@ -79,7 +79,7 @@ return [
[
'key' => 'apple',
'name' => 'Apple',
'version' => '14.3.0',
'version' => '14.1.0',
'url' => 'https://github.com/appwrite/sdk-for-apple',
'package' => 'https://github.com/appwrite/sdk-for-apple',
'enabled' => true,
@@ -117,7 +117,7 @@ return [
'key' => 'android',
'name' => 'Android',
'namespace' => 'io.appwrite',
'version' => '12.2.0',
'version' => '12.1.0',
'url' => 'https://github.com/appwrite/sdk-for-android',
'package' => 'https://search.maven.org/artifact/io.appwrite/sdk-for-android',
'enabled' => true,
@@ -140,7 +140,7 @@ return [
[
'key' => 'react-native',
'name' => 'React Native',
'version' => '0.24.0',
'version' => '0.23.1',
'url' => 'https://github.com/appwrite/sdk-for-react-native',
'package' => 'https://npmjs.com/package/react-native-appwrite',
'enabled' => true,
@@ -208,7 +208,7 @@ return [
[
'key' => 'web',
'name' => 'Console',
'version' => '22.4.0',
'version' => '0.3.0',
'url' => '',
'package' => '',
'enabled' => true,
@@ -227,7 +227,7 @@ return [
[
'key' => 'cli',
'name' => 'Command Line',
'version' => '13.5.0',
'version' => '13.4.0',
'url' => 'https://github.com/appwrite/sdk-for-cli',
'package' => 'https://www.npmjs.com/package/appwrite-cli',
'enabled' => true,
@@ -1,7 +0,0 @@
```bash
appwrite projects create-schedule \
--project-id <PROJECT_ID> \
--resource-type function \
--resource-id <RESOURCE_ID> \
--schedule ''
```
@@ -1,5 +0,0 @@
```bash
appwrite projects get-schedule \
--project-id <PROJECT_ID> \
--schedule-id <SCHEDULE_ID>
```
@@ -1,4 +0,0 @@
```bash
appwrite projects list-schedules \
--project-id <PROJECT_ID>
```
-6
View File
@@ -1,11 +1,5 @@
# Change Log
## 12.2.0
* Added Channel<_Document>.upsert() and Channel<_Row>.upsert() API methods to upsert documents and rows in channels.
* Added new query filters: containsAny(attribute, List<Any>) and containsAll(attribute, List<Any>) for advanced matching on array/relationship attributes.
* Realtime improvements: improved WebSocket lifecycle and connection handling. Introduced generation-based checks to avoid processing messages from stale sockets and ensure sequential socket recreation on reconnects.
## 12.1.0
* Add `queries` parameter to Realtime subscriptions for filtering events
-6
View File
@@ -1,11 +1,5 @@
# Change Log
## 14.3.0
* Added upsert() support for RealtimeChannel on both Document and Row variants to perform upsert operations over real-time channels.
* Introduced new Query filter methods: contains(_:, value:), containsAny(_:, value: [Any]), containsAll(_:, value: [Any]) for enhanced querying capabilities (substring and multi-value containment).
* Documentation and packaging updates to align with the new release: README dependency example updated from 14.2.0 to 14.1.0, and server compatibility note updated to indicate Appwrite server version 1.8.x compatibility.
## 14.1.0
* Add `queries` parameter to Realtime subscriptions for filtering events
-5
View File
@@ -1,10 +1,5 @@
# Change Log
## 13.5.0
* New: Added CLI commands under projects: `list-schedules`, `create-schedule`, and `get-schedule` for managing project schedules.
* Packaging/build: Updated packaging to support explicit ESM/CJS outputs with exports. main now points to dist/index.cjs, module to dist/index.js, and exports include type and entry-point mappings. This enables better compatibility for both ESM and CommonJS users.
## 13.4.0
* Add `--queries` option to `list-keys` command
-9
View File
@@ -1,14 +1,5 @@
# Change Log
## 21.4.0
* Added upsert() to DocumentChannel and RowChannel to support upsert operations on documents and rows.
* Added Query.contains, Query.containsAny, and Query.containsAll for enhanced filtering capabilities.
## 21.3.0
* Added memberships realtime channel helper
## 21.1.0
* Add `queries` parameter to Realtime subscriptions for filtering events
-4
View File
@@ -1,9 +1,5 @@
# Change log
## 0.24.0
* Added Query.contains, Query.containsAny, and Query.containsAll for enhanced filtering capabilities.
## 0.23.1
* Add `upsert` method to Realtime `Channels` helper class
-6
View File
@@ -1,11 +1,5 @@
# Change Log
## 22.4.0
* Added Query.containsAny(attribute, value[]) to filter resources where the attribute contains any of the given values.
* Added Query.containsAll(attribute, value[]) to filter resources where the attribute contains all of the given values.
* Updated Query.contains documentation to clarify behavior: string attributes are matched by substring, and for array attributes use containsAny/containsAll.
## 22.3.1
* Add `upsert` method to Realtime `Channels` helper class