v0.48.0 🌻
meili-bot
released this
14 Jan 09:22
·
17 commits
to refs/heads/main
since this release
⚠️ Breaking changes
Migration
Replace:
await generateTenantToken("74c9c733-3368-4738-bbe5-1d18a5fecb37", [], {
apiKey: "0a6e572506c52ab0bd6195921575d23092b7f0c284ab4ac86d12346c33057f99",
expiresAt: new Date("December 17, 4000 03:24:00"),
});
By:
await generateTenantToken({
apiKey: "0a6e572506c52ab0bd6195921575d23092b7f0c284ab4ac86d12346c33057f99",
apiKeyUid: "74c9c733-3368-4738-bbe5-1d18a5fecb37",
searches: [],
expiresAt: new Date("December 17, 4000 03:24:00"),
});
⚙️ Maintenance
- Switch from rollup to vite, from commonjs to ecmascript modules (#1740) @flevi29
- Remove mention of support of Node 14 and 16 (#1805) @Strift
- Fix and improve
eslint
config, other minor changes (#1795) @flevi29 - Fix swapped args in localized-attributes sample (#1818) @ellnix
- [Playground] Replace Parcel by Vite (#1821) @Strift
- Switch from rollup to vite, from commonjs to ecmascript modules (#1740) @flevi29
- Remove
nodemon
dependency (#1822) @flevi29