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
3 changes: 2 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,10 @@ jobs:
echo "tag=latest" >> "$GITHUB_OUTPUT"
fi

- name: Install dependencies and build
- name: Install dependencies, audit, and build
run: |
npm ci
npm audit --audit-level=high --omit=dev
npm run build

- name: Publish
Expand Down
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
# Change Log

## 26.2.0

* Added: `Client.setBearer()` to authenticate requests with an OAuth access token
* Added: `appwrite` value to `OAuthProvider` enum
* Added: `Query.vectorDot`, `Query.vectorCosine`, `Query.vectorEuclidean` vector similarity query helpers
* Added: geolocation and network fields (`city`, `timeZone`, `latitude`, `isp`, ASN, connection info) to `Locale` model
* Fixed: `AppwriteException` message now falls back to response text when missing

## 26.1.0

* Added: Realtime connections now send the configured JWT for authentication.
* Added: Forwarded `impersonateUserId` on `avatars` and `storage` file requests.
* Fixed: URL-encode path parameters across all services.
* Fixed: `ping` now sends an `Accept: application/json` header.

## 26.0.0
Comment thread
greptile-apps[bot] marked this conversation as resolved.

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import { Client, Account } from "appwrite";
To install with a CDN (content delivery network) add the following scripts to the bottom of your <body> tag, but before you use any Appwrite services:

```html
<script src="https://cdn.jsdelivr.net/npm/appwrite@26.1.0"></script>
<script src="https://cdn.jsdelivr.net/npm/appwrite@26.2.0"></script>
```


Expand Down
Loading