Releases: appwrite/sdk-for-web
Releases · appwrite/sdk-for-web
4.0.0
- Support for Appwrite 0.10.0
- Introduces
subscribe(channels, callback)
methods to receive updates in realtime - Documentation - Introduces Magic URL Login - Documentation
3.2.0
- Support for Appwrite 0.9
- Image Crop Gravity support in image preview service
- New endpoint in Account getSession to get session by ID
- Updated cross-fetch dependency to
3.1.4
3.1.0
- Changed IIFE (CDN Usage) namespace to
window.Appwrite
towindow
3.0.5
- add better param checking against
undefined
3.0.4
- Imports
cross-fetch
andisomorphic-form-data
as polyfills to be run in Node.js and react-native - Fixes Readme
3.0.3
- Fallback for url.search on older Node versions
- Fixed Readme (Getting started)
- Fixed header parsing
3.0.1
- Support for Appwrite 0.8.0
- Isomorphic (supports Node.js and SSR now)
- TypeScript Generics for every API Response added
const user: TYPE = await sdk.account.get()
const user = await sdk.account.get<TYPE>()
- Anonymous login
- JWT Support
- JWT authentication can be used with
sdk.setJWT(JWT_GENERATED_IN_CLIENT)
- Update membership roles
- New image preview features supports
borderRadius
,borderColor
,borderWidth
andopacity
- BREAKING SDK Import changed to named and needs to be changed to:
import { Appwrite } from "appwrite";
- BREAKING Renamed parameater
inviteId
tomembershipId
on teams.updateMembershipStatus and teams.deleteMembership