typebot.io

💬 Typebot is a powerful chatbot builder that you can self-host.

AGPL-3.0 License

Stars
4.9K
Committers
55

Bot releases are hidden (Show)

typebot.io - v2.8.0

Published by baptisteArno about 2 years ago

Added

  • 🔊 (sendEmail) Add log when smtp config is failing [75ca255]
  • ✨ (lp) Add new pricing page [c94a658]
  • 👷‍♂️ Transpile components for better DX [c1dd4d4]
  • ✨ Add usage-based new pricing plans [898367a]

Changed

  • 🚸 (inputs) Improve date input response bubble formatting [fac70b9]
  • ♻️ (usage) Remove limit until temporarily [3bec24a]

Fixed

  • 🐛 (usage) Archive typebot to be able to compute usage [15dbc95]
  • 🐛 (workspace) Allow lifetime users to invite members to workspace [e1f2d49]
  • 🐛 Lifetime users should have access to Pro features [9ed4916]
  • 💚 (ci) Fix turbo repo prisma cache [8c56c6c]
  • ✏️ (pricing) Fix typos [9061c03]
  • 🐛 Remove delete result cascade [3c803b1]
  • 🐛 (limits) Fix storage limit trigger and e2e tests [30dff2d]
  • 🐛 (usage) Fix storage limit check [1e26703]
  • 🐛 (limits) Fix usage limits email emojis [1063429]
  • 🐛 (stripe) Fix plan update and management [6384a3a]
  • 🐛 (stripe) Update additional items when they didn't exist [f83e0ef]
  • 💚 Better build scripts [d8b1d8a]
  • 🐛 (editor) Shouldn't be able to set a group name to empty string [6a1eaea]

Miscellaneous

  • 📦 Upgrade deps to latest version [a947c1c]
  • 🧑‍💻 (emails) Add decent emails management [1654de3]
typebot.io - v2.7.1

Published by baptisteArno about 2 years ago

Fixed

  • 🐛 (webhook) Don't send body when GET method is used [4a04d1c]
  • 🐛 (textinput) Don't submit on enter when long input [4bf47ec]
  • 🐛 (viewer) load a bot without a start edge [b64f787]

Miscellaneous

  • 📦 Update packages [a262fc1]
  • 🛂 (builder) Make sure old typebots can't overwrite newer [1a7c25e]
typebot.io - v2.7.0

Published by baptisteArno about 2 years ago

Migration guide

The SMTP_IGNORE_TLS environment var has been removed in favor of SMTP_SECURE. If SMTP_SECURE is true, the connection will use TLS when connecting to server. If false (the default) then TLS is used if server supports the STARTTLS extension. In most cases set this value to true if you are connecting to port 465. For port 587 or 25 keep it false

Fixed

  • 🐛 (lp) Update plausible tracking url [a8d1e27]

Miscellaneous

  • 📝 More explicite set variable compute examples [a161180]
  • 🧑‍💻 (smtp) Use secure prop instead of ignoreTLS [cf07cfe]
typebot.io - v2.4.0

Published by baptisteArno over 2 years ago

What's Changed

Full Changelog: https://github.com/baptisteArno/typebot.io/compare/v2.3.0...v2.4.0

typebot.io - v2.3.0

Published by baptisteArno over 2 years ago

Features

✨ Rating input

Useful for NPS, customer reviews, etc.

Choose between numbers or icons, custom length, and custom bottom labels.

You can even insert your custom SVG icon 🚀

✨ Add file upload input

The most requested feature is finally here!

It allows you to ask your user to upload one or multiple files. Easy peasy, nice drag & drop experience.

⚡️ Improve first paint delay

A user reported that the first load of a bot was slow and he was right. Now it will display the bot as soon as we found the typebot in database

🧑‍💻 Keep host avatar when group starts with input

Fixes

🐛 Add public env var in runtime config

🚸 Attempt to remove Chrome auto complete

🚑️ Add a variable update queue to avoid initial crash

Also a HUGE refacto, that renames steps to blocks and blocks to groups: ♻️ Rename step to block

Full Changelog: https://github.com/baptisteArno/typebot.io/compare/v2.2.0...v2.3.0

typebot.io - v2.2.0

Published by baptisteArno over 2 years ago

New features ✨

  • Digital Product Payment template
  • Start the preview from any block
  • Multiple and revokable API tokens

Tons of improvements and bug fixes

Full Changelog: https://github.com/baptisteArno/typebot.io/compare/v2.1.2...v2.2.0

typebot.io - v2.1.2

Published by baptisteArno over 2 years ago

Better Docker config

The self-hosting with Docker has been globally improved and several bugs have been fixed.
Here is the new guide: https://docs.typebot.io/self-hosting/docker

Migrate from previous version

Rename environment variables:

Builder

  • NEXT_PUBLIC_SMTP_AUTH_DISABLED -> SMTP_AUTH_DISABLED
  • NEXT_PUBLIC_GOOGLE_CLIENT_ID -> GOOGLE_CLIENT_ID
  • NEXT_PUBLIC_GITHUB_CLIENT_ID -> GITHUB_CLIENT_ID
  • NEXT_PUBLIC_GITLAB_CLIENT_ID -> GITLAB_CLIENT_ID
  • NEXT_PUBLIC_GITLAB_NAME -> GITLAB_NAME
  • NEXT_PUBLIC_FACEBOOK_CLIENT_ID -> FACEBOOK_CLIENT_ID

Viewer

  • NEXT_PUBLIC_SMTP_FROM -> SMTP_FROM
  • NEXT_PUBLIC_GOOGLE_CLIENT_ID -> GOOGLE_CLIENT_ID

Then you can upgrade:

docker-compose down --remove-orphans
docker-compose pull plausible
docker-compose up -d
typebot.io - v2.1.1

Published by baptisteArno over 2 years ago

New Payment input block ✨

Introducing Docker images

baptistearno/typebot-builder
baptistearno/typebot-viewer

Automatically generated for each new version 👷

You don't need to build Typebot images yourself now. It comes with multiple benefits:

  • No need to have the 4Go required memory to run Typebot anymore
  • Can update the variables, restart and it should be taken into account (whereas before we had to rebuild the images each time 😴)

To upgrade:

  • Go into another directory (you don't need to clone the git repo anymore)
  • Follow the new Docker docs: https://docs.typebot.io/self-hosting/docker.
  • Make sure to use the same database volume as the previous docker-compose to use the same data.
typebot.io - v2.1.0

Published by baptisteArno over 2 years ago

Introducing Workspaces

This version now relies on workspaces instead of users for ownership. If you already deployed version 2.0.0, you need to run the migration script.

Migration from v2.0.0

  1. Only pull the commits up to the v2.1.0 tag.
    Something like:
git fetch origin v2.1.0
git merge v2.1.0
  1. Build the application to apply the prisma automatic migrations.
  2. Navigate to packages/scripts
  3. Copy .env.local.example to .env.local and replace with your variables
  4. Run yarn to install packages
  5. Run the migration script:
yarn start:workspaces:migration