Skip to content

v0.40.0 🌻

Latest
Compare
Choose a tag to compare
@brunoocasali brunoocasali released this 15 May 11:19
· 8 commits to main since this release
cd61a8c

πŸ’₯ Breaking Changes

  • Fix the issue introduced in the v0.39 that affected vite apps #1652 @brunoocasali
  • Now to use the generateTenantToken you should use it with await:
    before:
    const token = client.generateTenantToken(apiKeyUid, searchRules, {
        apiKey: apiKey,
        expiresAt: expiresAt,
      })
    after:
    const token = await client.generateTenantToken(apiKeyUid, searchRules, {
        apiKey: apiKey,
        expiresAt: expiresAt,
      })

βš™οΈ Maintenance/misc

Thanks again to @brunoocasali, @mdubus! πŸŽ‰