Skip to main content

Changelog

Updates, changes, and improvements at Retool.

Code editing improvements

Great code editing ergonomics are near and dear to our hearts at Retool. We’ve recently added a few improvements that make writing JavaScript in Retool just a little bit smoother.

Inline code evaluation previews now display the type of the returned value. This is handy for quick reference when working with properties that can accept multiple types:

Retool now also supports and correctly lints ES2020 features, like the nullish coalescing operator and optional chaining. You can replace clunky expressions like {{ (localStorage.values||{}).userStatus ? localStorage.values.userStatus : 'Unavailable' }} with a simple {{ localStorage.values.userStatus ?? 'Unavailable' }}.

Lastly, we’ve improved Retool’s autocomplete to properly infer JavaScript types and offer the available methods and properties, even when chained. If using inline JSDoc comments, the defined parameters will also show up the autocomplete menus.

Fixes and improvements

  • Fixed a memory leak issue causing unneeded query results to be retained
  • Added the returned value type to inline code evaluation previews
  • Added ES2020 support to Retool’s code linter
  • Removed notifications from appearing on every copy and paste operation
  • Fixed Excel files returned from REST API queries to be correctly parsed as base64Binary
  • Added link on the Billing page for admins to view past invoices and payment methods

Enterprise Plan

  • Moved protected apps actions into separate menu in the editor header

One-click reusable queries, right from your app

When you’re writing a query in an app, you may realize that it would be useful in many apps. Rather than copy/pasting your work, you can now extract your resource query to the Query Library and import your new, reusable query wherever you need it! We’ll automatically convert JS expressions to query variables, so that each app can configure its own inputs. To learn more about reusing queries with the Query Library, check out the docs.

Fixes and improvements

  • Added the ability to reset all temporary state variables to their initial value
  • Improved performance of Omnibox ⌘ + K (or_ CTRL + K_)
  • Included Query Library queries in Omnibox ⌘ + K (or CTRL + K)
  • Fixed the Jira query editor to work correctly with POST requests
  • Fixed the query editor so that its height persists throughout a session
  • Fixed the canvas background color for themes in the editor
  • Added support for Vim mode in code editors ⌘ + ⌥ + V (or CTRL + ALT + V)
  • Fixed initial value on app load for the date/time inputs
  • Fixed the function selection for Lambda queries
  • Fixed S3 read queries for binary/octet-stream content-type payloads ** ---**

Enterprise plan

  • Added an environment variable to disable username/password login (DISABLE_USER_PASS_LOGIN)

Check out this guide to see the on-prem versions and their release notes.

Google Maps and Google Analytics integrations

Need to geocode addresses? Find the road closest to a map point? Build a realtime dashboard of visitors on your website?

We've added native integrations with two of Retool’s most commonly connected APIs: Google Maps and Google Analytics. Both integrations come with out-of-the-box authentication support and a custom query builder for discovering endpoints and validating inputs. For Google Analytics, we've prepared a transformer that makes it easy to parse reports into a clean array of objects for charting and displaying in a table format. To learn more, check out the Google Analytics and Google Maps docs.

Improved query sharing

Shared queries imported from the Query Library can now be pinned to their latest version. Before this update, any changes made to a shared query required you to manually bump the version in each app that used it. Now your apps can be in sync automatically with your shared query.

We also now include a list of apps that use a shared query in the right panel of the Query Library. When making big changes to a query (e.g. adding new variables), you can quickly open each app from the list and carefully update them, as needed.

Pinning to the latest version is only available for cloud customers, if you'd like to use it on-prem, shoot us a note at support@retool.com.

Fixes and improvements

  • Added support for copy/pasting multiple components

  • Added autocomplete for native JavaScript functions in JavaScript queries

  • Added support for ES2020 features like nullish coalescing and optional chaining

  • Updated pasted components to use their original name

  • Improved performance of apps with a Table component

  • Added a setValue API to the Slider component

  • Added play, pause, and seekTo APIs to the Video component

  • Added a duration property to the Video component

  • Fixed inspector for the Calendar component

  • Fixed the size of the Modal button when disabled

  • Fixed event handlers on the S3 Uploader component

  • Fixed the default name for new S3 Uploader components

  • Fixed component positioning when pasting into containers

  • Fixed some folders not appearing in the "Add to folder" dropdown when creating a new app

  • Added link to "Releases and history" when previewing an app ---Enterprise plan

  • Added support for creating releases for protected apps

  • Fixed "Releases and history" to show history for the current branch on a protected app

  • Enabled editors to reset a protected app to the state of a remote branch

Check out this guide to see the on-prem versions and their release notes.

Event Handlers

Think of a Retool event handler just like addEventListener** ** in native JS or **onChange** in React. Before, components could only trigger a single query, and anything more advanced would require writing JavaScript. Now, you can configure components to trigger multiple queries, control other components, and call additional APIs in response to user interactions.

We’ve also greatly expanded the number of events available on components, and added new utils and component APIs. Anything you can do with Retool’s JavaScript API (e.g.** _query1.trigger()**_, modal.open(), **utils.showNotification(...)**) you can now do with Event Handlers. Event Handlers will be rolled out to all customers over the next few weeks. To learn more, check out the docs.

Style Editors

Every component now has a style editor in the inspector, making it easier to customize the appearance of your applications without CSS. You can edit the background, foreground, borders and more—you can even use a JavaScript expression for dynamic colors (e.g. {{ checkbox1.value ? 'purple' : 'yellow' }}). Style editors will be rolled out to all customers over the next few weeks. To learn more, check out the docs.

Group Admins

Admins can now assign Group Admins to manage membership for any custom groups.

Previously, only Admins could manage membership for custom groups. Now, Admins can grant any number of group members the Group Admin privileges to add new users or remove existing users. Group Admins will be able to see all users within an org, but are not able to modify any aspect of their group beyond membership (e.g. app and resource permissions).

Fixes and improvements

  • Improved performance when typing in a TextInput
  • Added the ability to unpublish a release, which switches an app back to using the latest working version
  • Added an action to format SQL or GraphQL queries in the Query Library
  • Added more information to document titles to make working in multiple browser tabs easier
  • Added new templates for an Elasticsearch Admin Panel, Datadog Elasticsearch Admin Panel, and Twilio + Segment Personalized Outreach App
  • Reduced app startup time
  • Fixed visibility of the spinner when saving changes in a Table
  • Removed updatedAt property from release and commit diffs
  • Improved performance of apps with multiple modules
  • Fixed display of debug data when testing a custom auth flow with an OAuth step
  • Changed query search in the Query Editor to be case insensitive
  • Fixed incorrect page documentation content on public apps
  • Fixed styles of the color picker in the inspector
  • Fixed documentation links for several resources
  • Fixed "last active" date on the Users page under Settings

Enterprise plan

  • Fixed default folder permissions for new pages that use Git Syncing

Check out this guide to see the on-prem versions and their release notes.

App Documentation

**READMEs. **README files are a staple of any programming project. If you're on the Startup plan or above, all of your Retool apps now come equipped with a built-in README file. To open it, click on the app’s description in the navigation bar. The Editor README is a great place for sharing information with other Retool editors in your organization: details on working with data sources, descriptions of business logic, or ground rules for making changes.

User Documentation. Of course, developers aren’t the only ones who benefit from documentation. For customers on plans that support end-user only permissions (Pro and above), we’ve also added User Documentation support. Here you can provide information that will be visible to your app’s users, like how to operate the app and who to contact when there’s an issue. (You can also set the docs to open automatically for users firing up the app for the first time.)

To learn more about App Documentation and how to bring sophisticated text display to Retool, check out our blog.

Fixes and improvements

  • Introduced ⌘/⌃X to cut/paste components on the canvas and between apps
  • Corrected placement of pasted components to be more predictable
  • Improved the Text component:
    • Reintroduced a background color option
    • Reintroduced support for the class attribute on HTML elements
    • Improved styles for nested lists and headlines
    • Fixed a bug where toggling staging mode would reset the height
  • Added the ability to turn a Container into a Tabbed Container from the component’s Inspector menu
  • Updated the Container deletion confirmation to list child components that will also be deleted
  • Updated Table and Chart to use the currently selected query by default when created
  • Updated the Table setFilters_ _API to support "OR" in addition to "AND"
  • Fixed a bug where custom CSS did not load correctly in Modules
  • Added support for tabbing between components in the editor
  • Added support for opening a new tab from the Omnibox by holding ⌘/⌃
  • Added keyboard shortcut to toggle the canvas grid lines (⌘/⌃+Shift+G)
  • Updated the Query Library to display duration after running a query
  • Updated the Releases list to include the creator and publisher of each release
  • Fixed a bug where renamed components, queries, and transformers could collide with reserved Retool names (e.g. utils)
  • Fixed a rare bug where JS references to a component wouldn't be updated on rename
  • Improved error messages when renaming components, queries, and transformers
  • Redesigned tooltips in the Inspector
  • Updated the Alert component to be resizable up to 4 rows in height
  • Fixed a bug where editors without "use" permissions could add a Module to apps
  • Fixed Snowflake queries to respect the_ DBCONNECTOR_QUERY_TIMEOUT_MS_ env variable
  • Fixed a bug with Stripe queries that contain array parameters
  • Fixed a bug in Google Cloud Storage queries where the default export file type was invalid
  • Fixed a bug where disabled users would show up in the app users list

Enterprise Plan

  • Updated protected apps to create an initial commit when starting with an empty repo
  • Fixed author data when syncing protected branches to Retool
  • Fixed a rare bug where the GitHub API would not return the entire tree for a protected app's repo

Text v2

We’ve just launched a brand new version of our Text component. The component includes:

  • Full support for all GitHub flavored markdown features — 6 different headline sizes, bold, italics, strikethrough, underline, bullet lists, numbered lists, task lists, images, links, blockquotes, code blocks, and tables.
  • Dynamic height with the “hug contents” option, on by default
  • Inspector improvements including a markdown-aware code editor and image scaling options

The new Text component no longer supports advanced HTML rendering. If you require more custom HTML, check out the iFrame component or the Custom component.

App specific styles and scripts

You might have noticed that the Text component doesn’t support adding style tags for custom CSS. Good news is, you no longer have to hack in CSS into random Text components. You can now add styles specific to your application in the “Scripts and styles” modal. As the name suggests, this panel also lets you add JS libraries and define custom code in your applications.

Layout improvements and dynamic containers

We’ve refreshed the way drag and drop works in the editor for easier editing and a faster feedback loop:

  • Redesigned component bounding box for easier selection, drag, and resize
  • Instant drag-and-drop feedback with no countdown timer
  • Major improvements and fixes to layout reflows from drag-and-drop and hidden components
  • Hidden components are now visible when selected
  • Support for opening/closing modals and switching Tabbed container tabs during drag-and-drop

We’ve also added dynamically resizing to some containers. The Container component, Tabbed Container component, and Form components now include a “hug contents” setting that automatically sets the height of the container based on the height of its contents!

For a quick guide on how these changes can make you faster at editing, check out the docs.

Chart v2

Our new chart component, built on top of the open source Plotly library, makes data visualizations easier to build, update, and consume. It makes it simple to build charts right out of the box with all of the basics—like mixed chart types, built-in aggregations, and support for grouping—included. And because you’re building charts in Retool, you can take action on the data you’re looking at by easily writing back to your database, making an API request, or whatever else is impactful. See how other Retool users are leveraging charts in our blog post or checkout our webinar on how to build data-driven dashboards in Retool.

Modules

Modules are a new way for Retool customers to reuse groups of components and queries between applications. Modules give you the ability to create a shared library of reusable components and queries that you can use in any Retool application. Any update you make to a module is immediately reflected in every app it powers. Check out our blog post and the docs.

User Management Improvements

A brand new UI and folder-based permissions. Quickly and effortlessly manage access for many users.

A suite of new integrations

We’ve added integrations for Jira, Asana, Datadog and BigID, with many more to come!

Refreshed Query UIs

We’ve updated our UI for some of our most popular integrations including Stripe, Twilio and Sendgrid. Among many visual improvements, the new UI includes inline documentation for the resources so you no longer have to constantly switch between Retool and the Stripe/Twilio/Sendgrid documentation when writing your queries.

New

  • Added support for attachments in the SMTP integration
  • Added support for renaming resources without breaking references to the resource in apps
  • Added misc. improvements to the UX of modules

Protected applications (beta)

  • Fixed switching between branches in protected apps that were placed in a folder.
  • Showed better error messages when invalid branch names are chosen

Bugfixes

  • Improved error message when queries fail due to network errors
  • Removed requirement to manually enable custom analytics on each app

New

  • Added a new SMTP Integration which supports sending emails to arbitrary SMTP servers.
  • **2FA **is now a feature all paid plans have available.
  • Added support for server variables in the **OpenAPI **integration
  • Added option to configure the min and max database pool size that on-prem Retool uses

Protected Applications (Beta)

  • Added support for using Protected Applications at the same time with the existing git syncing workflow.
  • Various UX improvements

Modules (Beta)

  • Added option to add descriptions to modules
  • Added option to convert existing containers into modules

Performance improvements

  • Users of a local Retool deployment can add the environment variable APPS_FS_SYNC_WATCHER=true to greatly improve the performance of modifying Retool apps.
  • Reduced the main bundle size of the Retool app by ~30%.
  • Added a cache for utilities used in the runtime of Retool.

Bugfixes

  • Fixed issue in the **Table **component where date type columns did not support selecting a time of day.

  • Fixed issue where the **SAP Hana **integration would not work when connecting to the database via a SSH tunnel

  • Fixed issue where **Textinputs **would not accept negative number or currency values

  • Fixed issue where components could not be copy-pasted immediately after using CMD+C

  • Fixed issue where the Dropdown component sometimes may render its values behind another component

  • Fixed issue with Tabbed Containers when the list of tab names contains objects

New

  • Added support for Docker secrets in Retool's on-prem deployment

  • Added support for parsing group claims in the **Custom OAuth2 SSO integration. **

  • Added support for Google SSO in the **Custom OAuth2 SSO integration. **

  • Official Helm 3 chart for Retool available. Helm 2 charts are available here.

  • Added tools to debug the authentication flow for resources configured using **Custom Auth **

  • Redesigned the database schema browser

  • Changed REST API resources to allow for empty base URLs

Performance improvements

  • Transition speed between different apps greatly improved
  • Cleaned up some unnecessary libraries and code

Bugfixes

  • Fixed issue where single-container on-prem deployments no longer supported SSH connections

  • Fixed issue where text would overflow in Button components when the label was too long

  • Fixed issue where the SAP Hana integration would unexpectedly hang

  • Fixed visual issue with Table headers when using themes

  • Fixed issue where the ReorderableList would not work with duplicate values

  • Fixed visual bugs of the Settings page on wider screens

  • Fixed custom dimensions support in our Google Analytics integration

  • Fixed visual bug when inviting additional users

  • Fixed issue where the staging / production toggle would still appear even when you had set the HIDE_PROD_AND_STAGING_TOGGLES environment variable to true

New

  • Added support for custom SSL options in the** gRPC** integration

  • Improved how we handle errors in the OpenAPI integration

  • Added option to configure Table components to hide the refresh button in its footer.

  • Added support for frozen columns in the **Table **component

Protected Applications (Beta)

  • Added branch management interface to the editor
  • Fixed issue where renaming or moving apps would not sync to git repos
  • Fixed issue opening pull requests in GitHub Enterprise

Layout (beta)

  • Holding CMD will block component interaction and allow you drag and drop components without having to worry about triggering side effects

  • Selecting a hidden components will make the component visible automatically. Performance improvements

  • Apps with larger numbers of concurrent queries (5+) should see significant improvements in the responsiveness of the application when the queries are running.

Modules beta

  • Modules will inherit the permissions sets of their host app. This means that end users will be able view modules used in apps even if they have not been granted explicit view access to those modules.
  • Importing an app with modules will also automatically recreate missing modules that are needed by that app.

Bugfixes

  • Fixed issue where exporting apps on a non-main branch in the protected application workflow would still export the main branch

  • Fixed an issue where OAuth2 flows that had “skip Retool consent screen” turned on was incorrectly interpolating variables

  • Fixed issue where the id token was not being refreshed in the OAuth2 refresh

  • Fixed issue where the Github API Base URL was not visible in the protected apps settings

  • Fixed issue where importing apps would stop working

  • Fixed issue where the Rich Text Editor would be blurred unexpectedly

  • Fixed issue where it was not possible to disable beta experiments