> ## Documentation Index
> Fetch the complete documentation index at: https://pearsdb.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Product Updates

> New updates and improvements

<Update label="January 2025">
  ## Continuous Translations Demo

  You can now enable continuous translations for your docs. This will automatically translate your docs to the languages you specify.
</Update>

<Update label="December 2024">
  ## Authentication

  Make docs private by setting up authentication via JWT, OAuth, or a universal password. With this privacy, you can create an internal knowledge base or prevent competitors from seeing your docs.
</Update>

<Update label="November 2024">
  ## AI Assistant

  You can now ask AI to make changes to your docs, with the context of all existing documentation. Type in a prompt and the assistant will propose changes by generating a pull request.

  ## GitLab Integration Upgrade

  We've improved our support for syncing with GitLab, such as enabling automated updates and preview deployments. Check out our [docs on GitLab](/settings/gitlab) to get started.

  ## Web Editor

  We've revamped our web editor so that you can now update docs with a fully WYSIWYG experience, while syncing with markdown.

  Check out our [docs on getting started with Web Editor](/web-editor).

  ## /llms.txt support

  All docs instances are now automatically hosted at /llms.txt and /llms-full.txt so that LLMs can easily ingest your documentation. For more information, read the [docs on the new llms.txt standard.](https://llmstxt.org)

  ## Localization

  You can now localize your docs which operates similarly to versioning. Add a `locale` to a version and fixed content in Mintlify like "Was this page helpful?" will also match the locale.

  ### Quality Improvements

  * Return chat & search results based on the current version that the user is reading

  * Authenticate users with OAuth, in addition to JWT or Shared Session tokens.
</Update>

<Update label="October 2024">
  ## Changelogs

  Launched a new [Update component](/content/components/update) to make it easier to display and report updates (like this one) to your users.

  ## Code Line Highlighting

  You can now highlight lines of code in your docs to emphasize and bring attention to important parts by adding a special comment after the language identifier. Use curly braces `{}` and specify line numbers or ranges separated by commas.

  ```javascript Line Highlighting Example {1,3-5} theme={null}
  const greeting = "Hello, World!";
  function sayHello() {
    console.log(greeting);
  }
  sayHello();
  ```

  ````md theme={null}
  ```javascript Line Highlighting Example {1,3-5}
  const greeting = "Hello, World!";
  function sayHello() {
    console.log(greeting);
  }
  sayHello();
  ```
  ````

  ## Light mode code blocks

  Code blocks now have a light mode variant which can be enabled by adding the following to your `mint.json`:

  ```json theme={null}
  "codeBlock": {
    "mode": "auto"
  }
  ```

  ## Advanced Footer

  <Frame>
    <img src="https://mintlify.s3.us-west-1.amazonaws.com/pearsdb/images/changelog/advanced-footer.gif" alt="Advanced Footer" />
  </Frame>

  You can now add more links to the standard footer. This upgrade
  provides more consistency between landing pages and docs, or greater customization
  if you want to spotlight specific pages like socials or status logs.

  ## Filter search based on the current user

  When personalization is enabled, search results are now filtered based on the current logged in user so that they only see the relevant content.

  ## Custom Prompts for AI Chat

  You can now customize the prompts for the AI chat. Please reach out to [support](mailto:sales@mintlify.com) if you'd like to customize the prompts.

  ## Dashboard Improvements

  * Added ability to change custom domain to be /docs directly through dashboard settings.

  * Consolidated the login and signup pages to decrease friction and confusion.

  * Implemented the discovery login flow so that users that are members of multiple organizations can now switch between them.

  * Added login with Google OAuth

  * Added ability to add new deployment through dashboard settings.

  ## Bug Fixes

  * Can now use leading slashes in navigation.

  * Can now edit CSS & JS files in the web editor.

  * Fixed `suggestEdit` not showing up even when enabled.

  * Fixed keyboard navigation for Search and Chat such that you can now use the up and down arrow keys to navigate the results.

  * Don't allow search engines to crawl user-auth protected pages.

  * Revalidate the cache when an org is deleted.

  * We now use the Scalar OpenAPI parser to parse OpenAPI definitions which improves the performance, fixes parsing issues, and surfaces better error messages.

  * Top-level descriptions are now supported in API reference pages autogenerated from OpenAPI definitions.

  * Add in-line-style support for icons

  * Fixed the pop-in of custom CSS in docs.

  * Properly show in-line code styling in conjunction with links.

  * Maintain scroll position when you click the back button in a browser.
</Update>
