# [2021-04-15] Nylas updates

Source: https://developer.nylas.com/docs/new/v2-release-notes/2021-04-15-nylas-updates/

We've been busy making Nylas even better.

## Dashboard

You can now search in the Nylas Dashboard for information, including account information, logs, and account settings. Use the keyboard, `CTRL + K` or `CMD + K` to search without needing to stop your workflow.

Review the [documentation](/docs/v2/developer-guide-v2/dashboard-v2/#nylas-assist) to get started.

![Search in the dashboard](/_images/release-notes-changelogs/2021-04-15-dashboard.png "Search in the dashboard")

## Components

Version 0.0.31 is released!

### New Features

We added a close button to the Composer `cc` and `bcc` input so they can be hidden.

### Bug Fixes

- Previously Composer did not fire fileUpload hooks if no component ID was provided.
- Composer no longer sends emails without a recipient.

## API

### Updates

- We added a `not_in` filter for [Threads](/docs/api/v2/#tag--Threads). Use the filter for messages not in a given folder or label. The filter supports the name, display, or ID of a folder or label.
- [GET Message by ID](/docs/api/v2/#get-/messages/id) now accepts multiple messages separated by a comma.

  ```bash
  curl --request GET \
  --url 'https://api.nylas.com/messages/{message_id},{message_id},{message_id}' \
  --header 'Accept: application/json' \
  --header 'authorization: Bearer {access_token}'
  ```

## Documentation

- The documentation for [Messages](/docs/api/v2/#tag--Messages) and [Threads](/docs/api/v2/#tag--Threads) were updated to clarify the use of the `in` filter. You can use `in` to return Drafts.
- The documentation for Components was updated to add a method of authorization for multiple accounts.
- The documentation on [Views](/docs/api/v2/#overview) was reorganized to make the information easier to read.
- Client secret was removed from [Hosted authentication](/docs/api/v2/#tag--Hosted-Authentication) since it's not required to complete the Hosted auth flow.