What's New
1. Airtable Integration 📊
Easily connect your robots to Airtable! Watch the video below to know more:
http://youtube.com/watch?v=Yf4Ifi2WuJk
Note: This is temporary as we will be automating db migrations
DB Migration For Docker Users To Setup Airtable Integration
Steps to Manually Add
airtable_base_id
Column
docker-compose exec postgres psql -U $DB_USER -d $DB_NAME
psql
shell, run this SQL command to add the airtable_base_id
column to the robot
table:
ALTER TABLE robot ADD COLUMN airtable_base_id TEXT;
\q
to exit the psql
shell.
docker-compose up -d
2. Improved Browser Performance ⚡
We’ve made significant optimizations to enhance performance:
- Higher FPS: 10% increase for smoother rendering.
- Lower Event Latency: 32% faster, improving responsiveness.
- Memory Stability: No more increasing memory usage - it's now stable for consistent performance.
3. Infrastructure Enhancements 🏗️
- Concurrent Runs: Execute multiple workflows in parallel for better efficiency.
- Per-User Recording Sessions: Each user now gets a dedicated browser session recording, enabling more reliable extraction.
Enjoy the new improvements, and let us know your feedback! 🚀
What's Changed
- chore: release v0.0.10 by @amhsirak in #438
- fix: Api Key is not displayed by @RohitR311 in #452
- fix: Robot settings does not display by @RohitR311 in #451
- feat: airtable integration (core) by @AmitChauhan63390 in #420
- feat: airtable integration (follow up) by @amhsirak in #455
- chore: -rm migrations by @amhsirak in #456
- fix: display proxy config immediately after submission w/o hard refresh by @amhsirak in #454
- feat(i18n): integration translations by @amhsirak in #457
- fix: spacing between alert title and link by @amhsirak in #458
- feat: check for headers and append data to gsheet by @RohitR311 in #459
- fix: remove blue auto highlight in text fields by @amhsirak in #464
- feat: airtable environment variables by @amhsirak in #463
- feat: improve highlighting and data extraction by @RohitR311 in #462
- feat: support multiple browser instances by @amhsirak in #467
- fix: use runByUserId by @amhsirak in #468
- feat: sample env vars for airtable by @amhsirak in #471
- wip: performance by @amhsirak in #460
- feat: support redis auth by @amhsirak in #472
- fix: resolve handle url change by @RohitR311 in #475
- chore: pre-release v0.0.11 by @amhsirak in #476
- feat: browser perf log cleanup by @amhsirak in #477
- chore: release v0.0.11 by @amhsirak in #453
Full Changelog: v0.0.10...v0.0.11