Skip to content

v0.2.15

Choose a tag to compare

@github-actions github-actions released this 08 Jul 23:28
Immutable release. Only release title and notes can be modified.

What's Changed

  • Add an optional JINA_API_KEY env var to avoid anonymous rate limits when fetching website content during brand onboarding. by @jrhizor
  • Ensure the overview charts use the same timezone-specific x-axis. by @jrhizor
  • Changing some brand/org configurations behind the scenes to prepare for Elmo Cloud which requires db migrations (should run automatically on Docker Compose installations). by @jrhizor

NOTE: If you created brands using the admin API, you will have to run this for the db migration to work:

INSERT INTO "organization" ("id", "name", "slug", "created_at")
SELECT b."id", b."name", b."id", now()
FROM "brands" b
LEFT JOIN "organization" o ON o."id" = b."id"
WHERE o."id" IS NULL;

Full Changelog: v0.2.14...v0.2.15