--- redirectFrom: - /docs/changelog/2023-05-01-console --- ### Fixes & improvements - Control Plane: Added support for configuring the Postgres [default_text_search_config](https://www.postgresql.org/docs/current/runtime-config-client.html#GUC-DEFAULT-TEXT-SEARCH-CONFIG) configuration parameter, which determines the behavior of text search functions and operators that do not have an explicit configuration. This parameter can be set for the Postgres instance using the `default_endpoint_settings` property in the [Create project](https://api-docs.neon.tech/reference/createproject) or [Update project](https://api-docs.neon.tech/reference/updateproject) API, or using the `pg_settings` property in the [Create endpoint](https://api-docs.neon.tech/reference/createprojectendpoint) or [Update endpoint](https://api-docs.neon.tech/reference/updateprojectendpoint) API. Alternatively, the parameter can be set for a specific database using `ALTER DATABASE` syntax: ```sql ALTER DATABASE SET default_text_search_config = ‘pg_catalog.english’; ``` - Control Plane: Implemented a ClusterIP service to be used instead of the existing NodePort service to support a higher number of simultaneously running computes in a single region. - UI: Added **Pooled connection** and **Direct connection** tabs to the **Connection Details** widget on the Neon **Dashboard**, allowing you to copy a pooled or direct connection string for the selected branch, database, and role.