Changelog
Release history and migration notes for MyLib.
v2.3.1 — 2025-06-01
LatestBug fixes:
- Fixed
users.list()not respecting theorderparameter whensortwas omitted - Fixed TypeScript type error in
client.users.create()whenmetadatakeys contain dots - Improved error message when
apiKeyis an empty string
v2.3.0 — 2025-04-15
New features:
- Added
users.search()for full-text search across user profiles - Added
metadatafield support tousers.create()andusers.update() - Added
client.setToken()helper for runtime token rotation
Improvements:
users.list()now supports cursor-based pagination viacursorparam- Response parsing is now ~30% faster due to schema pre-compilation
Note
The
page-based pagination in users.list() is still supported but deprecated. Migrate to cursor-based pagination before v3.0.v2.2.0 — 2025-02-10
New features:
- Added
DELETE /api/v1/users/{id}endpoint - Added
PATCH /api/v1/users/{id}for partial updates - Added
X-Request-IDheader to all responses for tracing
Breaking changes (from v2.1):
users.delete()now returnsvoidinstead of the deleted user object
v2.1.0 — 2024-11-20
New features:
- Initial public release of the REST API
GET /api/v1/users— list usersPOST /api/v1/users— create userGET /api/v1/users/{id}— get user by ID
Known issues:
- Search endpoint not yet available (added in v2.3.0)