Skip to content
Closed
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## 11.0.1

* Added `rust-1.83` to `Runtime`, `Runtimes`, and `BuildRuntime` enums

## 11.0.0

* Breaking: Moved SMTP, email template, and all policy methods from `Projects` to `Project` service
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@appwrite.io/console",
"homepage": "https://appwrite.io/support",
"description": "Appwrite is an open-source self-hosted backend server that abstracts and simplifies complex and repetitive development tasks behind a very simple REST API",
"version": "11.0.0",
"version": "11.0.1",
"license": "BSD-3-Clause",
"main": "dist/cjs/sdk.js",
"exports": {
Expand Down
2 changes: 1 addition & 1 deletion src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ class Client {
'x-sdk-name': 'Console',
'x-sdk-platform': 'console',
'x-sdk-language': 'web',
'x-sdk-version': '11.0.0',
'x-sdk-version': '11.0.1',
'X-Appwrite-Response-Format': '1.9.2',
};

Expand Down
1 change: 1 addition & 0 deletions src/enums/build-runtime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ export enum BuildRuntime {
Go124 = 'go-1.24',
Go125 = 'go-1.25',
Go126 = 'go-1.26',
Rust183 = 'rust-1.83',
Static1 = 'static-1',
Flutter324 = 'flutter-3.24',
Flutter327 = 'flutter-3.27',
Expand Down
1 change: 1 addition & 0 deletions src/enums/runtime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ export enum Runtime {
Go124 = 'go-1.24',
Go125 = 'go-1.25',
Go126 = 'go-1.26',
Rust183 = 'rust-1.83',
Static1 = 'static-1',
Flutter324 = 'flutter-3.24',
Flutter327 = 'flutter-3.27',
Expand Down
1 change: 1 addition & 0 deletions src/enums/runtimes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ export enum Runtimes {
Go124 = 'go-1.24',
Go125 = 'go-1.25',
Go126 = 'go-1.26',
Rust183 = 'rust-1.83',
Static1 = 'static-1',
Flutter324 = 'flutter-3.24',
Flutter327 = 'flutter-3.27',
Expand Down
Loading